plivo 4.37.0 → 4.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/plivo/resources/messages.rb +3 -2
- data/lib/plivo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cea73f6d29068d7cbcf857f4f654680ec083eba
|
4
|
+
data.tar.gz: e112359a5779c97c8c1928898c2c5740bd8e9dd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26bf81a3368e7500fa1021fa590386b8ce4615baccbf48e1f7836a35588c0691246504f3719918c1e2a53f44338de39b971f3f786cbb082e7d9d834a2e74424e
|
7
|
+
data.tar.gz: 3d9eb2920f5c272f2da240dcc21556017f3ab62a864f73af93c5ed5137ca96c3ac6db6d9add1799ab76170eb43d685b51ac9e2219cb90db27adb740ab390322f
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# Change Log
|
2
|
+
## [4.38.0](https://github.com/plivo/plivo-ruby/tree/v4.38.0) (2023-03-03)
|
3
|
+
**Adding new attribute - 'is_domestic' in Get Message and List Message APIs**
|
4
|
+
- Add `is_domestic` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message)
|
5
|
+
|
6
|
+
## [4.37.1](https://github.com/plivo/plivo-ruby/tree/v4.37.1) (2023-02-23)
|
7
|
+
**Bug fix on Messaging object **
|
8
|
+
-
|
2
9
|
## [4.37.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-02-23)
|
3
10
|
**Feature - Enhance MDR filtering capabilities **
|
4
11
|
- Added new fields on MDR object response
|
data/README.md
CHANGED
@@ -33,8 +33,9 @@ module Plivo
|
|
33
33
|
units: @units,
|
34
34
|
tendlc_campaign_id: @tendlc_campaign_id,
|
35
35
|
destination_country_iso2: @destination_country_iso2,
|
36
|
-
tendlc_registration_status: @tendlc_registration_status
|
37
|
-
requester_ip: @requester_ip
|
36
|
+
tendlc_registration_status: @tendlc_registration_status,
|
37
|
+
requester_ip: @requester_ip,
|
38
|
+
is_domestic: @is_domestic
|
38
39
|
}.to_s
|
39
40
|
end
|
40
41
|
end
|
data/lib/plivo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plivo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Plivo SDKs Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|