@vertigis/viewer-spec 56.33.0 → 56.34.0
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 +4 -0
- 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 +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -7,4 +7,8 @@ export interface AnalyticsModelProperties extends ServiceModelProperties {
|
|
|
7
7
|
* The URL used by VertiGIS Studio Analytics for tracking this application.
|
|
8
8
|
*/
|
|
9
9
|
url?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Indicates whether the application should capture user names in analytics.
|
|
12
|
+
*/
|
|
13
|
+
captureUserNames?: boolean;
|
|
10
14
|
}
|