plivo 4.59.0 → 4.59.1
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 -2
- data/README.md +1 -1
- data/lib/plivo/resources/applications.rb +6 -0
- 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: 830b58426eca123ba6acfbf633c5dd9805eff59b
|
|
4
|
+
data.tar.gz: 4734637d968ee1291671b965cb9b4ddc52c40977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eab58b86507e16dffe49cb6791b62705764f7c2b48866a8723dc47f213bc202e2bd7d72eaab97c4e163ca499a5b267bc70fc9fc3f391aab521c75b5b47f6b264
|
|
7
|
+
data.tar.gz: ff2fe6eece9ac575bb87e00bf90998d5128e5e5ea1806cbe082d5c46e59754046554527b6cbc27d50f90a08bae57947dc89cb44a642a428fdadeaead201de390
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [4.59.1](https://github.com/plivo/plivo-ruby/tree/v4.59.1) (2023-05-31)
|
|
4
|
+
**Feature - Adding filtering support for List Application API**
|
|
5
|
+
- Added new filter param `app_name` in list application api
|
|
6
|
+
|
|
3
7
|
## [4.59.0)](https://github.com/plivo/plivo-go/tree/v4.59.0) (2024-05-31)
|
|
4
8
|
**Feature - SubAccount and GeoMatch**
|
|
5
9
|
- Added sub_account and geo_match support
|
|
@@ -8,13 +12,11 @@
|
|
|
8
12
|
**Feature - Adding support for location whatsapp messages**
|
|
9
13
|
- Added new param `location` to [send message API](https://www.plivo.com/docs/sms/api/message#send-a-message) to support location `whatsapp` messages
|
|
10
14
|
- Added new param `location` in templates to support location based templated messages
|
|
11
|
-
-
|
|
12
15
|
|
|
13
16
|
## [4.57.0](https://github.com/plivo/plivo-ruby/tree/v4.57.0) (2023-05-07)
|
|
14
17
|
**Feature - Adding support for interactive whatsapp messages**
|
|
15
18
|
- Added new param `interactive` to [send message API](https://www.plivo.com/docs/sms/api/message#send-a-message) to support interactive `whatsapp` messages
|
|
16
19
|
|
|
17
|
-
|
|
18
20
|
## [4.56.0](https://github.com/plivo/plivo-ruby/tree/v4.56.0) (2023-04-18)
|
|
19
21
|
**Feature - Support for dynamic button components when sending a templated WhatsApp message**
|
|
20
22
|
- Added new param `payload` in templates to support dynamic payload in templates
|
data/README.md
CHANGED
|
@@ -177,6 +177,7 @@ module Plivo
|
|
|
177
177
|
# Lists all applications
|
|
178
178
|
# @param [Hash] options
|
|
179
179
|
# @option options [String] :subaccount
|
|
180
|
+
# @option options [String] :app_name
|
|
180
181
|
# @option options [Int] :offset
|
|
181
182
|
# @option options [Int] :limit
|
|
182
183
|
# @return [Hash]
|
|
@@ -190,6 +191,11 @@ module Plivo
|
|
|
190
191
|
params[:subaccount] = options[:subaccount]
|
|
191
192
|
end
|
|
192
193
|
|
|
194
|
+
if options.key?(:app_name) &&
|
|
195
|
+
valid_param?(:app_name, options[:app_name], [String, Symbol], true)
|
|
196
|
+
params[:app_name] = options[:app_name]
|
|
197
|
+
end
|
|
198
|
+
|
|
193
199
|
%i[offset limit].each do |param|
|
|
194
200
|
if options.key?(param) && valid_param?(param, options[param],
|
|
195
201
|
[Integer, Integer], true)
|
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.59.
|
|
4
|
+
version: 4.59.1
|
|
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: 2024-
|
|
11
|
+
date: 2024-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|