telnyx 5.4.1 → 5.5.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: 5f51a5a79a8c43f2a4d7fa7b3aa86cc9887fad4f711c35aece12a388be5a8b97
4
- data.tar.gz: 065ce9ea4e204bd6e46970d6c2029745b053ea8706bd0841bc6deb6c4ee70b80
3
+ metadata.gz: de2a1bb0954955181d18e326904fc0d2827878db04c8f66a750f6fde4f183d0f
4
+ data.tar.gz: 40ad1734648f14c5bdbe6ad81d5e12855ddba2e97426deb905629fb97519e482
5
5
  SHA512:
6
- metadata.gz: 3f0de744716f4ee301321ac9e4683ae230314e2dda08243183760f1ea1ddf154f02ae37cd48465512b8d3093a8d3995da5f86ad722bf7dec4811f534d9b70f7c
7
- data.tar.gz: 4ce5fb59e509cd15debc570731ebcd5bd881443472492403ce130b92ba810a95cabfd1393de73f261001df7ef457106d795f52ff6fcb792b2f490f2fdafa210f
6
+ metadata.gz: 2315e14653fe8c7f6d86377e4d246bd2b36cb8985231a786bba4d28801dd1251b0718ecf4de9cac71ad17466000e2b831649c81ccc25c0c42fdb14e9e8e152ce
7
+ data.tar.gz: 333e0e1a6c28d93d26e8f0ffbd804a3845f83849c083e22a29ca81261522a2c273f1b27be5453d2fc2cad73223d55a46e85639548d2a3a068881113c6b5113eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.5.0 (2026-01-28)
4
+
5
+ Full Changelog: [v5.4.1...v5.5.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.4.1...v5.5.0)
6
+
7
+ ### Features
8
+
9
+ * Fix broken documentation links ([3eb58e6](https://github.com/team-telnyx/telnyx-ruby/commit/3eb58e6dd37cbedf4710ac78f72feb7d8cefe76a))
10
+
3
11
  ## 5.4.1 (2026-01-28)
4
12
 
5
13
  Full Changelog: [v5.4.0...v5.4.1](https://github.com/team-telnyx/telnyx-ruby/compare/v5.4.0...v5.4.1)
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.4.1"
27
+ gem "telnyx", "~> 5.5.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -18,7 +18,7 @@ module Telnyx
18
18
  # @!attribute api_key_ref
19
19
  # If you are using an external inference provider like xAI or OpenAI, this field
20
20
  # allows you to pass along a reference to your API key. After creating an
21
- # [integration secret](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
21
+ # [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
22
22
  # for you API key, pass the secret's `identifier` in this field.
23
23
  #
24
24
  # @return [String, nil]
@@ -11,7 +11,7 @@ module Telnyx
11
11
  # @!attribute bucket
12
12
  # The embedded storage bucket to compute the clusters from. The bucket must
13
13
  # already be
14
- # [embedded](https://developers.telnyx.com/api/inference/inference-embedding/post-embedding).
14
+ # [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
15
15
  #
16
16
  # @return [String]
17
17
  required :bucket, String
@@ -18,7 +18,7 @@ module Telnyx
18
18
 
19
19
  # @!attribute api_key_ref
20
20
  # The `identifier` for an integration secret
21
- # [/v2/integration_secrets](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
21
+ # [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
22
22
  # that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
23
23
  # with this integration.
24
24
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.4.1"
4
+ VERSION = "5.5.0"
5
5
  end
@@ -23,7 +23,7 @@ module Telnyx
23
23
 
24
24
  # If you are using an external inference provider like xAI or OpenAI, this field
25
25
  # allows you to pass along a reference to your API key. After creating an
26
- # [integration secret](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
26
+ # [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
27
27
  # for you API key, pass the secret's `identifier` in this field.
28
28
  sig { returns(T.nilable(String)) }
29
29
  attr_reader :api_key_ref
@@ -280,7 +280,7 @@ module Telnyx
280
280
  messages:,
281
281
  # If you are using an external inference provider like xAI or OpenAI, this field
282
282
  # allows you to pass along a reference to your API key. After creating an
283
- # [integration secret](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
283
+ # [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
284
284
  # for you API key, pass the secret's `identifier` in this field.
285
285
  api_key_ref: nil,
286
286
  # This is used with `use_beam_search` to determine how many candidate beams to
@@ -14,7 +14,7 @@ module Telnyx
14
14
 
15
15
  # The embedded storage bucket to compute the clusters from. The bucket must
16
16
  # already be
17
- # [embedded](https://developers.telnyx.com/api/inference/inference-embedding/post-embedding).
17
+ # [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
18
18
  sig { returns(String) }
19
19
  attr_accessor :bucket
20
20
 
@@ -61,7 +61,7 @@ module Telnyx
61
61
  def self.new(
62
62
  # The embedded storage bucket to compute the clusters from. The bucket must
63
63
  # already be
64
- # [embedded](https://developers.telnyx.com/api/inference/inference-embedding/post-embedding).
64
+ # [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
65
65
  bucket:,
66
66
  # Array of files to filter which are included.
67
67
  files: nil,
@@ -20,7 +20,7 @@ module Telnyx
20
20
  attr_accessor :voice
21
21
 
22
22
  # The `identifier` for an integration secret
23
- # [/v2/integration_secrets](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
23
+ # [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
24
24
  # that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
25
25
  # with this integration.
26
26
  sig { returns(T.nilable(String)) }
@@ -136,7 +136,7 @@ module Telnyx
136
136
  # Telnyx.KokoroTTS.af_heart)
137
137
  voice:,
138
138
  # The `identifier` for an integration secret
139
- # [/v2/integration_secrets](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
139
+ # [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
140
140
  # that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
141
141
  # with this integration.
142
142
  api_key_ref: nil,
@@ -49,7 +49,7 @@ module Telnyx
49
49
  messages:,
50
50
  # If you are using an external inference provider like xAI or OpenAI, this field
51
51
  # allows you to pass along a reference to your API key. After creating an
52
- # [integration secret](https://developers.telnyx.com/api/secrets-manager/integration-secrets/create-integration-secret)
52
+ # [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
53
53
  # for you API key, pass the secret's `identifier` in this field.
54
54
  api_key_ref: nil,
55
55
  # This is used with `use_beam_search` to determine how many candidate beams to
@@ -65,7 +65,7 @@ module Telnyx
65
65
  def compute(
66
66
  # The embedded storage bucket to compute the clusters from. The bucket must
67
67
  # already be
68
- # [embedded](https://developers.telnyx.com/api/inference/inference-embedding/post-embedding).
68
+ # [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
69
69
  bucket:,
70
70
  # Array of files to filter which are included.
71
71
  files: nil,
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.1
4
+ version: 5.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx