@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
|
@@ -8,7 +8,7 @@ export declare type PrivacyPolicyLocation = "app-top-beginning" | "app-top-end"
|
|
|
8
8
|
/**
|
|
9
9
|
* Information on how and where to display the privacy policy link.
|
|
10
10
|
*/
|
|
11
|
-
export interface
|
|
11
|
+
export interface PrivacyPolicyInfoProperties extends EntityProperties {
|
|
12
12
|
/**
|
|
13
13
|
* The location in which the privacy policy information should be shown.
|
|
14
14
|
* Defaults to user-component and falls back to the app-footer if the
|
|
@@ -33,11 +33,11 @@ export interface VertigisWebModelProperties extends ApplicationModelProperties {
|
|
|
33
33
|
/**
|
|
34
34
|
* The privacy policy information.
|
|
35
35
|
*/
|
|
36
|
-
privacyPolicyInfo?:
|
|
36
|
+
privacyPolicyInfo?: PrivacyPolicyInfoProperties;
|
|
37
37
|
/**
|
|
38
38
|
* The collection of rules specifying the proxy URL to use for a given URL prefix.
|
|
39
39
|
*/
|
|
40
|
-
proxyRules?:
|
|
40
|
+
proxyRules?: ProxyRuleProperties[];
|
|
41
41
|
/**
|
|
42
42
|
* The proxy URL for the application.
|
|
43
43
|
*/
|
|
@@ -61,7 +61,7 @@ export interface VertigisWebModelProperties extends ApplicationModelProperties {
|
|
|
61
61
|
/**
|
|
62
62
|
* An object specifying a URL that should use a specific proxy.
|
|
63
63
|
*/
|
|
64
|
-
export interface
|
|
64
|
+
export interface ProxyRuleProperties {
|
|
65
65
|
/**
|
|
66
66
|
* The URL of the proxy.
|
|
67
67
|
*/
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED