@vertigis/viewer-spec 59.31.0 → 60.0.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 (44) hide show
  1. package/messaging/DotNetTypes.d.ts +11 -0
  2. package/messaging/registry/Operations.d.ts +0 -7
  3. package/messaging/registry/Operations.js +1 -1
  4. package/messaging/registry/app.d.ts +1 -20
  5. package/messaging/registry/app.js +1 -1
  6. package/messaging/registry/arcade.d.ts +2 -2
  7. package/messaging/registry/auth.d.ts +3 -3
  8. package/messaging/registry/basemap.d.ts +4 -3
  9. package/messaging/registry/bulk-editing.d.ts +2 -7
  10. package/messaging/registry/charts.d.ts +1 -1
  11. package/messaging/registry/display.d.ts +2 -2
  12. package/messaging/registry/drawing.d.ts +2 -2
  13. package/messaging/registry/edit.d.ts +25 -27
  14. package/messaging/registry/file.d.ts +3 -3
  15. package/messaging/registry/geolocation.d.ts +80 -9
  16. package/messaging/registry/highlights.d.ts +0 -19
  17. package/messaging/registry/highlights.js +1 -1
  18. package/messaging/registry/layers.d.ts +1 -1
  19. package/messaging/registry/layout.d.ts +1 -5
  20. package/messaging/registry/licensing.d.ts +2 -2
  21. package/messaging/registry/location-marker.d.ts +1 -2
  22. package/messaging/registry/map.d.ts +5 -5
  23. package/messaging/registry/measurement.d.ts +1 -1
  24. package/messaging/registry/network.d.ts +2 -2
  25. package/messaging/registry/printing.d.ts +10 -10
  26. package/messaging/registry/reports.d.ts +1 -1
  27. package/messaging/registry/results.d.ts +6 -5
  28. package/messaging/registry/sketching.d.ts +9 -96
  29. package/messaging/registry/sketching.js +1 -1
  30. package/messaging/registry/system.d.ts +1 -1
  31. package/messaging/registry/tasks.d.ts +2 -1
  32. package/messaging/registry/tracing.d.ts +1 -1
  33. package/messaging/registry/ui.d.ts +1 -1
  34. package/messaging/schema/common-action.schema.json +23 -98
  35. package/messaging/schema/common-event.schema.json +5 -4
  36. package/messaging/schema/mobile-action.schema.json +29 -121
  37. package/messaging/schema/mobile-event.schema.json +41 -43
  38. package/messaging/schema/web-action.schema.json +56 -392
  39. package/messaging/schema/web-event.schema.json +17 -16
  40. package/package.json +1 -1
  41. package/version.d.ts +1 -1
  42. package/version.js +1 -1
  43. package/messaging/registry/debugConsole.d.ts +0 -26
  44. package/messaging/registry/debugConsole.js +0 -1
@@ -984,7 +984,7 @@
984
984
  },
