plivo 4.54.0 → 4.55.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/plivo/resources/campaign.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: 687519bcd445f8909d8b6c66274835a0d4360255
|
|
4
|
+
data.tar.gz: 8ad5b5e0d9720a6fad71b07a6e510b6977044b23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7c835d0a71bac982b253c162fb0fe413cdb10a61b9346134f468fe35216adc57410679f59f2bb8c06d46e1ae6715c612f7a8a0a69dfdc45e2e8f7f7ad16c22c
|
|
7
|
+
data.tar.gz: c7e2c7d198ab2ba749e0fd419ff96ba109dc5676af7cead00694326d593bf4354407bce975661eec7f89c61d97c8daecf89977360617461d6299d8aa15b7e8c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [4.55.0](https://github.com/plivo/plivo-ruby/tree/v4.55.0) (2023-11-20)
|
|
4
|
+
**Feature - Added New Param 'registration_status' for Campaign List**
|
|
5
|
+
- Added new query param "registration_status" for campaign list
|
|
6
|
+
|
|
3
7
|
## [4.54.0](https://github.com/plivo/plivo-ruby/tree/v4.54.0) (2023-11-17)
|
|
4
8
|
**Feature - Verify Caller Id API support**
|
|
5
9
|
- API support for verifying, updating, getting and deleting caller IDs.
|
data/README.md
CHANGED
|
@@ -39,6 +39,7 @@ module Plivo
|
|
|
39
39
|
# @option options [String] :brand_id
|
|
40
40
|
# @option options [Status] :usecase
|
|
41
41
|
# @option options [String] :campaign_source
|
|
42
|
+
# @option options [String] :registration_status
|
|
42
43
|
# @option options [Status] :limit
|
|
43
44
|
# @option options [Status] :offset
|
|
44
45
|
# @return [Hash]
|
|
@@ -46,7 +47,7 @@ module Plivo
|
|
|
46
47
|
return perform_list_without_object if options.nil?
|
|
47
48
|
|
|
48
49
|
params = {}
|
|
49
|
-
%i[usecase brand_id campaign_source limit offset].each do |param|
|
|
50
|
+
%i[usecase brand_id campaign_source limit offset registration_status].each do |param|
|
|
50
51
|
if options.key?(param) && valid_param?(param, options[param],
|
|
51
52
|
[String, Integer], true)
|
|
52
53
|
params[param] = options[param]
|
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.55.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-
|
|
11
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|