Skip to content

Commit

Permalink
change intentDetectionConfidence to Float
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Jackson committed Nov 14, 2018
1 parent 39ad538 commit da98001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
21 changes: 2 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
group 'com.ticketmaster.actions'
version '2.0.2'
version '2.0.4'

apply plugin: 'idea'
idea {
Expand Down Expand Up @@ -46,17 +45,8 @@ buildscript {
}
}

<<<<<<< Updated upstream
ext {
sdkVersion = '2.0.2-alpha' //version of deployed artifacts
=======
<<<<<<< Updated upstream
repositories {
mavenCentral()
=======
ext {
sdkVersion = '2.0.2' //version of deployed artifacts
>>>>>>> Stashed changes
sdkVersion = '2.0.4' //version of deployed artifacts
nodeVersion = '8.11.1'
qunitVersion = '2.6.0'
libraries = [
Expand All @@ -69,13 +59,6 @@ ext {
kotlin_test_js : "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion",
kotlin_test_junit : "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion",
]
<<<<<<< Updated upstream
=======
>>>>>>> Stashed changes
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
>>>>>>> Stashed changes
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ data class GoogleCloudDialogflowV2QueryResult(
var webhookPayload: ApiClientObjectMap<Any>? = null,
var outputContexts: MutableList<GoogleCloudDialogflowV2Context>? = null,
var intent: GoogleCloudDialogflowV2Intent? = null,
var intentDetectionConfidence: Int? = null,
var intentDetectionConfidence: Float? = null,
var diagnosticInfo: ApiClientObjectMap<Any>? = null
)

Expand Down

0 comments on commit da98001

Please sign in to comment.