Skip to content

Commit ffec657

Browse files
authored
fix: Add audiences to ProjectConfig (#137)
* Update wasm to 1.16.1 * Add audiences to ProjectConfig
1 parent 77523a7 commit ffec657

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ sourceCompatibility = JavaVersion.VERSION_11
112112
targetCompatibility = JavaVersion.VERSION_11
113113

114114
def wasmResourcePath = "$projectDir/src/main/resources"
115-
def wasmVersion = "1.11.3"
115+
def wasmVersion = "1.16.1"
116116
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
117117
task downloadDVCBucketingWASM(type: Download) {
118118
src wasmUrl

src/main/java/com/devcycle/sdk/server/common/model/ProjectConfig.java

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public class ProjectConfig {
2525
@Schema(description = "List of Variables in this Project")
2626
private Object[] variables;
2727

28+
@Schema(description = "Audiences in this Project indexed by ID")
29+
private Object audiences;
30+
2831
@Schema(description = "Variable Hashes for all Variables in this Project")
2932
private Object variableHashes;
3033
}

0 commit comments

Comments
 (0)