@vertigis/viewer-spec 53.6.0 → 53.7.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.
@@ -126,6 +126,12 @@ export declare class WorkflowCommands extends CommandRegistry {
126
126
  * @mobileOnly
127
127
  */
128
128
  get cancel(): Command<string>;
129
+ /**
130
+ * Cancels all running workflows.
131
+ *
132
+ * @mobileOnly
133
+ */
134
+ get cancelAll(): Command;
129
135
  }
130
136
  export declare class WorkflowOperations extends OperationRegistry {
131
137
  /**
@@ -1 +1 @@
1
- import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as r}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class WorkflowCommands extends e{get run(){return this._messages.command("workflow.run")}get refresh(){return this._messages.command("workflow.refresh")}get cancel(){return this._messages.command("workflow.cancel")}}export class WorkflowOperations extends s{get evaluate(){return this._messages.operation("workflow.evaluate")}}export class WorkflowEvents extends r{get workflowStarted(){return this._messages.event("workflow.workflow-started")}get starting(){return this._messages.event("workflow.starting")}get workflowFinished(){return this._messages.event("workflow.workflow-finished")}get workflowError(){return this._messages.event("workflow.workflow-error")}}
1
+ import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as r}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class WorkflowCommands extends e{get run(){return this._messages.command("workflow.run")}get refresh(){return this._messages.command("workflow.refresh")}get cancel(){return this._messages.command("workflow.cancel")}get cancelAll(){return this._messages.command("workflow.cancel-all")}}export class WorkflowOperations extends s{get evaluate(){return this._messages.operation("workflow.evaluate")}}export class WorkflowEvents extends r{get workflowStarted(){return this._messages.event("workflow.workflow-started")}get starting(){return this._messages.event("workflow.starting")}get workflowFinished(){return this._messages.event("workflow.workflow-finished")}get workflowError(){return this._messages.event("workflow.workflow-error")}}
@@ -17866,6 +17866,9 @@
17866
17866
  {
17867
17867
  "$ref": "#/definitions/workflow.cancel"
17868
17868
  },
17869
+ {
17870
+ "$ref": "#/definitions/workflow.cancel-all"
17871
+ },
17869
17872
  {
17870
17873
  "$ref": "#/definitions/workflow.evaluate"
17871
17874
  },
@@ -18804,6 +18807,12 @@
18804
18807
  "workflow.cancel"
18805
18808
  ]
18806
18809
  },
18810
+ "workflow.cancel-all": {
18811
+ "description": "Cancels all running workflows.",
18812
+ "enum": [
18813
+ "workflow.cancel-all"
18814
+ ]
18815
+ },
18807
18816
  "workflow.cancel:input": {
18808
18817
  "type": "string"
18809
18818
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "53.6.0",
3
+ "version": "53.7.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 = "53.6.0";
4
+ export declare const version = "53.7.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 = "53.6.0";
4
+ export const version = "53.7.0";