@vertigis/viewer-spec 48.10.0 → 48.13.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.
- package/layout/schema/layout-web.xsd +26 -15
- package/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/map.d.ts +0 -2
- package/messaging/registry/workflow.d.ts +24 -5
- package/messaging/registry/workflow.js +1 -1
- package/messaging/schema/common-action.schema.json +115 -1
- package/messaging/schema/mobile-action.schema.json +115 -1
- package/messaging/schema/web-action.schema.json +71 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
<annotation>
|
|
54
54
|
<documentation xml:lang="en">
|
|
55
55
|
A geometry toolbar consisting of a collection of widgets and a
|
|
56
|
-
configurable toolbar that is displayed while geometry edits are
|
|
57
|
-
|
|
56
|
+
configurable toolbar that is displayed while geometry edits are being
|
|
57
|
+
performed.
|
|
58
58
|
</documentation>
|
|
59
59
|
</annotation>
|
|
60
60
|
<complexType>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<element name="inline" substitutionGroup="base:component">
|
|
96
96
|
<annotation>
|
|
97
97
|
<documentation xml:lang="en">
|
|
98
|
-
A component that allows the integration of Geocortex Inline.
|
|
98
|
+
A component that allows the integration of Geocortex Inline (Deprecated).
|
|
99
99
|
</documentation>
|
|
100
100
|
</annotation>
|
|
101
101
|
<complexType>
|
|
@@ -121,10 +121,9 @@
|
|
|
121
121
|
<element name="map-3d-toggle" substitutionGroup="base:component">
|
|
122
122
|
<annotation>
|
|
123
123
|
<documentation xml:lang="en">
|
|
124
|
-
A button that allows the end user to switch between the webmap
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
a webmap and webscene configured.
|
|
124
|
+
A button that allows the end user to switch between the webmap and the
|
|
125
|
+
webscene for a given map component. Requires an associated map component
|
|
126
|
+
(see the "models" attribute) with both a webmap and webscene configured.
|
|
128
127
|
</documentation>
|
|
129
128
|
</annotation>
|
|
130
129
|
<complexType>
|
|
@@ -192,8 +191,8 @@
|
|
|
192
191
|
<annotation>
|
|
193
192
|
<documentation xml:lang="en">
|
|
194
193
|
A component that allows the user to view results from a search,
|
|
195
|
-
identify, query, or any other activity that produces features in
|
|
196
|
-
|
|
194
|
+
identify, query, or any other activity that produces features in a table
|
|
195
|
+
view.
|
|
197
196
|
</documentation>
|
|
198
197
|
</annotation>
|
|
199
198
|
<complexType>
|
|
@@ -233,9 +232,8 @@
|
|
|
233
232
|
<attribute name="orientation">
|
|
234
233
|
<annotation>
|
|
235
234
|
<documentation xml:lang="en">
|
|
236
|
-
The orientation of the tabs within the
|
|
237
|
-
|
|
238
|
-
and "vertical". The default value is
|
|
235
|
+
The orientation of the tabs within the component. Valid values
|
|
236
|
+
include "horizontal", and "vertical". The default value is
|
|
239
237
|
"horizontal".
|
|
240
238
|
</documentation>
|
|
241
239
|
</annotation>
|
|
@@ -249,9 +247,8 @@
|
|
|
249
247
|
<attribute name="position">
|
|
250
248
|
<annotation>
|
|
251
249
|
<documentation xml:lang="en">
|
|
252
|
-
The position of the tabs within the component.
|
|
253
|
-
|
|
254
|
-
default value is "start".
|
|
250
|
+
The position of the tabs within the component. Valid values
|
|
251
|
+
include "start", and "end". The default value is "start".
|
|
255
252
|
</documentation>
|
|
256
253
|
</annotation>
|
|
257
254
|
<simpleType>
|
|
@@ -292,4 +289,18 @@
|
|
|
292
289
|
</complexContent>
|
|
293
290
|
</complexType>
|
|
294
291
|
</element>
|
|
292
|
+
|
|
293
|
+
<element name="vertigis-inline" substitutionGroup="base:component">
|
|
294
|
+
<annotation>
|
|
295
|
+
<documentation xml:lang="en">
|
|
296
|
+
A component that allows the integration of VertiGIS Inline.
|
|
297
|
+
Requires the VertiGIS Inline library to be loaded in Web.
|
|
298
|
+
</documentation>
|
|
299
|
+
</annotation>
|
|
300
|
+
<complexType>
|
|
301
|
+
<complexContent>
|
|
302
|
+
<extension base="base:Component" />
|
|
303
|
+
</complexContent>
|
|
304
|
+
</complexType>
|
|
305
|
+
</element>
|
|
295
306
|
</schema>
|
|
@@ -25,6 +25,7 @@ import { SystemOperations } from "./system.js";
|
|
|
25
25
|
import { TasksOperations } from "./tasks.js";
|
|
26
26
|
import { UIOperations } from "./ui.js";
|
|
27
27
|
import { ViewerOperations } from "./viewer.js";
|
|
28
|
+
import { WorkflowOperations } from "./workflow.js";
|
|
28
29
|
export declare class Operations extends OperationRegistry {
|
|
29
30
|
readonly arcade: ArcadeOperations;
|
|
30
31
|
readonly auth: AuthOperations;
|
|
@@ -51,6 +52,7 @@ export declare class Operations extends OperationRegistry {
|
|
|
51
52
|
readonly tasks: TasksOperations;
|
|
52
53
|
readonly ui: UIOperations;
|
|
53
54
|
readonly viewer: ViewerOperations;
|
|
55
|
+
readonly workflow: WorkflowOperations;
|
|
54
56
|
/**
|
|
55
57
|
* @deprecated
|
|
56
58
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{OperationRegistry}from"../OperationRegistry.js";import{AppOperations}from"./app.js";import{ArcadeOperations}from"./arcade.js";import{AuthOperations}from"./auth.js";import{BasemapOperations}from"./basemap.js";import{ChartOperations}from"./charts.js";import{DebugConsoleOperations}from"./debugConsole.js";import{DrawingOperations}from"./drawing.js";import{EditOperations}from"./edit.js";import{FileOperations}from"./file.js";import{GeocodeOperations}from"./geocode.js";import{GeolocationOperations}from"./geolocation.js";import{GeometryOperations}from"./geometry.js";import{HighlightsOperations}from"./highlights.js";import{KpiOperations}from"./kpi.js";import{LogViewerOperations}from"./logViewer.js";import{MapOperations}from"./map.js";import{MeasurementOperations}from"./measurement.js";import{MessagingOperations}from"./messaging.js";import{NetworkOperations}from"./network.js";import{OfflineOperations}from"./offline.js";import{ResultsOperations}from"./results.js";import{SketchingOperations}from"./sketching.js";import{SystemOperations}from"./system.js";import{TasksOperations}from"./tasks.js";import{UIOperations}from"./ui.js";import{ViewerOperations}from"./viewer.js";export class Operations extends OperationRegistry{constructor(){super(...arguments),this.arcade=new ArcadeOperations(this._messages),this.auth=new AuthOperations(this._messages),this.app=new AppOperations(this._messages),this.basemap=new BasemapOperations(this._messages),this.charts=new ChartOperations(this._messages),this.edit=new EditOperations(this._messages),this.drawing=new DrawingOperations(this._messages),this.file=new FileOperations(this._messages),this.geocode=new GeocodeOperations(this._messages),this.geolocation=new GeolocationOperations(this._messages),this.geometry=new GeometryOperations(this._messages),this.highlights=new HighlightsOperations(this._messages),this.kpi=new KpiOperations(this._messages),this.logViewer=new LogViewerOperations(this._messages),this.map=new MapOperations(this._messages),this.measurement=new MeasurementOperations(this._messages),this.messaging=new MessagingOperations(this._messages),this.network=new NetworkOperations(this._messages),this.offline=new OfflineOperations(this._messages),this.sketching=new SketchingOperations(this._messages),this.system=new SystemOperations(this._messages),this.results=new ResultsOperations(this._messages),this.tasks=new TasksOperations(this._messages),this.ui=new UIOperations(this._messages),this.viewer=new ViewerOperations(this._messages),this.debugConsole=new DebugConsoleOperations(this._messages)}}
|
|
1
|
+
import{OperationRegistry}from"../OperationRegistry.js";import{AppOperations}from"./app.js";import{ArcadeOperations}from"./arcade.js";import{AuthOperations}from"./auth.js";import{BasemapOperations}from"./basemap.js";import{ChartOperations}from"./charts.js";import{DebugConsoleOperations}from"./debugConsole.js";import{DrawingOperations}from"./drawing.js";import{EditOperations}from"./edit.js";import{FileOperations}from"./file.js";import{GeocodeOperations}from"./geocode.js";import{GeolocationOperations}from"./geolocation.js";import{GeometryOperations}from"./geometry.js";import{HighlightsOperations}from"./highlights.js";import{KpiOperations}from"./kpi.js";import{LogViewerOperations}from"./logViewer.js";import{MapOperations}from"./map.js";import{MeasurementOperations}from"./measurement.js";import{MessagingOperations}from"./messaging.js";import{NetworkOperations}from"./network.js";import{OfflineOperations}from"./offline.js";import{ResultsOperations}from"./results.js";import{SketchingOperations}from"./sketching.js";import{SystemOperations}from"./system.js";import{TasksOperations}from"./tasks.js";import{UIOperations}from"./ui.js";import{ViewerOperations}from"./viewer.js";import{WorkflowOperations}from"./workflow.js";export class Operations extends OperationRegistry{constructor(){super(...arguments),this.arcade=new ArcadeOperations(this._messages),this.auth=new AuthOperations(this._messages),this.app=new AppOperations(this._messages),this.basemap=new BasemapOperations(this._messages),this.charts=new ChartOperations(this._messages),this.edit=new EditOperations(this._messages),this.drawing=new DrawingOperations(this._messages),this.file=new FileOperations(this._messages),this.geocode=new GeocodeOperations(this._messages),this.geolocation=new GeolocationOperations(this._messages),this.geometry=new GeometryOperations(this._messages),this.highlights=new HighlightsOperations(this._messages),this.kpi=new KpiOperations(this._messages),this.logViewer=new LogViewerOperations(this._messages),this.map=new MapOperations(this._messages),this.measurement=new MeasurementOperations(this._messages),this.messaging=new MessagingOperations(this._messages),this.network=new NetworkOperations(this._messages),this.offline=new OfflineOperations(this._messages),this.sketching=new SketchingOperations(this._messages),this.system=new SystemOperations(this._messages),this.results=new ResultsOperations(this._messages),this.tasks=new TasksOperations(this._messages),this.ui=new UIOperations(this._messages),this.viewer=new ViewerOperations(this._messages),this.workflow=new WorkflowOperations(this._messages),this.debugConsole=new DebugConsoleOperations(this._messages)}}
|
|
@@ -2,11 +2,10 @@ import type { Command } from "../Command.js";
|
|
|
2
2
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
3
3
|
import type { Event } from "../Event.js";
|
|
4
4
|
import { EventRegistry } from "../EventRegistry.js";
|
|
5
|
+
import type { Operation } from "../Operation.js";
|
|
6
|
+
import { OperationRegistry } from "../OperationRegistry.js";
|
|
5
7
|
import type { MapsLike } from "../common.js";
|
|
6
|
-
|
|
7
|
-
* Arguments for the workflow.run command.
|
|
8
|
-
*/
|
|
9
|
-
export interface RunWorkflowArgs {
|
|
8
|
+
interface ExecuteWorkflowArgs {
|
|
10
9
|
/**
|
|
11
10
|
* The ID of the workflow item in app config.
|
|
12
11
|
*/
|
|
@@ -46,6 +45,11 @@ export interface RunWorkflowArgs {
|
|
|
46
45
|
* child of the targeted container, and removed when the workflow finishes running.
|
|
47
46
|
*/
|
|
48
47
|
target?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Arguments for the workflow.run command.
|
|
51
|
+
*/
|
|
52
|
+
export interface RunWorkflowArgs extends ExecuteWorkflowArgs {
|
|
49
53
|
/**
|
|
50
54
|
* Whether or not the workflow should be executed asynchronously. If this
|
|
51
55
|
* property is true, the workflow will be executed but the command will not
|
|
@@ -55,6 +59,11 @@ export interface RunWorkflowArgs {
|
|
|
55
59
|
*/
|
|
56
60
|
async?: boolean;
|
|
57
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* Arguments for the workflow.evaluate command.
|
|
64
|
+
*/
|
|
65
|
+
export interface EvaluateWorkflowArgs extends ExecuteWorkflowArgs {
|
|
66
|
+
}
|
|
58
67
|
interface WorkflowModel {
|
|
59
68
|
}
|
|
60
69
|
/**
|
|
@@ -95,7 +104,8 @@ export interface WorkflowFinishedEventArgs extends WorkflowEventBase {
|
|
|
95
104
|
export declare type WorkflowEvent = unknown;
|
|
96
105
|
export declare class WorkflowCommands extends CommandRegistry {
|
|
97
106
|
/**
|
|
98
|
-
* Runs a workflow with the given arguments.
|
|
107
|
+
* Runs a workflow with the given arguments. See the `workflow.evaluate`
|
|
108
|
+
* operation if you want to run a workflow and expect output values to be returned.
|
|
99
109
|
*/
|
|
100
110
|
get run(): Command<RunWorkflowArgs>;
|
|
101
111
|
/**
|
|
@@ -111,6 +121,15 @@ export declare class WorkflowCommands extends CommandRegistry {
|
|
|
111
121
|
*/
|
|
112
122
|
get cancel(): Command<string>;
|
|
113
123
|
}
|
|
124
|
+
export declare class WorkflowOperations extends OperationRegistry {
|
|
125
|
+
/**
|
|
126
|
+
* Runs a workflow with the given arguments and returns the workflow's
|
|
127
|
+
* output as the result of the operation. The output in the workflow is set
|
|
128
|
+
* using the "Set Workflow Output" activity. See the "workflow.run" command
|
|
129
|
+
* if you want to run a workflow without any output values.
|
|
130
|
+
*/
|
|
131
|
+
get evaluate(): Operation<EvaluateWorkflowArgs, Record<string, unknown>>;
|
|
132
|
+
}
|
|
114
133
|
export declare class WorkflowEvents extends EventRegistry {
|
|
115
134
|
/**
|
|
116
135
|
* Raised when a workflow has started running.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export class WorkflowCommands extends CommandRegistry{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 WorkflowEvents extends EventRegistry{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}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class WorkflowCommands extends CommandRegistry{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 OperationRegistry{get evaluate(){return this._messages.operation("workflow.evaluate")}}export class WorkflowEvents extends EventRegistry{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")}}
|
|
@@ -1185,6 +1185,48 @@
|
|
|
1185
1185
|
],
|
|
1186
1186
|
"type": "string"
|
|
1187
1187
|
},
|
|
1188
|
+
"EvaluateWorkflowArgs": {
|
|
1189
|
+
"additionalProperties": false,
|
|
1190
|
+
"description": "Arguments for the workflow.evaluate command.",
|
|
1191
|
+
"properties": {
|
|
1192
|
+
"commandArgumentInput": {
|
|
1193
|
+
"description": "The workflow input that the command's context will map to.",
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
},
|
|
1196
|
+
"icon": {
|
|
1197
|
+
"description": "An icon to display for the workflow.",
|
|
1198
|
+
"type": "string"
|
|
1199
|
+
},
|
|
1200
|
+
"id": {
|
|
1201
|
+
"description": "The ID of the workflow item in app config.",
|
|
1202
|
+
"type": "string"
|
|
1203
|
+
},
|
|
1204
|
+
"inputs": {
|
|
1205
|
+
"$ref": "__type",
|
|
1206
|
+
"description": "The inputs to be passed into the workflow."
|
|
1207
|
+
},
|
|
1208
|
+
"instanceId": {
|
|
1209
|
+
"description": "A unique Id to identify an instance of this workflow running.",
|
|
1210
|
+
"type": "string"
|
|
1211
|
+
},
|
|
1212
|
+
"maps": {
|
|
1213
|
+
"$ref": "MapsLike",
|
|
1214
|
+
"description": "The map to target, if omitted Web will attempt to choose the best map for you."
|
|
1215
|
+
},
|
|
1216
|
+
"target": {
|
|
1217
|
+
"description": "The layout ID of the workflow component to use for any workflow forms, or the ID of a container component like taskbar, panel, stack, etc. In the latter case, a new workflow component will be created dynamically as a child of the targeted container, and removed when the workflow finishes running.",
|
|
1218
|
+
"type": "string"
|
|
1219
|
+
},
|
|
1220
|
+
"title": {
|
|
1221
|
+
"description": "The title of the workflow.",
|
|
1222
|
+
"type": "string"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"required": [
|
|
1226
|
+
"id"
|
|
1227
|
+
],
|
|
1228
|
+
"type": "object"
|
|
1229
|
+
},
|
|
1188
1230
|
"Features": {
|
|
1189
1231
|
"anyOf": [
|
|
1190
1232
|
{
|
|
@@ -11328,6 +11370,31 @@
|
|
|
11328
11370
|
}
|
|
11329
11371
|
]
|
|
11330
11372
|
},
|
|
11373
|
+
"map.clear-markup": {
|
|
11374
|
+
"description": "Clears all markup from the map(s).",
|
|
11375
|
+
"enum": [
|
|
11376
|
+
"map.clear-markup"
|
|
11377
|
+
]
|
|
11378
|
+
},
|
|
11379
|
+
"map.clear-markup:input": {
|
|
11380
|
+
"anyOf": [
|
|
11381
|
+
{
|
|
11382
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
11383
|
+
},
|
|
11384
|
+
{
|
|
11385
|
+
"$ref": "#/definitions/HasMaps"
|
|
11386
|
+
},
|
|
11387
|
+
{
|
|
11388
|
+
"items": {
|
|
11389
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
11390
|
+
},
|
|
11391
|
+
"type": "array"
|
|
11392
|
+
},
|
|
11393
|
+
{
|
|
11394
|
+
"type": "null"
|
|
11395
|
+
}
|
|
11396
|
+
]
|
|
11397
|
+
},
|
|
11331
11398
|
"map.get-spatial-reference": {
|
|
11332
11399
|
"description": "If a map extension ID is specified, returns the spatial reference for that map. If no map extension ID is specified, returns the spatial reference of the first available map.",
|
|
11333
11400
|
"enum": [
|
|
@@ -12314,6 +12381,22 @@
|
|
|
12314
12381
|
],
|
|
12315
12382
|
"type": "object"
|
|
12316
12383
|
},
|
|
12384
|
+
{
|
|
12385
|
+
"additionalProperties": false,
|
|
12386
|
+
"properties": {
|
|
12387
|
+
"arguments": {
|
|
12388
|
+
"$ref": "#/definitions/map.clear-markup:input"
|
|
12389
|
+
},
|
|
12390
|
+
"name": {
|
|
12391
|
+
"$ref": "#/definitions/map.clear-markup"
|
|
12392
|
+
}
|
|
12393
|
+
},
|
|
12394
|
+
"required": [
|
|
12395
|
+
"name",
|
|
12396
|
+
"arguments"
|
|
12397
|
+
],
|
|
12398
|
+
"type": "object"
|
|
12399
|
+
},
|
|
12317
12400
|
{
|
|
12318
12401
|
"additionalProperties": false,
|
|
12319
12402
|
"properties": {
|
|
@@ -12730,6 +12813,22 @@
|
|
|
12730
12813
|
],
|
|
12731
12814
|
"type": "object"
|
|
12732
12815
|
},
|
|
12816
|
+
{
|
|
12817
|
+
"additionalProperties": false,
|
|
12818
|
+
"properties": {
|
|
12819
|
+
"arguments": {
|
|
12820
|
+
"$ref": "#/definitions/workflow.evaluate:input"
|
|
12821
|
+
},
|
|
12822
|
+
"name": {
|
|
12823
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
12824
|
+
}
|
|
12825
|
+
},
|
|
12826
|
+
"required": [
|
|
12827
|
+
"name",
|
|
12828
|
+
"arguments"
|
|
12829
|
+
],
|
|
12830
|
+
"type": "object"
|
|
12831
|
+
},
|
|
12733
12832
|
{
|
|
12734
12833
|
"additionalProperties": false,
|
|
12735
12834
|
"properties": {
|
|
@@ -12827,6 +12926,9 @@
|
|
|
12827
12926
|
{
|
|
12828
12927
|
"$ref": "#/definitions/map.add-markup"
|
|
12829
12928
|
},
|
|
12929
|
+
{
|
|
12930
|
+
"$ref": "#/definitions/map.clear-markup"
|
|
12931
|
+
},
|
|
12830
12932
|
{
|
|
12831
12933
|
"$ref": "#/definitions/map.pan-to-features"
|
|
12832
12934
|
},
|
|
@@ -12911,6 +13013,9 @@
|
|
|
12911
13013
|
{
|
|
12912
13014
|
"$ref": "#/definitions/ui.set-theme"
|
|
12913
13015
|
},
|
|
13016
|
+
{
|
|
13017
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
13018
|
+
},
|
|
12914
13019
|
{
|
|
12915
13020
|
"$ref": "#/definitions/workflow.run"
|
|
12916
13021
|
}
|
|
@@ -13176,8 +13281,17 @@
|
|
|
13176
13281
|
}
|
|
13177
13282
|
]
|
|
13178
13283
|
},
|
|
13284
|
+
"workflow.evaluate": {
|
|
13285
|
+
"description": "Runs a workflow with the given arguments and returns the workflow's output as the result of the operation. The output in the workflow is set using the \"Set Workflow Output\" activity. See the \"workflow.run\" command if you want to run a workflow without any output values.",
|
|
13286
|
+
"enum": [
|
|
13287
|
+
"workflow.evaluate"
|
|
13288
|
+
]
|
|
13289
|
+
},
|
|
13290
|
+
"workflow.evaluate:input": {
|
|
13291
|
+
"$ref": "#/definitions/EvaluateWorkflowArgs"
|
|
13292
|
+
},
|
|
13179
13293
|
"workflow.run": {
|
|
13180
|
-
"description": "Runs a workflow with the given arguments.",
|
|
13294
|
+
"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.",
|
|
13181
13295
|
"enum": [
|
|
13182
13296
|
"workflow.run"
|
|
13183
13297
|
]
|
|
@@ -1431,6 +1431,48 @@
|
|
|
1431
1431
|
},
|
|
1432
1432
|
"type": "object"
|
|
1433
1433
|
},
|
|
1434
|
+
"EvaluateWorkflowArgs": {
|
|
1435
|
+
"additionalProperties": false,
|
|
1436
|
+
"description": "Arguments for the workflow.evaluate command.",
|
|
1437
|
+
"properties": {
|
|
1438
|
+
"commandArgumentInput": {
|
|
1439
|
+
"description": "The workflow input that the command's context will map to.",
|
|
1440
|
+
"type": "string"
|
|
1441
|
+
},
|
|
1442
|
+
"icon": {
|
|
1443
|
+
"description": "An icon to display for the workflow.",
|
|
1444
|
+
"type": "string"
|
|
1445
|
+
},
|
|
1446
|
+
"id": {
|
|
1447
|
+
"description": "The ID of the workflow item in app config.",
|
|
1448
|
+
"type": "string"
|
|
1449
|
+
},
|
|
1450
|
+
"inputs": {
|
|
1451
|
+
"$ref": "__type",
|
|
1452
|
+
"description": "The inputs to be passed into the workflow."
|
|
1453
|
+
},
|
|
1454
|
+
"instanceId": {
|
|
1455
|
+
"description": "A unique Id to identify an instance of this workflow running.",
|
|
1456
|
+
"type": "string"
|
|
1457
|
+
},
|
|
1458
|
+
"maps": {
|
|
1459
|
+
"$ref": "MapsLike",
|
|
1460
|
+
"description": "The map to target, if omitted Web will attempt to choose the best map for you."
|
|
1461
|
+
},
|
|
1462
|
+
"target": {
|
|
1463
|
+
"description": "The layout ID of the workflow component to use for any workflow forms, or the ID of a container component like taskbar, panel, stack, etc. In the latter case, a new workflow component will be created dynamically as a child of the targeted container, and removed when the workflow finishes running.",
|
|
1464
|
+
"type": "string"
|
|
1465
|
+
},
|
|
1466
|
+
"title": {
|
|
1467
|
+
"description": "The title of the workflow.",
|
|
1468
|
+
"type": "string"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"required": [
|
|
1472
|
+
"id"
|
|
1473
|
+
],
|
|
1474
|
+
"type": "object"
|
|
1475
|
+
},
|
|
1434
1476
|
"ExportMapImageArgs": {
|
|
1435
1477
|
"additionalProperties": false,
|
|
1436
1478
|
"description": "Arguments for the \"map.export-image\" operation.",
|
|
@@ -12488,6 +12530,31 @@
|
|
|
12488
12530
|
}
|
|
12489
12531
|
]
|
|
12490
12532
|
},
|
|
12533
|
+
"map.clear-markup": {
|
|
12534
|
+
"description": "Clears all markup from the map(s).",
|
|
12535
|
+
"enum": [
|
|
12536
|
+
"map.clear-markup"
|
|
12537
|
+
]
|
|
12538
|
+
},
|
|
12539
|
+
"map.clear-markup:input": {
|
|
12540
|
+
"anyOf": [
|
|
12541
|
+
{
|
|
12542
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
12543
|
+
},
|
|
12544
|
+
{
|
|
12545
|
+
"$ref": "#/definitions/HasMaps"
|
|
12546
|
+
},
|
|
12547
|
+
{
|
|
12548
|
+
"items": {
|
|
12549
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
12550
|
+
},
|
|
12551
|
+
"type": "array"
|
|
12552
|
+
},
|
|
12553
|
+
{
|
|
12554
|
+
"type": "null"
|
|
12555
|
+
}
|
|
12556
|
+
]
|
|
12557
|
+
},
|
|
12491
12558
|
"map.disable-map-click": {
|
|
12492
12559
|
"description": "Disables the click event handler on the map, so that if the user clicks on the map, the configured handler will not be invoked.",
|
|
12493
12560
|
"enum": [
|
|
@@ -14475,6 +14542,22 @@
|
|
|
14475
14542
|
],
|
|
14476
14543
|
"type": "object"
|
|
14477
14544
|
},
|
|
14545
|
+
{
|
|
14546
|
+
"additionalProperties": false,
|
|
14547
|
+
"properties": {
|
|
14548
|
+
"arguments": {
|
|
14549
|
+
"$ref": "#/definitions/map.clear-markup:input"
|
|
14550
|
+
},
|
|
14551
|
+
"name": {
|
|
14552
|
+
"$ref": "#/definitions/map.clear-markup"
|
|
14553
|
+
}
|
|
14554
|
+
},
|
|
14555
|
+
"required": [
|
|
14556
|
+
"name",
|
|
14557
|
+
"arguments"
|
|
14558
|
+
],
|
|
14559
|
+
"type": "object"
|
|
14560
|
+
},
|
|
14478
14561
|
{
|
|
14479
14562
|
"additionalProperties": false,
|
|
14480
14563
|
"properties": {
|
|
@@ -15547,6 +15630,22 @@
|
|
|
15547
15630
|
],
|
|
15548
15631
|
"type": "object"
|
|
15549
15632
|
},
|
|
15633
|
+
{
|
|
15634
|
+
"additionalProperties": false,
|
|
15635
|
+
"properties": {
|
|
15636
|
+
"arguments": {
|
|
15637
|
+
"$ref": "#/definitions/workflow.evaluate:input"
|
|
15638
|
+
},
|
|
15639
|
+
"name": {
|
|
15640
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
15641
|
+
}
|
|
15642
|
+
},
|
|
15643
|
+
"required": [
|
|
15644
|
+
"name",
|
|
15645
|
+
"arguments"
|
|
15646
|
+
],
|
|
15647
|
+
"type": "object"
|
|
15648
|
+
},
|
|
15550
15649
|
{
|
|
15551
15650
|
"additionalProperties": false,
|
|
15552
15651
|
"properties": {
|
|
@@ -15735,6 +15834,9 @@
|
|
|
15735
15834
|
{
|
|
15736
15835
|
"$ref": "#/definitions/map.add-markup"
|
|
15737
15836
|
},
|
|
15837
|
+
{
|
|
15838
|
+
"$ref": "#/definitions/map.clear-markup"
|
|
15839
|
+
},
|
|
15738
15840
|
{
|
|
15739
15841
|
"$ref": "#/definitions/map.disable-map-click"
|
|
15740
15842
|
},
|
|
@@ -15960,6 +16062,9 @@
|
|
|
15960
16062
|
{
|
|
15961
16063
|
"$ref": "#/definitions/workflow.cancel"
|
|
15962
16064
|
},
|
|
16065
|
+
{
|
|
16066
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
16067
|
+
},
|
|
15963
16068
|
{
|
|
15964
16069
|
"$ref": "#/definitions/workflow.refresh"
|
|
15965
16070
|
},
|
|
@@ -16775,6 +16880,15 @@
|
|
|
16775
16880
|
"workflow.cancel:input": {
|
|
16776
16881
|
"type": "string"
|
|
16777
16882
|
},
|
|
16883
|
+
"workflow.evaluate": {
|
|
16884
|
+
"description": "Runs a workflow with the given arguments and returns the workflow's output as the result of the operation. The output in the workflow is set using the \"Set Workflow Output\" activity. See the \"workflow.run\" command if you want to run a workflow without any output values.",
|
|
16885
|
+
"enum": [
|
|
16886
|
+
"workflow.evaluate"
|
|
16887
|
+
]
|
|
16888
|
+
},
|
|
16889
|
+
"workflow.evaluate:input": {
|
|
16890
|
+
"$ref": "#/definitions/EvaluateWorkflowArgs"
|
|
16891
|
+
},
|
|
16778
16892
|
"workflow.refresh": {
|
|
16779
16893
|
"description": "Refreshes a workflow with the given arguments.",
|
|
16780
16894
|
"enum": [
|
|
@@ -16785,7 +16899,7 @@
|
|
|
16785
16899
|
"$ref": "#/definitions/RunWorkflowArgs"
|
|
16786
16900
|
},
|
|
16787
16901
|
"workflow.run": {
|
|
16788
|
-
"description": "Runs a workflow with the given arguments.",
|
|
16902
|
+
"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.",
|
|
16789
16903
|
"enum": [
|
|
16790
16904
|
"workflow.run"
|
|
16791
16905
|
]
|
|
@@ -1958,6 +1958,48 @@
|
|
|
1958
1958
|
],
|
|
1959
1959
|
"type": "string"
|
|
1960
1960
|
},
|
|
1961
|
+
"EvaluateWorkflowArgs": {
|
|
1962
|
+
"additionalProperties": false,
|
|
1963
|
+
"description": "Arguments for the workflow.evaluate command.",
|
|
1964
|
+
"properties": {
|
|
1965
|
+
"commandArgumentInput": {
|
|
1966
|
+
"description": "The workflow input that the command's context will map to.",
|
|
1967
|
+
"type": "string"
|
|
1968
|
+
},
|
|
1969
|
+
"icon": {
|
|
1970
|
+
"description": "An icon to display for the workflow.",
|
|
1971
|
+
"type": "string"
|
|
1972
|
+
},
|
|
1973
|
+
"id": {
|
|
1974
|
+
"description": "The ID of the workflow item in app config.",
|
|
1975
|
+
"type": "string"
|
|
1976
|
+
},
|
|
1977
|
+
"inputs": {
|
|
1978
|
+
"$ref": "__type",
|
|
1979
|
+
"description": "The inputs to be passed into the workflow."
|
|
1980
|
+
},
|
|
1981
|
+
"instanceId": {
|
|
1982
|
+
"description": "A unique Id to identify an instance of this workflow running.",
|
|
1983
|
+
"type": "string"
|
|
1984
|
+
},
|
|
1985
|
+
"maps": {
|
|
1986
|
+
"$ref": "MapsLike",
|
|
1987
|
+
"description": "The map to target, if omitted Web will attempt to choose the best map for you."
|
|
1988
|
+
},
|
|
1989
|
+
"target": {
|
|
1990
|
+
"description": "The layout ID of the workflow component to use for any workflow forms, or the ID of a container component like taskbar, panel, stack, etc. In the latter case, a new workflow component will be created dynamically as a child of the targeted container, and removed when the workflow finishes running.",
|
|
1991
|
+
"type": "string"
|
|
1992
|
+
},
|
|
1993
|
+
"title": {
|
|
1994
|
+
"description": "The title of the workflow.",
|
|
1995
|
+
"type": "string"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"required": [
|
|
1999
|
+
"id"
|
|
2000
|
+
],
|
|
2001
|
+
"type": "object"
|
|
2002
|
+
},
|
|
1961
2003
|
"Features": {
|
|
1962
2004
|
"anyOf": [
|
|
1963
2005
|
{
|
|
@@ -19954,6 +19996,22 @@
|
|
|
19954
19996
|
],
|
|
19955
19997
|
"type": "object"
|
|
19956
19998
|
},
|
|
19999
|
+
{
|
|
20000
|
+
"additionalProperties": false,
|
|
20001
|
+
"properties": {
|
|
20002
|
+
"arguments": {
|
|
20003
|
+
"$ref": "#/definitions/workflow.evaluate:input"
|
|
20004
|
+
},
|
|
20005
|
+
"name": {
|
|
20006
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
20007
|
+
}
|
|
20008
|
+
},
|
|
20009
|
+
"required": [
|
|
20010
|
+
"name",
|
|
20011
|
+
"arguments"
|
|
20012
|
+
],
|
|
20013
|
+
"type": "object"
|
|
20014
|
+
},
|
|
19957
20015
|
{
|
|
19958
20016
|
"additionalProperties": false,
|
|
19959
20017
|
"properties": {
|
|
@@ -20402,6 +20460,9 @@
|
|
|
20402
20460
|
{
|
|
20403
20461
|
"$ref": "#/definitions/viewer.set-debug-mode"
|
|
20404
20462
|
},
|
|
20463
|
+
{
|
|
20464
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
20465
|
+
},
|
|
20405
20466
|
{
|
|
20406
20467
|
"$ref": "#/definitions/workflow.run"
|
|
20407
20468
|
}
|
|
@@ -21633,8 +21694,17 @@
|
|
|
21633
21694
|
"viewer.set-debug-mode:input": {
|
|
21634
21695
|
"type": "boolean"
|
|
21635
21696
|
},
|
|
21697
|
+
"workflow.evaluate": {
|
|
21698
|
+
"description": "Runs a workflow with the given arguments and returns the workflow's output as the result of the operation. The output in the workflow is set using the \"Set Workflow Output\" activity. See the \"workflow.run\" command if you want to run a workflow without any output values.",
|
|
21699
|
+
"enum": [
|
|
21700
|
+
"workflow.evaluate"
|
|
21701
|
+
]
|
|
21702
|
+
},
|
|
21703
|
+
"workflow.evaluate:input": {
|
|
21704
|
+
"$ref": "#/definitions/EvaluateWorkflowArgs"
|
|
21705
|
+
},
|
|
21636
21706
|
"workflow.run": {
|
|
21637
|
-
"description": "Runs a workflow with the given arguments.",
|
|
21707
|
+
"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.",
|
|
21638
21708
|
"enum": [
|
|
21639
21709
|
"workflow.run"
|
|
21640
21710
|
]
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED