Skip to content

Commit

Permalink
add enableAnonTracking flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hardikmashru committed May 3, 2024
1 parent 9e4515e commit 7c12efc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ts/IterableConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ class IterableConfig {
*/
encryptionEnforced: boolean = false

/**
* If set to true, it will enable anonymous tracking.
*/
enableAnonTracking: boolean = false

toDict(): any {
return {
"pushIntegrationName": this.pushIntegrationName,
Expand All @@ -143,7 +148,8 @@ class IterableConfig {
"androidSdkUseInMemoryStorageForInApps": this.androidSdkUseInMemoryStorageForInApps,
"useInMemoryStorageForInApps": this.useInMemoryStorageForInApps,
"dataRegion": this.dataRegion,
"encryptionEnforced": this.encryptionEnforced
"encryptionEnforced": this.encryptionEnforced,
"enableAnonTracking": this.enableAnonTracking
}
}
}
Expand Down

0 comments on commit 7c12efc

Please sign in to comment.