Skip to content

Commit

Permalink
Version Update
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Apr 7, 2024
1 parent a47d497 commit d764e60
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- JanusMessageSDK (0.7.30)
- JanusMessageSDK (0.7.31)

DEPENDENCIES:
- JanusMessageSDK (from `../shared`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../shared"

SPEC CHECKSUMS:
JanusMessageSDK: 1d23cf4780be6e12d66c3ac98e323578fad833ed
JanusMessageSDK: 016744db8719a75e3df201a0688095c4e0573acf

PODFILE CHECKSUM: 1e004fa731d7a04f3d9d5649deb94144c69121d3

Expand Down
2 changes: 1 addition & 1 deletion iosApp/Pods/Local Podspecs/JanusMessageSDK.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions iosApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shared/JanusMessageSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'JanusMessageSDK'
spec.version = '0.7.30'
spec.version = '0.7.31'
spec.homepage = 'https://github.com/team-telnyx/janus-message-sdk'
spec.source = { :http=> ''}
spec.authors = { 'Telnyx' => '[email protected]' }
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ kotlin {
iosSimulatorArm64()


version = "0.7.30"
version = "0.7.31"

cocoapods {
summary = "Janus-message-sdk"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ data class Accept(
}

@Serializable
data class Call(
data class JanusCall(
@SerialName("body")
val body: CallBody,
@SerialName("jsep")
Expand All @@ -60,7 +60,7 @@ data class Call(
@SerialName("handle_id")
var handleId: Long = 0

fun default(handleId: Long, sessionId: Long): Call {
fun default(handleId: Long, sessionId: Long): JanusCall {
return this.apply {
this.handleId = handleId
janus = Janus.MESSAGE.value
Expand Down Expand Up @@ -90,10 +90,10 @@ class CallBody() {

@SerialName("autoaccept_reinvites")
var autoacceptReinvites: Boolean = false
fun default(userName: String,janusRequest:String = Janus.CALL.value): CallBody {
fun default(userName: String): CallBody {
return CallBody().apply {
this.autoacceptReinvites = false
request = janusRequest
request = Janus.CALL.value
uri = "sip:$userName@sipdev.telnyx.com"
}
}
Expand Down

0 comments on commit d764e60

Please sign in to comment.