From f22591e2f0bfe4f080993e3c608e869837486acd Mon Sep 17 00:00:00 2001 From: avinashp-plivo Date: Mon, 27 Jul 2026 12:20:58 +0530 Subject: [PATCH 1/3] feat(tollfree-verification): support 4 new optional Zipwhip TF fields Adds the following optional parameters to the toll-free verification create and update APIs: terms_and_conditions_link privacy_policy_link optin_message help_message All four are optional and backward compatible; existing callers are unaffected. Mirrors the corresponding porter API change. Co-Authored-By: Claude Opus 5 (1M context) --- .../TollfreeVerificationCreator.java | 40 ++++++++++++++ .../TollfreeVerificationUpdater.java | 40 ++++++++++++++ .../plivo/api/TollfreeVerificationTest.java | 55 +++++++++++++++++++ 3 files changed, 135 insertions(+) diff --git a/src/main/java/com/plivo/api/models/tollfree_verification/TollfreeVerificationCreator.java b/src/main/java/com/plivo/api/models/tollfree_verification/TollfreeVerificationCreator.java index e09a7386..a8eda207 100644 --- a/src/main/java/com/plivo/api/models/tollfree_verification/TollfreeVerificationCreator.java +++ b/src/main/java/com/plivo/api/models/tollfree_verification/TollfreeVerificationCreator.java @@ -16,6 +16,10 @@ public class TollfreeVerificationCreator extends Creator Date: Mon, 27 Jul 2026 13:27:34 +0530 Subject: [PATCH 2/3] chore: bump version to 5.50.0 and update changelog Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 4 ++++ src/main/resources/com/plivo/api/version.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d6087eb..69d6a07e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [5.50.0](https://github.com/plivo/plivo-java/tree/v5.50.0) (2026-07-27) +**Feature - Toll-free verification terms, privacy, opt-in and help fields** +- Added optional `termsAndConditionsLink`, `privacyPolicyLink`, `optinMessage` and `helpMessage` parameters to the toll-free verification create and update methods + ## [5.49.0](https://github.com/plivo/plivo-java/tree/v5.49.0) (2026-06-11) **Feature - complianceApplicationId on phone number buy** - Added an optional `complianceApplicationId` builder param to `PhoneNumberCreator`, serialized to the `compliance_application_id` wire param on phone number buy diff --git a/src/main/resources/com/plivo/api/version.txt b/src/main/resources/com/plivo/api/version.txt index 357e1c72..24091d30 100644 --- a/src/main/resources/com/plivo/api/version.txt +++ b/src/main/resources/com/plivo/api/version.txt @@ -1 +1 @@ -5.49.0 +5.50.0 From 5dd83dfd4cba01b2fe21bfab966baf6358d8a549 Mon Sep 17 00:00:00 2001 From: avinashp-plivo Date: Tue, 28 Jul 2026 12:27:35 +0530 Subject: [PATCH 3/3] chore: update release date to 2026-07-28 Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69d6a07e..2ab543dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [5.50.0](https://github.com/plivo/plivo-java/tree/v5.50.0) (2026-07-27) +## [5.50.0](https://github.com/plivo/plivo-java/tree/v5.50.0) (2026-07-28) **Feature - Toll-free verification terms, privacy, opt-in and help fields** - Added optional `termsAndConditionsLink`, `privacyPolicyLink`, `optinMessage` and `helpMessage` parameters to the toll-free verification create and update methods