File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/livekit-server-sdk/src Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' livekit-server-sdk ' : patch
3
+ ---
4
+
5
+ rename enableKrisp -> krispEnabled for consistency
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export interface CreateSipParticipantOptions {
123
123
hidePhoneNumber ?: boolean ;
124
124
ringingTimeout ?: number ; // Duration in seconds
125
125
maxCallDuration ?: number ; // Duration in seconds
126
- enableKrisp ?: boolean ;
126
+ krispEnabled ?: boolean ;
127
127
}
128
128
129
129
export interface TransferSipParticipantOptions {
@@ -438,7 +438,7 @@ export class SipClient extends ServiceBase {
438
438
maxCallDuration : opts . maxCallDuration
439
439
? new Duration ( { seconds : BigInt ( opts . maxCallDuration ) } )
440
440
: undefined ,
441
- krispEnabled : opts . enableKrisp ,
441
+ krispEnabled : opts . krispEnabled ,
442
442
} ) . toJson ( ) ;
443
443
444
444
const data = await this . rpc . request (
You can’t perform that action at this time.
0 commit comments