985
985
  "AddAttachmentArgs": {
986
986
  "additionalProperties": false,
987
- "description": "Arguments for the \"edit.add-attachment\" command. Supported by both Web and Mobile.",
987
+ "description": "Arguments for the \"edit.add-attachment\" command. \"Features\" is the feature(s) the attachment is being added to.",
988
988
  "properties": {
989
989
  "contentType": {
990
990
  "description": "The MIME content type of the attachment.",
@@ -998,11 +998,8 @@
998
998
  "type": "array"
999
999
  },
1000
1000
  "features": {
1001
- "description": "The feature(s) to add the attachment to.",
1002
- "items": {
1003
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1004
- },
1005
- "type": "array"
1001
+ "$ref": "#/definitions/FeaturesLike",
1002
+ "description": "Features to use for the command/operation."
1006
1003
  },
1007
1004
  "maps": {
1008
1005
  "$ref": "MapsLike",
@@ -1016,7 +1013,6 @@
1016
1013
  "required": [
1017
1014
  "contentType",
1018
1015
  "data",
1019
- "features",
1020
1016
  "maps",
1021
1017
  "name"
1022
1018
  ],
@@ -1192,53 +1188,13 @@
1192
1188
  },
1193
1189
  "type": "object"
1194
1190
  },
1195
- "AddNodeOrder": {
1196
- "description": "Indicates whether a new point should be added before or after the active point in a sketch.",
1197
- "enum": [
1198
- "add-after-active",
1199
- "add-before-active"
1200
- ],
1201
- "type": "string"
1202
- },
1203
- "AddNodeToGeometryArgs": {
1204
- "additionalProperties": false,
1205
- "description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" with {@link AddPointArgs} or \"sketching.insert-point\" with {@link InsertPointArgs} instead.",
1206
- "properties": {
1207
- "geometry": {
1208
- "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
1209
- "description": "The initial geometry to add the point to. Can be null."
1210
- },
1211
- "geometryType": {
1212
- "description": "The type of geometry to create if the initial geometry is null. In VertiGIS Studio Mobile, this value must be 'polygon' or 'polyline'. In VertiGIS Studio Web, this value may also be null if the point being added is intended to be added to the active sketch.",
1213
- "type": "string"
1214
- },
1215
- "maps": {
1216
- "$ref": "MapsLike",
1217
- "description": "Map(s) to use for the command/operation."
1218
- },
1219
- "node": {
1220
- "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
1221
- "description": "A point geometry to add to the initial geometry. In VertiGIS Studio Web, this value may be null if the intention is to add a point at the position of the active point of an active sketch."
1222
- },
1223
- "nodeOrder": {
1224
- "$ref": "#/definitions/AddNodeOrder",
1225
- "description": "Indicates whether the new point should be added before or after the active point in the sketch. Not supported by VertiGIS Studio Mobile."
1226
- }
1227
- },
1228
- "required": [
1229
- "geometry",
1230
- "geometryType",
1231
- "node"
1232
- ],
1233
- "type": "object"
1234
- },
1235
1191
  "AddPointArgs": {
1236
1192
  "additionalProperties": false,
1237
1193
  "description": "Arguments for the \"sketching.add-point\" command.",
1238
1194
  "properties": {
1239
1195
  "geometry": {
1240
1196
  "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
1241
- "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
1197
+ "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by VertiGIS Studio Mobile."
1242
1198
  },
1243
1199
  "maps": {
1244
1200
  "$ref": "MapsLike",
@@ -1366,7 +1322,7 @@
1366
1322
  },
1367
1323
  "initialPosition": {
1368
1324
  "$ref": "MessageBoxPosition",
1369
- "description": "Where the dialog appears in the app when it is created. Defaults to center position. Web only."
1325
+ "description": "Where the dialog appears in the app when it is created. Defaults to \"center\" position. Web only."
1370
1326
  },
1371
1327
  "isDraggable": {
1372
1328
  "description": "Whether the dialog is draggable or not. Defaults to true. Web only.",
@@ -1388,11 +1344,8 @@
1388
1344
  "description": "Configuration for a VertiGIS Studio App. An App is a portable format for describing the items and settings used by VertiGIS Studio applications. Items that are defined within an App (e.g. menus, layer extensions, web maps, etc.) can be retrieved by loading the App configuration into an {@link AppContainer} and using its {@link AppContainer.get} method.",
1389
1345
  "properties": {
1390
1346
  "failureModes": {
1391
- "additionalProperties": {
1392
- "$ref": "#/definitions/FailureMode"
1393
- },
1394
- "description": "User-defined failure modes for particular items. Items are referenced by item uri.",
1395
- "type": "object"
1347
+ "$ref": "__type",
1348
+ "description": "User-defined failure modes for particular items. Items are referenced by item uri."
1396
1349
  },
1397
1350
  "import": {
1398
1351
  "description": "Specifies zero or more App configurations that are imported into this one.\n\nImports are processed in the order specified, followed by items and settings that are locally defined in this AppConfig. If the same item is defined multiple times, then the items' properties will get merged in such a way that the later definitions will override earlier ones. Similarly if a setting is defined several times, then the most recent definition wins.",
@@ -1413,15 +1366,8 @@
1413
1366
  "type": "string"
1414
1367
  },
1415
1368
  "settings": {
1416
- "additionalProperties": {
1417
- "type": [
1418
- "string",
1419
- "number",
1420
- "boolean"
1421
- ]
1422
- },
1423
- "description": "User-defined settings. These can be referenced via URIs in the form setting://setting-name.",
1424
- "type": "object"
1369
+ "$ref": "__type",
1370
+ "description": "User-defined settings. These can be referenced via URIs in the form setting://setting-name."
1425
1371
  },
1426
1372
  "title": {
1427
1373
  "description": "A human-readable name for the App.",
@@ -1438,7 +1384,7 @@
1438
1384
  "description": "The required arguments for the 'maps.apply-filter-effect' command.",
1439
1385
  "properties": {
1440
1386
  "distance": {
1441
- "description": "Specifies a search distance from a given 'geometry' in th spatial filter. In essence, setting this property creates a buffer at the specified size around the input 'geometry'.",
1387
+ "description": "Specifies a search distance from a given 'geometry' in the spatial filter. In essence, setting this property creates a buffer at the specified size around the input 'geometry'.",
1442
1388
  "type": "number"
1443
1389
  },
1444
1390
  "excludedEffect": {
@@ -1769,7 +1715,7 @@
1769
1715
  "type": "number"
1770
1716
  },
1771
1717
  "pluginSettings": {
1772
- "description": "Web only. 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."
1718
+ "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. Web only."
1773
1719
  },
1774
1720
  "symbol": {
1775
1721
  "anyOf": [
@@ -1969,7 +1915,7 @@
1969
1915
  },
1970
1916
  "initialPosition": {
1971
1917
  "$ref": "MessageBoxPosition",
1972
- "description": "Where the dialog appears in the app when it is created. Defaults to center position. Web only."
1918
+ "description": "Where the dialog appears in the app when it is created. Defaults to \"center\" position. Web only."
1973
1919
  },
1974
1920
  "isDraggable": {
1975
1921
  "description": "Whether the dialog is draggable or not. Defaults to true. Web only.",
@@ -2705,7 +2651,7 @@
2705
2651
  "type": "string"
2706
2652
  },
2707
2653
  "pluginSettings": {
2708
- "description": "Web only. 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."
2654
+ "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."
2709
2655
  },
2710
2656
  "showNotifications": {
2711
2657
  "description": "Whether to show UI notifications. Defaults to `true`.",
@@ -2785,7 +2731,7 @@
2785
2731
  "type": "string"
2786
2732
  },
2787
2733
  "pluginSettings": {
2788
- "description": "Web only. 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."
2734
+ "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."
2789
2735
  },
2790
2736
  "relatedFeatureSource": {
2791
2737
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
@@ -2965,7 +2911,7 @@
2965
2911
  "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."
2966
2912
  },
2967
2913
  "pluginSettings": {
2968
- "description": "Web only. 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."
2914
+ "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."
2969
2915
  },
2970
2916
  "showNotifications": {
2971
2917
  "description": "Whether to show UI notifications. Will default to `true`.",
@@ -3329,7 +3275,7 @@
3329
3275
  },
3330
3276
  "geometry": {
3331
3277
  "$ref": "#/definitions/esri.Point",
3332
- "description": "The geometry from which to attempt to select the Note."
3278
+ "description": "The geometry from which to attempt to select the note."
3333
3279
  },
3334
3280
  "icon": {
3335
3281
  "description": "Optional icon that may be used by the transient UI container.",
@@ -3385,7 +3331,7 @@
3385
3331
  "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."
3386
3332
  },
3387
3333
  "showOnlySymbolPresets": {
3388
- "description": "If the fine-grain controls should be hidden and only the symbol presets should be shown. If no valid symbol presets are configured, this property will be ignored. Default is false. If defined, this will override the value of the DrawService's 'showOnlySymbolPresets' property.",
3334
+ "description": "If the fine-grain controls should be hidden and only the symbol presets should be shown. If no valid symbol presets are configured, this property will be ignored. If defined, this will override the value of the DrawService's 'showOnlySymbolPresets' property. Default is false.",
3389
3335
  "type": "boolean"
3390
3336
  },
3391
3337
  "symbol": {
@@ -3750,15 +3696,6 @@
3750
3696
  ],
3751
3697
  "type": "object"
3752
3698
  },
3753
- "FailureMode": {
3754
- "description": "Possible modes of failure when there is an error resolving or initializing an item.",
3755
- "enum": [
3756
- "error",
3757
- "ignore",
3758
- "warn"
3759
- ],
3760
- "type": "string"
3761
- },
3762
3699
  "FeatureReductionJson": {
3763
3700
  "anyOf": [
3764
3701
  {
@@ -5277,7 +5214,7 @@
5277
5214
  },
5278
5215
  "HasMapsRef": {
5279
5216
  "additionalProperties": false,
5280
- "description": "An object that has a `maps property.",
5217
+ "description": "An object that has a `maps` property.",
5281
5218
  "properties": {
5282
5219
  "maps": {
5283
5220
  "$ref": "MapsRef",
@@ -5378,7 +5315,7 @@
5378
5315
  "type": "boolean"
5379
5316
  },
5380
5317
  "sources": {
5381
- "description": "The feature sources to identify. Can be used instead of or in addition to \"maps\". Not supported in VertiGIS Studio Mobile (use \"maps\").",
5318
+ "description": "The feature sources to identify. Can be used instead of or in addition to \"maps\". Not supported in VertiGIS Studio Mobile (use \"maps\"). Source will be used in addition to the maps.",
5382
5319
  "items": {
5383
5320
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
5384
5321
  },
@@ -5400,7 +5337,7 @@
5400
5337
  "properties": {
5401
5338
  "geometry": {
5402
5339
  "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
5403
- "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
5340
+ "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by VertiGIS Studio Mobile."
5404
5341
  },
5405
5342
  "maps": {
5406
5343
  "$ref": "MapsLike",
@@ -5774,7 +5711,7 @@
5774
5711
  "type": "array"
5775
5712
  },
5776
5713
  "operationalLayersAutoSet": {
5777
- "description": "Specifies if the legend of all operational layers should be added to the layout. If true, operationalLayers can be undefined. Note: this is no ESRI standard property and only works with VertiGIS Studio Printing Engine.",
5714
+ "description": "Specifies if the legend of all operational layers should be added to the layout. If true, operationalLayers can be undefined. Note: this is not a standard Esri property and it only works with VertiGIS Studio Printing Engine.",
5778
5715
  "type": "boolean"
5779
5716
  }
5780
5717
  },
@@ -5808,7 +5745,7 @@
5808
5745
  "additionalProperties": false,
5809
5746
  "properties": {
5810
5747
  "accountId": {
5811
- "description": "The accountId (orgId) that we want to check licensing.",
5748
+ "description": "The accountId (orgId) that we want to check licensing for.",
5812
5749
  "type": "string"
5813
5750
  },
5814
5751
  "applicationName": {
@@ -5816,7 +5753,7 @@
5816
5753
  "type": "string"
5817
5754
  },
5818
5755
  "sku": {
5819
- "description": "Overwrite the SKU for license check.",
5756
+ "description": "Overwrite the default SKU (if any) for license checking.",
5820
5757
  "type": "string"
5821
5758
  }
5822
5759
  },
@@ -6057,28 +5994,6 @@
6057
5994
  ],
6058
5995
  "type": "object"
6059
5996
  },
6060
- "MoveNodeArgs": {
6061
- "additionalProperties": false,
6062
- "description": "Deprecated - use \"sketching.move-point\" with {@link MovePointArgs}.",
6063
- "properties": {
6064
- "maps": {
6065
- "$ref": "MapsLike",
6066
- "description": "Map(s) to use for the command/operation."
6067
- },
6068
- "node": {
6069
- "$ref": "#/definitions/esri.Point",
6070
- "description": "The point to move, which must already exist within the active sketch. If not provided, the active point will be used."
6071
- },
6072
- "position": {
6073
- "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion",
6074
- "description": "The new position for the point."
6075
- }
6076
- },
6077
- "required": [
6078
- "position"
6079
- ],
6080
- "type": "object"
6081
- },
6082
5997
  "MovePointArgs": {
6083
5998
  "additionalProperties": false,
6084
5999
  "description": "The arguments for the \"sketching.move-point\" command.",
@@ -6420,7 +6335,7 @@
6420
6335
  "description": "Represents the cover page settings.",
6421
6336
  "properties": {
6422
6337
  "dynamicElements": {
6423
- "description": "Dynamic elements of the cover page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in addtional settings root, if they have the same type and name.",
6338
+ "description": "Dynamic elements of the cover page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in additional settings root, if they have the same type and name.",
6424
6339
  "items": {
6425
6340
  "$ref": "#/definitions/DynamicElement"
6426
6341
  },
@@ -6438,7 +6353,7 @@
6438
6353
  "description": "Represents the legend page settings.",
6439
6354
  "properties": {
6440
6355
  "dynamicElements": {
6441
- "description": "Dynamic elements of the legend page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in addtional settings root, if they have the same type and name.",
6356
+ "description": "Dynamic elements of the legend page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in additional settings root, if they have the same type and name.",
6442
6357
  "items": {
6443
6358
  "$ref": "#/definitions/DynamicElement"
6444
6359
  },
@@ -6449,7 +6364,7 @@
6449
6364
  "type": "boolean"
6450
6365
  },
6451
6366
  "layerCompositeExport": {
6452
- "description": "Whether the legend items of dynamic layers, organized in composite layers on root level, should be exported in seperate legend pages. Legend items are seperated if this value is set to 'true'. This might result in additional legend page exports.",
6367
+ "description": "Whether the legend items of dynamic layers, organized in composite layers on root level, should be exported in separate legend pages. Legend items are separated if this value is set to 'true'. This might result in additional legend page exports.",
6453
6368
  "type": "boolean"
6454
6369
  },
6455
6370
  "visible": {
@@ -6464,7 +6379,7 @@
6464
6379
  "description": "Represents the overview page settings.",
6465
6380
  "properties": {
6466
6381
  "dynamicElements": {
6467
- "description": "Dynamic elements of the overview page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in addtional settings root, if they have the same type and name.",
6382
+ "description": "Dynamic elements of the overview page additionally to the dynamic text elements in exportWebMap:layoutOptions:customTextElement and the dynamic elements in additionalSettings. These elements take precedence over the elements in exportWebMap:layoutOptions:customTextElement and the elements in additional settings root, if they have the same type and name.",
6468
6383
  "items": {
6469
6384
  "$ref": "#/definitions/DynamicElement"
6470
6385
  },
@@ -6754,7 +6669,7 @@
6754
6669
  "type": "number"
6755
6670
  },
6756
6671
  "wkt": {
6757
- "description": "WKT String.",
6672
+ "description": "WKT string.",
6758
6673
  "type": "string"
6759
6674
  }
6760
6675
  },
@@ -6834,7 +6749,7 @@
6834
6749
  },
6835
6750
  "initialPosition": {
6836
6751
  "$ref": "MessageBoxPosition",
6837
- "description": "Where the dialog appears in the app when it is created. Defaults to center position. Web only."
6752
+ "description": "Where the dialog appears in the app when it is created. Defaults to \"center\" position. Web only."
6838
6753
  },
6839
6754
  "isDraggable": {
6840
6755
  "description": "Whether the dialog is draggable or not. Defaults to true. Web only.",
@@ -6877,7 +6792,7 @@
6877
6792
  },
6878
6793
  "initialPosition": {
6879
6794
  "$ref": "MessageBoxPosition",
6880
- "description": "Where the dialog appears in the app when it is created. Defaults to center position. Web only."
6795
+ "description": "Where the dialog appears in the app when it is created. Defaults to \"center\" position. Web only."
6881
6796
  },
6882
6797
  "isDraggable": {
6883
6798
  "description": "Whether the dialog is draggable or not. Defaults to true. Web only.",
@@ -7067,7 +6982,7 @@
7067
6982
  "description": "Optional layout XML attributes to be used for the transient UI container."
7068
6983
  },
7069
6984
  "fileTypeDescription": {
7070
- "description": "If present, provides information about what file types are accepted by this dialog, eg: \"*.jpg, *.gif and *.bmp files accepted\".",
6985
+ "description": "If present, provides information about what file types are accepted by this dialog, e.g. \"*.jpg, *.gif and *.bmp files accepted\".",
7071
6986
  "type": "string"
7072
6987
  },
7073
6988
  "icon": {
@@ -7365,7 +7280,7 @@
7365
7280
  "description": "The arguments for the arcade.run operation.",
7366
7281
  "properties": {
7367
7282
  "arguments": {
7368
- "description": "An arguments object that provides named variables and associated values, which can be referenced from within the executeScript and canExecuteScript. Note that context variables will be passed in if available under the well known arcade variable names: $feature, $features, $map, and $layer and $featuremap a constructed arcade dictionary that exposes a feature mapping dictionary keyed via feature source ID with the following values: id, title and features.\n\nNOTE: All variable keys must consist of only lowercase letters; camel-cased context variables will break the script when they are referenced at runtime."
7283
+ "description": "An arguments object that provides named variables and associated values, which can be referenced from within the executeScript and canExecuteScript. Note that context variables will be passed in if available under the well known arcade variable names: $feature, $features, $map, $layer and $featuremap which is a constructed Arcade dictionary that exposes a feature mapping dictionary keyed via feature source ID with the following values: id, title and features.\n\nNOTE: All variable keys must consist of only lowercase letters; camel-cased context variables will break the script when they are referenced at runtime."
7369
7284
  },
7370
7285
  "canExecuteScript": {
7371
7286
  "description": "The stringified Arcade script used to determine whether or not the executeScript can/should be run. If no executeScript is provided and the canExecuteScript returns a truthy value, the operation will return its input arguments; otherwise, if the canExecuteScript returns a falsy value, it will throw a {@link Cancellation}.",
@@ -7885,7 +7800,7 @@
7885
7800
  "type": "string"
7886
7801
  }
7887
7802
  ],
7888
- "description": "Argument used in case when we have only 1 map in the app or when the first active map should be used. Basemap extension ID or the basemap self. If more than one basemap is specified, only the first one is used."
7803
+ "description": "Argument used in case when we have only 1 map in the app or when the first active map should be used. Basemap extension ID or the basemap itself. If more than one basemap is specified, only the first one is used."
7889
7804
  },
7890
7805
  "SetBasemapArgs": {
7891
7806
  "anyOf": [
@@ -7909,7 +7824,7 @@
7909
7824
  },
7910
7825
  "SetBasemapWithTargetMapArg": {
7911
7826
  "additionalProperties": false,
7912
- "description": "Argument used in case when we have more than 1 map in the app, and we need to pass the target map from outside (eg basemap picker in VertiGIS Studio Web).",
7827
+ "description": "Argument used in case when we have more than 1 map in the app, and we need to pass the target map from outside (e.g. basemap picker in VertiGIS Studio Web).",
7913
7828
  "properties": {
7914
7829
  "basemap": {
7915
7830
  "$ref": "#/definitions/SetBasemapArg",
@@ -8757,24 +8672,6 @@
8757
8672
  ],
8758
8673
  "type": "object"
8759
8674
  },
8760
- "SwitchActiveNodeArgs": {
8761
- "additionalProperties": false,
8762
- "description": "Deprecated - use \"sketching.set-active-points\" with {@link SetActivePointsArgs}.",
8763
- "properties": {
8764
- "maps": {
8765
- "$ref": "MapsLike",
8766
- "description": "Map(s) to use for the command/operation."
8767
- },
8768
- "node": {
8769
- "$ref": "#/definitions/esri.Point",
8770
- "description": "The new point that will become the active point of an active sketch."
8771
- }
8772
- },
8773
- "required": [
8774
- "node"
8775
- ],
8776
- "type": "object"
8777
- },
8778
8675
  "Symbol2DJson": {
8779
8676
  "anyOf": [
8780
8677
  {
@@ -9134,7 +9031,7 @@
9134
9031
  "description": "Export interval units. Requires a defined interval. Default is MILLISECONDS."
9135
9032
  },
9136
9033
  "maxCount": {
9137
- "description": "Maximum count of time series PDF documents within the returned ZIP archive. If not set, no limit for time series PDF document exports is used. Depending on the client and the execution environment and the template- / map properties, the clients should always define a suitable value.",
9034
+ "description": "Maximum count of time series PDF documents within the returned ZIP archive. If not set, no limit for time series PDF document exports is used. Depending on the client and the execution environment and the template/map properties, the clients should always define a suitable value.",
9138
9035
  "type": "number"
9139
9036
  },
9140
9037
  "timeZone": {
@@ -9737,7 +9634,7 @@
9737
9634
  "description": "Used to update an in-progress interactive feature editing session with new attributes, attachments or geometry. Web only.",
9738
9635
  "properties": {
9739
9636
  "attachments": {
9740
- "description": "A collection of attachments that apply or are to be applied to the currently edited feature.",
9637
+ "description": "An array of attachments that apply or are to be applied to the currently edited feature.",
9741
9638
  "items": {
9742
9639
  "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
9743
9640
  },
@@ -10008,7 +9905,7 @@
10008
9905
  "type": "array"
10009
9906
  }
10010
9907
  ],
10011
- "description": "The blob(s) that contains the file attachment(s). If multiple attachments are specified, all attachment will be added to the feature(s)."
9908
+ "description": "The blob(s) that contains the file attachment(s). If multiple attachments are specified, all attachments will be added to the feature(s)."
10012
9909
  },
10013
9910
  "features": {
10014
9911
  "$ref": "#/definitions/Features",
@@ -10157,15 +10054,6 @@
10157
10054
  ],
10158
10055
  "type": "object"
10159
10056
  },
10160
- "app.create-project": {
10161
- "description": "Creates app config for a project, based on the current state of the application. Deprecated; use project.create instead. Web only.",
10162
- "enum": [
10163
- "app.create-project"
10164
- ]
10165
- },
10166
- "app.create-project:output": {
10167
- "$ref": "#/definitions/AppConfig"
10168
- },
10169
10057
  "app.get-persistent-data": {
10170
10058
  "description": "Gets stored data, specified by the arguments (key and scope).",
10171
10059
  "enum": [
@@ -10185,30 +10073,8 @@
10185
10073
  "app.get-version:output": {
10186
10074
  "type": "string"
10187
10075
  },
10188
- "app.load-project": {
10189
- "description": "Loads a project's app config and updates the application's current state, accordingly. If more than one file is provided, only the first will be loaded. Deprecated; use project.load instead. Web only.",
10190
- "enum": [
10191
- "app.load-project"
10192
- ]
10193
- },
10194
- "app.load-project:input": {
10195
- "anyOf": [
10196
- {
10197
- "$ref": "#/definitions/AppConfig"
10198
- },
10199
- {
10200
- "$ref": "Blob"
10201
- },
10202
- {
10203
- "items": {
10204
- "$ref": "Blob"
10205
- },
10206
- "type": "array"
10207
- }
10208
- ]
10209
- },
10210
10076
  "arcade.run": {
10211
- "description": "Runs a stringified Arcade script.\n\n- If only a string is passed in as an argument, it is interpreted as an executeScript.\n- If an executeScript is provided, the operation will return its result.\n- If only a canExecute script is provided and it returns a truthy result, the operation will return its input arguments.\n- If a canExecuteScript returns a falsy value, the operation will throw a `Cancellation`.\n\n**Example:** Use an Arcade script to query a portal for a featureset, and return the area in square kilometers of the first feature. The output type of this operation is determined by the Arcade script, see https://developers.arcgis.com/arcade/function-reference/ for more information.\n\n```\n{\n \"executeScript\": \"Area(First(FeatureSetByPortalItem(Portal(\\\"https://www.arcgis.com\\\"),\\\"6200db0b80de4341ae8ee2b62d606e67\\\",0,[\\\"*\\\"],true)),\\\"square-kilometers\\\");\"\n}\n```",
10077
+ "description": "Runs a stringified Arcade script. Web only.\n\n- If only a string is passed in as an argument, it is interpreted as an executeScript.\n- If an executeScript is provided, the operation will return its result.\n- If only a canExecute script is provided and it returns a truthy result, the operation will return its input arguments.\n- If a canExecuteScript returns a falsy value, the operation will throw a `Cancellation`.\n\n**Example:** Use an Arcade script to query a portal for a featureset, and return the area in square kilometers of the first feature. The output type of this operation is determined by the Arcade script, see https://developers.arcgis.com/arcade/function-reference/ for more information.\n\n```\n{\n \"executeScript\": \"Area(First(FeatureSetByPortalItem(Portal(\\\"https://www.arcgis.com\\\"),\\\"6200db0b80de4341ae8ee2b62d606e67\\\",0,[\\\"*\\\"],true)),\\\"square-kilometers\\\");\"\n}\n```",
10212
10078
  "enum": [
10213
10079
  "arcade.run"
10214
10080
  ]
@@ -10243,7 +10109,7 @@
10243
10109
  "type": "boolean"
10244
10110
  },
10245
10111
  "auth.sign-in": {
10246
- "description": "Initiates user sign-in if they aren't already signed in. The argument indicates whether or not the map should be reloaded when the sign-in is complete. This argument is optional and only supported by VertiGIS Studio Mobile.",
10112
+ "description": "Initiates user sign-in if they aren't already signed in. The argument indicates whether or not the map should be reloaded when the sign-in is complete. This argument is optional and only supported by VertiGIS Studio Mobile. Default is true.",
10247
10113
  "enum": [
10248
10114
  "auth.sign-in"
10249
10115
  ]
@@ -10255,7 +10121,7 @@
10255
10121
  ]
10256
10122
  },
10257
10123
  "auth.sign-out": {
10258
- "description": "Signs the user out. The argument indicates whether or not the map should be reloaded when the sign-out is complete. This argument is optional and only supported by VertiGIS Studio Mobile.",
10124
+ "description": "Signs the user out. The argument indicates whether or not the map should be reloaded when the sign-out is complete. This argument is optional and only supported by VertiGIS Studio Mobile. Default is true.",
10259
10125
  "enum": [
10260
10126
  "auth.sign-out"
10261
10127
  ]
@@ -10303,7 +10169,7 @@
10303
10169
  "$ref": "#/definitions/SetBasemapArgs"
10304
10170
  },
10305
10171
  "bulk-editing.add": {
10306
- "description": "Adds features to the bulk editing session. Typically used to stage features for later bulk updates. Web only.",
10172
+ "description": "Adds features to the bulk editing session. Used to stage features for updating. Web only.",
10307
10173
  "enum": [
10308
10174
  "bulk-editing.add"
10309
10175
  ]
@@ -10390,7 +10256,7 @@
10390
10256
  ]
10391
10257
  },
10392
10258
  "charts.display": {
10393
- "description": "Updates charts with provided features. Only activated charts that receive features from all required feature sources will displayed. Web only.",
10259
+ "description": "Updates charts with provided features. Only activated charts that receive features from all required feature sources will get displayed. Web only.",
10394
10260
  "enum": [
10395
10261
  "charts.display"
10396
10262
  ]
@@ -10903,7 +10769,7 @@
10903
10769
  "$ref": "#/definitions/BulkAttributeUpdateArgs"
10904
10770
  },
10905
10771
  "edit.cancel": {
10906
- "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.",
10772
+ "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.",
10907
10773
  "enum": [
10908
10774
  "edit.cancel"
10909
10775
  ]
@@ -10912,7 +10778,7 @@
10912
10778
  "$ref": "#/definitions/Features"
10913
10779
  },
10914
10780
  "edit.complete": {
10915
- "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 close. Web only.",
10781
+ "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.",
10916
10782
  "enum": [
10917
10783
  "edit.complete"
10918
10784
  ]
@@ -10983,7 +10849,7 @@
10983
10849
  ]
10984
10850
  },
10985
10851
  "edit.display-add-feature": {
10986
- "description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.\n\n**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.\n\n_Note:_ $map1.map.extension is the output of a 'Get Map' activity run in Web by Workflow. When the map and/or layer are provided in the context of a command chain these parameters can be omitted.\n\n```\n{\n \"editAttributes\": true,\n \"editGeometry\": true,\n \"featureAttributes\": {\n \"ASSET_ID\": \"WFH001234\"\n },\n \"layers\": \"Victoria_Fire_Hydrants_8780\",\n \"maps\": $map1.map.extension\n}\n```",
10852
+ "description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.\n\n**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.\n\n_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.\n\n```\n{\n \"editAttributes\": true,\n \"editGeometry\": true,\n \"featureAttributes\": {\n \"ASSET_ID\": \"WFH001234\"\n },\n \"layers\": \"Victoria_Fire_Hydrants_8780\"\n}\n```",
10987
10853
  "enum": [
10988
10854
  "edit.display-add-feature"
10989
10855
  ]
@@ -10999,7 +10865,7 @@
10999
10865
  ]
11000
10866
  },
11001
10867
  "edit.display-add-related-feature": {
11002
- "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.\n\n**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.\n\n_Notes:_.\n\n1. 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.\n2. `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.\n\n```\n{\n \"editAttributes\": true,\n \"editAttachments\": true,\n \"features\": $runOperation1.result,\n \"relationshipId\": \"1\",\n \"fieldElements\": [\n {\n \"fieldName\": \"COMMENTS\",\n \"editableExpression\": \"true\",\n \"requiredExpression\": \"true\"\n }\n ]\n}\n```",
10868
+ "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.\n\n**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.\n\n_Notes:_.\n\n1. 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.\n2. `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.\n\n```\n{\n \"editAttributes\": true,\n \"editAttachments\": true,\n \"relationshipId\": \"1\",\n \"fieldElements\": [\n {\n \"fieldName\": \"COMMENTS\",\n \"editableExpression\": \"true\",\n \"requiredExpression\": \"true\"\n }\n ]\n}\n```",
11003
10869
  "enum": [
11004
10870
  "edit.display-add-related-feature"
11005
10871
  ]
@@ -22056,30 +21922,6 @@
22056
21922
  }
22057
21923
  ]
22058
21924
  },
22059
- "highlights.get": {
22060
- "description": "Returns all highlighted features for a given map. Web only.",
22061
- "enum": [
22062
- "highlights.get"
22063
- ]
22064
- },
22065
- "highlights.get-focused": {
22066
- "description": "Returns all focused features for a given map. Web only.",
22067
- "enum": [
22068
- "highlights.get-focused"
22069
- ]
22070
- },
22071
- "highlights.get-focused:input": {
22072
- "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
22073
- },
22074
- "highlights.get-focused:output": {
22075
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
22076
- },
22077
- "highlights.get:input": {
22078
- "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
22079
- },
22080
- "highlights.get:output": {
22081
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
22082
- },
22083
21925
  "highlights.pulse": {
22084
21926
  "description": "Adds a temporary focused-state highlight to one or more features.",
22085
21927
  "enum": [
@@ -22785,7 +22627,7 @@
22785
22627
  ]
22786
22628
  },
22787
22629
  "location-marker.create": {
22788
- "description": "Create a new Marker. Web only.\n\n**Example:** Create a user draggable location marker with a heading and fov.\n\n_Note:_ The geometry here must be a Geometry object rather than a JSON representation. You can use the Workflow task 'Get Geometry From JSON' or be passed one from another step in the command chain.\n\n```\n{\n \"color\": [24, 128, 255, 255],\n \"fov\": 120,\n \"geometry\": $geometry1.geometry,\n \"heading\": 60,\n \"id\": \"custom-marker-1\",\n \"symbol\": \"dot\",\n \"userDraggable\": true\n}\n```",
22630
+ "description": "Create a new Marker. Web only.\n\n**Example:** Create a user draggable location marker with a heading and fov.\n\n_Note:_ The geometry here must be a Geometry object rather than a JSON representation. You can use the Workflow task 'Get Geometry From JSON' or be passed one from another step in the command chain.\n\n```\n{\n \"color\": [24, 128, 255, 255],\n \"fov\": 120,\n \"heading\": 60,\n \"id\": \"custom-marker-1\",\n \"symbol\": \"dot\",\n \"userDraggable\": true\n}\n```",
22789
22631
  "enum": [
22790
22632
  "location-marker.create"
22791
22633
  ]
@@ -23959,7 +23801,7 @@
23959
23801
  "$ref": "#/definitions/CaptureGeometryResult"
23960
23802
  },
23961
23803
  "measurement.create-graphics": {
23962
- "description": "Creates graphics out of geometries with the default symbology set by the \"measurement.set-default-symbol\" command'. Web only.",
23804
+ "description": "Creates graphics out of geometries with the default symbology set by the \"measurement.set-default-symbol\" command. Web only.",
23963
23805
  "enum": [
23964
23806
  "measurement.create-graphics"
23965
23807
  ]
@@ -24341,14 +24183,14 @@
24341
24183
  {
24342
24184
  "$ref": "#/definitions/SharedProject"
24343
24185
  },
24186
+ {
24187
+ "$ref": "#/definitions/HasAppConfig"
24188
+ },
24344
24189
  {
24345
24190
  "items": {
24346
24191
  "$ref": "Blob"
24347
24192
  },
24348
24193
  "type": "array"
24349
- },
24350
- {
24351
- "$ref": "#/definitions/HasAppConfig"
24352
24194
  }
24353
24195
  ]
24354
24196
  },
@@ -24697,13 +24539,13 @@
24697
24539
  "$ref": "#/definitions/ConversionResult"
24698
24540
  },
24699
24541
  "results.display": {
24700
- "description": "Presents features to the user within any components that can display features, such as a feature list, feature table, or feature details component. The argument is the features to display, or an object specifying both features and the target results component to update (Web only).",
24542
+ "description": "Presents features to the user within any components that can display features, such as a feature list, feature table, or feature details component. The argument is the features to display, or an object specifying both features and the target results component to update (Web only). If features are specified, they will overwrite any incoming features from previous operations up the action chain.",
24701
24543
  "enum": [
24702
24544
  "results.display"
24703
24545
  ]
24704
24546
  },
24705
24547
  "results.display-details": {
24706
- "description": "Presents feature details to the user within the feature-details component. The argument is the feature(s) to display, or an object specifying both features and the target results component to update (Web only).",
24548
+ "description": "Presents feature details to the user within the feature-details component. The argument is the feature(s) to display, or an object specifying both features and the target results component to update (this object, UpdateResultsFeaturesArgs, is Web only).",
24707
24549
  "enum": [
24708
24550
  "results.display-details"
24709
24551
  ]
@@ -25053,7 +24895,7 @@
25053
24895
  "$ref": "#/definitions/ShowResultsArgs"
25054
24896
  },
25055
24897
  "results.replace": {
25056
- "description": "Replaces feature(s) in the shown set of features. If a feature is not contained in the current set it is ignored. Features are uniquely identified by ID and not by object quality. Web only.",
24898
+ "description": "Replaces feature(s) in the shown set of features. If a feature is not contained in the current set it is ignored. Features are uniquely identified by ID and not by object equality. Web only.",
25057
24899
  "enum": [
25058
24900
  "results.replace"
25059
24901
  ]
@@ -25197,7 +25039,7 @@
25197
25039
  ]
25198
25040
  },
25199
25041
  "sketching.activate-snapping": {
25200
- "description": "Set the snapping default to 'on' for all subsequent operations. Web only.",
25042
+ "description": "Set the snapping default to 'on' for all in progress and subsequent operations. Web only.",
25201
25043
  "enum": [
25202
25044
  "sketching.activate-snapping"
25203
25045
  ]
@@ -25208,18 +25050,6 @@
25208
25050
  "sketching.activate-topology"
25209
25051
  ]
25210
25052
  },
25211
- "sketching.add-node-to-geometry": {
25212
- "description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
25213
- "enum": [
25214
- "sketching.add-node-to-geometry"
25215
- ]
25216
- },
25217
- "sketching.add-node-to-geometry:input": {
25218
- "$ref": "#/definitions/AddNodeToGeometryArgs"
25219
- },
25220
- "sketching.add-node-to-geometry:output": {
25221
- "$ref": "#/definitions/@arcgis.core.unionTypes.GeometryUnion"
25222
- },
25223
25053
  "sketching.add-point": {
25224
25054
  "description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
25225
25055
  "enum": [
@@ -25320,18 +25150,6 @@
25320
25150
  "sketching.enable-precision-mode"
25321
25151
  ]
25322
25152
  },
25323
- "sketching.get-active-node": {
25324
- "description": "Deprecated - use 'sketching.get-active-points' instead. Web only.",
25325
- "enum": [
25326
- "sketching.get-active-node"
25327
- ]
25328
- },
25329
- "sketching.get-active-node:input": {
25330
- "$ref": "Maps"
25331
- },
25332
- "sketching.get-active-node:output": {
25333
- "$ref": "#/definitions/GetActivePointsResult"
25334
- },
25335
25153
  "sketching.get-active-points": {
25336
25154
  "description": "Returns the active point graphics of the active sketch or edit session on a map. Web only.",
25337
25155
  "enum": [
@@ -25386,15 +25204,6 @@
25386
25204
  "sketching.move-geometry:output": {
25387
25205
  "$ref": "#/definitions/GeometryOperationBase"
25388
25206
  },
25389
- "sketching.move-node": {
25390
- "description": "Deprecated - use 'sketching.move-point' instead. Web only.",
25391
- "enum": [
25392
- "sketching.move-node"
25393
- ]
25394
- },
25395
- "sketching.move-node:input": {
25396
- "$ref": "#/definitions/MoveNodeArgs"
25397
- },
25398
25207
  "sketching.move-point": {
25399
25208
  "description": "Moves a point within an active sketch to a new location. Web only.",
25400
25209
  "enum": [
@@ -25465,7 +25274,7 @@
25465
25274
  "$ref": "#/definitions/SetSnappingConfigurationArgs"
25466
25275
  },
25467
25276
  "sketching.set-topology-configuration": {
25468
- "description": "Sets the global snapping configuration. Web only.",
25277
+ "description": "Sets the topology configuration. Web only.",
25469
25278
  "enum": [
25470
25279
  "sketching.set-topology-configuration"
25471
25280
  ]
@@ -25492,15 +25301,6 @@
25492
25301
  "sketching.stop:output": {
25493
25302
  "$ref": "#/definitions/CaptureGeometryResult"
25494
25303
  },
25495
- "sketching.switch-active-node": {
25496
- "description": "Deprecated - use 'sketching.set-active-points' instead. Web only.",
25497
- "enum": [
25498
- "sketching.switch-active-node"
25499
- ]
25500
- },
25501
- "sketching.switch-active-node:input": {
25502
- "$ref": "#/definitions/SwitchActiveNodeArgs"
25503
- },
25504
25304
  "sketching.undo": {
25505
25305
  "description": "Undoes the last edit while editing a geometry.",
25506
25306
  "enum": [
@@ -26045,22 +25845,6 @@
26045
25845
  },
26046
25846
  "viewer-spec.SingleCommand": {
26047
25847
  "anyOf": [
26048
- {
26049
- "additionalProperties": false,
26050
- "properties": {
26051
- "arguments": {
26052
- "$ref": "#/definitions/app.load-project:input"
26053
- },
26054
- "name": {
26055
- "$ref": "#/definitions/app.load-project"
26056
- }
26057
- },
26058
- "required": [
26059
- "name",
26060
- "arguments"
26061
- ],
26062
- "type": "object"
26063
- },
26064
25848
  {
26065
25849
  "additionalProperties": false,
26066
25850
  "properties": {
@@ -28333,22 +28117,6 @@
28333
28117
  ],
28334
28118
  "type": "object"
28335
28119
  },
28336
- {
28337
- "additionalProperties": false,
28338
- "properties": {
28339
- "arguments": {
28340
- "$ref": "#/definitions/sketching.move-node:input"
28341
- },
28342
- "name": {
28343
- "$ref": "#/definitions/sketching.move-node"
28344
- }
28345
- },
28346
- "required": [
28347
- "name",
28348
- "arguments"
28349
- ],
28350
- "type": "object"
28351
- },
28352
28120
  {
28353
28121
  "additionalProperties": false,
28354
28122
  "properties": {
@@ -28445,22 +28213,6 @@
28445
28213
  ],
28446
28214
  "type": "object"
28447
28215
  },
28448
- {
28449
- "additionalProperties": false,
28450
- "properties": {
28451
- "arguments": {
28452
- "$ref": "#/definitions/sketching.switch-active-node:input"
28453
- },
28454
- "name": {
28455
- "$ref": "#/definitions/sketching.switch-active-node"
28456
- }
28457
- },
28458
- "required": [
28459
- "name",
28460
- "arguments"
28461
- ],
28462
- "type": "object"
28463
- },
28464
28216
  {
28465
28217
  "additionalProperties": false,
28466
28218
  "properties": {
@@ -28845,9 +28597,6 @@
28845
28597
  ],
28846
28598
  "type": "object"
28847
28599
  },
28848
- {
28849
- "$ref": "#/definitions/app.load-project"
28850
- },
28851
28600
  {
28852
28601
  "$ref": "#/definitions/auth.sign-in"
28853
28602
  },
@@ -29313,9 +29062,6 @@
29313
29062
  {
29314
29063
  "$ref": "#/definitions/sketching.insert-point"
29315
29064
  },
29316
- {
29317
- "$ref": "#/definitions/sketching.move-node"
29318
- },
29319
29065
  {
29320
29066
  "$ref": "#/definitions/sketching.move-point"
29321
29067
  },
@@ -29334,9 +29080,6 @@
29334
29080
  {
29335
29081
  "$ref": "#/definitions/sketching.set-topology-configuration"
29336
29082
  },
29337
- {
29338
- "$ref": "#/definitions/sketching.switch-active-node"
29339
- },
29340
29083
  {
29341
29084
  "$ref": "#/definitions/sketching.undo"
29342
29085
  },
@@ -29733,38 +29476,6 @@
29733
29476
  ],
29734
29477
  "type": "object"
29735
29478
  },
29736
- {
29737
- "additionalProperties": false,
29738
- "properties": {
29739
- "arguments": {
29740
- "$ref": "#/definitions/highlights.get:input"
29741
- },
29742
- "name": {
29743
- "$ref": "#/definitions/highlights.get"
29744
- }
29745
- },
29746
- "required": [
29747
- "name",
29748
- "arguments"
29749
- ],
29750
- "type": "object"
29751
- },
29752
- {
29753
- "additionalProperties": false,
29754
- "properties": {
29755
- "arguments": {
29756
- "$ref": "#/definitions/highlights.get-focused:input"
29757
- },
29758
- "name": {
29759
- "$ref": "#/definitions/highlights.get-focused"
29760
- }
29761
- },
29762
- "required": [
29763
- "name",
29764
- "arguments"
29765
- ],
29766
- "type": "object"
29767
- },
29768
29479
  {
29769
29480
  "additionalProperties": false,
29770
29481
  "properties": {
@@ -30533,22 +30244,6 @@
30533
30244
  ],
30534
30245
  "type": "object"
30535
30246
  },
30536
- {
30537
- "additionalProperties": false,
30538
- "properties": {
30539
- "arguments": {
30540
- "$ref": "#/definitions/sketching.add-node-to-geometry:input"
30541
- },
30542
- "name": {
30543
- "$ref": "#/definitions/sketching.add-node-to-geometry"
30544
- }
30545
- },
30546
- "required": [
30547
- "name",
30548
- "arguments"
30549
- ],
30550
- "type": "object"
30551
- },
30552
30247
  {
30553
30248
  "additionalProperties": false,
30554
30249
  "properties": {
@@ -30581,22 +30276,6 @@
30581
30276
  ],
30582
30277
  "type": "object"
30583
30278
  },
30584
- {
30585
- "additionalProperties": false,
30586
- "properties": {
30587
- "arguments": {
30588
- "$ref": "#/definitions/sketching.get-active-node:input"
30589
- },
30590
- "name": {
30591
- "$ref": "#/definitions/sketching.get-active-node"
30592
- }
30593
- },
30594
- "required": [
30595
- "name",
30596
- "arguments"
30597
- ],
30598
- "type": "object"
30599
- },
30600
30279
  {
30601
30280
  "additionalProperties": false,
30602
30281
  "properties": {
@@ -31013,9 +30692,6 @@
31013
30692
  ],
31014
30693
  "type": "object"
31015
30694
  },
31016
- {
31017
- "$ref": "#/definitions/app.create-project"
31018
- },
31019
30695
  {
31020
30696
  "$ref": "#/definitions/app.get-persistent-data"
31021
30697
  },
@@ -31106,12 +30782,6 @@
31106
30782
  {
31107
30783
  "$ref": "#/definitions/geometry.project"
31108
30784
  },
31109
- {
31110
- "$ref": "#/definitions/highlights.get"
31111
- },
31112
- {
31113
- "$ref": "#/definitions/highlights.get-focused"
31114
- },
31115
30785
  {
31116
30786
  "$ref": "#/definitions/kpi.get-definition"
31117
30787
  },
@@ -31265,9 +30935,6 @@
31265
30935
  {
31266
30936
  "$ref": "#/definitions/results.upload-data-to-features"
31267
30937
  },
31268
- {
31269
- "$ref": "#/definitions/sketching.add-node-to-geometry"
31270
- },
31271
30938
  {
31272
30939
  "$ref": "#/definitions/sketching.capture-geometry"
31273
30940
  },
@@ -31277,9 +30944,6 @@
31277
30944
  {
31278
30945
  "$ref": "#/definitions/sketching.edit-geometry"
31279
30946
  },
31280
- {
31281
- "$ref": "#/definitions/sketching.get-active-node"
31282
- },
31283
30947
  {
31284
30948
  "$ref": "#/definitions/sketching.get-active-points"
31285
30949
  },