@vertigis/viewer-spec 47.6.1 → 48.0.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/mobile/VertigisMobileModelProperties.d.ts +16 -14
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/VertigisWebModelProperties.d.ts +4 -4
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -20,6 +20,20 @@ export interface VertigisMobileBuildProperties {
|
|
|
20
20
|
*/
|
|
21
21
|
version?: string;
|
|
22
22
|
}
|
|
23
|
+
interface BuildSettingsProperties {
|
|
24
|
+
/**
|
|
25
|
+
* Build settings for the Android platform.
|
|
26
|
+
*/
|
|
27
|
+
androidBuildSettings?: VertigisMobileBuildProperties;
|
|
28
|
+
/**
|
|
29
|
+
* Build settings for the iOS platform.
|
|
30
|
+
*/
|
|
31
|
+
iosBuildSettings?: VertigisMobileBuildProperties;
|
|
32
|
+
/**
|
|
33
|
+
* Build settings for the Windows platform.
|
|
34
|
+
*/
|
|
35
|
+
windowsBuildSettings?: VertigisMobileBuildProperties;
|
|
36
|
+
}
|
|
23
37
|
/**
|
|
24
38
|
* Global configuration for the Vertigis Mobile application.
|
|
25
39
|
*/
|
|
@@ -31,20 +45,7 @@ export interface VertigisMobileModelProperties extends ApplicationModelPropertie
|
|
|
31
45
|
/**
|
|
32
46
|
* The application build settings for the different platforms.
|
|
33
47
|
*/
|
|
34
|
-
buildSettings?:
|
|
35
|
-
/**
|
|
36
|
-
* Build settings for the Android platform.
|
|
37
|
-
*/
|
|
38
|
-
androidBuildSettings?: VertigisMobileBuildProperties;
|
|
39
|
-
/**
|
|
40
|
-
* Build settings for the iOS platform.
|
|
41
|
-
*/
|
|
42
|
-
iosBuildSettings?: VertigisMobileBuildProperties;
|
|
43
|
-
/**
|
|
44
|
-
* Build settings for the Windows platform.
|
|
45
|
-
*/
|
|
46
|
-
windowsBuildSettings?: VertigisMobileBuildProperties;
|
|
47
|
-
};
|
|
48
|
+
buildSettings?: BuildSettingsProperties;
|
|
48
49
|
/**
|
|
49
50
|
* A privacy policy URL.
|
|
50
51
|
*/
|
|
@@ -62,3 +63,4 @@ export interface VertigisMobileModelProperties extends ApplicationModelPropertie
|
|
|
62
63
|
*/
|
|
63
64
|
version?: string;
|
|
64
65
|
}
|
|
66
|
+
export {};
|