@vertigis/viewer-spec 51.1.0 → 51.3.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.
|
@@ -567,7 +567,15 @@
|
|
|
567
567
|
</annotation>
|
|
568
568
|
<complexType>
|
|
569
569
|
<complexContent mixed="true">
|
|
570
|
-
<extension base="tns:Component"
|
|
570
|
+
<extension base="tns:Component">
|
|
571
|
+
<attribute name="showBackground" type="boolean" default="true">
|
|
572
|
+
<annotation>
|
|
573
|
+
<documentation xml:lang="en">
|
|
574
|
+
Whether or not the text background should be displayed. Mobile only. Defaults to true.
|
|
575
|
+
</documentation>
|
|
576
|
+
</annotation>
|
|
577
|
+
</attribute>
|
|
578
|
+
</extension>
|
|
571
579
|
</complexContent>
|
|
572
580
|
</complexType>
|
|
573
581
|
</element>
|
|
@@ -43,6 +43,11 @@ export interface OfflineCommandArgs {
|
|
|
43
43
|
* The associated map for the offline command/operation.
|
|
44
44
|
*/
|
|
45
45
|
maps: MapsLike;
|
|
46
|
+
/**
|
|
47
|
+
* Whether a prelanned map area should update after download. Defaults to
|
|
48
|
+
* false.
|
|
49
|
+
*/
|
|
50
|
+
updatePreplannedAreaOnDownload: boolean;
|
|
46
51
|
}
|
|
47
52
|
/**
|
|
48
53
|
* Arguments for the "offline.area-activated" event.
|
|
@@ -238,6 +243,11 @@ export interface OfflineOperationResult {
|
|
|
238
243
|
* update) operation.
|
|
239
244
|
*/
|
|
240
245
|
syncTableErrors: IDictionary<FeatureTable, Exception>;
|
|
246
|
+
/**
|
|
247
|
+
* An OfflineOperationResult. Can be used to capture multiple results from a
|
|
248
|
+
* chain of offline operations.
|
|
249
|
+
*/
|
|
250
|
+
nextResult: OfflineOperationResult;
|
|
241
251
|
}
|
|
242
252
|
/**
|
|
243
253
|
* An error code for a known offline operation error.
|
|
@@ -2479,11 +2479,16 @@
|
|
|
2479
2479
|
"offlineArea": {
|
|
2480
2480
|
"$ref": "OfflineAreaBase",
|
|
2481
2481
|
"description": "The offline area to use."
|
|
2482
|
+
},
|
|
2483
|
+
"updatePreplannedAreaOnDownload": {
|
|
2484
|
+
"description": "Whether a prelanned map area should update after download. Defaults to false.",
|
|
2485
|
+
"type": "boolean"
|
|
2482
2486
|
}
|
|
2483
2487
|
},
|
|
2484
2488
|
"required": [
|
|
2485
2489
|
"maps",
|
|
2486
|
-
"offlineArea"
|
|
2490
|
+
"offlineArea",
|
|
2491
|
+
"updatePreplannedAreaOnDownload"
|
|
2487
2492
|
],
|
|
2488
2493
|
"type": "object"
|
|
2489
2494
|
},
|
|
@@ -2532,6 +2537,10 @@
|
|
|
2532
2537
|
"description": "A localized, end-user presentable error message, or null if the operation was successful.",
|
|
2533
2538
|
"type": "string"
|
|
2534
2539
|
},
|
|
2540
|
+
"nextResult": {
|
|
2541
|
+
"$ref": "#/definitions/OfflineOperationResult",
|
|
2542
|
+
"description": "An OfflineOperationResult. Can be used to capture multiple results from a chain of offline operations."
|
|
2543
|
+
},
|
|
2535
2544
|
"success": {
|
|
2536
2545
|
"description": "Whether or not the operation was successful.",
|
|
2537
2546
|
"type": "boolean"
|
|
@@ -2567,6 +2576,7 @@
|
|
|
2567
2576
|
"errorCode",
|
|
2568
2577
|
"errorCodeString",
|
|
2569
2578
|
"errorMessage",
|
|
2579
|
+
"nextResult",
|
|
2570
2580
|
"success",
|
|
2571
2581
|
"syncLayerErrors",
|
|
2572
2582
|
"syncLayerResults",
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED