@vertigis/viewer-spec 45.0.0 → 46.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.
@@ -476,7 +476,7 @@
476
476
  },
477
477
  "AddNodeToGeometryArgs": {
478
478
  "additionalProperties": false,
479
- "description": "Arguments for the \"sketching.add-node-to-geometry\" operation.",
479
+ "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.",
480
480
  "properties": {
481
481
  "geometry": {
482
482
  "$ref": "#/definitions/esri.Geometry",
@@ -696,6 +696,10 @@
696
696
  "$ref": "MapsLike",
697
697
  "description": "The maps to activate drawing on. By default it will be all maps."
698
698
  },
699
+ "maxSegments": {
700
+ "description": "The maximum number of segments permitted for a polyline or polygon sketch. Default is no limit. Mobile only.",
701
+ "type": "number"
702
+ },
699
703
  "symbol": {
700
704
  "anyOf": [
701
705
  {
@@ -751,6 +755,25 @@
751
755
  ],
752
756
  "type": "object"
753
757
  },
758
+ "ClearConstraintsArgs": {
759
+ "additionalProperties": false,
760
+ "description": "Arguments for the \"sketching.clear-constraints\" command.",
761
+ "properties": {
762
+ "clearAngleConstraint": {
763
+ "description": "Indicates whether the angle constraint should be cleared. Defaults to true if not specified.",
764
+ "type": "boolean"
765
+ },
766
+ "clearLengthConstraint": {
767
+ "description": "Indicates whether the length constraint should be cleared. Defaults to true if not specified.",
768
+ "type": "boolean"
769
+ },
770
+ "maps": {
771
+ "$ref": "MapsLike",
772
+ "description": "Map(s) to use for the command/operation."
773
+ }
774
+ },
775
+ "type": "object"
776
+ },
754
777
  "ConfirmOperationArgs": {
755
778
  "additionalProperties": false,
756
779
  "description": "Arguments for the 'ui.confirm' operation.",
@@ -849,12 +872,24 @@
849
872
  "description": "Arguments for the \"sketching.delete\" command.",
850
873
  "properties": {
851
874
  "geometry": {
852
- "$ref": "#/definitions/esri.Point",
853
- "description": "The point to delete from the active sketch. Not supported in Geocortex Mobile."
875
+ "$ref": "#/definitions/esri.Geometry",
876
+ "description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
854
877
  },
855
878
  "maps": {
856
879
  "$ref": "MapsLike",
857
880
  "description": "Map(s) to use for the command/operation."
881
+ },
882
+ "partIndex": {
883
+ "description": "The index of the part of the geometry that the point should be removed from. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
884
+ "type": "number"
885
+ },
886
+ "point": {
887
+ "$ref": "#/definitions/esri.Point",
888
+ "description": "The point to remove from the geometry. If this property is defined, the 'pointIndex' and 'partIndex' properties are ignored. If no point nor pointIndex/partIndex are specified, any active points will be deleted. If there are no active points, the entire geometry will be deleted."
889
+ },
890
+ "pointIndex": {
891
+ "description": "The index of the point that should be removed from the geometry. If this property is defined, the geometry property must also be defined.",
892
+ "type": "number"
858
893
  }
859
894
  },
860
895
  "type": "object"
@@ -915,8 +950,8 @@
915
950
  "type": "boolean"
916
951
  },
917
952
  "message": {
918
- "description": "The message to be displayed in the notification.",
919
- "type": "string"
953
+ "$ref": "#/definitions/TranslatableText",
954
+ "description": "The message to be displayed in the notification. Mobile only supports a string for this property."
920
955
  },
921
956
  "notificationGroup": {
922
957
  "description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
@@ -1052,6 +1087,10 @@
1052
1087
  "description": "Whether to allow scaling of the edited geometry. Defaults to true.",
1053
1088
  "type": "boolean"
1054
1089
  },
1090
+ "enableVertexEditing": {
1091
+ "description": "Whether to allow the user to add, move, and remove vertices from a geometry. Defaults to true.",
1092
+ "type": "boolean"
1093
+ },
1055
1094
  "scaleMode": {
1056
1095
  "description": "Setting \"free\" allows independent scaling on the x and y axis, \"preserve-aspect-ratio\" constrains scaling to the original aspect ratio. Defaults to \"preserve-aspect-ratio\".",
1057
1096
  "enum": [
@@ -1059,6 +1098,10 @@
1059
1098
  "preserve-aspect-ratio"
1060
1099
  ],
1061
1100
  "type": "string"
1101
+ },
1102
+ "validateGeometry": {
1103
+ "description": "Whether the resulting geometry is validated before it's returned from the operation. If the geometry is invalid upon completion, an error is thrown. Defaults to true.",
1104
+ "type": "boolean"
1062
1105
  }
1063
1106
  },
1064
1107
  "type": "object"
@@ -1683,6 +1726,36 @@
1683
1726
  ],
1684
1727
  "type": "object"
1685
1728
  },
