@vertigis/viewer-spec 50.8.2 → 50.10.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/messaging/registry/results.d.ts +14 -0
- package/messaging/registry/ui.d.ts +5 -0
- package/messaging/schema/common-action.schema.json +12 -0
- package/messaging/schema/mobile-action.schema.json +12 -0
- package/messaging/schema/web-action.schema.json +12 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -188,6 +188,20 @@ export interface FromGraphicsArgs {
|
|
|
188
188
|
* workflow.
|
|
189
189
|
*/
|
|
190
190
|
workflowItemId?: string;
|
|
191
|
+
/**
|
|
192
|
+
* Whether to fetch attachments for the returned features. Defaults to
|
|
193
|
+
* false.
|
|
194
|
+
*
|
|
195
|
+
* @mobileOnly
|
|
196
|
+
*/
|
|
197
|
+
fetchAttachments?: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Whether to fetch related features for the returned features. Defaults to
|
|
200
|
+
* false.
|
|
201
|
+
*
|
|
202
|
+
* @mobileOnly
|
|
203
|
+
*/
|
|
204
|
+
fetchRelatedFeatures?: boolean;
|
|
191
205
|
}
|
|
192
206
|
/**
|
|
193
207
|
* Arguments for the "results.open-attachment" command.
|
|
@@ -105,6 +105,11 @@ export interface DisplayNotificationArgs {
|
|
|
105
105
|
* 'auto'. Mobile only.
|
|
106
106
|
*/
|
|
107
107
|
type?: NotificationType;
|
|
108
|
+
/**
|
|
109
|
+
* Indicates if the notification should auto-close after a time duration.
|
|
110
|
+
* Defaults to true. Mobile only.
|
|
111
|
+
*/
|
|
112
|
+
autoClose?: boolean;
|
|
108
113
|
}
|
|
109
114
|
/**
|
|
110
115
|
* The type of notification - 'app', 'system', or 'auto'. Defaults to 'auto'.
|
|
@@ -1042,6 +1042,10 @@
|
|
|
1042
1042
|
"additionalProperties": false,
|
|
1043
1043
|
"description": "The arguments for the `ui.display-notification` command.",
|
|
1044
1044
|
"properties": {
|
|
1045
|
+
"autoClose": {
|
|
1046
|
+
"description": "Indicates if the notification should auto-close after a time duration. Defaults to true. Mobile only.",
|
|
1047
|
+
"type": "boolean"
|
|
1048
|
+
},
|
|
1045
1049
|
"category": {
|
|
1046
1050
|
"$ref": "#/definitions/NotificationCategory",
|
|
1047
1051
|
"description": "The category of notification, i.e. \"error\" (default is \"info\")."
|
|
@@ -1436,6 +1440,14 @@
|
|
|
1436
1440
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.FeatureSettings.FeatureSettingsProperties",
|
|
1437
1441
|
"description": "FeatureSettings to use for feature metadata if the layer is not provided or can't be found."
|
|
1438
1442
|
},
|
|
1443
|
+
"fetchAttachments": {
|
|
1444
|
+
"description": "Whether to fetch attachments for the returned features. Defaults to false.",
|
|
1445
|
+
"type": "boolean"
|
|
1446
|
+
},
|
|
1447
|
+
"fetchRelatedFeatures": {
|
|
1448
|
+
"description": "Whether to fetch related features for the returned features. Defaults to false.",
|
|
1449
|
+
"type": "boolean"
|
|
1450
|
+
},
|
|
1439
1451
|
"graphics": {
|
|
1440
1452
|
"$ref": "#/definitions/GraphicsLike",
|
|
1441
1453
|
"description": "A selection of graphics to be converted to features."
|
|
@@ -1278,6 +1278,10 @@
|
|
|
1278
1278
|
"additionalProperties": false,
|
|
1279
1279
|
"description": "The arguments for the `ui.display-notification` command.",
|
|
1280
1280
|
"properties": {
|
|
1281
|
+
"autoClose": {
|
|
1282
|
+
"description": "Indicates if the notification should auto-close after a time duration. Defaults to true. Mobile only.",
|
|
1283
|
+
"type": "boolean"
|
|
1284
|
+
},
|
|
1281
1285
|
"category": {
|
|
1282
1286
|
"$ref": "#/definitions/NotificationCategory",
|
|
1283
1287
|
"description": "The category of notification, i.e. \"error\" (default is \"info\")."
|
|
@@ -1737,6 +1741,14 @@
|
|
|
1737
1741
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.FeatureSettings.FeatureSettingsProperties",
|
|
1738
1742
|
"description": "FeatureSettings to use for feature metadata if the layer is not provided or can't be found."
|
|
1739
1743
|
},
|
|
1744
|
+
"fetchAttachments": {
|
|
1745
|
+
"description": "Whether to fetch attachments for the returned features. Defaults to false.",
|
|
1746
|
+
"type": "boolean"
|
|
1747
|
+
},
|
|
1748
|
+
"fetchRelatedFeatures": {
|
|
1749
|
+
"description": "Whether to fetch related features for the returned features. Defaults to false.",
|
|
1750
|
+
"type": "boolean"
|
|
1751
|
+
},
|
|
1740
1752
|
"graphics": {
|
|
1741
1753
|
"$ref": "#/definitions/GraphicsLike",
|
|
1742
1754
|
"description": "A selection of graphics to be converted to features."
|
|
@@ -1637,6 +1637,10 @@
|
|
|
1637
1637
|
"additionalProperties": false,
|
|
1638
1638
|
"description": "The arguments for the `ui.display-notification` command.",
|
|
1639
1639
|
"properties": {
|
|
1640
|
+
"autoClose": {
|
|
1641
|
+
"description": "Indicates if the notification should auto-close after a time duration. Defaults to true. Mobile only.",
|
|
1642
|
+
"type": "boolean"
|
|
1643
|
+
},
|
|
1640
1644
|
"category": {
|
|
1641
1645
|
"$ref": "#/definitions/NotificationCategory",
|
|
1642
1646
|
"description": "The category of notification, i.e. \"error\" (default is \"info\")."
|
|
@@ -2471,6 +2475,14 @@
|
|
|
2471
2475
|
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.FeatureSettings.FeatureSettingsProperties",
|
|
2472
2476
|
"description": "FeatureSettings to use for feature metadata if the layer is not provided or can't be found."
|
|
2473
2477
|
},
|
|
2478
|
+
"fetchAttachments": {
|
|
2479
|
+
"description": "Whether to fetch attachments for the returned features. Defaults to false.",
|
|
2480
|
+
"type": "boolean"
|
|
2481
|
+
},
|
|
2482
|
+
"fetchRelatedFeatures": {
|
|
2483
|
+
"description": "Whether to fetch related features for the returned features. Defaults to false.",
|
|
2484
|
+
"type": "boolean"
|
|
2485
|
+
},
|
|
2474
2486
|
"graphics": {
|
|
2475
2487
|
"$ref": "#/definitions/GraphicsLike",
|
|
2476
2488
|
"description": "A selection of graphics to be converted to features."
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED