plivo 4.63.1 → 4.63.2
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 +7 -0
- data/lib/plivo/resources/numbers.rb +1 -0
- data/lib/plivo/resources/profile.rb +1 -1
- data/lib/plivo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53d2a335b1789eb8331f8aab78e2d84b40e0efe6d03d73f8588a36feae7ff90c
|
|
4
|
+
data.tar.gz: 59322ce534f480fd48ae3d3056f1c1349982a27c101818f26ace681961f32564
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16d1cd343dbb9c7dc3009a41ac5d1068129b6178deb77174e2a18bf34d8a8683330c9f8b4f92d7260a5b12d90d6c7e2edca9e2bbba5e986fa9480678cce524f7
|
|
7
|
+
data.tar.gz: '09295b7f0a2b821f1d72afd2e36421da7e4da19a68931c768ac20f662892b5a00f47bb278baab42942cd7db709f9d004625128346cec94426800a2541a9e8403'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [4.63.2](https://github.com/plivo/plivo-ruby/tree/v4.63.2) (2026-05-26)
|
|
4
|
+
**Feature - Profile API DBA field support**
|
|
5
|
+
- Added Doing Business As (DBA) field support to Profile API
|
|
6
|
+
|
|
7
|
+
**Feature - Expose sub_account_name on Number resource**
|
|
8
|
+
- Added `sub_account_name` to `Number#to_s` output, surfacing the subaccount's name alongside the existing `sub_account` (auth_id) on rented number listing and get APIs
|
|
9
|
+
|
|
3
10
|
## [4.63.1](https://github.com/plivo/plivo-ruby/tree/v4.63.1) (2026-04-16)
|
|
4
11
|
**Bug Fix - PhoneNumber Compliance API response mapping**
|
|
5
12
|
- Fixed GET single compliance to unwrap `compliance` wrapper key from API response, making all fields directly accessible on the resource object
|
|
@@ -83,7 +83,7 @@ module Plivo
|
|
|
83
83
|
|
|
84
84
|
##
|
|
85
85
|
# Update a Profile
|
|
86
|
-
# {'address': {}, 'authorized_contact': {}, 'entity_type':'', 'vertical': '', 'company_name': '', 'website':'', 'business_contact_email':''}
|
|
86
|
+
# {'address': {}, 'authorized_contact': {}, 'entity_type':'', 'vertical': '', 'company_name': '', 'website':'', 'business_contact_email':'', 'doing_business_as':''}
|
|
87
87
|
def update(profile_uuid, options = nil)
|
|
88
88
|
valid_param?(:options, options, Hash, true)
|
|
89
89
|
perform_action_with_identifier(profile_uuid, "POST", options)
|
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.63.
|
|
4
|
+
version: 4.63.2
|
|
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: 2026-
|
|
11
|
+
date: 2026-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|