@vertigis/viewer-spec 60.7.0 → 60.8.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.
Files changed (63) hide show
  1. package/messaging/schema/web-app-operation-definitions.md +30 -0
  2. package/messaging/schema/web-arcade-operation-definitions.md +93 -0
  3. package/messaging/schema/web-auth-command-definitions.md +12 -0
  4. package/messaging/schema/web-auth-operation-definitions.md +16 -0
  5. package/messaging/schema/web-basemap-command-definitions.md +20 -0
  6. package/messaging/schema/web-basemap-operation-definitions.md +31 -0
  7. package/messaging/schema/web-bulk-editing-command-definitions.md +54 -0
  8. package/messaging/schema/web-charts-command-definitions.md +135 -0
  9. package/messaging/schema/web-charts-operation-definitions.md +48 -0
  10. package/messaging/schema/web-drawing-command-definitions.md +551 -0
  11. package/messaging/schema/web-drawing-operation-definitions.md +720 -0
  12. package/messaging/schema/web-edit-command-definitions.md +540 -0
  13. package/messaging/schema/web-edit-operation-definitions.md +50 -0
  14. package/messaging/schema/web-filter-builder-command-definitions.md +50 -0
  15. package/messaging/schema/web-filter-builder-operation-definitions.md +18 -0
  16. package/messaging/schema/web-geocode-operation-definitions.md +132 -0
  17. package/messaging/schema/web-geolocation-command-definitions.md +27 -0
  18. package/messaging/schema/web-geolocation-operation-definitions.md +24 -0
  19. package/messaging/schema/web-geometry-command-definitions.md +34 -0
  20. package/messaging/schema/web-geometry-operation-definitions.md +438 -0
  21. package/messaging/schema/web-highlights-command-definitions.md +120 -0
  22. package/messaging/schema/web-kpi-command-definitions.md +139 -0
  23. package/messaging/schema/web-kpi-operation-definitions.md +48 -0
  24. package/messaging/schema/web-layer-comparison-command-definitions.md +214 -0
  25. package/messaging/schema/web-layer-list-command-definitions.md +30 -0
  26. package/messaging/schema/web-layers-command-definitions.md +1466 -0
  27. package/messaging/schema/web-layers-operation-definitions.md +612 -0
  28. package/messaging/schema/web-licensing-command-definitions.md +24 -0
  29. package/messaging/schema/web-licensing-operation-definitions.md +26 -0
  30. package/messaging/schema/web-location-marker-command-definitions.md +209 -0
  31. package/messaging/schema/web-map-command-definitions.md +2157 -0
  32. package/messaging/schema/web-map-operation-definitions.md +147 -0
  33. package/messaging/schema/web-measurement-command-definitions.md +556 -0
  34. package/messaging/schema/web-measurement-operation-definitions.md +314 -0
  35. package/messaging/schema/web-messaging-operation-definitions.md +16 -0
  36. package/messaging/schema/web-panel-command-definitions.md +44 -0
  37. package/messaging/schema/web-portal-operation-definitions.md +87 -0
  38. package/messaging/schema/web-printing-command-definitions.md +105 -0
  39. package/messaging/schema/web-printing-operation-definitions.md +21 -0
  40. package/messaging/schema/web-project-command-definitions.md +418 -0
  41. package/messaging/schema/web-project-operation-definitions.md +120 -0
  42. package/messaging/schema/web-query-builder-command-definitions.md +83 -0
  43. package/messaging/schema/web-query-builder-operation-definitions.md +18 -0
  44. package/messaging/schema/web-region-command-definitions.md +6 -0
  45. package/messaging/schema/web-reports-command-definitions.md +44 -0
  46. package/messaging/schema/web-results-command-definitions.md +348 -0
  47. package/messaging/schema/web-results-operation-definitions.md +1242 -0
  48. package/messaging/schema/web-search-command-definitions.md +6 -0
  49. package/messaging/schema/web-sketching-command-definitions.md +328 -0
  50. package/messaging/schema/web-sketching-operation-definitions.md +442 -0
  51. package/messaging/schema/web-studio-analytics-command-definitions.md +21 -0
  52. package/messaging/schema/web-system-command-definitions.md +159 -0
  53. package/messaging/schema/web-system-operation-definitions.md +104 -0
  54. package/messaging/schema/web-tasks-operation-definitions.md +360 -0
  55. package/messaging/schema/web-ui-command-definitions.md +340 -0
  56. package/messaging/schema/web-ui-operation-definitions.md +146 -0
  57. package/messaging/schema/web-viewer-command-definitions.md +40 -0
  58. package/messaging/schema/web-viewer-operation-definitions.md +48 -0
  59. package/messaging/schema/web-workflow-command-definitions.md +47 -0
  60. package/messaging/schema/web-workflow-operation-definitions.md +45 -0
  61. package/package.json +8 -7
  62. package/version.d.ts +1 -1
  63. package/version.js +1 -1
