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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d0565ad502d92b20824c8f478ffbb7b4ad518a5
4
- data.tar.gz: 1deb5ee22ac0cfadd0ccf3bd9000d348fd3d1b32
3
+ metadata.gz: 830b58426eca123ba6acfbf633c5dd9805eff59b
4
+ data.tar.gz: 4734637d968ee1291671b965cb9b4ddc52c40977
5
5
  SHA512:
6
- metadata.gz: 9c6e100330904eaa6407b9b6064ac8d98e2037ecc9547c8725b66e499b80cf18e3f15b62bf76a0349c7fbe70ef21d2303962a4a65ee4d258cac6bd0f4e315d8e
7
- data.tar.gz: f2c4ec8bd749f91da845c7041380fc54f55e7e3ffb88380a74764502152833b4b462f87f11d034f436c50a44829d3173a8404d21cdcff016443bcdc26130ce77
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
@@ -9,7 +9,7 @@ The Plivo Ruby SDK makes it simpler to integrate communications into your Ruby a
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'plivo', '>= 4.59.0'
12
+ gem 'plivo', '>= 4.59.1'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.59.0".freeze
2
+ VERSION = "4.59.1".freeze
3
3
  end
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.0
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-05-31 00:00:00.000000000 Z
11
+ date: 2024-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday