@vertigis/viewer-spec 56.0.0 → 56.1.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.
@@ -35,11 +35,15 @@ export interface RunArcadeArgs extends HasMaps, HasLayers, HasFeatures {
35
35
  arguments?: Record<string, unknown | ItemPropertyPath>;
36
36
  /**
37
37
  * Whether to pass the operation context object into the script. If
38
- * included, the context object uses the variable name $context. Web only.
39
- *
40
- * @webOnly
38
+ * included, the context object uses the variable name $context.
41
39
  */
42
40
  includeContext?: boolean;
41
+ /**
42
+ * Whether to pass the current workflow application state into the script.
43
+ * If included, the application state object uses the variable name
44
+ * $workflowdata.
45
+ */
46
+ includeWorkflowApplicationData?: boolean;
43
47
  /**
44
48
  * Properties used to set a series of watch handles and/or event listeners
45
49
  * on an item that will trigger the canExecuteChanged event for the
@@ -5259,7 +5259,11 @@
5259
5259
  "description": "Features to use for the command/operation."
5260
5260
  },
5261
5261
  "includeContext": {
5262
- "description": "Whether to pass the operation context object into the script. If included, the context object uses the variable name $context. Web only.",
5262
+ "description": "Whether to pass the operation context object into the script. If included, the context object uses the variable name $context.",
5263
+ "type": "boolean"
5264
+ },
5265
+ "includeWorkflowApplicationData": {
5266
+ "description": "Whether to pass the current workflow application state into the script. If included, the application state object uses the variable name $workflowdata.",
5263
5267
  "type": "boolean"
5264
5268
  },
5265
5269
  "layers": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "56.0.0",
3
+ "version": "56.1.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 = "56.0.0";
4
+ export declare const version = "56.1.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 = "56.0.0";
4
+ export const version = "56.1.0";