Skip to content

Commit

Permalink
fix: Add audiences to ProjectConfig (#137)
Browse files Browse the repository at this point in the history
* Update wasm to 1.16.1

* Add audiences to ProjectConfig
  • Loading branch information
laurawarr authored Mar 19, 2024
1 parent 77523a7 commit ffec657
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11

def wasmResourcePath = "$projectDir/src/main/resources"
def wasmVersion = "1.11.3"
def wasmVersion = "1.16.1"
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
task downloadDVCBucketingWASM(type: Download) {
src wasmUrl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public class ProjectConfig {
@Schema(description = "List of Variables in this Project")
private Object[] variables;

@Schema(description = "Audiences in this Project indexed by ID")
private Object audiences;

@Schema(description = "Variable Hashes for all Variables in this Project")
private Object variableHashes;
}

0 comments on commit ffec657

Please sign in to comment.