telnyx 6.59.0 → 6.60.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.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/ai/assistants/assistants.d.mts +3 -3
- package/resources/ai/assistants/assistants.d.ts +3 -3
- package/resources/ai/assistants/versions.d.mts +2 -2
- package/resources/ai/assistants/versions.d.ts +2 -2
- package/src/resources/ai/assistants/assistants.ts +3 -3
- package/src/resources/ai/assistants/versions.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 6.60.0 (2026-05-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v6.59.0...v6.60.0](https://github.com/team-telnyx/telnyx-node/compare/v6.59.0...v6.60.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Fix OpenAI chat API reference links ([9598eb4](https://github.com/team-telnyx/telnyx-node/commit/9598eb4e7a1024475636fe6d0e68e6ad7e2f9847))
|
|
10
|
+
|
|
3
11
|
## 6.59.0 (2026-05-11)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v6.58.0...v6.59.0](https://github.com/team-telnyx/telnyx-node/compare/v6.58.0...v6.59.0)
|
package/package.json
CHANGED
|
@@ -763,7 +763,7 @@ export interface InferenceEmbedding {
|
|
|
763
763
|
instructions: string;
|
|
764
764
|
/**
|
|
765
765
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
766
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
766
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
767
767
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
768
768
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
769
769
|
* provided, Telnyx applies the default model.
|
|
@@ -1841,7 +1841,7 @@ export interface AssistantCreateParams {
|
|
|
1841
1841
|
messaging_settings?: MessagingSettings;
|
|
1842
1842
|
/**
|
|
1843
1843
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
1844
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
1844
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
1845
1845
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
1846
1846
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
1847
1847
|
* provided, Telnyx applies the default model.
|
|
@@ -1965,7 +1965,7 @@ export interface AssistantUpdateParams {
|
|
|
1965
1965
|
messaging_settings?: MessagingSettings;
|
|
1966
1966
|
/**
|
|
1967
1967
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
1968
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
1968
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
1969
1969
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
1970
1970
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
1971
1971
|
* provided, Telnyx applies the default model.
|
|
@@ -763,7 +763,7 @@ export interface InferenceEmbedding {
|
|
|
763
763
|
instructions: string;
|
|
764
764
|
/**
|
|
765
765
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
766
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
766
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
767
767
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
768
768
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
769
769
|
* provided, Telnyx applies the default model.
|
|
@@ -1841,7 +1841,7 @@ export interface AssistantCreateParams {
|
|
|
1841
1841
|
messaging_settings?: MessagingSettings;
|
|
1842
1842
|
/**
|
|
1843
1843
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
1844
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
1844
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
1845
1845
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
1846
1846
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
1847
1847
|
* provided, Telnyx applies the default model.
|
|
@@ -1965,7 +1965,7 @@ export interface AssistantUpdateParams {
|
|
|
1965
1965
|
messaging_settings?: MessagingSettings;
|
|
1966
1966
|
/**
|
|
1967
1967
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
1968
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
1968
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
1969
1969
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
1970
1970
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
1971
1971
|
* provided, Telnyx applies the default model.
|
|
@@ -148,7 +148,7 @@ export interface UpdateAssistant {
|
|
|
148
148
|
messaging_settings?: AssistantsAPI.MessagingSettings;
|
|
149
149
|
/**
|
|
150
150
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
151
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
151
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
152
152
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
153
153
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
154
154
|
* provided, Telnyx applies the default model.
|
|
@@ -304,7 +304,7 @@ export interface VersionUpdateParams {
|
|
|
304
304
|
/**
|
|
305
305
|
* Body param: ID of the model to use when `external_llm` is not set. You can use
|
|
306
306
|
* the
|
|
307
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
307
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
308
308
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
309
309
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
310
310
|
* provided, Telnyx applies the default model.
|
|
@@ -148,7 +148,7 @@ export interface UpdateAssistant {
|
|
|
148
148
|
messaging_settings?: AssistantsAPI.MessagingSettings;
|
|
149
149
|
/**
|
|
150
150
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
151
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
151
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
152
152
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
153
153
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
154
154
|
* provided, Telnyx applies the default model.
|
|
@@ -304,7 +304,7 @@ export interface VersionUpdateParams {
|
|
|
304
304
|
/**
|
|
305
305
|
* Body param: ID of the model to use when `external_llm` is not set. You can use
|
|
306
306
|
* the
|
|
307
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
307
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
308
308
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
309
309
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
310
310
|
* provided, Telnyx applies the default model.
|
|
@@ -995,7 +995,7 @@ export interface InferenceEmbedding {
|
|
|
995
995
|
|
|
996
996
|
/**
|
|
997
997
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
998
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
998
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
999
999
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
1000
1000
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
1001
1001
|
* provided, Telnyx applies the default model.
|
|
@@ -2307,7 +2307,7 @@ export interface AssistantCreateParams {
|
|
|
2307
2307
|
|
|
2308
2308
|
/**
|
|
2309
2309
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
2310
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
2310
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
2311
2311
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
2312
2312
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
2313
2313
|
* provided, Telnyx applies the default model.
|
|
@@ -2459,7 +2459,7 @@ export interface AssistantUpdateParams {
|
|
|
2459
2459
|
|
|
2460
2460
|
/**
|
|
2461
2461
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
2462
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
2462
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
2463
2463
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
2464
2464
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
2465
2465
|
* provided, Telnyx applies the default model.
|
|
@@ -206,7 +206,7 @@ export interface UpdateAssistant {
|
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
208
|
* ID of the model to use when `external_llm` is not set. You can use the
|
|
209
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
209
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
210
210
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
211
211
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
212
212
|
* provided, Telnyx applies the default model.
|
|
@@ -391,7 +391,7 @@ export interface VersionUpdateParams {
|
|
|
391
391
|
/**
|
|
392
392
|
* Body param: ID of the model to use when `external_llm` is not set. You can use
|
|
393
393
|
* the
|
|
394
|
-
* [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
|
|
394
|
+
* [Get models API](https://developers.telnyx.com/api-reference/openai-chat/get-available-models-openai-compatible)
|
|
395
395
|
* to see available models. If `external_llm` is provided, the assistant uses
|
|
396
396
|
* `external_llm` instead of this field. If neither `model` nor `external_llm` is
|
|
397
397
|
* provided, Telnyx applies the default model.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.60.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.60.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.60.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.60.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|