@vertigis/viewer-spec 59.13.0 → 59.14.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/schema/web-app-config.schema.json +1 -1
- package/app-config/web/PrintFormModelProperties.d.ts +11 -0
- package/messaging/registry/printing.d.ts +3 -1
- package/messaging/schema/common-action.schema.json +1 -1
- package/messaging/schema/mobile-action.schema.json +1 -1
- package/messaging/schema/web-action.schema.json +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { WebMapLike } from "@vertigis/arcgis-extensions/mapping/MapExtension.js";
|
|
1
2
|
import type { ItemRef } from "../common/ItemRef.js";
|
|
2
3
|
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
3
4
|
import type { ReportModelProperties } from "./ReportModelProperties.js";
|
|
@@ -51,4 +52,14 @@ export interface PrintFormModelProperties extends ComponentModelProperties {
|
|
|
51
52
|
* Whether the line print type should be enabled.
|
|
52
53
|
*/
|
|
53
54
|
linePrintEnabled?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Web map used as overview map in the print layout; defaults to application
|
|
57
|
+
* map if not set.
|
|
58
|
+
*/
|
|
59
|
+
additionalMapOverview?: WebMapLike;
|
|
60
|
+
/**
|
|
61
|
+
* Web map used as overview page map in the print layout; defaults to
|
|
62
|
+
* application map if not set.
|
|
63
|
+
*/
|
|
64
|
+
additionalMapOverviewPage?: WebMapLike;
|
|
54
65
|
}
|
|
@@ -13,7 +13,9 @@ import type { MapsLike } from "../common.js";
|
|
|
13
13
|
/**
|
|
14
14
|
* A set of parameters used to run a job.
|
|
15
15
|
*/
|
|
16
|
-
export
|
|
16
|
+
export interface JobParameters {
|
|
17
|
+
[properties: string]: unknown;
|
|
18
|
+
}
|
|
17
19
|
/**
|
|
18
20
|
* Available print output formats (printing gen2).
|
|
19
21
|
*/
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED