Skip to content

Commit

Permalink
Merge pull request #350 from plivo/VT-8223
Browse files Browse the repository at this point in the history
Added changes for single party sesion.
  • Loading branch information
manjunath-plivo authored Sep 30, 2024
2 parents 0c13447 + 94e37ea commit 7ac7020
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## [4.66.0](https://github.com/plivo/plivo-php/tree/v4.66.0)(2024-09-30)
**Feature - Adding new param support for Number Masking session with single party **
- Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session

## [4.65.3](https://github.com/plivo/plivo-php/tree/v4.65.3)(2024-09-06)
**Feature - Adding more attribute on mdr object**
- Added `message_sent_time`, `message_updated_time` and `error-message` on get and list Message API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ function __construct(BaseClient $plivoClient, $authId)
* + [string] UnknownCallerPlay - Sound url to play for unknown caller.
* + [string] SubAccount - SubAccount to create session.
* + [bool] GeoMatch - GeoMatch to filter no.
* + [boolean] ForcePinAuthentication - Specifies the cool-off period for reallocating the number to a new session. Must be a positive integer between 0 and 3600.
* + [number] VirtualNumberCooloffPeriod - Indicates if PIN is needed, even from the registered mobile number.
* + [boolean] CreateSessionWithSingleParty - Indicates if a session requires one party. Either first_party or second_party is mandatory.
* @return JSON output
* @throws PlivoValidationException,PlivoResponseException
Expand Down
4 changes: 2 additions & 2 deletions src/Plivo/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ class Version
/**
* @const int PHP helper library minor version number
*/
const MINOR = 65;
const MINOR = 66;

/**
* @const int PHP helper library patch number
*/

const PATCH = 3;
const PATCH = 0;

/**
* @return string
Expand Down

0 comments on commit 7ac7020

Please sign in to comment.