Skip to content

Commit

Permalink
Added locale param support for list and get session
Browse files Browse the repository at this point in the history
  • Loading branch information
rajneeshkatkam-plivo committed Jul 9, 2024
1 parent 1015fea commit e7005c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Change Log

## [v4.68.0](https://github.com/plivo/plivo-node/tree/v4.68.0) (2024-06-22)
**Feature - Locale param supported for Create Verify Session API's**
- Added new param 'locale' to Create Session API
**Feature - Locale param supported for Create, Get and List Verify Session API's**
- Added new param 'locale' to create, get and list Session API

## [v4.67.0](https://github.com/plivo/plivo-node/tree/v4.67.0) (2024-05-22)
**Feature - Adding support for participant level recording**
Expand Down
2 changes: 2 additions & 0 deletions lib/resources/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export class SessionGetResponse {
this.alias = params.alias;
this.recipient = params.recipient;
this.channel = params.channel;
this.locale = params.locale;
this.status = params.status;
this.count = params.count;
this.requestor_ip = params.requestorIp;
Expand All @@ -74,6 +75,7 @@ export class SessionListResponse {
this.recipient = params.recipient;
this.alias = params.alias;
this.channel = params.channel;
this.locale = params.locale;
this.status = params.status;
this.count = params.count;
this.requestor_ip = params.requestorIp;
Expand Down

0 comments on commit e7005c7

Please sign in to comment.