1729
+ "InsertPointArgs": {
1730
+ "additionalProperties": false,
1731
+ "description": "Arguments for the \"sketching.insert-point\" command.",
1732
+ "properties": {
1733
+ "geometry": {
1734
+ "$ref": "#/definitions/esri.Geometry",
1735
+ "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
1736
+ },
1737
+ "maps": {
1738
+ "$ref": "MapsLike",
1739
+ "description": "Map(s) to use for the command/operation."
1740
+ },
1741
+ "newPoint": {
1742
+ "$ref": "#/definitions/esri.Point",
1743
+ "description": "The new point to be added."
1744
+ },
1745
+ "partIndex": {
1746
+ "description": "The index of the part to which the point will be added. If null, the last part will be used.",
1747
+ "type": "number"
1748
+ },
1749
+ "pointIndex": {
1750
+ "description": "The index at which the point will be added. If null, the point will be added as the last point.",
1751
+ "type": "number"
1752
+ }
1753
+ },
1754
+ "required": [
1755
+ "newPoint"
1756
+ ],
1757
+ "type": "object"
1758
+ },
1686
1759
  "JobParameters": {
1687
1760
  "additionalProperties": false,
1688
1761
  "description": "A set of parameters used to run a job.",
@@ -2314,6 +2387,45 @@
2314
2387
  ],
2315
2388
  "type": "object"
2316
2389
  },
2390
+ "SetConstraintsArgs": {
2391
+ "additionalProperties": false,
2392
+ "description": "Arguments for the \"sketching.set-constraints\" command.",
2393
+ "properties": {
2394
+ "angle": {
2395
+ "description": "The constraint for the angle of the line between the selected vertex and the new point, relative to the reference line. Remains unchanged until set to a different value, or cleared.",
2396
+ "type": "number"
2397
+ },
2398
+ "autoClear": {
2399
+ "description": "Indicates whether constraints will be automatically cleared after a vertex is added or updated. If not set (value is null), then the value will remain unchanged with this operation. If the value has never been set, the default is false. Remains unchanged until set to a different value.",
2400
+ "type": "boolean"
2401
+ },
2402
+ "geodetic": {
2403
+ "description": "Indicates whether the distance calculations will be geodetic or planar. Default is true.",
2404
+ "type": "boolean"
2405
+ },
2406
+ "geodeticCurveType": {
2407
+ "$ref": "#/definitions/GeodeticCurveType",
2408
+ "description": "The geodetic curve type used when calculating the new point. Only applies when geodetic is set to true. Defaults to geodesic."
2409
+ },
2410
+ "length": {
2411
+ "description": "The constraint for the length of the line between the selected vertex and the new point.",
2412
+ "type": "number"
2413
+ },
2414
+ "maps": {
2415
+ "$ref": "MapsLike",
2416
+ "description": "Map(s) to use for the command/operation."
2417
+ },
2418
+ "referenceLine": {
2419
+ "$ref": "#/definitions/ReferenceLine",
2420
+ "description": "A reference line that the angle will be relative to. Defaults to 'north'. Remains unchanged until set again."
2421
+ },
2422
+ "units": {
2423
+ "$ref": "#/definitions/LengthUnitsMobile",
2424
+ "description": "The units to be used for length. If not specified, the units of the map's spatial reference will be used."
2425
+ }
2426
+ },
2427
+ "type": "object"
2428
+ },
2317
2429
  "SetGeometryModeArgs": {
2318
2430
  "additionalProperties": false,
2319
2431
  "description": "Arguments for the \"sketching.set-geometry-mode\" command.",
@@ -2463,6 +2575,10 @@
2463
2575
  "$ref": "MapsLike",
2464
2576
  "description": "The map to sketch on."
2465
2577
  },
