Skip to content

Commit da98001

Browse files
author
Patrick Jackson
committed
change intentDetectionConfidence to Float
1 parent 39ad538 commit da98001

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

build.gradle

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
21
allprojects {
32
group 'com.ticketmaster.actions'
4-
version '2.0.2'
3+
version '2.0.4'
54

65
apply plugin: 'idea'
76
idea {
@@ -46,17 +45,8 @@ buildscript {
4645
}
4746
}
4847

49-
<<<<<<< Updated upstream
5048
ext {
51-
sdkVersion = '2.0.2-alpha' //version of deployed artifacts
52-
=======
53-
<<<<<<< Updated upstream
54-
repositories {
55-
mavenCentral()
56-
=======
57-
ext {
58-
sdkVersion = '2.0.2' //version of deployed artifacts
59-
>>>>>>> Stashed changes
49+
sdkVersion = '2.0.4' //version of deployed artifacts
6050
nodeVersion = '8.11.1'
6151
qunitVersion = '2.6.0'
6252
libraries = [
@@ -69,13 +59,6 @@ ext {
6959
kotlin_test_js : "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion",
7060
kotlin_test_junit : "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion",
7161
]
72-
<<<<<<< Updated upstream
73-
=======
74-
>>>>>>> Stashed changes
75-
}
76-
dependencies {
77-
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
78-
>>>>>>> Stashed changes
7962
}
8063

8164
subprojects {

common/src/main/kotlin/actions/service/dialogflow/api/V2.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ data class GoogleCloudDialogflowV2QueryResult(
260260
var webhookPayload: ApiClientObjectMap<Any>? = null,
261261
var outputContexts: MutableList<GoogleCloudDialogflowV2Context>? = null,
262262
var intent: GoogleCloudDialogflowV2Intent? = null,
263-
var intentDetectionConfidence: Int? = null,
263+
var intentDetectionConfidence: Float? = null,
264264
var diagnosticInfo: ApiClientObjectMap<Any>? = null
265265
)
266266

0 commit comments

Comments
 (0)