diff --git a/CHANGELOG.md b/CHANGELOG.md index 81b1aeb..6aa4a27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [4.62.2](https://github.com/plivo/plivo-ruby/tree/v4.62.2) (2025-10-17) +**Feature - Regulatory Compliance: Add rejection_reason to Compliance Application** +- Added `rejection_reason` field to Compliance Application response object. + ## [4.62.1](https://github.com/plivo/plivo-ruby/tree/v4.62.1) (2025-08-06) **Feature - Expanded Media Type Support for Media Upload** - Added support for additional media file formats: GIF, MP3, WAV, OGG, 3GPP, 3GPP2, VCARD, CSV, XLS, XLSX, and PLAIN text files diff --git a/lib/plivo/resources/regulatory_compliance.rb b/lib/plivo/resources/regulatory_compliance.rb index 8b3bc36..f55ed6c 100644 --- a/lib/plivo/resources/regulatory_compliance.rb +++ b/lib/plivo/resources/regulatory_compliance.rb @@ -453,6 +453,7 @@ def to_s country_iso2: @country_iso2, number_type: @number_type, compliance_requirement_id: @compliance_requirement_id, + rejection_reason: @rejection_reason, documents: @documents, }.delete_if { |key, value| value.nil? }.to_s end diff --git a/lib/plivo/version.rb b/lib/plivo/version.rb index 0824346..5367ae5 100644 --- a/lib/plivo/version.rb +++ b/lib/plivo/version.rb @@ -1,3 +1,3 @@ module Plivo - VERSION = "4.62.1".freeze + VERSION = "4.62.2".freeze end