@vertigis/viewer-spec 58.18.0 → 58.19.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.
|
@@ -267,6 +267,20 @@ export declare class TasksEvents extends EventRegistry {
|
|
|
267
267
|
export declare class TasksOperations extends OperationRegistry {
|
|
268
268
|
readonly filterResults: FilterSourcesOperations;
|
|
269
269
|
protected readonly _prefix = "tasks";
|
|
270
|
+
/**
|
|
271
|
+
* Returns values for a specified field from features meeting where clause
|
|
272
|
+
* criteria. Web only.
|
|
273
|
+
*
|
|
274
|
+
* @webOnly
|
|
275
|
+
*/
|
|
276
|
+
get suggest(): Operation<QueryArgs, Features>;
|
|
277
|
+
/**
|
|
278
|
+
* Returns a boolean indicating whether a FeatureSource supports suggest.
|
|
279
|
+
* Web only.
|
|
280
|
+
*
|
|
281
|
+
* @webOnly
|
|
282
|
+
*/
|
|
283
|
+
get supportsSuggest(): Operation<FeatureSource | SupportsQueryArgs, boolean>;
|
|
270
284
|
/**
|
|
271
285
|
* Returns features that intersect a given geometry.
|
|
272
286
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as t}from"../OperationRegistry.js";export class TasksEvents extends e{_prefix="tasks";get identified(){return this._get("identified")}get reverseGeocoded(){return this._get("reverse-geocoded")}}export class TasksOperations extends t{filterResults=new s(this._messages);_prefix="tasks";get identify(){return this._get("identify")}get supportsIdentify(){return this._get("supports-identify")}get query(){return this._get("query")}get supportsQuery(){return this._get("supports-query")}get search(){return this._get("search")}get supportsSearch(){return this._get("supports-search")}}class s extends t{_prefix="filterSources";get byGeometryType(){return this._get("by-geometry-type")}get firstVisible(){return this._get("first-visible")}}
|
|
1
|
+
import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as t}from"../OperationRegistry.js";export class TasksEvents extends e{_prefix="tasks";get identified(){return this._get("identified")}get reverseGeocoded(){return this._get("reverse-geocoded")}}export class TasksOperations extends t{filterResults=new s(this._messages);_prefix="tasks";get suggest(){return this._get("suggest")}get supportsSuggest(){return this._get("supports-suggest")}get identify(){return this._get("identify")}get supportsIdentify(){return this._get("supports-identify")}get query(){return this._get("query")}get supportsQuery(){return this._get("supports-query")}get search(){return this._get("search")}get supportsSearch(){return this._get("supports-search")}}class s extends t{_prefix="filterSources";get byGeometryType(){return this._get("by-geometry-type")}get firstVisible(){return this._get("first-visible")}}
|
|
@@ -22651,6 +22651,18 @@
|
|
|
22651
22651
|
"tasks.search:output": {
|
|
22652
22652
|
"$ref": "#/definitions/Features"
|
|
22653
22653
|
},
|
|
22654
|
+
"tasks.suggest": {
|
|
22655
|
+
"description": "Returns values for a specified field from features meeting where clause criteria. Web only.",
|
|
22656
|
+
"enum": [
|
|
22657
|
+
"tasks.suggest"
|
|
22658
|
+
]
|
|
22659
|
+
},
|
|
22660
|
+
"tasks.suggest:input": {
|
|
22661
|
+
"$ref": "#/definitions/QueryArgs"
|
|
22662
|
+
},
|
|
22663
|
+
"tasks.suggest:output": {
|
|
22664
|
+
"$ref": "#/definitions/Features"
|
|
22665
|
+
},
|
|
22654
22666
|
"tasks.supports-identify": {
|
|
22655
22667
|
"description": "Returns a boolean depicting whether a FeatureSource supports identify. Web only.",
|
|
22656
22668
|
"enum": [
|
|
@@ -22701,6 +22713,25 @@
|
|
|
22701
22713
|
"tasks.supports-search:output": {
|
|
22702
22714
|
"type": "boolean"
|
|
22703
22715
|
},
|
|
22716
|
+
"tasks.supports-suggest": {
|
|
22717
|
+
"description": "Returns a boolean indicating whether a FeatureSource supports suggest. Web only.",
|
|
22718
|
+
"enum": [
|
|
22719
|
+
"tasks.supports-suggest"
|
|
22720
|
+
]
|
|
22721
|
+
},
|
|
22722
|
+
"tasks.supports-suggest:input": {
|
|
22723
|
+
"anyOf": [
|
|
22724
|
+
{
|
|
22725
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
22726
|
+
},
|
|
22727
|
+
{
|
|
22728
|
+
"$ref": "#/definitions/SupportsQueryArgs"
|
|
22729
|
+
}
|
|
22730
|
+
]
|
|
22731
|
+
},
|
|
22732
|
+
"tasks.supports-suggest:output": {
|
|
22733
|
+
"type": "boolean"
|
|
22734
|
+
},
|
|
22704
22735
|
"ui.activate": {
|
|
22705
22736
|
"description": "Activates a component with the given ID or model, causing it to become visible. For VertiGIS Studio Mobile, only ID is supported.",
|
|
22706
22737
|
"enum": [
|
|
@@ -27412,6 +27443,22 @@
|
|
|
27412
27443
|
],
|
|
27413
27444
|
"type": "object"
|
|
27414
27445
|
},
|
|
27446
|
+
{
|
|
27447
|
+
"additionalProperties": false,
|
|
27448
|
+
"properties": {
|
|
27449
|
+
"arguments": {
|
|
27450
|
+
"$ref": "#/definitions/tasks.suggest:input"
|
|
27451
|
+
},
|
|
27452
|
+
"name": {
|
|
27453
|
+
"$ref": "#/definitions/tasks.suggest"
|
|
27454
|
+
}
|
|
27455
|
+
},
|
|
27456
|
+
"required": [
|
|
27457
|
+
"name",
|
|
27458
|
+
"arguments"
|
|
27459
|
+
],
|
|
27460
|
+
"type": "object"
|
|
27461
|
+
},
|
|
27415
27462
|
{
|
|
27416
27463
|
"additionalProperties": false,
|
|
27417
27464
|
"properties": {
|
|
@@ -27460,6 +27507,22 @@
|
|
|
27460
27507
|
],
|
|
27461
27508
|
"type": "object"
|
|
27462
27509
|
},
|
|
27510
|
+
{
|
|
27511
|
+
"additionalProperties": false,
|
|
27512
|
+
"properties": {
|
|
27513
|
+
"arguments": {
|
|
27514
|
+
"$ref": "#/definitions/tasks.supports-suggest:input"
|
|
27515
|
+
},
|
|
27516
|
+
"name": {
|
|
27517
|
+
"$ref": "#/definitions/tasks.supports-suggest"
|
|
27518
|
+
}
|
|
27519
|
+
},
|
|
27520
|
+
"required": [
|
|
27521
|
+
"name",
|
|
27522
|
+
"arguments"
|
|
27523
|
+
],
|
|
27524
|
+
"type": "object"
|
|
27525
|
+
},
|
|
27463
27526
|
{
|
|
27464
27527
|
"additionalProperties": false,
|
|
27465
27528
|
"properties": {
|
|
@@ -27857,6 +27920,9 @@
|
|
|
27857
27920
|
{
|
|
27858
27921
|
"$ref": "#/definitions/tasks.search"
|
|
27859
27922
|
},
|
|
27923
|
+
{
|
|
27924
|
+
"$ref": "#/definitions/tasks.suggest"
|
|
27925
|
+
},
|
|
27860
27926
|
{
|
|
27861
27927
|
"$ref": "#/definitions/tasks.supports-identify"
|
|
27862
27928
|
},
|
|
@@ -27866,6 +27932,9 @@
|
|
|
27866
27932
|
{
|
|
27867
27933
|
"$ref": "#/definitions/tasks.supports-search"
|
|
27868
27934
|
},
|
|
27935
|
+
{
|
|
27936
|
+
"$ref": "#/definitions/tasks.supports-suggest"
|
|
27937
|
+
},
|
|
27869
27938
|
{
|
|
27870
27939
|
"$ref": "#/definitions/ui.confirm"
|
|
27871
27940
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED