Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahroz16 committed Oct 25, 2024
1 parent b5db9da commit 3208711
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ enum class GistEnvironment : GistEnvironmentEndpoints {
DEV {
override fun getGistQueueApiUrl() = "https://gist-queue-consumer-api.cloud.dev.gist.build"
override fun getEngineApiUrl() = "https://engine.api.dev.gist.build"
override fun getGistRendererUrl() = "https://renderer.gist.build/beta"
override fun getGistRendererUrl() = "https://renderer.gist.build/3.0"

Check warning on line 13 in messaginginapp/src/main/java/io/customer/messaginginapp/gist/GistEnvironment.kt

View check run for this annotation

Codecov / codecov/patch

messaginginapp/src/main/java/io/customer/messaginginapp/gist/GistEnvironment.kt#L13

Added line #L13 was not covered by tests
},

LOCAL {
Expand All @@ -22,6 +22,6 @@ enum class GistEnvironment : GistEnvironmentEndpoints {
PROD {
override fun getGistQueueApiUrl() = "https://gist-queue-consumer-api.cloud.gist.build"
override fun getEngineApiUrl() = "https://engine.api.gist.build"
override fun getGistRendererUrl() = "https://renderer.gist.build/2.0"
override fun getGistRendererUrl() = "https://renderer.gist.build/3.0"

Check warning on line 25 in messaginginapp/src/main/java/io/customer/messaginginapp/gist/GistEnvironment.kt

View check run for this annotation

Codecov / codecov/patch

messaginginapp/src/main/java/io/customer/messaginginapp/gist/GistEnvironment.kt#L25

Added line #L25 was not covered by tests
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ internal class EngineWebView @JvmOverloads constructor(

it.webViewClient = object : WebViewClient() {

Check warning on line 97 in messaginginapp/src/main/java/io/customer/messaginginapp/gist/presentation/engine/EngineWebView.kt

View check run for this annotation

Codecov / codecov/patch

messaginginapp/src/main/java/io/customer/messaginginapp/gist/presentation/engine/EngineWebView.kt#L97

Added line #L97 was not covered by tests
override fun onPageFinished(view: WebView, url: String?) {
// post message to webview with the configuration data so that the message can be rendered
val script = """
window.postMessage($jsonString, '*');
""".trim()
Expand Down

0 comments on commit 3208711

Please sign in to comment.