@vertigis/viewer-spec 56.34.0 → 56.34.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-config/common/AnalyticsModelProperties.d.ts +3 -2
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -8,7 +8,8 @@ export interface AnalyticsModelProperties extends ServiceModelProperties {
|
|
|
8
8
|
*/
|
|
9
9
|
url?: string;
|
|
10
10
|
/**
|
|
11
|
-
* Indicates whether the application should
|
|
11
|
+
* Indicates whether the application should anonymize user information in
|
|
12
|
+
* analytics. Default is `true`, meaning user information is anonymized.
|
|
12
13
|
*/
|
|
13
|
-
|
|
14
|
+
anonymizeUserInfo?: boolean;
|
|
14
15
|
}
|