telnyx 5.101.0 → 5.102.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3ac66f76ef028ca75bf4d57a3b9a108507b27fca075213e318cb7b69701b13c
|
|
4
|
+
data.tar.gz: '01193490b16b460e0a9666de198ca6c54ea3e62d62d531723ca4657d67cfb4a0'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d3baa37bd7fba635b62f7733ccf23cd27b410e86e83845ffc70a52e315e98a7f479800ec669821b55fe2e8ff6ccc7bd6302659980f7d6a341ef7568629303b6
|
|
7
|
+
data.tar.gz: d782dc58f2a5ac6162983918f9bd0e488f54bec370bd4cad57122bf8a5e801fc31d071705211dbeed78cb9a8a6fdc64099ed09d5150cdbc89a53692c6e6ec073
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.102.0 (2026-05-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.101.0...v5.102.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.101.0...v5.102.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* MSG-9000: document duplicate-vetting rejection on order brand external vetting ([8322fc0](https://github.com/team-telnyx/telnyx-ruby/commit/8322fc0a1681b8fd59897138082a176b1847d65b))
|
|
10
|
+
|
|
3
11
|
## 5.101.0 (2026-05-07)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.100.0...v5.101.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.100.0...v5.101.0)
|
data/README.md
CHANGED
|
@@ -60,7 +60,11 @@ module Telnyx
|
|
|
60
60
|
)
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
-
# Order new external vetting for a brand
|
|
63
|
+
# Order new external vetting for a brand.
|
|
64
|
+
#
|
|
65
|
+
# Duplicate orders for the same `evpId` and `vettingClass` return `400` with code
|
|
66
|
+
# `10012` if a successful vetting exists within the last 180 days, or one is
|
|
67
|
+
# currently being processed. Failed vettings can be retried immediately.
|
|
64
68
|
#
|
|
65
69
|
# @overload order(brand_id, evp_id:, vetting_class:, request_options: {})
|
|
66
70
|
#
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -48,7 +48,11 @@ module Telnyx
|
|
|
48
48
|
)
|
|
49
49
|
end
|
|
50
50
|
|
|
51
|
-
# Order new external vetting for a brand
|
|
51
|
+
# Order new external vetting for a brand.
|
|
52
|
+
#
|
|
53
|
+
# Duplicate orders for the same `evpId` and `vettingClass` return `400` with code
|
|
54
|
+
# `10012` if a successful vetting exists within the last 180 days, or one is
|
|
55
|
+
# currently being processed. Failed vettings can be retried immediately.
|
|
52
56
|
sig do
|
|
53
57
|
params(
|
|
54
58
|
brand_id: String,
|