@vertigis/viewer-spec 51.1.0 → 51.2.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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "51.1.0",
3
+ "version": "51.2.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "51.1.0";
4
+ export declare const version = "51.2.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "51.1.0";
4
+ export const version = "51.2.0";