Skip to content

Commit 625dadd

Browse files
authored
Merge pull request #15 from statsig-io/exposeentity
Add entity type to APIConfig
2 parents 0c965d8 + 6d9e271 commit 625dadd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RELEASE_SIGNING_ENABLED=true
66

77
GROUP=com.statsig.serversdk
88
POM_ARTIFACT_ID=serversdk
9-
VERSION_NAME=1.2.2
9+
VERSION_NAME=1.2.3
1010

1111
POM_NAME=Statsig Server SDK
1212
POM_DESCRIPTION=A feature gating and a/b testing library for statsig

src/main/kotlin/com/statsig/sdk/DataTypes.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ internal data class APIConfig(
2121
@SerializedName("enabled") val enabled: Boolean,
2222
@SerializedName("rules") val rules: Array<APIRule>,
2323
@SerializedName("idType") val idType: String,
24+
@SerializedName("entity") val entity: String,
2425
@SerializedName("explicitParameters") val explicitParameters: Array<String>?,
2526
)
2627

src/main/kotlin/com/statsig/sdk/StatsigMetadata.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package com.statsig.sdk
22

33
import java.util.Properties
44

5-
private const val VERSION = "1.2.2"
5+
private const val VERSION = "1.2.3"
66

77
internal class StatsigMetadata {
88
companion object {

0 commit comments

Comments
 (0)