2578
+ "maxSegments": {
2579
+ "description": "The maximum number of segments permitted for a polyline or polygon sketch. Default is no limit. Mobile only.",
2580
+ "type": "number"
2581
+ },
2466
2582
  "resumeId": {
2467
2583
  "description": "Gets a resume ID for the sketch. Cannot be set.",
2468
2584
  "type": "string"
@@ -2483,6 +2599,21 @@
2483
2599
  ],
2484
2600
  "type": "object"
2485
2601
  },
2602
+ "StartStreamingArgs": {
2603
+ "additionalProperties": false,
2604
+ "description": "Arguments for the \"sketching.start-streaming\" command.",
2605
+ "properties": {
2606
+ "interval": {
2607
+ "description": "An optional value indicating, in seconds, how often points should be recorded.",
2608
+ "type": "number"
2609
+ },
2610
+ "maps": {
2611
+ "$ref": "MapsLike",
2612
+ "description": "Map(s) to use for the command/operation."
2613
+ }
2614
+ },
2615
+ "type": "object"
2616
+ },
2486
2617
  "StopGeometryEditArgs": {
2487
2618
  "additionalProperties": false,
2488
2619
  "description": "Arguments for the \"sketching.stop\" operation.",
@@ -2605,6 +2736,61 @@
2605
2736
  },
2606
2737
  "type": "object"
2607
2738
  },
2739
+ "TranslatableText": {
2740
+ "anyOf": [
2741
+ {
2742
+ "$ref": "#/definitions/TranslateOptions"
2743
+ },
2744
+ {
2745
+ "type": "string"
2746
+ }
2747
+ ],
2748
+ "description": "A translatable string, either a language string or a language string with arguments to pass into it."
2749
+ },
2750
+ "TranslateOptions": {
2751
+ "additionalProperties": false,
2752
+ "description": "The available options for the Locale Service translate function.",
2753
+ "properties": {
2754
+ "args": {
2755
+ "description": "The values to substitute into the format string if it contains substitution placeholders (see utilities/string/format in Geocortex API).",
2756
+ "items": {
2757
+ },
2758
+ "type": "array"
2759
+ },
2760
+ "currency": {
2761
+ "description": "The default unit of currency to use when formatting currency. See {@link NumberSettings.currency}.",
2762
+ "type": "string"
2763
+ },
2764
+ "dateFormat": {
2765
+ "description": "The default format to use when formatting dates. See {@link DateFormatter.format}.",
2766
+ "type": "string"
2767
+ },
2768
+ "fractionalDigits": {
2769
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link NumberSettings.fractionalDigits}.",
2770
+ "type": "number"
2771
+ },
2772
+ "locale": {
2773
+ "description": "The locale to use for translation. If not specified, the current locale will be used.",
2774
+ "type": "string"
2775
+ },
2776
+ "numberFormat": {
2777
+ "description": "The default format to use when formatting numbers. See {@link NumberFormatter.format}.",
2778
+ "type": "string"
2779
+ },
2780
+ "text": {
2781
+ "description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
2782
+ "type": "string"
2783
+ },
2784
+ "timeZone": {
2785
+ "description": "The time zone of a date being formatted.",
2786
+ "type": "string"
2787
+ }
2788
+ },
2789
+ "required": [
2790
+ "text"
2791
+ ],
2792
+ "type": "object"
2793
+ },
2608
2794
  "UpdateResultsFeaturesArgs": {
2609
2795
  "additionalProperties": false,
2610
2796
  "description": "Arguments for various commands that affect a result component's features.",
@@ -12943,7 +13129,7 @@
12943
13129
  "type": "string"
12944
13130
  },
