plivo 4.39.0 → 4.41.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 +15 -0
- data/README.md +1 -1
- data/lib/plivo/resources/calls.rb +2 -1
- data/lib/plivo/resources/messages.rb +2 -1
- 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: 3cf9bd895d56db51752dbe68b26be13aff5698e7
|
4
|
+
data.tar.gz: c04de3751e88af3dfdd33ecd2d59302df6b0c75f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13533f5616a94d8fd1dd95b838f057afa397f3d7a0cdab031c059e25d61696e66c021cc02149089da0131a0a516e03d175a78ce57b63c751decfe89e4a9721da
|
7
|
+
data.tar.gz: 4f51b9ab0c06f30fd897a91adce01711ba55e5e04f5443be7035e6273d97dbd4c32093b71cef8929fc5424032d8d48eccf9860b9384cd08509c59f4f983cf86a
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,13 @@
|
|
1
1
|
# Change Log
|
2
|
+
|
3
|
+
## [4.41.0](https://github.com/plivo/plivo-ruby/tree/v4.41.0) (2023-04-25)
|
4
|
+
**Adding new attribute - 'replaced_sender' in Get Message and List Message APIs**
|
5
|
+
- Add `replaced_sender` 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)
|
6
|
+
|
7
|
+
## [4.40.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-04-11)
|
8
|
+
**Feature - Added New Param 'source_ip' in GetCall and ListCalls**
|
9
|
+
- Add `source_ip` to the response for the [retrieve a call details API](https://www.plivo.com/docs/voice/api/call#retrieve-a-call) and the [retreive all call details API](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls)
|
10
|
+
|
2
11
|
## [4.39.0](https://github.com/plivo/plivo-ruby/tree/v4.39.0) (2023-03-17)
|
3
12
|
**Adding new attribute - 'created_at' in List Profiles, Get Profile, List Brands, Get Brand, List Campaigns and Get Campaign APIs**
|
4
13
|
- dding new attribute - 'created_at' in List Profiles, Get Profile, List Brands, Get Brand, List Campaigns and Get Campaign APIs
|
@@ -19,6 +28,12 @@
|
|
19
28
|
- Added new fields on MDR object response
|
20
29
|
|
21
30
|
|
31
|
+
|
32
|
+
## [4.37.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-02-06)
|
33
|
+
**Feature - Added New Param 'source_ip' in GetCall and ListCalls**
|
34
|
+
- Add `source_ip` to the response for the [retrieve a call details API](https://www.plivo.com/docs/voice/api/call#retrieve-a-call) and the [retreive all call details API](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls)
|
35
|
+
|
36
|
+
|
22
37
|
## [4.36.0](https://github.com/plivo/plivo-ruby/tree/v4.36.0) (2022-01-25)
|
23
38
|
**Adding new attribute - 'requester_ip' in Get Message and List Mssage APIs**
|
24
39
|
- Add `requester_ip` 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)
|
data/README.md
CHANGED
@@ -232,7 +232,8 @@ module Plivo
|
|
232
232
|
direction: @direction,
|
233
233
|
caller_name: @caller_name,
|
234
234
|
stir_verification: @stir_verification,
|
235
|
-
stir_attestation: @stir_attestation
|
235
|
+
stir_attestation: @stir_attestation,
|
236
|
+
source_ip: @source_ip
|
236
237
|
}
|
237
238
|
call_details = call_details.select {|k, v| !v.nil? }
|
238
239
|
call_details.to_s
|
@@ -35,7 +35,8 @@ module Plivo
|
|
35
35
|
destination_country_iso2: @destination_country_iso2,
|
36
36
|
tendlc_registration_status: @tendlc_registration_status,
|
37
37
|
requester_ip: @requester_ip,
|
38
|
-
is_domestic: @is_domestic
|
38
|
+
is_domestic: @is_domestic,
|
39
|
+
replaced_sender: @replaced_sender
|
39
40
|
}.to_s
|
40
41
|
end
|
41
42
|
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.41.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-03
|
11
|
+
date: 2023-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|