telnyx 6.36.0 → 6.38.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 +16 -0
- package/package.json +1 -1
- package/resources/texml/accounts/calls/calls.d.mts +613 -208
- package/resources/texml/accounts/calls/calls.d.mts.map +1 -1
- package/resources/texml/accounts/calls/calls.d.ts +613 -208
- package/resources/texml/accounts/calls/calls.d.ts.map +1 -1
- package/resources/texml/accounts/calls/calls.js +1 -5
- package/resources/texml/accounts/calls/calls.js.map +1 -1
- package/resources/texml/accounts/calls/calls.mjs +1 -5
- package/resources/texml/accounts/calls/calls.mjs.map +1 -1
- package/resources/wireless-blocklists.d.mts +4 -6
- package/resources/wireless-blocklists.d.mts.map +1 -1
- package/resources/wireless-blocklists.d.ts +4 -6
- package/resources/wireless-blocklists.d.ts.map +1 -1
- package/resources/wireless-blocklists.js +5 -3
- package/resources/wireless-blocklists.js.map +1 -1
- package/resources/wireless-blocklists.mjs +5 -3
- package/resources/wireless-blocklists.mjs.map +1 -1
- package/src/resources/texml/accounts/calls/calls.ts +704 -209
- package/src/resources/wireless-blocklists.ts +5 -7
- 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,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 6.38.0 (2026-04-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v6.37.0...v6.38.0](https://github.com/team-telnyx/telnyx-node/compare/v6.37.0...v6.38.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* CW-3815 fix PATCH /wirelss_blocklists/{id} endpoint ([b14596b](https://github.com/team-telnyx/telnyx-node/commit/b14596b1ef18a5455baea5997e62d954322d10d8))
|
|
10
|
+
|
|
11
|
+
## 6.37.0 (2026-04-08)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v6.36.0...v6.37.0](https://github.com/team-telnyx/telnyx-node/compare/v6.36.0...v6.37.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Add oneOf constraint for Url/Texml mutual exclusivity in InitiateCallRequest ([1d335fd](https://github.com/team-telnyx/telnyx-node/commit/1d335fdd0a45c498a9d1452e66f74da7e19caa65))
|
|
18
|
+
|
|
3
19
|
## 6.36.0 (2026-04-08)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v6.35.0...v6.36.0](https://github.com/team-telnyx/telnyx-node/compare/v6.35.0...v6.36.0)
|
package/package.json
CHANGED