@@ -0,0 +1,540 @@
1
+ # command: edit.add-attachment
2
+ Description: Create and add an attachment to a provided feature, using the given attachment data.
3
+
4
+ Inputs: `( AddAttachmentArgs | WebAddAttachmentArgs )`
5
+
6
+ AddAttachmentArgs properties:
7
+ ```json
8
+ {
9
+ "contentType": {
10
+ "description": "The MIME content type of the attachment.",
11
+ "type": "string",
12
+ "isRequired": "true"
13
+ },
14
+ "data": {
15
+ "description": "The binary data for the attachment.",
16
+ "items": {
17
+ "type": "number"
18
+ },
19
+ "type": "array",
20
+ "isRequired": "true"
21
+ },
22
+ "features": {
23
+ "description": "Features to use for the command/operation."
24
+ },
25
+ "maps": {
26
+ "description": "The map.",
27
+ "isRequired": "true"
28
+ },
29
+ "name": {
30
+ "description": "The name of the attachment.",
31
+ "type": "string",
32
+ "isRequired": "true"
33
+ }
34
+ }
35
+ ```
36
+
37
+ WebAddAttachmentArgs properties:
38
+ ```json
39
+ {
40
+ "blobs": {
41
+ "anyOf": [
42
+ {
43
+ "$ref": "File"
44
+ },
45
+ {
46
+ "items": {
47
+ "$ref": "File"
48
+ },
49
+ "type": "array"
50
+ }
51
+ ],
52
+ "description": "The blob(s) that contains the file attachment(s). If multiple attachments are specified, all attachments will be added to the feature(s).",
53
+ "isRequired": "true"
54
+ },
55
+ "features": {
56
+ "description": "The feature(s) to add the attachment(s) to. If multiple features are specified, the attachment(s) will be added to all features.",
57
+ "isRequired": "true"
58
+ }
59
+ }
60
+ ```
61
+
62
+ ---
63
+ # command: edit.add-feature
64
+ Description: Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.
65
+
66
+ Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
67
+
68
+ Results properties:
69
+ ```json
70
+ {
71
+ "features": {
72
+ "description": "Features to use for the command/operation."
73
+ },
74
+ "maps": {
75
+ "description": "Map(s) to use for the command/operation."
76
+ }
77
+ }
78
+ ```
79
+
80
+ EditCommandArgs properties:
81
+ ```json
82
+ {
83
+ "features": {
84
+ "description": "Features to use for the command/operation."
85
+ },
86
+ "showNotifications": {
87
+ "description": "Whether to show UI notifications. Will default to `true`.",
88
+ "type": "boolean"
89
+ }
90
+ }
91
+ ```
92
+
93
+ ---
94
+ # command: edit.bulk-attribute-update
95
+ Description: Updates multiple features from multiple sources simultaneously. This command commits the bulk attribute changes directly to the feature source. Web only.
96
+
97
+ Inputs: `BulkAttributeUpdateArgs`
98
+
99
+ BulkAttributeUpdateArgs properties:
100
+ ```json
101
+ {
102
+ "attributes": {
103
+ "description": "The attributes to update on all features.",
104
+ "isRequired": "true"
105
+ },
106
+ "features": {
107
+ "description": "Features to use for the command/operation."
108
+ }
109
+ }
110
+ ```
111
+
112
+ ---
113
+ # command: edit.cancel
114
+ Description: Cancels active editing sessions and discards any changes. If a feature is supplied, only the sessions using that feature will be cancelled. Web only.
115
+
116
+ Inputs: `Features`
117
+
118
+ Features properties:
119
+ ```json
120
+ {
121
+ "features": {
122
+ "description": "Features to use for the command/operation."
123
+ },
124
+ "maps": {
125
+ "description": "Map(s) to use for the command/operation."
126
+ }
127
+ }
128
+ ```
129
+
130
+ ---
131
+ # command: edit.complete
132
+ Description: Completes active editing sessions and submits any changes made to the attributes, attachments or geometry to the feature source. If a feature is supplied, only sessions using that feature will complete. Web only.
133
+
134
+ Inputs: `Features`
135
+
136
+ Features properties:
137
+ ```json
138
+ {
139
+ "features": {
140
+ "description": "Features to use for the command/operation."
141
+ },
142
+ "maps": {
143
+ "description": "Map(s) to use for the command/operation."
144
+ }
145
+ }
146
+ ```
147
+
148
+ ---
149
+ # command: edit.delete-attachment
150
+ Description: Deletes attachments from feature(s).
151
+
152
+ Inputs: `DeleteAttachmentArgs`
153
+
154
+ DeleteAttachmentArgs properties:
155
+ ```json
156
+ {
157
+ "attachments": {
158
+ "description": "The attachment(s) to remove from the feature(s). This property can be populated with the title(s) or ID(s) of the attachments(s). Any and all matching attachments found on the input features will be deleted. Web only.",
159
+ "items": {
160
+ "type": "string"
161
+ },
162
+ "type": "array"
163
+ },
164
+ "features": {
165
+ "description": "The feature(s) to remove the attachment(s) from.",
166
+ "isRequired": "true"
167
+ },
168
+ "gcxAttachment": {
169
+ "description": "The attachment to remove from the feature(s). Mobile only."
170
+ }
171
+ }
172
+ ```
173
+
174
+ ---
175
+ # command: edit.delete-features
176
+ Description: Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.
177
+
178
+ Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
179
+
180
+ Results properties:
181
+ ```json
182
+ {
183
+ "features": {
184
+ "description": "Features to use for the command/operation."
185
+ },
186
+ "maps": {
187
+ "description": "Map(s) to use for the command/operation."
188
+ }
189
+ }
190
+ ```
191
+
192
+ EditCommandArgs properties:
193
+ ```json
194
+ {
195
+ "features": {
196
+ "description": "Features to use for the command/operation."
197
+ },
198
+ "showNotifications": {
199
+ "description": "Whether to show UI notifications. Will default to `true`.",
200
+ "type": "boolean"
201
+ }
202
+ }
203
+ ```
204
+
205
+ ---
206
+ # command: edit.display-add-feature
207
+ Description: Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.
208
+
209
+ **Example:** Create and allow the user to edit a new feature with an initial attributes collection. If no geometry is provided in context they will be asked to select one.
210
+
211
+ _Note:_ "maps" argument can be the output of a 'Get Map' activity run in Web by Workflow or coming from a previous operation in the action chain. When the map and/or layer are provided in the context of a command chain these parameters can be omitted.
212
+
213
+ ```
214
+ {
215
+ "editAttributes": true,
216
+ "editGeometry": true,
217
+ "featureAttributes": {
218
+ "ASSET_ID": "WFH001234"
219
+ },
220
+ "layers": "Victoria_Fire_Hydrants_8780"
221
+ }
222
+ ```
223
+
224
+ Inputs: `( @vertigis.arcgis-extensions.data.FeatureSource.FeatureSource | DisplayAddFeatureArgs )`
225
+
226
+ DisplayAddFeatureArgs properties:
227
+ ```json
228
+ {
229
+ "editAttachments": {
230
+ "description": "Whether to allow editing of feature attachments.",
231
+ "type": "boolean"
232
+ },
233
+ "editAttributes": {
234
+ "description": "Whether to allow editing of feature attributes.",
235
+ "type": "boolean"
236
+ },
237
+ "editGeometry": {
238
+ "description": "Whether to allow editing of feature geometry.",
239
+ "type": "boolean"
240
+ },
241
+ "editGeometryOptions": {
242
+ "description": "Options for the geometry editing session."
243
+ },
244
+ "featureAttributes": {
245
+ "description": "A collection of attributes to apply to the new feature."
246
+ },
247
+ "fieldElements": {
248
+ "description": "A collection of configuration overrides for the editable fields. Web only.",
249
+ "items": {
250
+ "$ref": "__type"
251
+ },
252
+ "type": "array"
253
+ },
254
+ "formUITarget": {
255
+ "description": "Arguments for the display of the attribute editing form. Web only."
256
+ },
257
+ "geometry": {
258
+ "description": "The geometry to use for the command/operation."
259
+ },
260
+ "layers": {
261
+ "description": "Layer(s) to use for the command/operation."
262
+ },
263
+ "maps": {
264
+ "description": "Map(s) to use for the command/operation."
265
+ },
266
+ "orientation": {
267
+ "description": "The orientation of the template picker. Defaults to \"vertical\".",
268
+ "enum": [
269
+ "horizontal",
270
+ "vertical"
271
+ ],
272
+ "type": "string"
273
+ },
274
+ "pluginSettings": {
275
+ "description": "Additional settings that are specific to sketching plugins, keyed by plugin ID. The only currently supported plugin is \"snapping\". A boolean value can also be assigned to completely disable, or enable with default settings."
276
+ },
277
+ "showNotifications": {
278
+ "description": "Whether to show UI notifications. Defaults to `true`.",
279
+ "type": "boolean"
280
+ },
281
+ "showTitles": {
282
+ "description": "Whether to show titles on the template picker. Defaults to `true`.",
283
+ "type": "boolean"
284
+ },
285
+ "templateName": {
286
+ "description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
287
+ "type": "string"
288
+ },
289
+ "templateUITarget": {
290
+ "description": "Arguments for the display of the template picker. Web only."
291
+ },
292
+ "typeId": {
293
+ "description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
294
+ "type": "string"
295
+ }
296
+ }
297
+ ```
298
+
299
+ ---
300
+ # command: edit.display-add-related-feature
301
+ Description: Begin an interactive feature editing session for a new related feature. The specified feature will be the original feature that the new related feature will be added to in the relationship.
302
+
303
+ **Example:** Create and edit a new record on a related table, with the option to add attachments. Make sure the 'COMMENTS' field is included in the editable attributes and make it required.
304
+
305
+ _Notes:_.
306
+
307
+ 1. The feature used here must come from the running viewer, and cannot be an ad-hoc feature created from a JSON object. For example, you can use the output of `results.get-active-features`, or the feature provided in a command chain context.
308
+ 2. `editableExpression` and `requiredExpression` both take an Arcade expression, and here the string "true" is just a simple Arcade expression that always returns true. You can also use a more complex expression, or reference one from your webmap.
309
+
310
+ ```
311
+ {
312
+ "editAttributes": true,
313
+ "editAttachments": true,
314
+ "relationshipId": "1",
315
+ "fieldElements": [
316
+ {
317
+ "fieldName": "COMMENTS",
318
+ "editableExpression": "true",
319
+ "requiredExpression": "true"
320
+ }
321
+ ]
322
+ }
323
+ ```
324
+
325
+ Inputs: `DisplayAddRelatedFeatureArgs`
326
+
327
+ DisplayAddRelatedFeatureArgs properties:
328
+ ```json
329
+ {
330
+ "editAttachments": {
331
+ "description": "Whether to allow editing of feature attachments.",
332
+ "type": "boolean"
333
+ },
334
+ "editAttributes": {
335
+ "description": "Whether to allow editing of feature attributes.",
336
+ "type": "boolean"
337
+ },
338
+ "editGeometry": {
339
+ "description": "Whether to allow editing of feature geometry.",
340
+ "type": "boolean"
341
+ },
342
+ "editGeometryOptions": {
343
+ "description": "Options for the geometry editing session."
344
+ },
345
+ "featureAttributes": {
346
+ "description": "A collection of attributes to apply to the new feature."
347
+ },
348
+ "features": {
349
+ "description": "Features to use for the command/operation."
350
+ },
351
+ "fieldElements": {
352
+ "description": "A collection of configuration overrides for the editable fields. Web only.",
353
+ "items": {
354
+ "$ref": "__type"
355
+ },
356
+ "type": "array"
357
+ },
358
+ "formUITarget": {
359
+ "description": "Arguments for the display of the attribute editing form. Web only."
360
+ },
361
+ "geometry": {
362
+ "description": "The geometry to use for the command/operation."
363
+ },
364
+ "maps": {
365
+ "description": "Map(s) to use for the command/operation."
366
+ },
367
+ "orientation": {
368
+ "description": "The orientation of the template picker. Defaults to \"vertical\".",
369
+ "enum": [
370
+ "horizontal",
371
+ "vertical"
372
+ ],
373
+ "type": "string"
374
+ },
375
+ "pluginSettings": {
376
+ "description": "Additional settings that are specific to sketching plugins, keyed by plugin ID. The only currently supported plugin is \"snapping\". A boolean value can also be assigned to completely disable, or enable with default settings."
377
+ },
378
+ "relatedFeatureSource": {
379
+ "description": "The feature source for the related feature to create. Mobile only.",
380
+ "isRequired": "true"
381
+ },
382
+ "relationshipId": {
383
+ "description": "The ID of the relationship to add a feature to.",
384
+ "type": "string",
385
+ "isRequired": "true"
386
+ },
387
+ "showNotifications": {
388
+ "description": "Whether to show UI notifications. Defaults to `true`.",
389
+ "type": "boolean"
390
+ },
391
+ "showTitles": {
392
+ "description": "Whether to show titles on the template picker. Defaults to `true`.",
393
+ "type": "boolean"
394
+ },
395
+ "templateName": {
396
+ "description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
397
+ "type": "string"
398
+ },
399
+ "templateUITarget": {
400
+ "description": "Arguments for the display of the template picker. Web only."
401
+ },
402
+ "typeId": {
403
+ "description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
404
+ "type": "string"
405
+ }
406
+ }
407
+ ```
408
+
409
+ ---
410
+ # command: edit.display-update-feature
411
+ Description: Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.
412
+
413
+ Inputs: `( @vertigis.api-docs.Features Feature | DisplayUpdateFeatureArgs )`
414
+
415
+ DisplayUpdateFeatureArgs properties:
416
+ ```json
417
+ {
418
+ "attributes": {
419
+ "description": "Optional layout XML attributes to be used for the transient UI container."
420
+ },
421
+ "editAttachments": {
422
+ "description": "Whether to allow editing of feature attachments.",
423
+ "type": "boolean"
424
+ },
425
+ "editAttributes": {
426
+ "description": "Whether to allow editing of feature attributes.",
427
+ "type": "boolean"
428
+ },
429
+ "editGeometry": {
430
+ "description": "Whether to allow editing of feature geometry.",
431
+ "type": "boolean"
432
+ },
433
+ "editGeometryOptions": {
434
+ "description": "Options for the geometry editing session."
435
+ },
436
+ "featureAttributes": {
437
+ "description": "A collection of attributes to automatically apply to the updated feature."
438
+ },
439
+ "features": {
440
+ "description": "Features to use for the command/operation."
441
+ },
442
+ "fieldElements": {
443
+ "description": "A collection of configuration overrides for the editable fields.",
444
+ "items": {
445
+ "$ref": "__type"
446
+ },
447
+ "type": "array"
448
+ },
449
+ "geometry": {
450
+ "description": "The geometry to use for the command/operation."
451
+ },
452
+ "icon": {
453
+ "description": "Optional icon that may be used by the transient UI container.",
454
+ "type": "string"
455
+ },
456
+ "maps": {
457
+ "description": "Map(s) to use for the command/operation."
458
+ },
459
+ "orientation": {
460
+ "description": "The orientation of the template picker. Defaults to \"vertical\".",
461
+ "enum": [
462
+ "horizontal",
463
+ "vertical"
464
+ ],
465
+ "type": "string"
466
+ },
467
+ "parent": {
468
+ "description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes."
469
+ },
470
+ "pluginSettings": {
471
+ "description": "Additional settings that are specific to sketching plugins, keyed by plugin ID. The only currently supported plugin is \"snapping\". A boolean value can also be assigned to completely disable, or enable with default settings."
472
+ },
473
+ "showNotifications": {
474
+ "description": "Whether to show UI notifications. Will default to `true`.",
475
+ "type": "boolean"
476
+ },
477
+ "showTitles": {
478
+ "description": "Whether to show titles on the template picker. Defaults to `true`.",
479
+ "type": "boolean"
480
+ }
481
+ }
482
+ ```
483
+
484
+ ---
485
+ # command: edit.update-feature
486
+ Description: Updates a layer feature or features. Edits to the geometry and attributes of the supplied features will be committed to their respective feature sources. `Features` and `EditCommandArgs` are not supported on Mobile.
487
+
488
+ Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | EditCommandArgs )`
489
+
490
+ Results properties:
491
+ ```json
492
+ {
493
+ "features": {
494
+ "description": "Features to use for the command/operation."
495
+ },
496
+ "maps": {
497
+ "description": "Map(s) to use for the command/operation."
498
+ }
499
+ }
500
+ ```
501
+
502
+ EditCommandArgs properties:
503
+ ```json
504
+ {
505
+ "features": {
506
+ "description": "Features to use for the command/operation."
507
+ },
508
+ "showNotifications": {
509
+ "description": "Whether to show UI notifications. Will default to `true`.",
510
+ "type": "boolean"
511
+ }
512
+ }
513
+ ```
514
+
515
+ ---
516
+ # command: edit.update-session
517
+ Description: Updates an in-progress interactive feature editing session with new attributes, attachments, or geometry. These will be immediately applied to the current session, if one is active. Web only.
518
+
519
+ Inputs: `UpdateSessionArgs`
520
+
521
+ UpdateSessionArgs properties:
522
+ ```json
523
+ {
524
+ "attachments": {
525
+ "description": "An array of attachments that apply or are to be applied to the currently edited feature.",
526
+ "items": {
527
+ "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
528
+ },
529
+ "type": "array"
530
+ },
531
+ "attributes": {
532
+ "description": "A collection of attributes that apply or are to be applied to the currently edited feature."
533
+ },
534
+ "geometry": {
535
+ "description": "The geometry to use for the command/operation."
536
+ }
537
+ }
538
+ ```
539
+
540
+ ---
@@ -0,0 +1,50 @@
1
+ # operation: edit.create-feature
2
+ Description: Creates a new feature for the supplied feature source from the supplied configuration. This operation does not add the feature to the source, but returns the feature for further processing. Web only.
3
+
4
+ Inputs: `CreateFeatureArgs`
5
+
6
+ CreateFeatureArgs properties:
7
+ ```json
8
+ {
9
+ "featureAttributes": {
10
+ "description": "A collection of attributes to apply to the new feature."
11
+ },
12
+ "geometry": {
13
+ "description": "The geometry to use for the command/operation."
14
+ },
15
+ "layers": {
16
+ "description": "Layer(s) to use for the command/operation."
17
+ },
18
+ "maps": {
19
+ "description": "Map(s) to use for the command/operation."
20
+ },
21
+ "orientation": {
22
+ "description": "The orientation of the template picker. Defaults to \"vertical\".",
23
+ "enum": [
24
+ "horizontal",
25
+ "vertical"
26
+ ],
27
+ "type": "string"
28
+ },
29
+ "showNotifications": {
30
+ "description": "Whether to show UI notifications. Defaults to `true`.",
31
+ "type": "boolean"
32
+ },
33
+ "showTitles": {
34
+ "description": "Whether to show titles on the template picker. Defaults to `true`.",
35
+ "type": "boolean"
36
+ },
37
+ "templateName": {
38
+ "description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
39
+ "type": "string"
40
+ },
41
+ "typeId": {
42
+ "description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
43
+ "type": "string"
44
+ }
45
+ }
46
+ ```
47
+
48
+ Outputs: `HasFeatures`
49
+
50
+ ---
@@ -0,0 +1,50 @@
1
+ # command: filter-builder.display-filter
2
+ Description: Sets the current filter criteria in the filter builder and also activates the component. Web only.
3
+
4
+ Inputs: `SetFilterArgs`
5
+
6
+ SetFilterArgs properties:
7
+ ```json
8
+ {
9
+ "filterBuilder": {
10
+ "description": "The filter builder component that will be targeted. If not specified, all active filter builder components in the layout will be targeted."
11
+ },
12
+ "layers": {
13
+ "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."
14
+ },
15
+ "source": {
16
+ "description": "The feature source to filter. One of `source` or `layers` is required."
17
+ },
18
+ "where": {
19
+ "description": "The where clause to filter by.",
20
+ "type": "string"
21
+ }
22
+ }
23
+ ```
24
+
25
+ ---
26
+ # command: filter-builder.set-filter
27
+ Description: Sets the current filter criteria in the filter builder. Web only.
28
+
29
+ Inputs: `SetFilterArgs`
30
+
31
+ SetFilterArgs properties:
32
+ ```json
33
+ {
34
+ "filterBuilder": {
35
+ "description": "The filter builder component that will be targeted. If not specified, all active filter builder components in the layout will be targeted."
36
+ },
37
+ "layers": {
38
+ "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."
39
+ },
40
+ "source": {
41
+ "description": "The feature source to filter. One of `source` or `layers` is required."
42
+ },
43
+ "where": {
44
+ "description": "The where clause to filter by.",
45
+ "type": "string"
46
+ }
47
+ }
48
+ ```
49
+
50
+ ---
@@ -0,0 +1,18 @@
1
+ # operation: filter-builder.get-filter
2
+ 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. Web only.
3
+
4
+ Inputs: `GetFilterArgs`
5
+
6
+ GetFilterArgs properties:
7
+ ```json
8
+ {
9
+ "filterBuilder": {
10
+ "description": "The filter builder component that will be targeted. If not specified, all active filter builder components in the layout will be targeted.",
11
+ "isRequired": "true"
12
+ }
13
+ }
14
+ ```
15
+
16
+ Outputs: `Filter`
17
+
18
+ ---