plivo 4.31.0 → 4.32.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07b7ef59fbe4a5f72cacee5122fd520029f138f8
4
- data.tar.gz: f58b32cf0e4934c03a4dcdb4e19cc1d967c3a07f
3
+ metadata.gz: a540420aad039e41548956a8856e0bfed8fcb5f5
4
+ data.tar.gz: 935fa335035221133395540a93e100a1908ce444
5
5
  SHA512:
6
- metadata.gz: 8a496f01830a35eb7c96e90e96aecd2373b46beab4ba248c664c95dc69bc8b1aa3b336f48ec656426b5096fa4c707f499db27e1858ac5438d4797872b0eb4e3b
7
- data.tar.gz: 76531fac18162b2b38ef2d0070b29871037518406a5ee69c17abf7c97e354dfd6c8d4496a82c410bce8495446cf0e56c7d66d875ac648a553d7d81b8f81e7a5e
6
+ metadata.gz: 15adc0fdd79161124b3a702fe2c5ddf35fbea18c4f4f4185bae70a782ed80024eda47f0991989991cbd61f00eab5f281c66b48e21f326eb29ffdaa83bf78d52a
7
+ data.tar.gz: 042cff1fccd58da07d03d538427cf40ad38c53ac774fa6f9fb17c7d3dc56e14c973c93ca74a8cc55dd92c8d4d4bdf7c15e9bb6a4f0f8b63a666b8b68d49559cd
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Change Log
2
+ ## [4.32.0](https://github.com/plivo/plivo-ruby/tree/v4.32.0) (2022-11-03)
3
+ **10DLC: Brand Usecase API**
4
+ - Added Brand Usecase API
5
+
2
6
  ## [4.31.0](https://github.com/plivo/plivo-ruby/tree/v4.31.0) (2022-10-14)
3
7
  **Adding new attributes to Account PhoneNumber object**
4
8
  -Added 3 new keys to AccountPhoneNumber object:`tendlc_registration_status`, `tendlc_campaign_id` and `toll_free_sms_verification` (https://www.plivo.com/docs/numbers/api/account-phone-number#the-accountphonenumber-object)
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.31.0'
12
+ gem 'plivo', '>= 4.32.0'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -76,6 +76,15 @@ module Plivo
76
76
  end
77
77
  perform_create(options)
78
78
  end
79
+
80
+ ##
81
+ # Get BrandUsecase
82
+ # @param [String] brand_id
83
+ def get_usecases(brand_id)
84
+ valid_param?(:brand_id, brand_id, [String, Symbol], true)
85
+ identifier = brand_id + '/usecases'
86
+ perform_action_with_identifier(identifier, 'GET', nil)
87
+ end
79
88
  end
80
89
  end
81
90
  end
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.31.0".freeze
2
+ VERSION = "4.32.0".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.31.0
4
+ version: 4.32.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: 2022-10-14 00:00:00.000000000 Z
11
+ date: 2022-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday