@vertigis/viewer-spec 53.1.0 → 53.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.
- package/app-config/web/QueryBuilderModelProperties.d.ts +16 -0
- package/app-config/web/QueryBuilderModelProperties.js +1 -0
- package/layout/schema/layout-web.xsd +56 -3
- package/messaging/registry/Commands.d.ts +4 -0
- package/messaging/registry/Commands.js +1 -1
- package/messaging/registry/Operations.d.ts +4 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/filter-builder.d.ts +70 -0
- package/messaging/registry/filter-builder.js +1 -0
- package/messaging/registry/query-builder.d.ts +75 -0
- package/messaging/registry/query-builder.js +1 -0
- package/messaging/registry/tasks.d.ts +58 -0
- package/messaging/registry/tasks.js +1 -1
- package/messaging/registry/ui.d.ts +3 -3
- package/messaging/schema/web-action.schema.json +425 -2
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
|
+
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
3
|
+
/**
|
|
4
|
+
* Properties for a query component.
|
|
5
|
+
*/
|
|
6
|
+
export interface QueryBuilderModelProperties extends ComponentModelProperties {
|
|
7
|
+
/**
|
|
8
|
+
* The maximum number of query results to return.
|
|
9
|
+
*/
|
|
10
|
+
maxResults?: number;
|
|
11
|
+
/**
|
|
12
|
+
* The command to execute when the user executes a query. It will get an
|
|
13
|
+
* instance of `QueryArgs` passed in as context.
|
|
14
|
+
*/
|
|
15
|
+
onQuery?: Action;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
|
@@ -59,6 +59,33 @@
|
|
|
59
59
|
</complexType>
|
|
60
60
|
</element>
|
|
61
61
|
|
|
62
|
+
<element name="filter-builder" substitutionGroup="base:component">
|
|
63
|
+
<annotation>
|
|
64
|
+
<documentation xml:lang="en">
|
|
65
|
+
A component that allows the user to interactively apply filters
|
|
66
|
+
to the maps' layers.
|
|
67
|
+
</documentation>
|
|
68
|
+
</annotation>
|
|
69
|
+
<complexType>
|
|
70
|
+
<complexContent>
|
|
71
|
+
<extension base="base:Component">
|
|
72
|
+
<attribute name="show-cancel-button" type="boolean" default="false">
|
|
73
|
+
<annotation>
|
|
74
|
+
<documentation xml:lang="en">
|
|
75
|
+
Whether or not to show a "Cancel" button. This
|
|
76
|
+
button will cancel any pending changes to the
|
|
77
|
+
current filter and deactivate the component.
|
|
78
|
+
This is useful when the component is being shown
|
|
79
|
+
in a temporary way, e.g. in a dialog. The
|
|
80
|
+
default is false.
|
|
81
|
+
</documentation>
|
|
82
|
+
</annotation>
|
|
83
|
+
</attribute>
|
|
84
|
+
</extension>
|
|
85
|
+
</complexContent>
|
|
86
|
+
</complexType>
|
|
87
|
+
</element>
|
|
88
|
+
|
|
62
89
|
<element name="geometry-toolbar" substitutionGroup="base:component">
|
|
63
90
|
<annotation>
|
|
64
91
|
<documentation xml:lang="en">
|
|
@@ -197,15 +224,28 @@
|
|
|
197
224
|
</complexType>
|
|
198
225
|
</element>
|
|
199
226
|
|
|
200
|
-
<element name="
|
|
227
|
+
<element name="query-builder" substitutionGroup="base:component">
|
|
201
228
|
<annotation>
|
|
202
229
|
<documentation xml:lang="en">
|
|
203
|
-
A component that allows the user to
|
|
230
|
+
A component that allows the user to interactively run queries against the
|
|
231
|
+
maps' layers.
|
|
204
232
|
</documentation>
|
|
205
233
|
</annotation>
|
|
206
234
|
<complexType>
|
|
207
235
|
<complexContent>
|
|
208
|
-
<extension base="base:Component"
|
|
236
|
+
<extension base="base:Component">
|
|
237
|
+
<attribute name="show-cancel-button" type="boolean" default="false">
|
|
238
|
+
<annotation>
|
|
239
|
+
<documentation xml:lang="en">
|
|
240
|
+
Whether or not to show a "Cancel" button. This
|
|
241
|
+
button will cancel any pending query and
|
|
242
|
+
deactivate the component. This is useful when
|
|
243
|
+
the component is being shown in a temporary way,
|
|
244
|
+
e.g. in a dialog. The default is false.
|
|
245
|
+
</documentation>
|
|
246
|
+
</annotation>
|
|
247
|
+
</attribute>
|
|
248
|
+
</extension>
|
|
209
249
|
</complexContent>
|
|
210
250
|
</complexType>
|
|
211
251
|
</element>
|
|
@@ -235,6 +275,19 @@
|
|
|
235
275
|
</complexType>
|
|
236
276
|
</element>
|
|
237
277
|
|
|
278
|
+
<element name="shared-projects" substitutionGroup="base:component">
|
|
279
|
+
<annotation>
|
|
280
|
+
<documentation xml:lang="en">
|
|
281
|
+
A component that allows the user to manage and view shared projects.
|
|
282
|
+
</documentation>
|
|
283
|
+
</annotation>
|
|
284
|
+
<complexType>
|
|
285
|
+
<complexContent>
|
|
286
|
+
<extension base="base:Component" />
|
|
287
|
+
</complexContent>
|
|
288
|
+
</complexType>
|
|
289
|
+
</element>
|
|
290
|
+
|
|
238
291
|
<element name="scale-input" substitutionGroup="base:component">
|
|
239
292
|
<annotation>
|
|
240
293
|
<documentation xml:lang="en">
|
|
@@ -6,6 +6,7 @@ import { ChartsCommands } from "./charts.js";
|
|
|
6
6
|
import { DrawingCommands } from "./drawing.js";
|
|
7
7
|
import { EditCommands } from "./edit.js";
|
|
8
8
|
import { FileCommands } from "./file.js";
|
|
9
|
+
import { FilterBuilderCommands } from "./filter-builder.js";
|
|
9
10
|
import { GeolocationCommands } from "./geolocation.js";
|
|
10
11
|
import { GeometryToolbarCommands } from "./geometry-toolbar.js";
|
|
11
12
|
import { GeometryCommands } from "./geometry.js";
|
|
@@ -23,6 +24,7 @@ import { PanelCommands } from "./panel.js";
|
|
|
23
24
|
import { PhotosCommands } from "./photos.js";
|
|
24
25
|
import { PrintCommands } from "./printing.js";
|
|
25
26
|
import { ProjectCommands } from "./project.js";
|
|
27
|
+
import { QueryBuilderCommands } from "./query-builder.js";
|
|
26
28
|
import { RegionCommands } from "./region.js";
|
|
27
29
|
import { ReportsCommands } from "./reports.js";
|
|
28
30
|
import { ResultsCommands } from "./results.js";
|
|
@@ -41,6 +43,7 @@ export declare class Commands extends CommandRegistry {
|
|
|
41
43
|
readonly drawing: DrawingCommands;
|
|
42
44
|
readonly edit: EditCommands;
|
|
43
45
|
readonly file: FileCommands;
|
|
46
|
+
readonly filterBuilder: FilterBuilderCommands;
|
|
44
47
|
readonly geolocation: GeolocationCommands;
|
|
45
48
|
readonly geometry: GeometryCommands;
|
|
46
49
|
readonly geometryToolbar: GeometryToolbarCommands;
|
|
@@ -58,6 +61,7 @@ export declare class Commands extends CommandRegistry {
|
|
|
58
61
|
readonly project: ProjectCommands;
|
|
59
62
|
readonly photos: PhotosCommands;
|
|
60
63
|
readonly printing: PrintCommands;
|
|
64
|
+
readonly queryBuilder: QueryBuilderCommands;
|
|
61
65
|
readonly region: RegionCommands;
|
|
62
66
|
readonly reports: ReportsCommands;
|
|
63
67
|
readonly results: ResultsCommands;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as s}from"../CommandRegistry.js";import{AppCommands as e}from"./app.js";import{AuthCommands as t}from"./auth.js";import{BasemapCommands as i}from"./basemap.js";import{ChartsCommands as m}from"./charts.js";import{DrawingCommands as r}from"./drawing.js";import{EditCommands as o}from"./edit.js";import{FileCommands as h}from"./file.js";import{
|
|
1
|
+
import{CommandRegistry as s}from"../CommandRegistry.js";import{AppCommands as e}from"./app.js";import{AuthCommands as t}from"./auth.js";import{BasemapCommands as i}from"./basemap.js";import{ChartsCommands as m}from"./charts.js";import{DrawingCommands as r}from"./drawing.js";import{EditCommands as o}from"./edit.js";import{FileCommands as h}from"./file.js";import{FilterBuilderCommands as a}from"./filter-builder.js";import{GeolocationCommands as n}from"./geolocation.js";import{GeometryToolbarCommands as p}from"./geometry-toolbar.js";import{GeometryCommands as g}from"./geometry.js";import{HighlightsCommands as f}from"./highlights.js";import{IwtmCommands as w}from"./iwtm.js";import{KpiCommands as j}from"./kpi.js";import{LayerComparisonCommands as _}from"./layer-comparison.js";import{LayerPresetsCommands as l}from"./layer-presets.js";import{LayersCommands as c}from"./layers.js";import{LocationMarkerCommands as u}from"./location-marker.js";import{MapCommands as y}from"./map.js";import{MeasurementCommands as d}from"./measurement.js";import{OfflineCommands as k}from"./offline.js";import{PanelCommands as b}from"./panel.js";import{PhotosCommands as C}from"./photos.js";import{PrintCommands as q}from"./printing.js";import{ProjectCommands as v}from"./project.js";import{QueryBuilderCommands as x}from"./query-builder.js";import{RegionCommands as A}from"./region.js";import{ReportsCommands as B}from"./reports.js";import{ResultsCommands as M}from"./results.js";import{SearchCommands as P}from"./search.js";import{SketchingCommands as R}from"./sketching.js";import{StudioAnalyticsCommands as T}from"./studioAnalytics.js";import{SystemCommands as z}from"./system.js";import{UICommands as D}from"./ui.js";import{ViewerCommands as E}from"./viewer.js";import{WorkflowCommands as F}from"./workflow.js";export class Commands extends s{constructor(){super(...arguments),this.app=new e(this._messages),this.auth=new t(this._messages),this.basemap=new i(this._messages),this.charts=new m(this._messages),this.drawing=new r(this._messages),this.edit=new o(this._messages),this.file=new h(this._messages),this.filterBuilder=new a(this._messages),this.geolocation=new n(this._messages),this.geometry=new g(this._messages),this.geometryToolbar=new p(this._messages),this.highlights=new f(this._messages),this.iwtm=new w(this._messages),this.kpi=new j(this._messages),this.layers=new c(this._messages),this.layerComparison=new _(this._messages),this.layerPresets=new l(this._messages),this.locationMarker=new u(this._messages),this.map=new y(this._messages),this.measurement=new d(this._messages),this.offline=new k(this._messages),this.panel=new b(this._messages),this.project=new v(this._messages),this.photos=new C(this._messages),this.printing=new q(this._messages),this.queryBuilder=new x(this._messages),this.region=new A(this._messages),this.reports=new B(this._messages),this.results=new M(this._messages),this.search=new P(this._messages),this.sketching=new R(this._messages),this.studioAnalytics=new T(this._messages),this.system=new z(this._messages),this.ui=new D(this._messages),this.viewer=new E(this._messages),this.workflow=new F(this._messages)}}
|
|
@@ -8,6 +8,7 @@ import { DebugConsoleOperations } from "./debugConsole.js";
|
|
|
8
8
|
import { DrawingOperations } from "./drawing.js";
|
|
9
9
|
import { EditOperations } from "./edit.js";
|
|
10
10
|
import { FileOperations } from "./file.js";
|
|
11
|
+
import { FilterBuilderOperations } from "./filter-builder.js";
|
|
11
12
|
import { GeocodeOperations } from "./geocode.js";
|
|
12
13
|
import { GeolocationOperations } from "./geolocation.js";
|
|
13
14
|
import { GeometryOperations } from "./geometry.js";
|
|
@@ -20,6 +21,7 @@ import { MessagingOperations } from "./messaging.js";
|
|
|
20
21
|
import { NetworkOperations } from "./network.js";
|
|
21
22
|
import { OfflineOperations } from "./offline.js";
|
|
22
23
|
import { ProjectOperations } from "./project.js";
|
|
24
|
+
import { QueryBuilderOperations } from "./query-builder.js";
|
|
23
25
|
import { ResultsOperations } from "./results.js";
|
|
24
26
|
import { SketchingOperations } from "./sketching.js";
|
|
25
27
|
import { SystemOperations } from "./system.js";
|
|
@@ -36,6 +38,7 @@ export declare class Operations extends OperationRegistry {
|
|
|
36
38
|
readonly edit: EditOperations;
|
|
37
39
|
readonly drawing: DrawingOperations;
|
|
38
40
|
readonly file: FileOperations;
|
|
41
|
+
readonly filterBuilder: FilterBuilderOperations;
|
|
39
42
|
readonly geocode: GeocodeOperations;
|
|
40
43
|
readonly geolocation: GeolocationOperations;
|
|
41
44
|
readonly geometry: GeometryOperations;
|
|
@@ -48,6 +51,7 @@ export declare class Operations extends OperationRegistry {
|
|
|
48
51
|
readonly network: NetworkOperations;
|
|
49
52
|
readonly offline: OfflineOperations;
|
|
50
53
|
readonly project: ProjectOperations;
|
|
54
|
+
readonly queryBuilder: QueryBuilderOperations;
|
|
51
55
|
readonly sketching: SketchingOperations;
|
|
52
56
|
readonly system: SystemOperations;
|
|
53
57
|
readonly results: ResultsOperations;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{OperationRegistry as s}from"../OperationRegistry.js";import{AppOperations as e}from"./app.js";import{ArcadeOperations as
|
|
1
|
+
import{OperationRegistry as s}from"../OperationRegistry.js";import{AppOperations as e}from"./app.js";import{ArcadeOperations as i}from"./arcade.js";import{AuthOperations as t}from"./auth.js";import{BasemapOperations as m}from"./basemap.js";import{ChartOperations as r}from"./charts.js";import{DebugConsoleOperations as o}from"./debugConsole.js";import{DrawingOperations as h}from"./drawing.js";import{EditOperations as a}from"./edit.js";import{FileOperations as g}from"./file.js";import{FilterBuilderOperations as n}from"./filter-builder.js";import{GeocodeOperations as p}from"./geocode.js";import{GeolocationOperations as w}from"./geolocation.js";import{GeometryOperations as f}from"./geometry.js";import{HighlightsOperations as j}from"./highlights.js";import{KpiOperations as _}from"./kpi.js";import{LogViewerOperations as l}from"./logViewer.js";import{MapOperations as u}from"./map.js";import{MeasurementOperations as c}from"./measurement.js";import{MessagingOperations as d}from"./messaging.js";import{NetworkOperations as k}from"./network.js";import{OfflineOperations as y}from"./offline.js";import{ProjectOperations as b}from"./project.js";import{QueryBuilderOperations as q}from"./query-builder.js";import{ResultsOperations as v}from"./results.js";import{SketchingOperations as x}from"./sketching.js";import{SystemOperations as B}from"./system.js";import{TasksOperations as C}from"./tasks.js";import{UIOperations as O}from"./ui.js";import{ViewerOperations as V}from"./viewer.js";import{WorkflowOperations as R}from"./workflow.js";export class Operations extends s{constructor(){super(...arguments),this.arcade=new i(this._messages),this.auth=new t(this._messages),this.app=new e(this._messages),this.basemap=new m(this._messages),this.charts=new r(this._messages),this.edit=new a(this._messages),this.drawing=new h(this._messages),this.file=new g(this._messages),this.filterBuilder=new n(this._messages),this.geocode=new p(this._messages),this.geolocation=new w(this._messages),this.geometry=new f(this._messages),this.highlights=new j(this._messages),this.kpi=new _(this._messages),this.logViewer=new l(this._messages),this.map=new u(this._messages),this.measurement=new c(this._messages),this.messaging=new d(this._messages),this.network=new k(this._messages),this.offline=new y(this._messages),this.project=new b(this._messages),this.queryBuilder=new q(this._messages),this.sketching=new x(this._messages),this.system=new B(this._messages),this.results=new v(this._messages),this.tasks=new C(this._messages),this.ui=new O(this._messages),this.viewer=new V(this._messages),this.workflow=new R(this._messages),this.debugConsole=new o(this._messages)}}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { FeatureSource } from "@vertigis/arcgis-extensions/data/FeatureSource.js";
|
|
2
|
+
import type { Command } from "../Command.js";
|
|
3
|
+
import { CommandRegistry } from "../CommandRegistry.js";
|
|
4
|
+
import type { Operation } from "../Operation.js";
|
|
5
|
+
import { OperationRegistry } from "../OperationRegistry.js";
|
|
6
|
+
import type { LayersLike, ModelRef } from "../common.js";
|
|
7
|
+
/**
|
|
8
|
+
* A filter that can be displayed in the filter builder.
|
|
9
|
+
*/
|
|
10
|
+
export interface Filter {
|
|
11
|
+
/**
|
|
12
|
+
* The feature source to filter. One of `source` or `layers` is required.
|
|
13
|
+
*/
|
|
14
|
+
source?: FeatureSource;
|
|
15
|
+
/**
|
|
16
|
+
* Alias of `source`, to facilitate command chaining. If multiple layers are
|
|
17
|
+
* present, only the first will be used as the source. One of `source` or
|
|
18
|
+
* `layers` is required.
|
|
19
|
+
*/
|
|
20
|
+
layers?: LayersLike;
|
|
21
|
+
/**
|
|
22
|
+
* The where clause to filter by.
|
|
23
|
+
*/
|
|
24
|
+
where?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Base arguments for commands/operations that target filter builder components.
|
|
28
|
+
*/
|
|
29
|
+
export interface FilterBuilderArgsBase {
|
|
30
|
+
/**
|
|
31
|
+
* The filter builder component that will be targeted. If not specified, all
|
|
32
|
+
* active filter builder components in the layout will be targeted.
|
|
33
|
+
*/
|
|
34
|
+
filterBuilder?: ModelRef;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Arguments for the "filter-builder.set-filter" command.
|
|
38
|
+
*/
|
|
39
|
+
export interface SetFilterArgs extends FilterBuilderArgsBase, Filter {
|
|
40
|
+
}
|
|
41
|
+
export declare class FilterBuilderCommands extends CommandRegistry {
|
|
42
|
+
/**
|
|
43
|
+
* Sets the current filter criteria in the filter builder and also activates
|
|
44
|
+
* the component.
|
|
45
|
+
*
|
|
46
|
+
* @webOnly
|
|
47
|
+
*/
|
|
48
|
+
get displayFilter(): Command<SetFilterArgs>;
|
|
49
|
+
/**
|
|
50
|
+
* Sets the current filter criteria in the filter builder.
|
|
51
|
+
*
|
|
52
|
+
* @webOnly
|
|
53
|
+
*/
|
|
54
|
+
get setFilter(): Command<SetFilterArgs>;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Arguments for the "filter-builder.get-filter" operation.
|
|
58
|
+
*/
|
|
59
|
+
export interface GetFilterArgs extends Required<FilterBuilderArgsBase> {
|
|
60
|
+
}
|
|
61
|
+
export declare class FilterBuilderOperations extends OperationRegistry {
|
|
62
|
+
/**
|
|
63
|
+
* Gets the currently visible filter from the specified filter builder
|
|
64
|
+
* component. Note that this filter may not have yet been applied to the
|
|
65
|
+
* layer, so it might differ from the layer's definition expression.
|
|
66
|
+
*
|
|
67
|
+
* @webOnly
|
|
68
|
+
*/
|
|
69
|
+
get getFilter(): Operation<GetFilterArgs, Filter | undefined>;
|
|
70
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{OperationRegistry as t}from"../OperationRegistry.js";export class FilterBuilderCommands extends e{get displayFilter(){return this._messages.command("filter-builder.display-filter")}get setFilter(){return this._messages.command("filter-builder.set-filter")}}export class FilterBuilderOperations extends t{get getFilter(){return this._messages.operation("filter-builder.get-filter")}}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { FeatureSource } from "@vertigis/arcgis-extensions/data/FeatureSource.js";
|
|
2
|
+
import type { Command } from "../Command.js";
|
|
3
|
+
import { CommandRegistry } from "../CommandRegistry.js";
|
|
4
|
+
import type { Operation } from "../Operation.js";
|
|
5
|
+
import { OperationRegistry } from "../OperationRegistry.js";
|
|
6
|
+
import type { GeometryLike, LayersLike, ModelRef } from "../common.js";
|
|
7
|
+
/**
|
|
8
|
+
* A query that can be displayed in the query builder, or executed using the
|
|
9
|
+
* `tasks.query` operation.
|
|
10
|
+
*/
|
|
11
|
+
export interface Query {
|
|
12
|
+
/**
|
|
13
|
+
* The feature source to query. One of `source` or `layers` is required.
|
|
14
|
+
*/
|
|
15
|
+
source?: FeatureSource;
|
|
16
|
+
/**
|
|
17
|
+
* Alias of `source`, to facilitate command chaining. If multiple layers are
|
|
18
|
+
* present, only the first will be used as the source. One of `source` or
|
|
19
|
+
* `layers` is required.
|
|
20
|
+
*/
|
|
21
|
+
layers?: LayersLike;
|
|
22
|
+
/**
|
|
23
|
+
* The where clause to query by.
|
|
24
|
+
*/
|
|
25
|
+
where?: string;
|
|
26
|
+
/**
|
|
27
|
+
* If specified, limits the results to ones that intersect the given
|
|
28
|
+
* geometry.
|
|
29
|
+
*/
|
|
30
|
+
geometry?: GeometryLike;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Base arguments for commands/operations that target query builder components.
|
|
34
|
+
*/
|
|
35
|
+
export interface QueryBuilderArgsBase {
|
|
36
|
+
/**
|
|
37
|
+
* The query builder component that will be targeted. If not specified, all
|
|
38
|
+
* active query builder components in the layout will be targeted.
|
|
39
|
+
*/
|
|
40
|
+
queryBuilder?: ModelRef;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Arguments for the "query-builder.set-query" command.
|
|
44
|
+
*/
|
|
45
|
+
export interface SetQueryArgs extends QueryBuilderArgsBase, Query {
|
|
46
|
+
}
|
|
47
|
+
export declare class QueryBuilderCommands extends CommandRegistry {
|
|
48
|
+
/**
|
|
49
|
+
* Sets the current query criteria in the query builder and also activates
|
|
50
|
+
* the component.
|
|
51
|
+
*
|
|
52
|
+
* @webOnly
|
|
53
|
+
*/
|
|
54
|
+
get displayQuery(): Command<SetQueryArgs>;
|
|
55
|
+
/**
|
|
56
|
+
* Sets the current query criteria in the query builder.
|
|
57
|
+
*
|
|
58
|
+
* @webOnly
|
|
59
|
+
*/
|
|
60
|
+
get setQuery(): Command<SetQueryArgs>;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Arguments for the "query-builder.get-query" operation.
|
|
64
|
+
*/
|
|
65
|
+
export interface GetQueryArgs extends Required<QueryBuilderArgsBase> {
|
|
66
|
+
}
|
|
67
|
+
export declare class QueryBuilderOperations extends OperationRegistry {
|
|
68
|
+
/**
|
|
69
|
+
* Gets the currently visible query from the specified query builder
|
|
70
|
+
* component.
|
|
71
|
+
*
|
|
72
|
+
* @webOnly
|
|
73
|
+
*/
|
|
74
|
+
get getQuery(): Operation<GetQueryArgs, Query | undefined>;
|
|
75
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export class QueryBuilderCommands extends e{get displayQuery(){return this._messages.command("query-builder.display-query")}get setQuery(){return this._messages.command("query-builder.set-query")}}export class QueryBuilderOperations extends r{get getQuery(){return this._messages.operation("query-builder.get-query")}}
|
|
@@ -134,6 +134,43 @@ export interface IdentifyArgs {
|
|
|
134
134
|
*/
|
|
135
135
|
polyTolerance?: number;
|
|
136
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* Arguments for the tasks.query operation.
|
|
139
|
+
*/
|
|
140
|
+
export interface QueryArgs {
|
|
141
|
+
/**
|
|
142
|
+
* The feature source to query.
|
|
143
|
+
*/
|
|
144
|
+
source: FeatureSource;
|
|
145
|
+
/**
|
|
146
|
+
* The where clause to query by.
|
|
147
|
+
*/
|
|
148
|
+
where: string;
|
|
149
|
+
/**
|
|
150
|
+
* The geometry to query by.
|
|
151
|
+
*/
|
|
152
|
+
geometry?: GeometryLike;
|
|
153
|
+
/**
|
|
154
|
+
* Whether geometry for features should be returned.
|
|
155
|
+
*/
|
|
156
|
+
returnGeometry?: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* Fields that should be returned for each feature.
|
|
159
|
+
*/
|
|
160
|
+
outFields?: string[];
|
|
161
|
+
/**
|
|
162
|
+
* The spatial reference for the returned geometry.
|
|
163
|
+
*/
|
|
164
|
+
outSpatialReference?: SpatialReference;
|
|
165
|
+
/**
|
|
166
|
+
* The maximum allowable offset used for generalizing returned geometries.
|
|
167
|
+
*/
|
|
168
|
+
maxAllowableOffset?: number;
|
|
169
|
+
/**
|
|
170
|
+
* The maximum number of results to return.
|
|
171
|
+
*/
|
|
172
|
+
maxResults?: number;
|
|
173
|
+
}
|
|
137
174
|
/**
|
|
138
175
|
* The arguments for the tasks.supports-identify operation.
|
|
139
176
|
*/
|
|
@@ -151,6 +188,15 @@ export interface SupportsIdentifyArgs {
|
|
|
151
188
|
*/
|
|
152
189
|
options?: IdentifyOptions;
|
|
153
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* The arguments for the tasks.supports-identify operation.
|
|
193
|
+
*/
|
|
194
|
+
export interface SupportsQueryArgs {
|
|
195
|
+
/**
|
|
196
|
+
* The feature source to query.
|
|
197
|
+
*/
|
|
198
|
+
source: FeatureSource;
|
|
199
|
+
}
|
|
154
200
|
export declare class TasksEvents extends EventRegistry {
|
|
155
201
|
/**
|
|
156
202
|
* Raised when an identify task has been executed.
|
|
@@ -176,6 +222,18 @@ export declare class TasksOperations extends OperationRegistry {
|
|
|
176
222
|
* @webOnly
|
|
177
223
|
*/
|
|
178
224
|
get supportsIdentify(): Operation<FeatureSource | SupportsIdentifyArgs, boolean>;
|
|
225
|
+
/**
|
|
226
|
+
* Returns features that match the supplied where clause.
|
|
227
|
+
*
|
|
228
|
+
* @webOnly
|
|
229
|
+
*/
|
|
230
|
+
get query(): Operation<QueryArgs, Features>;
|
|
231
|
+
/**
|
|
232
|
+
* Returns a boolean depicting whether a FeatureSource supports query.
|
|
233
|
+
*
|
|
234
|
+
* @webOnly
|
|
235
|
+
*/
|
|
236
|
+
get supportsQuery(): Operation<FeatureSource | SupportsQueryArgs, boolean>;
|
|
179
237
|
/**
|
|
180
238
|
* Returns features that match the given search text.
|
|
181
239
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{EventRegistry as
|
|
1
|
+
import{EventRegistry as s}from"../EventRegistry.js";import{OperationRegistry as e}from"../OperationRegistry.js";export class TasksEvents extends s{get identified(){return this._messages.event("tasks.identified")}get reverseGeocoded(){return this._messages.event("tasks.reverse-geocoded")}}export class TasksOperations extends e{get identify(){return this._messages.operation("tasks.identify")}get supportsIdentify(){return this._messages.operation("tasks.supports-identify")}get query(){return this._messages.operation("tasks.query")}get supportsQuery(){return this._messages.operation("tasks.supports-query")}get search(){return this._messages.operation("tasks.search")}get supportsSearch(){return this._messages.operation("tasks.supports-search")}}
|
|
@@ -120,7 +120,7 @@ export declare enum NotificationType {
|
|
|
120
120
|
/**
|
|
121
121
|
* Automatically choose whether to display an app notification or system
|
|
122
122
|
* notification. If the app is in the background, a system notification will
|
|
123
|
-
* be shown. If the app is in the foreground, an in-app
|
|
123
|
+
* be shown. If the app is in the foreground, an in-app notification will be
|
|
124
124
|
* shown. If notifications are unauthorized at the OS level, an in-app
|
|
125
125
|
* notification will always be shown.
|
|
126
126
|
*/
|
|
@@ -178,7 +178,7 @@ export type ComponentId = string;
|
|
|
178
178
|
export interface FocusArgs {
|
|
179
179
|
/**
|
|
180
180
|
* The component to focus. If the selector property is not defined, the
|
|
181
|
-
* first focusable element within the component will
|
|
181
|
+
* first focusable element within the component will receive focus. If this
|
|
182
182
|
* property is not defined, only the selector will be used.
|
|
183
183
|
*/
|
|
184
184
|
component?: ComponentId | Model;
|
|
@@ -234,7 +234,7 @@ export type NarrateArgs = string | NarrateOptions;
|
|
|
234
234
|
*/
|
|
235
235
|
export interface NarrateOptions extends TranslateOptions {
|
|
236
236
|
/**
|
|
237
|
-
* A timeout before the narration is
|
|
237
|
+
* A timeout before the narration is executed. This can be used to avoid
|
|
238
238
|
* focus changes that can interrupt the screen reader. Defaults to 50ms.
|
|
239
239
|
*/
|
|
240
240
|
timeout?: number;
|
|
@@ -2665,6 +2665,25 @@
|
|
|
2665
2665
|
],
|
|
2666
2666
|
"description": "A data containing object that may or may not be named."
|
|
2667
2667
|
},
|
|
2668
|
+
"Filter": {
|
|
2669
|
+
"additionalProperties": false,
|
|
2670
|
+
"description": "A filter that can be displayed in the filter builder.",
|
|
2671
|
+
"properties": {
|
|
2672
|
+
"layers": {
|
|
2673
|
+
"$ref": "#/definitions/LayersLike",
|
|
2674
|
+
"description": "Alias of `source`, to facilitate command chaining. If multiple layers are present, only the first will be used as the source. One of `source` or `layers` is required."
|
|
2675
|
+
},
|
|
2676
|
+
"source": {
|
|
2677
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
2678
|
+
"description": "The feature source to filter. One of `source` or `layers` is required."
|
|
2679
|
+
},
|
|
2680
|
+
"where": {
|
|
2681
|
+
"description": "The where clause to filter by.",
|
|
2682
|
+
"type": "string"
|
|
2683
|
+
}
|
|
2684
|
+
},
|
|
2685
|
+
"type": "object"
|
|
2686
|
+
},
|
|
2668
2687
|
"FilterDistanceUnits": {
|
|
2669
2688
|
"description": "The unit for calculating the buffer distance when 'distance' is specified for a filter effect.",
|
|
2670
2689
|
"enum": [
|
|
@@ -2824,7 +2843,7 @@
|
|
|
2824
2843
|
"type": "string"
|
|
2825
2844
|
}
|
|
2826
2845
|
],
|
|
2827
|
-
"description": "The component to focus. If the selector property is not defined, the first focusable element within the component will
|
|
2846
|
+
"description": "The component to focus. If the selector property is not defined, the first focusable element within the component will receive focus. If this property is not defined, only the selector will be used."
|
|
2828
2847
|
},
|
|
2829
2848
|
"selector": {
|
|
2830
2849
|
"description": "The CSS selector used to find an HTML Element in the DOM. If a component is also provided, the selector will only look within the component's element tree in the DOM.",
|
|
@@ -3600,6 +3619,20 @@
|
|
|
3600
3619
|
],
|
|
3601
3620
|
"type": "object"
|
|
3602
3621
|
},
|
|
3622
|
+
"GetFilterArgs": {
|
|
3623
|
+
"additionalProperties": false,
|
|
3624
|
+
"description": "Arguments for the \"filter-builder.get-filter\" operation.",
|
|
3625
|
+
"properties": {
|
|
3626
|
+
"filterBuilder": {
|
|
3627
|
+
"$ref": "#/definitions/ModelRef",
|
|
3628
|
+
"description": "The filter builder component that will be targeted. If not specified, all active filter builder components in the layout will be targeted."
|
|
3629
|
+
}
|
|
3630
|
+
},
|
|
3631
|
+
"required": [
|
|
3632
|
+
"filterBuilder"
|
|
3633
|
+
],
|
|
3634
|
+
"type": "object"
|
|
3635
|
+
},
|
|
3603
3636
|
"GetKpiDefinitionResult": {
|
|
3604
3637
|
"additionalProperties": false,
|
|
3605
3638
|
"description": "The result of the the charts.update-definition operation.",
|
|
@@ -3656,6 +3689,20 @@
|
|
|
3656
3689
|
],
|
|
3657
3690
|
"type": "object"
|
|
3658
3691
|
},
|
|
3692
|
+
"GetQueryArgs": {
|
|
3693
|
+
"additionalProperties": false,
|
|
3694
|
+
"description": "Arguments for the \"query-builder.get-query\" operation.",
|
|
3695
|
+
"properties": {
|
|
3696
|
+
"queryBuilder": {
|
|
3697
|
+
"$ref": "#/definitions/ModelRef",
|
|
3698
|
+
"description": "The query builder component that will be targeted. If not specified, all active query builder components in the layout will be targeted."
|
|
3699
|
+
}
|
|
3700
|
+
},
|
|
3701
|
+
"required": [
|
|
3702
|
+
"queryBuilder"
|
|
3703
|
+
],
|
|
3704
|
+
"type": "object"
|
|
3705
|
+
},
|
|
3659
3706
|
"GetViewpointResult": {
|
|
3660
3707
|
"additionalProperties": false,
|
|
3661
3708
|
"description": "The result of getting a Viewpoint.",
|
|
@@ -4534,7 +4581,7 @@
|
|
|
4534
4581
|
"type": "string"
|
|
4535
4582
|
},
|
|
4536
4583
|
"timeout": {
|
|
4537
|
-
"description": "A timeout before the narration is
|
|
4584
|
+
"description": "A timeout before the narration is executed. This can be used to avoid focus changes that can interrupt the screen reader. Defaults to 50ms.",
|
|
4538
4585
|
"type": "number"
|
|
4539
4586
|
}
|
|
4540
4587
|
},
|
|
@@ -4856,6 +4903,75 @@
|
|
|
4856
4903
|
},
|
|
4857
4904
|
"type": "object"
|
|
4858
4905
|
},
|
|
4906
|
+
"Query": {
|
|
4907
|
+
"additionalProperties": false,
|
|
4908
|
+
"description": "A query that can be displayed in the query builder, or executed using the `tasks.query` operation.",
|
|
4909
|
+
"properties": {
|
|
4910
|
+
"geometry": {
|
|
4911
|
+
"$ref": "#/definitions/GeometryLike",
|
|
4912
|
+
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
4913
|
+
},
|
|
4914
|
+
"layers": {
|
|
4915
|
+
"$ref": "#/definitions/LayersLike",
|
|
4916
|
+
"description": "Alias of `source`, to facilitate command chaining. If multiple layers are present, only the first will be used as the source. One of `source` or `layers` is required."
|
|
4917
|
+
},
|
|
4918
|
+
"source": {
|
|
4919
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
4920
|
+
"description": "The feature source to query. One of `source` or `layers` is required."
|
|
4921
|
+
},
|
|
4922
|
+
"where": {
|
|
4923
|
+
"description": "The where clause to query by.",
|
|
4924
|
+
"type": "string"
|
|
4925
|
+
}
|
|
4926
|
+
},
|
|
4927
|
+
"type": "object"
|
|
4928
|
+
},
|
|
4929
|
+
"QueryArgs": {
|
|
4930
|
+
"additionalProperties": false,
|
|
4931
|
+
"description": "Arguments for the tasks.query operation.",
|
|
4932
|
+
"properties": {
|
|
4933
|
+
"geometry": {
|
|
4934
|
+
"$ref": "#/definitions/GeometryLike",
|
|
4935
|
+
"description": "The geometry to query by."
|
|
4936
|
+
},
|
|
4937
|
+
"maxAllowableOffset": {
|
|
4938
|
+
"description": "The maximum allowable offset used for generalizing returned geometries.",
|
|
4939
|
+
"type": "number"
|
|
4940
|
+
},
|
|
4941
|
+
"maxResults": {
|
|
4942
|
+
"description": "The maximum number of results to return.",
|
|
4943
|
+
"type": "number"
|
|
4944
|
+
},
|
|
4945
|
+
"outFields": {
|
|
4946
|
+
"description": "Fields that should be returned for each feature.",
|
|
4947
|
+
"items": {
|
|
4948
|
+
"type": "string"
|
|
4949
|
+
},
|
|
4950
|
+
"type": "array"
|
|
4951
|
+
},
|
|
4952
|
+
"outSpatialReference": {
|
|
4953
|
+
"$ref": "#/definitions/esri.SpatialReference",
|
|
4954
|
+
"description": "The spatial reference for the returned geometry."
|
|
4955
|
+
},
|
|
4956
|
+
"returnGeometry": {
|
|
4957
|
+
"description": "Whether geometry for features should be returned.",
|
|
4958
|
+
"type": "boolean"
|
|
4959
|
+
},
|
|
4960
|
+
"source": {
|
|
4961
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
4962
|
+
"description": "The feature source to query."
|
|
4963
|
+
},
|
|
4964
|
+
"where": {
|
|
4965
|
+
"description": "The where clause to query by.",
|
|
4966
|
+
"type": "string"
|
|
4967
|
+
}
|
|
4968
|
+
},
|
|
4969
|
+
"required": [
|
|
4970
|
+
"source",
|
|
4971
|
+
"where"
|
|
4972
|
+
],
|
|
4973
|
+
"type": "object"
|
|
4974
|
+
},
|
|
4859
4975
|
"ReadFileArgs": {
|
|
4860
4976
|
"additionalProperties": false,
|
|
4861
4977
|
"description": "Arguments for the system.read-file operation.",
|
|
@@ -5483,6 +5599,29 @@
|
|
|
5483
5599
|
],
|
|
5484
5600
|
"type": "object"
|
|
5485
5601
|
},
|
|
5602
|
+
"SetFilterArgs": {
|
|
5603
|
+
"additionalProperties": false,
|
|
5604
|
+
"description": "Arguments for the \"filter-builder.set-filter\" command.",
|
|
5605
|
+
"properties": {
|
|
5606
|
+
"filterBuilder": {
|
|
5607
|
+
"$ref": "#/definitions/ModelRef",
|
|
5608
|
+
"description": "The filter builder component that will be targeted. If not specified, all active filter builder components in the layout will be targeted."
|
|
5609
|
+
},
|
|
5610
|
+
"layers": {
|
|
5611
|
+
"$ref": "#/definitions/LayersLike",
|
|
5612
|
+
"description": "Alias of `source`, to facilitate command chaining. If multiple layers are present, only the first will be used as the source. One of `source` or `layers` is required."
|
|
5613
|
+
},
|
|
5614
|
+
"source": {
|
|
5615
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
5616
|
+
"description": "The feature source to filter. One of `source` or `layers` is required."
|
|
5617
|
+
},
|
|
5618
|
+
"where": {
|
|
5619
|
+
"description": "The where clause to filter by.",
|
|
5620
|
+
"type": "string"
|
|
5621
|
+
}
|
|
5622
|
+
},
|
|
5623
|
+
"type": "object"
|
|
5624
|
+
},
|
|
5486
5625
|
"SetGeometryModeArgs": {
|
|
5487
5626
|
"additionalProperties": false,
|
|
5488
5627
|
"description": "Arguments for the \"sketching.set-geometry-mode\" command.",
|
|
@@ -5611,6 +5750,33 @@
|
|
|
5611
5750
|
],
|
|
5612
5751
|
"type": "object"
|
|
5613
5752
|
},
|
|
5753
|
+
"SetQueryArgs": {
|
|
5754
|
+
"additionalProperties": false,
|
|
5755
|
+
"description": "Arguments for the \"query-builder.set-query\" command.",
|
|
5756
|
+
"properties": {
|
|
5757
|
+
"geometry": {
|
|
5758
|
+
"$ref": "#/definitions/GeometryLike",
|
|
5759
|
+
"description": "If specified, limits the results to ones that intersect the given geometry."
|
|
5760
|
+
},
|
|
5761
|
+
"layers": {
|
|
5762
|
+
"$ref": "#/definitions/LayersLike",
|
|
5763
|
+
"description": "Alias of `source`, to facilitate command chaining. If multiple layers are present, only the first will be used as the source. One of `source` or `layers` is required."
|
|
5764
|
+
},
|
|
5765
|
+
"queryBuilder": {
|
|
5766
|
+
"$ref": "#/definitions/ModelRef",
|
|
5767
|
+
"description": "The query builder component that will be targeted. If not specified, all active query builder components in the layout will be targeted."
|
|
5768
|
+
},
|
|
5769
|
+
"source": {
|
|
5770
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
5771
|
+
"description": "The feature source to query. One of `source` or `layers` is required."
|
|
5772
|
+
},
|
|
5773
|
+
"where": {
|
|
5774
|
+
"description": "The where clause to query by.",
|
|
5775
|
+
"type": "string"
|
|
5776
|
+
}
|
|
5777
|
+
},
|
|
5778
|
+
"type": "object"
|
|
5779
|
+
},
|
|
5614
5780
|
"SetSnappingConfigurationArgs": {
|
|
5615
5781
|
"additionalProperties": false,
|
|
5616
5782
|
"description": "Arguments for the \"sketching.set-snapping-configuration\" command.",
|
|
@@ -6152,6 +6318,20 @@
|
|
|
6152
6318
|
],
|
|
6153
6319
|
"type": "object"
|
|
6154
6320
|
},
|
|
6321
|
+
"SupportsQueryArgs": {
|
|
6322
|
+
"additionalProperties": false,
|
|
6323
|
+
"description": "The arguments for the tasks.supports-identify operation.",
|
|
6324
|
+
"properties": {
|
|
6325
|
+
"source": {
|
|
6326
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
|
|
6327
|
+
"description": "The feature source to query."
|
|
6328
|
+
}
|
|
6329
|
+
},
|
|
6330
|
+
"required": [
|
|
6331
|
+
"source"
|
|
6332
|
+
],
|
|
6333
|
+
"type": "object"
|
|
6334
|
+
},
|
|
6155
6335
|
"SwitchActiveNodeArgs": {
|
|
6156
6336
|
"additionalProperties": false,
|
|
6157
6337
|
"description": "Deprecated - use \"sketching.set-active-points\" with {@link SetActivePointsArgs}.",
|
|
@@ -17011,6 +17191,36 @@
|
|
|
17011
17191
|
],
|
|
17012
17192
|
"type": "string"
|
|
17013
17193
|
},
|
|
17194
|
+
"filter-builder.display-filter": {
|
|
17195
|
+
"description": "Sets the current filter criteria in the filter builder and also activates the component.",
|
|
17196
|
+
"enum": [
|
|
17197
|
+
"filter-builder.display-filter"
|
|
17198
|
+
]
|
|
17199
|
+
},
|
|
17200
|
+
"filter-builder.display-filter:input": {
|
|
17201
|
+
"$ref": "#/definitions/SetFilterArgs"
|
|
17202
|
+
},
|
|
17203
|
+
"filter-builder.get-filter": {
|
|
17204
|
+
"description": "Gets the currently visible filter from the specified filter builder component. Note that this filter may not have yet been applied to the layer, so it might differ from the layer's definition expression.",
|
|
17205
|
+
"enum": [
|
|
17206
|
+
"filter-builder.get-filter"
|
|
17207
|
+
]
|
|
17208
|
+
},
|
|
17209
|
+
"filter-builder.get-filter:input": {
|
|
17210
|
+
"$ref": "#/definitions/GetFilterArgs"
|
|
17211
|
+
},
|
|
17212
|
+
"filter-builder.get-filter:output": {
|
|
17213
|
+
"$ref": "#/definitions/Filter"
|
|
17214
|
+
},
|
|
17215
|
+
"filter-builder.set-filter": {
|
|
17216
|
+
"description": "Sets the current filter criteria in the filter builder.",
|
|
17217
|
+
"enum": [
|
|
17218
|
+
"filter-builder.set-filter"
|
|
17219
|
+
]
|
|
17220
|
+
},
|
|
17221
|
+
"filter-builder.set-filter:input": {
|
|
17222
|
+
"$ref": "#/definitions/SetFilterArgs"
|
|
17223
|
+
},
|
|
17014
17224
|
"geocode.batch-geocode": {
|
|
17015
17225
|
"description": "Finds locations corresponding to multiple addresses. The geocoder must have the supportsBatchGeocoding capability.",
|
|
17016
17226
|
"enum": [
|
|
@@ -19114,6 +19324,36 @@
|
|
|
19114
19324
|
"project.show-share-link:input": {
|
|
19115
19325
|
"$ref": "#/definitions/SharedProject"
|
|
19116
19326
|
},
|
|
19327
|
+
"query-builder.display-query": {
|
|
19328
|
+
"description": "Sets the current query criteria in the query builder and also activates the component.",
|
|
19329
|
+
"enum": [
|
|
19330
|
+
"query-builder.display-query"
|
|
19331
|
+
]
|
|
19332
|
+
},
|
|
19333
|
+
"query-builder.display-query:input": {
|
|
19334
|
+
"$ref": "#/definitions/SetQueryArgs"
|
|
19335
|
+
},
|
|
19336
|
+
"query-builder.get-query": {
|
|
19337
|
+
"description": "Gets the currently visible query from the specified query builder component.",
|
|
19338
|
+
"enum": [
|
|
19339
|
+
"query-builder.get-query"
|
|
19340
|
+
]
|
|
19341
|
+
},
|
|
19342
|
+
"query-builder.get-query:input": {
|
|
19343
|
+
"$ref": "#/definitions/GetQueryArgs"
|
|
19344
|
+
},
|
|
19345
|
+
"query-builder.get-query:output": {
|
|
19346
|
+
"$ref": "#/definitions/Query"
|
|
19347
|
+
},
|
|
19348
|
+
"query-builder.set-query": {
|
|
19349
|
+
"description": "Sets the current query criteria in the query builder.",
|
|
19350
|
+
"enum": [
|
|
19351
|
+
"query-builder.set-query"
|
|
19352
|
+
]
|
|
19353
|
+
},
|
|
19354
|
+
"query-builder.set-query:input": {
|
|
19355
|
+
"$ref": "#/definitions/SetQueryArgs"
|
|
19356
|
+
},
|
|
19117
19357
|
"region.set-measurement-system": {
|
|
19118
19358
|
"description": "Sets the current measurement system.",
|
|
19119
19359
|
"enum": [
|
|
@@ -20262,6 +20502,18 @@
|
|
|
20262
20502
|
"tasks.identify:output": {
|
|
20263
20503
|
"$ref": "#/definitions/Features"
|
|
20264
20504
|
},
|
|
20505
|
+
"tasks.query": {
|
|
20506
|
+
"description": "Returns features that match the supplied where clause.",
|
|
20507
|
+
"enum": [
|
|
20508
|
+
"tasks.query"
|
|
20509
|
+
]
|
|
20510
|
+
},
|
|
20511
|
+
"tasks.query:input": {
|
|
20512
|
+
"$ref": "#/definitions/QueryArgs"
|
|
20513
|
+
},
|
|
20514
|
+
"tasks.query:output": {
|
|
20515
|
+
"$ref": "#/definitions/Features"
|
|
20516
|
+
},
|
|
20265
20517
|
"tasks.search": {
|
|
20266
20518
|
"description": "Returns features that match the given search text.",
|
|
20267
20519
|
"enum": [
|
|
@@ -20293,6 +20545,25 @@
|
|
|
20293
20545
|
"tasks.supports-identify:output": {
|
|
20294
20546
|
"type": "boolean"
|
|
20295
20547
|
},
|
|
20548
|
+
"tasks.supports-query": {
|
|
20549
|
+
"description": "Returns a boolean depicting whether a FeatureSource supports query.",
|
|
20550
|
+
"enum": [
|
|
20551
|
+
"tasks.supports-query"
|
|
20552
|
+
]
|
|
20553
|
+
},
|
|
20554
|
+
"tasks.supports-query:input": {
|
|
20555
|
+
"anyOf": [
|
|
20556
|
+
{
|
|
20557
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
20558
|
+
},
|
|
20559
|
+
{
|
|
20560
|
+
"$ref": "#/definitions/SupportsQueryArgs"
|
|
20561
|
+
}
|
|
20562
|
+
]
|
|
20563
|
+
},
|
|
20564
|
+
"tasks.supports-query:output": {
|
|
20565
|
+
"type": "boolean"
|
|
20566
|
+
},
|
|
20296
20567
|
"tasks.supports-search": {
|
|
20297
20568
|
"description": "Returns a boolean depicting whether a FeatureSource supports search.",
|
|
20298
20569
|
"enum": [
|
|
@@ -20902,6 +21173,38 @@
|
|
|
20902
21173
|
],
|
|
20903
21174
|
"type": "object"
|
|
20904
21175
|
},
|
|
21176
|
+
{
|
|
21177
|
+
"additionalProperties": false,
|
|
21178
|
+
"properties": {
|
|
21179
|
+
"arguments": {
|
|
21180
|
+
"$ref": "#/definitions/filter-builder.display-filter:input"
|
|
21181
|
+
},
|
|
21182
|
+
"name": {
|
|
21183
|
+
"$ref": "#/definitions/filter-builder.display-filter"
|
|
21184
|
+
}
|
|
21185
|
+
},
|
|
21186
|
+
"required": [
|
|
21187
|
+
"name",
|
|
21188
|
+
"arguments"
|
|
21189
|
+
],
|
|
21190
|
+
"type": "object"
|
|
21191
|
+
},
|
|
21192
|
+
{
|
|
21193
|
+
"additionalProperties": false,
|
|
21194
|
+
"properties": {
|
|
21195
|
+
"arguments": {
|
|
21196
|
+
"$ref": "#/definitions/filter-builder.set-filter:input"
|
|
21197
|
+
},
|
|
21198
|
+
"name": {
|
|
21199
|
+
"$ref": "#/definitions/filter-builder.set-filter"
|
|
21200
|
+
}
|
|
21201
|
+
},
|
|
21202
|
+
"required": [
|
|
21203
|
+
"name",
|
|
21204
|
+
"arguments"
|
|
21205
|
+
],
|
|
21206
|
+
"type": "object"
|
|
21207
|
+
},
|
|
20905
21208
|
{
|
|
20906
21209
|
"additionalProperties": false,
|
|
20907
21210
|
"properties": {
|
|
@@ -22246,6 +22549,38 @@
|
|
|
22246
22549
|
],
|
|
22247
22550
|
"type": "object"
|
|
22248
22551
|
},
|
|
22552
|
+
{
|
|
22553
|
+
"additionalProperties": false,
|
|
22554
|
+
"properties": {
|
|
22555
|
+
"arguments": {
|
|
22556
|
+
"$ref": "#/definitions/query-builder.display-query:input"
|
|
22557
|
+
},
|
|
22558
|
+
"name": {
|
|
22559
|
+
"$ref": "#/definitions/query-builder.display-query"
|
|
22560
|
+
}
|
|
22561
|
+
},
|
|
22562
|
+
"required": [
|
|
22563
|
+
"name",
|
|
22564
|
+
"arguments"
|
|
22565
|
+
],
|
|
22566
|
+
"type": "object"
|
|
22567
|
+
},
|
|
22568
|
+
{
|
|
22569
|
+
"additionalProperties": false,
|
|
22570
|
+
"properties": {
|
|
22571
|
+
"arguments": {
|
|
22572
|
+
"$ref": "#/definitions/query-builder.set-query:input"
|
|
22573
|
+
},
|
|
22574
|
+
"name": {
|
|
22575
|
+
"$ref": "#/definitions/query-builder.set-query"
|
|
22576
|
+
}
|
|
22577
|
+
},
|
|
22578
|
+
"required": [
|
|
22579
|
+
"name",
|
|
22580
|
+
"arguments"
|
|
22581
|
+
],
|
|
22582
|
+
"type": "object"
|
|
22583
|
+
},
|
|
22249
22584
|
{
|
|
22250
22585
|
"additionalProperties": false,
|
|
22251
22586
|
"properties": {
|
|
@@ -22990,6 +23325,12 @@
|
|
|
22990
23325
|
{
|
|
22991
23326
|
"$ref": "#/definitions/edit.update-session"
|
|
22992
23327
|
},
|
|
23328
|
+
{
|
|
23329
|
+
"$ref": "#/definitions/filter-builder.display-filter"
|
|
23330
|
+
},
|
|
23331
|
+
{
|
|
23332
|
+
"$ref": "#/definitions/filter-builder.set-filter"
|
|
23333
|
+
},
|
|
22993
23334
|
{
|
|
22994
23335
|
"$ref": "#/definitions/geolocation.auto-recenter"
|
|
22995
23336
|
},
|
|
@@ -23248,6 +23589,12 @@
|
|
|
23248
23589
|
{
|
|
23249
23590
|
"$ref": "#/definitions/project.show-share-link"
|
|
23250
23591
|
},
|
|
23592
|
+
{
|
|
23593
|
+
"$ref": "#/definitions/query-builder.display-query"
|
|
23594
|
+
},
|
|
23595
|
+
{
|
|
23596
|
+
"$ref": "#/definitions/query-builder.set-query"
|
|
23597
|
+
},
|
|
23251
23598
|
{
|
|
23252
23599
|
"$ref": "#/definitions/region.set-measurement-system"
|
|
23253
23600
|
},
|
|
@@ -23555,6 +23902,22 @@
|
|
|
23555
23902
|
],
|
|
23556
23903
|
"type": "object"
|
|
23557
23904
|
},
|
|
23905
|
+
{
|
|
23906
|
+
"additionalProperties": false,
|
|
23907
|
+
"properties": {
|
|
23908
|
+
"arguments": {
|
|
23909
|
+
"$ref": "#/definitions/filter-builder.get-filter:input"
|
|
23910
|
+
},
|
|
23911
|
+
"name": {
|
|
23912
|
+
"$ref": "#/definitions/filter-builder.get-filter"
|
|
23913
|
+
}
|
|
23914
|
+
},
|
|
23915
|
+
"required": [
|
|
23916
|
+
"name",
|
|
23917
|
+
"arguments"
|
|
23918
|
+
],
|
|
23919
|
+
"type": "object"
|
|
23920
|
+
},
|
|
23558
23921
|
{
|
|
23559
23922
|
"additionalProperties": false,
|
|
23560
23923
|
"properties": {
|
|
@@ -23955,6 +24318,22 @@
|
|
|
23955
24318
|
],
|
|
23956
24319
|
"type": "object"
|
|
23957
24320
|
},
|
|
24321
|
+
{
|
|
24322
|
+
"additionalProperties": false,
|
|
24323
|
+
"properties": {
|
|
24324
|
+
"arguments": {
|
|
24325
|
+
"$ref": "#/definitions/query-builder.get-query:input"
|
|
24326
|
+
},
|
|
24327
|
+
"name": {
|
|
24328
|
+
"$ref": "#/definitions/query-builder.get-query"
|
|
24329
|
+
}
|
|
24330
|
+
},
|
|
24331
|
+
"required": [
|
|
24332
|
+
"name",
|
|
24333
|
+
"arguments"
|
|
24334
|
+
],
|
|
24335
|
+
"type": "object"
|
|
24336
|
+
},
|
|
23958
24337
|
{
|
|
23959
24338
|
"additionalProperties": false,
|
|
23960
24339
|
"properties": {
|
|
@@ -24435,6 +24814,22 @@
|
|
|
24435
24814
|
],
|
|
24436
24815
|
"type": "object"
|
|
24437
24816
|
},
|
|
24817
|
+
{
|
|
24818
|
+
"additionalProperties": false,
|
|
24819
|
+
"properties": {
|
|
24820
|
+
"arguments": {
|
|
24821
|
+
"$ref": "#/definitions/tasks.query:input"
|
|
24822
|
+
},
|
|
24823
|
+
"name": {
|
|
24824
|
+
"$ref": "#/definitions/tasks.query"
|
|
24825
|
+
}
|
|
24826
|
+
},
|
|
24827
|
+
"required": [
|
|
24828
|
+
"name",
|
|
24829
|
+
"arguments"
|
|
24830
|
+
],
|
|
24831
|
+
"type": "object"
|
|
24832
|
+
},
|
|
24438
24833
|
{
|
|
24439
24834
|
"additionalProperties": false,
|
|
24440
24835
|
"properties": {
|
|
@@ -24467,6 +24862,22 @@
|
|
|
24467
24862
|
],
|
|
24468
24863
|
"type": "object"
|
|
24469
24864
|
},
|
|
24865
|
+
{
|
|
24866
|
+
"additionalProperties": false,
|
|
24867
|
+
"properties": {
|
|
24868
|
+
"arguments": {
|
|
24869
|
+
"$ref": "#/definitions/tasks.supports-query:input"
|
|
24870
|
+
},
|
|
24871
|
+
"name": {
|
|
24872
|
+
"$ref": "#/definitions/tasks.supports-query"
|
|
24873
|
+
}
|
|
24874
|
+
},
|
|
24875
|
+
"required": [
|
|
24876
|
+
"name",
|
|
24877
|
+
"arguments"
|
|
24878
|
+
],
|
|
24879
|
+
"type": "object"
|
|
24880
|
+
},
|
|
24470
24881
|
{
|
|
24471
24882
|
"additionalProperties": false,
|
|
24472
24883
|
"properties": {
|
|
@@ -24586,6 +24997,9 @@
|
|
|
24586
24997
|
{
|
|
24587
24998
|
"$ref": "#/definitions/edit.create-feature"
|
|
24588
24999
|
},
|
|
25000
|
+
{
|
|
25001
|
+
"$ref": "#/definitions/filter-builder.get-filter"
|
|
25002
|
+
},
|
|
24589
25003
|
{
|
|
24590
25004
|
"$ref": "#/definitions/geocode.batch-geocode"
|
|
24591
25005
|
},
|
|
@@ -24685,6 +25099,9 @@
|
|
|
24685
25099
|
{
|
|
24686
25100
|
"$ref": "#/definitions/project.get-shared-content"
|
|
24687
25101
|
},
|
|
25102
|
+
{
|
|
25103
|
+
"$ref": "#/definitions/query-builder.get-query"
|
|
25104
|
+
},
|
|
24688
25105
|
{
|
|
24689
25106
|
"$ref": "#/definitions/results.configure-upload-data"
|
|
24690
25107
|
},
|
|
@@ -24784,12 +25201,18 @@
|
|
|
24784
25201
|
{
|
|
24785
25202
|
"$ref": "#/definitions/tasks.identify"
|
|
24786
25203
|
},
|
|
25204
|
+
{
|
|
25205
|
+
"$ref": "#/definitions/tasks.query"
|
|
25206
|
+
},
|
|
24787
25207
|
{
|
|
24788
25208
|
"$ref": "#/definitions/tasks.search"
|
|
24789
25209
|
},
|
|
24790
25210
|
{
|
|
24791
25211
|
"$ref": "#/definitions/tasks.supports-identify"
|
|
24792
25212
|
},
|
|
25213
|
+
{
|
|
25214
|
+
"$ref": "#/definitions/tasks.supports-query"
|
|
25215
|
+
},
|
|
24793
25216
|
{
|
|
24794
25217
|
"$ref": "#/definitions/tasks.supports-search"
|
|
24795
25218
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "53.
|
|
3
|
+
"version": "53.2.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"author": "VertiGIS Ltd.",
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@arcgis/core": "*",
|
|
39
|
-
"@vertigis/arcgis-extensions": ">= 40.
|
|
39
|
+
"@vertigis/arcgis-extensions": ">= 40.2.0 < 41.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@prettier/plugin-xml": "2.2.0",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED