@vertigis/viewer-spec 50.10.2 → 50.10.4

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.
@@ -85,6 +85,6 @@ export declare type CommonAction =
85
85
  */
86
86
  | "settings-theme-set"
87
87
  /**
88
- * Map action in some cases. Payload: the URL.
88
+ * Payload: the URL.
89
89
  */
90
90
  | "url-open";
@@ -113,11 +113,13 @@ export declare class WorkflowCommands extends CommandRegistry {
113
113
  */
114
114
  get run(): Command<RunWorkflowArgs>;
115
115
  /**
116
- * Refreshes a workflow with the given arguments.
116
+ * Refreshes (i.e. cancels and reruns) a workflow with the specified ID
117
+ * (corresponding to the workflow ID as configured in app.json, not the
118
+ * workflow's portal item ID).
117
119
  *
118
120
  * @mobileOnly
119
121
  */
120
- get refresh(): Command<RunWorkflowArgs>;
122
+ get refresh(): Command<string>;
121
123
  /**
122
124
  * Cancels a workflow with the given ID.
123
125
  *
@@ -18171,13 +18171,13 @@
18171
18171
  "$ref": "#/definitions/EvaluateWorkflowArgs"
18172
18172
  },
18173
18173
  "workflow.refresh": {
18174
- "description": "Refreshes a workflow with the given arguments.",
18174
+ "description": "Refreshes (i.e. cancels and reruns) a workflow with the specified ID (corresponding to the workflow ID as configured in app.json, not the workflow's portal item ID).",
18175
18175
  "enum": [
18176
18176
  "workflow.refresh"
18177
18177
  ]
18178
18178
  },
18179
18179
  "workflow.refresh:input": {
18180
- "$ref": "#/definitions/RunWorkflowArgs"
18180
+ "type": "string"
18181
18181
  },
18182
18182
  "workflow.run": {
18183
18183
  "description": "Runs a workflow with the given arguments. See the `workflow.evaluate` operation if you want to run a workflow and expect output values to be returned.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "50.10.2",
3
+ "version": "50.10.4",
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 = "50.10.2";
4
+ export declare const version = "50.10.4";
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 = "50.10.2";
4
+ export const version = "50.10.4";