12945
13131
  "sketching.add-node-to-geometry": {
12946
- "description": "Adds a point to a given polyline or polygon geometry. Returns the resulting geometry. Deprecated in Mobile, use geometry.add-point instead.",
13132
+ "description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
12947
13133
  "enum": [
12948
13134
  "sketching.add-node-to-geometry"
12949
13135
  ]
@@ -12954,6 +13140,12 @@
12954
13140
  "sketching.add-node-to-geometry:output": {
12955
13141
  "$ref": "#/definitions/esri.Geometry"
12956
13142
  },
13143
+ "sketching.add-point": {
13144
+ "description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
13145
+ "enum": [
13146
+ "sketching.add-point"
13147
+ ]
13148
+ },
12957
13149
  "sketching.add-point-at-center": {
12958
13150
  "description": "Adds a point at the center of the map while editing a geometry. Works in centerCrosshair mode only.",
12959
13151
  "enum": [
@@ -12972,6 +13164,9 @@
12972
13164
  "sketching.add-point-at-current-location:input": {
12973
13165
  "$ref": "#/definitions/HasMaps"
12974
13166
  },
13167
+ "sketching.add-point:input": {
13168
+ "$ref": "#/definitions/AddPointArgs"
13169
+ },
12975
13170
  "sketching.capture-geometry": {
12976
13171
  "description": "Allows the user to create geometry by sketching on a map. Returns the geometry that was drawn, along with the map that it was drawn on.",
12977
13172
  "enum": [
@@ -12984,14 +13179,30 @@
12984
13179
  "sketching.capture-geometry:output": {
12985
13180
  "$ref": "#/definitions/CaptureGeometryResult"
12986
13181
  },
13182
+ "sketching.clear-constraints": {
13183
+ "description": "Clears constraints that have been previously set.",
13184
+ "enum": [
13185
+ "sketching.clear-constraints"
13186
+ ]
13187
+ },
13188
+ "sketching.clear-constraints:input": {
13189
+ "$ref": "#/definitions/ClearConstraintsArgs"
13190
+ },
12987
13191
  "sketching.delete": {
12988
- "description": "If a point is supplied while a sketching or editing operation is active, the vertex at that point will be deleted from the current geometry. If no point is supplied and a geometry editing session is active, the entire geometry will be deleted.",
13192
+ "description": "If a point is supplied while a sketching or editing operation is active, the vertex at that point will be deleted from the current geometry. If no point is supplied, any active points in the session will be deleted. If there are no active points in the session, the entire geometry will be deleted.",
12989
13193
  "enum": [
12990
13194
  "sketching.delete"
12991
13195
  ]
12992
13196
  },
12993
13197
  "sketching.delete:input": {
12994
- "$ref": "#/definitions/DeleteGeometryArgs"
13198
+ "anyOf": [
13199
+ {
13200
+ "$ref": "#/definitions/DeleteGeometryArgs"
13201
+ },
13202
+ {
13203
+ "type": "null"
13204
+ }
13205
+ ]
12995
13206
  },
12996
13207
  "sketching.edit-geometry": {
12997
13208
  "description": "Allows the user to edit an existing geometry by drawing on a map. Returns the geometry that was edited, or the supplied feature with the altered geometry applied, along with the map that it was drawn on.",
@@ -13005,6 +13216,27 @@
13005
13216
  "sketching.edit-geometry:output": {
13006
13217
  "$ref": "#/definitions/EditGeometryResult"
13007
13218
  },
13219
+ "sketching.insert-point": {
13220
+ "description": "Inserts a point into a polygon, polyline, or multipoint at the specified index. If the partIndex is null, then the last part is used. If the pointIndex is null, then the new point is inserted at the end.",
13221
+ "enum": [
13222
+ "sketching.insert-point"
13223
+ ]
13224
+ },
13225
+ "sketching.insert-point:input": {
13226
+ "$ref": "#/definitions/InsertPointArgs"
13227
+ },
13228
+ "sketching.is-streaming": {
13229
+ "description": "Checks whether streaming is active.",
13230
+ "enum": [
13231
+ "sketching.is-streaming"
13232
+ ]
13233
+ },
13234
+ "sketching.is-streaming:input": {
13235
+ "$ref": "#/definitions/HasMaps"
13236
+ },
13237
+ "sketching.is-streaming:output": {
13238
+ "type": "boolean"
13239
+ },
13008
13240
  "sketching.redo": {
13009
13241
  "description": "Redoes the last undone edit while editing a geometry.",
13010
13242
  "enum": [
@@ -13014,6 +13246,15 @@
13014
13246
  "sketching.redo:input": {
13015
13247
  "$ref": "#/definitions/HasMaps"
13016
13248
  },
13249
+ "sketching.set-constraints": {
13250
+ "description": "Sets constraints on the active sketch.",
13251
+ "enum": [
13252
+ "sketching.set-constraints"
13253
+ ]
13254
+ },
13255
+ "sketching.set-constraints:input": {
13256
+ "$ref": "#/definitions/SetConstraintsArgs"
13257
+ },
13017
13258
  "sketching.set-geometry-mode": {
13018
13259
  "description": "Sets the geometry mode of the geometry editor.",
13019
13260
  "enum": [
@@ -13041,12 +13282,30 @@
13041
13282
  "sketching.set-point-at-current-location:input": {
13042
13283
  "$ref": "#/definitions/HasMaps"
13043
13284
  },
13285
+ "sketching.start-streaming": {
13286
+ "description": "Starts streaming: recording your location at regular intervals and adding the collected points to the currently active geometry editor.",
13287
+ "enum": [
13288
+ "sketching.start-streaming"
13289
+ ]
13290
+ },
13291
+ "sketching.start-streaming:input": {
13292
+ "$ref": "#/definitions/StartStreamingArgs"
13293
+ },
13044
13294
  "sketching.stop": {
13045
- "description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid, returns null.",
13295
+ "description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid, the operation will return null.",
13046
13296
  "enum": [
13047
13297
  "sketching.stop"
13048
13298
  ]
13049
13299
  },
13300
+ "sketching.stop-streaming": {
13301
+ "description": "Stops streaming.",
13302
+ "enum": [
13303
+ "sketching.stop-streaming"
13304
+ ]
13305
+ },
13306
+ "sketching.stop-streaming:input": {
13307
+ "$ref": "#/definitions/HasMaps"
13308
+ },
13050
13309
  "sketching.stop:input": {
13051
13310
  "anyOf": [
13052
13311
  {
@@ -14497,6 +14756,22 @@
14497
14756
  ],
14498
14757
  "type": "object"
14499
14758
  },
14759
+ {
14760
+ "additionalProperties": false,
14761
+ "properties": {
14762
+ "arguments": {
14763
+ "$ref": "#/definitions/sketching.add-point:input"
14764
+ },
14765
+ "name": {
14766
+ "$ref": "#/definitions/sketching.add-point"
14767
+ }
14768
+ },
14769
+ "required": [
14770
+ "name",
14771
+ "arguments"
14772
+ ],
14773
+ "type": "object"
14774
+ },
14500
14775
  {
14501
14776
  "additionalProperties": false,
14502
14777
  "properties": {
@@ -14529,6 +14804,22 @@
14529
14804
  ],
14530
14805
  "type": "object"
14531
14806
  },
14807
+ {
14808
+ "additionalProperties": false,
14809
+ "properties": {
14810
+ "arguments": {
14811
+ "$ref": "#/definitions/sketching.clear-constraints:input"
14812
+ },
14813
+ "name": {
14814
+ "$ref": "#/definitions/sketching.clear-constraints"
14815
+ }
14816
+ },
14817
+ "required": [
14818
+ "name",
14819
+ "arguments"
14820
+ ],
14821
+ "type": "object"
14822
+ },
14532
14823
  {
14533
14824
  "additionalProperties": false,
14534
14825
  "properties": {
@@ -14545,6 +14836,22 @@
14545
14836
  ],
14546
14837
  "type": "object"
14547
14838
  },
14839
+ {
14840
+ "additionalProperties": false,
14841
+ "properties": {
14842
+ "arguments": {
14843
+ "$ref": "#/definitions/sketching.insert-point:input"
14844
+ },
14845
+ "name": {
14846
+ "$ref": "#/definitions/sketching.insert-point"
14847
+ }
14848
+ },
14849
+ "required": [
14850
+ "name",
14851
+ "arguments"
14852
+ ],
14853
+ "type": "object"
14854
+ },
14548
14855
  {
14549
14856
  "additionalProperties": false,
14550
14857
  "properties": {
@@ -14561,6 +14868,22 @@
14561
14868
  ],
14562
14869
  "type": "object"
14563
14870
  },
14871
+ {
14872
+ "additionalProperties": false,
14873
+ "properties": {
14874
+ "arguments": {
14875
+ "$ref": "#/definitions/sketching.set-constraints:input"
14876
+ },
14877
+ "name": {
14878
+ "$ref": "#/definitions/sketching.set-constraints"
14879
+ }
14880
+ },
14881
+ "required": [
14882
+ "name",
14883
+ "arguments"
14884
+ ],
14885
+ "type": "object"
14886
+ },
14564
14887
  {
14565
14888
  "additionalProperties": false,
14566
14889
  "properties": {
@@ -14609,6 +14932,38 @@
14609
14932
  ],
14610
14933
  "type": "object"
14611
14934
  },
14935
+ {
14936
+ "additionalProperties": false,
14937
+ "properties": {
14938
+ "arguments": {
14939
+ "$ref": "#/definitions/sketching.start-streaming:input"
14940
+ },
14941
+ "name": {
14942
+ "$ref": "#/definitions/sketching.start-streaming"
14943
+ }
14944
+ },
14945
+ "required": [
14946
+ "name",
14947
+ "arguments"
14948
+ ],
14949
+ "type": "object"
14950
+ },
14951
+ {
14952
+ "additionalProperties": false,
14953
+ "properties": {
14954
+ "arguments": {
14955
+ "$ref": "#/definitions/sketching.stop-streaming:input"
14956
+ },
14957
+ "name": {
14958
+ "$ref": "#/definitions/sketching.stop-streaming"
14959
+ }
14960
+ },
14961
+ "required": [
14962
+ "name",
14963
+ "arguments"
14964
+ ],
14965
+ "type": "object"
14966
+ },
14612
14967
  {
14613
14968
  "additionalProperties": false,
14614
14969
  "properties": {
@@ -15106,18 +15461,30 @@
15106
15461
  {
15107
15462
  "$ref": "#/definitions/search.set-source"
15108
15463
  },
15464
+ {
15465
+ "$ref": "#/definitions/sketching.add-point"
15466
+ },
15109
15467
  {
15110
15468
  "$ref": "#/definitions/sketching.add-point-at-center"
15111
15469
  },
15112
15470
  {
15113
15471
  "$ref": "#/definitions/sketching.add-point-at-current-location"
15114
15472
  },
15473
+ {
15474
+ "$ref": "#/definitions/sketching.clear-constraints"
15475
+ },
15115
15476
  {
15116
15477
  "$ref": "#/definitions/sketching.delete"
15117
15478
  },
15479
+ {
15480
+ "$ref": "#/definitions/sketching.insert-point"
15481
+ },
15118
15482
  {
15119
15483
  "$ref": "#/definitions/sketching.redo"
15120
15484
  },
15485
+ {
15486
+ "$ref": "#/definitions/sketching.set-constraints"
15487
+ },
15121
15488
  {
15122
15489
  "$ref": "#/definitions/sketching.set-geometry-mode"
15123
15490
  },
@@ -15127,6 +15494,12 @@
15127
15494
  {
15128
15495
  "$ref": "#/definitions/sketching.set-point-at-current-location"
15129
15496
  },
15497
+ {
15498
+ "$ref": "#/definitions/sketching.start-streaming"
15499
+ },
15500
+ {
15501
+ "$ref": "#/definitions/sketching.stop-streaming"
15502
+ },
15130
15503
  {
15131
15504
  "$ref": "#/definitions/sketching.undo"
15132
15505
  },
@@ -15745,6 +16118,22 @@
15745
16118
  ],
15746
16119
  "type": "object"
15747
16120
  },
16121
+ {
16122
+ "additionalProperties": false,
16123
+ "properties": {
16124
+ "arguments": {
16125
+ "$ref": "#/definitions/sketching.is-streaming:input"
16126
+ },
16127
+ "name": {
16128
+ "$ref": "#/definitions/sketching.is-streaming"
16129
+ }
16130
+ },
16131
+ "required": [
16132
+ "name",
16133
+ "arguments"
16134
+ ],
16135
+ "type": "object"
16136
+ },
15748
16137
  {
15749
16138
  "additionalProperties": false,
15750
16139
  "properties": {
@@ -15929,6 +16318,9 @@
15929
16318
  {
15930
16319
  "$ref": "#/definitions/sketching.edit-geometry"
15931
16320
  },
16321
+ {
16322
+ "$ref": "#/definitions/sketching.is-streaming"
16323
+ },
15932
16324
  {
15933
16325
  "$ref": "#/definitions/sketching.stop"
15934
16326
  },