@vertigis/viewer-spec 45.2.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.
@@ -740,7 +740,7 @@
740
740
  },
741
741
  "AddNodeToGeometryArgs": {
742
742
  "additionalProperties": false,
743
- "description": "Arguments for the \"sketching.add-node-to-geometry\" operation.",
743
+ "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.",
744
744
  "properties": {
745
745
  "geometry": {
746
746
  "$ref": "#/definitions/esri.Geometry",
@@ -774,6 +774,10 @@
774
774
  "additionalProperties": false,
775
775
  "description": "Arguments for the \"sketching.add-point\" command.",
776
776
  "properties": {
777
+ "geometry": {
778
+ "$ref": "#/definitions/esri.Geometry",
779
+ "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
780
+ },
777
781
  "maps": {
778
782
  "$ref": "MapsLike",
779
783
  "description": "Map(s) to use for the command/operation."
@@ -1325,12 +1329,24 @@
1325
1329
  "description": "Arguments for the \"sketching.delete\" command.",
1326
1330
  "properties": {
1327
1331
  "geometry": {
1328
- "$ref": "#/definitions/esri.Point",
1329
- "description": "The point to delete from the active sketch. Not supported in Geocortex Mobile."
1332
+ "$ref": "#/definitions/esri.Geometry",
1333
+ "description": "The geometry to remove a point from. If this property is not specified, any active vertices will be deleted."
1330
1334
  },
1331
1335
  "maps": {
1332
1336
  "$ref": "MapsLike",
1333
1337
  "description": "Map(s) to use for the command/operation."
1338
+ },
1339
+ "partIndex": {
1340
+ "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.",
1341
+ "type": "number"
1342
+ },
1343
+ "point": {
1344
+ "$ref": "#/definitions/esri.Point",
1345
+ "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."
1346
+ },
1347
+ "pointIndex": {
1348
+ "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.",
1349
+ "type": "number"
1334
1350
  }
1335
1351
  },
1336
1352
  "type": "object"
@@ -1348,8 +1364,8 @@
1348
1364
  "type": "boolean"
1349
1365
  },
1350
1366
  "message": {
1351
- "description": "The message to be displayed in the notification.",
1352
- "type": "string"
1367
+ "$ref": "#/definitions/TranslatableText",
1368
+ "description": "The message to be displayed in the notification. Mobile only supports a string for this property."
1353
1369
  },
1354
1370
  "notificationGroup": {
1355
1371
  "description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
@@ -1539,6 +1555,10 @@
1539
1555
  "description": "Whether to allow scaling of the edited geometry. Defaults to true.",
1540
1556
  "type": "boolean"
1541
1557
  },
1558
+ "enableVertexEditing": {
1559
+ "description": "Whether to allow the user to add, move, and remove vertices from a geometry. Defaults to true.",
1560
+ "type": "boolean"
1561
+ },
1542
1562
  "scaleMode": {
1543
1563
  "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\".",
1544
1564
  "enum": [
@@ -1546,6 +1566,10 @@
1546
1566
  "preserve-aspect-ratio"
1547
1567
  ],
1548
1568
  "type": "string"
1569
+ },
1570
+ "validateGeometry": {
1571
+ "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.",
1572
+ "type": "boolean"
1549
1573
  }
1550
1574
  },
1551
1575
  "type": "object"
@@ -2509,9 +2533,31 @@
2509
2533
  },
2510
2534
  "type": "object"
2511
2535
  },
2536
+ "GetActivePointsResult": {
2537
+ "additionalProperties": false,
2538
+ "description": "Result returned from the 'sketching.get-active-points' operation.",
2539
+ "properties": {
2540
+ "graphics": {
2541
+ "description": "The active graphic(s).",
2542
+ "items": {
2543
+ "$ref": "#/definitions/esri.Graphic"
2544
+ },
2545
+ "type": "array"
2546
+ },
2547
+ "maps": {
2548
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
2549
+ "description": "The map associated with the graphics."
2550
+ }
2551
+ },
2552
+ "required": [
2553
+ "graphics",
2554
+ "maps"
2555
+ ],
2556
+ "type": "object"
2557
+ },
2512
2558
  "GetActiveSketchResult": {
2513
2559
  "additionalProperties": false,
2514
- "description": "Result returned from the 'sketching.get-active-sketch' and 'sketching.get-active-node' operations.",
2560
+ "description": "Result returned from the 'sketching.get-active-sketch' operation.",
2515
2561
  "properties": {
2516
2562
  "graphics": {
2517
2563
  "description": "The active graphic(s).",
@@ -2531,6 +2577,28 @@
2531
2577
  ],
2532
2578
  "type": "object"
2533
2579
  },
2580
+ "GetAdjacentPointArgs": {
2581
+ "additionalProperties": false,
2582
+ "description": "Arguments for the 'sketching.get-adjacent-point' operation.",
2583
+ "properties": {
2584
+ "maps": {
2585
+ "$ref": "MapsLike",
2586
+ "description": "Map(s) to use for the command/operation."
2587
+ },
2588
+ "referencePoint": {
2589
+ "$ref": "#/definitions/esri.Point",
2590
+ "description": "A point geometry that represents a vertex within an active editing graphic."
2591
+ },
2592
+ "relativeOffset": {
2593
+ "$ref": "#/definitions/PointOffset",
2594
+ "description": "Specifies if the desired point comes before or after the referencePoint. Defaults to 'after'."
2595
+ }
2596
+ },
2597
+ "required": [
2598
+ "referencePoint"
2599
+ ],
2600
+ "type": "object"
2601
+ },
2534
2602
  "GetCoordinateArgs": {
2535
2603
  "additionalProperties": false,
2536
2604
  "description": "Arguments for the map.get-user-coordinates-input operation.",
@@ -2866,6 +2934,10 @@
2866
2934
  "additionalProperties": false,
2867
2935
  "description": "Arguments for the \"sketching.insert-point\" command.",
2868
2936
  "properties": {
2937
+ "geometry": {
2938
+ "$ref": "#/definitions/esri.Geometry",
2939
+ "description": "The geometry to add the point to, if multiple are present in an active editing session. Not supported by Mobile."
2940
+ },
2869
2941
  "maps": {
2870
2942
  "$ref": "MapsLike",
2871
2943
  "description": "Map(s) to use for the command/operation."
@@ -3054,6 +3126,23 @@
3054
3126
  ],
3055
3127
  "type": "string"
3056
3128
  },
3129
+ "Maps": {
3130
+ "anyOf": [
3131
+ {
3132
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
3133
+ },
3134
+ {
3135
+ "$ref": "#/definitions/HasMaps"
3136
+ },
3137
+ {
3138
+ "items": {
3139
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
3140
+ },
3141
+ "type": "array"
3142
+ }
3143
+ ],
3144
+ "description": "One or more map extensions, or an object that has map extensions."
3145
+ },
3057
3146
  "MapsLike": {
3058
3147
  "anyOf": [
3059
3148
  {
@@ -3197,7 +3286,7 @@
3197
3286
  },
3198
3287
  "MoveNodeArgs": {
3199
3288
  "additionalProperties": false,
3200
- "description": "The arguments for the \"sketching.move-node\" command.",
3289
+ "description": "Deprecated - use \"sketching.move-point\" with {@link MovePointArgs}.",
3201
3290
  "properties": {
3202
3291
  "maps": {
3203
3292
  "$ref": "MapsLike",
@@ -3217,6 +3306,45 @@
3217
3306
  ],
3218
3307
  "type": "object"
3219
3308
  },
3309
+ "MovePointArgs": {
3310
+ "additionalProperties": false,
3311
+ "description": "The arguments for the \"sketching.move-point\" command.",
3312
+ "properties": {
3313
+ "distance": {
3314
+ "$ref": "#/definitions/Vector2D",
3315
+ "description": "An amount to move the point(s) on the X and Y axes. If the newPoint property is defined, this property will be ignored."
3316
+ },
3317
+ "geometry": {
3318
+ "$ref": "#/definitions/esri.Geometry",
3319
+ "description": "The geometry where the point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
3320
+ },
3321
+ "maps": {
3322
+ "$ref": "MapsLike",
3323
+ "description": "Map(s) to use for the command/operation."
3324
+ },
3325
+ "newPoint": {
3326
+ "$ref": "#/definitions/esri.Point",
3327
+ "description": "The new point that will replace the target point within an active sketch or edit geometry. If this property is defined, the distance property will be ignored."
3328
+ },
3329
+ "partIndex": {
3330
+ "description": "The part of the geometry where the point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
3331
+ "type": "number"
3332
+ },
3333
+ "point": {
3334
+ "$ref": "#/definitions/esri.Point",
3335
+ "description": "The point to move, which must already exist within the active sketch. If this property is undefined and no geometry and pointIndex are specified, the active point(s) will be moved."
3336
+ },
3337
+ "pointIndex": {
3338
+ "description": "The index of the point. If this property is defined, the 'geometry' property must also be defined.",
3339
+ "type": "number"
3340
+ },
3341
+ "units": {
3342
+ "$ref": "#/definitions/LengthUnits",
3343
+ "description": "The units of the above distance. Optional, will default to the units used by the measurement service associated with the map."
3344
+ }
3345
+ },
3346
+ "type": "object"
3347
+ },
3220
3348
  "NarrateArgs": {
3221
3349
  "anyOf": [
3222
3350
  {
@@ -3303,6 +3431,14 @@
3303
3431
  ],
3304
3432
  "type": "string"
3305
3433
  },
3434
+ "PointOffset": {
3435
+ "description": "Specifies if a desired point comes before or after a given reference point.",
3436
+ "enum": [
3437
+ "after",
3438
+ "before"
3439
+ ],
3440
+ "type": "string"
3441
+ },
3306
3442
  "ProjectArgs": {
3307
3443
  "additionalProperties": false,
3308
3444
  "description": "Arguments for the geometry.project operation.",
@@ -3806,6 +3942,43 @@
3806
3942
  ],
3807
3943
  "type": "object"
3808
3944
  },
3945
+ "SetActivePointsArgs": {
3946
+ "additionalProperties": false,
3947
+ "description": "The arguments for the \"sketching.set-active-points\" command.",
3948
+ "properties": {
3949
+ "geometry": {
3950
+ "$ref": "#/definitions/esri.Geometry",
3951
+ "description": "The geometry where the new active point exists, if multiple are present in an active editing session. This property is required if pointIndex and/or partIndex are defined."
3952
+ },
3953
+ "maps": {
3954
+ "$ref": "MapsLike",
3955
+ "description": "Map(s) to use for the command/operation."
3956
+ },
3957
+ "partIndex": {
3958
+ "description": "The part of the geometry where the new active point exists. Required for polyline and polygon geometry types when the geometry and pointIndex properties are defined.",
3959
+ "type": "number"
3960
+ },
3961
+ "pointIndex": {
3962
+ "description": "The index of the new active point. If this property is defined, the geometry property must be defined.",
3963
+ "type": "number"
3964
+ },
3965
+ "points": {
3966
+ "anyOf": [
3967
+ {
3968
+ "$ref": "#/definitions/esri.Point"
3969
+ },
3970
+ {
3971
+ "items": {
3972
+ "$ref": "#/definitions/esri.Point"
3973
+ },
3974
+ "type": "array"
3975
+ }
3976
+ ],
3977
+ "description": "The new point(s) that will become active in the sketch or editing session. Sketching only supports one active point; if multiple are specified, then only the first will be set as active."
3978
+ }
3979
+ },
3980
+ "type": "object"
3981
+ },
3809
3982
  "SetBasemapArg": {
3810
3983
  "anyOf": [
3811
3984
  {
@@ -4150,7 +4323,7 @@
4150
4323
  },
4151
4324
  "SwitchActiveNodeArgs": {
4152
4325
  "additionalProperties": false,
4153
- "description": "The arguments for the \"sketching.switch-active-node\" command.",
4326
+ "description": "Deprecated - use \"sketching.set-active-points\" with {@link SetActivePointsArgs}.",
4154
4327
  "properties": {
4155
4328
  "maps": {
4156
4329
  "$ref": "MapsLike",
@@ -4557,6 +4730,61 @@
4557
4730
  ],
4558
4731
  "type": "object"
4559
4732
  },
4733
+ "TranslatableText": {
4734
+ "anyOf": [
4735
+ {
4736
+ "$ref": "#/definitions/TranslateOptions"
4737
+ },
4738
+ {
4739
+ "type": "string"
4740
+ }
4741
+ ],
4742
+ "description": "A translatable string, either a language string or a language string with arguments to pass into it."
4743
+ },
4744
+ "TranslateOptions": {
4745
+ "additionalProperties": false,
4746
+ "description": "The available options for the Locale Service translate function.",
4747
+ "properties": {
4748
+ "args": {
4749
+ "description": "The values to substitute into the format string if it contains substitution placeholders (see utilities/string/format in Geocortex API).",
4750
+ "items": {
4751
+ },
4752
+ "type": "array"
4753
+ },
4754
+ "currency": {
4755
+ "description": "The default unit of currency to use when formatting currency. See {@link NumberSettings.currency}.",
4756
+ "type": "string"
4757
+ },
4758
+ "dateFormat": {
4759
+ "description": "The default format to use when formatting dates. See {@link DateFormatter.format}.",
4760
+ "type": "string"
4761
+ },
4762
+ "fractionalDigits": {
4763
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link NumberSettings.fractionalDigits}.",
4764
+ "type": "number"
4765
+ },
4766
+ "locale": {
4767
+ "description": "The locale to use for translation. If not specified, the current locale will be used.",
4768
+ "type": "string"
4769
+ },
4770
+ "numberFormat": {
4771
+ "description": "The default format to use when formatting numbers. See {@link NumberFormatter.format}.",
4772
+ "type": "string"
4773
+ },
4774
+ "text": {
4775
+ "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.",
4776
+ "type": "string"
4777
+ },
4778
+ "timeZone": {
4779
+ "description": "The time zone of a date being formatted.",
4780
+ "type": "string"
4781
+ }
4782
+ },
4783
+ "required": [
4784
+ "text"
4785
+ ],
4786
+ "type": "object"
4787
+ },
4560
4788
  "UpdateChartDefinitionArgs": {
4561
4789
  "additionalProperties": false,
4562
4790
  "description": "Arguments for the charts.update-definition command.",
@@ -16696,7 +16924,7 @@
16696
16924
  ]
16697
16925
  },
16698
16926
  "sketching.add-node-to-geometry": {
16699
- "description": "Adds a point to a given polyline or polygon geometry. Returns the resulting geometry. Deprecated in Mobile, use geometry.add-point instead.",
16927
+ "description": "Deprecated - Mobile users should rather use \"geometry.add-point\"; Web users should use \"sketching.add-point\" or \"sketching.insert-point\" instead.",
16700
16928
  "enum": [
16701
16929
  "sketching.add-node-to-geometry"
16702
16930
  ]
@@ -16708,7 +16936,7 @@
16708
16936
  "$ref": "#/definitions/esri.Geometry"
16709
16937
  },
16710
16938
  "sketching.add-point": {
16711
- "description": "Adds a point to polygon or polyline using the selected index as the point to insert after.",
16939
+ "description": "Adds a point to polygon, polyline, or multipoint using the selected index as the point to insert after.",
16712
16940
  "enum": [
16713
16941
  "sketching.add-point"
16714
16942
  ]
@@ -16735,13 +16963,20 @@
16735
16963
  "$ref": "#/definitions/CaptureGeometryResult"
16736
16964
  },
16737
16965
  "sketching.delete": {
16738
- "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.",
16966
+ "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.",
16739
16967
  "enum": [
16740
16968
  "sketching.delete"
16741
16969
  ]
16742
16970
  },
16743
16971
  "sketching.delete:input": {
16744
- "$ref": "#/definitions/DeleteGeometryArgs"
16972
+ "anyOf": [
16973
+ {
16974
+ "$ref": "#/definitions/DeleteGeometryArgs"
16975
+ },
16976
+ {
16977
+ "type": "null"
16978
+ }
16979
+ ]
16745
16980
  },
16746
16981
  "sketching.disable-free-scale-mode": {
16747
16982
  "description": "Disables free scaling while editing geometries.",
@@ -16789,16 +17024,28 @@
16789
17024
  ]
16790
17025
  },
16791
17026
  "sketching.get-active-node": {
16792
- "description": "Returns the active point graphic of the active sketch on a map.",
17027
+ "description": "Deprecated - use 'sketching.get-active-points' instead.",
16793
17028
  "enum": [
16794
17029
  "sketching.get-active-node"
16795
17030
  ]
16796
17031
  },
16797
17032
  "sketching.get-active-node:input": {
16798
- "type": "string"
17033
+ "$ref": "Maps"
16799
17034
  },
16800
17035
  "sketching.get-active-node:output": {
16801
- "$ref": "#/definitions/GetActiveSketchResult"
17036
+ "$ref": "#/definitions/GetActivePointsResult"
17037
+ },
17038
+ "sketching.get-active-points": {
17039
+ "description": "Returns the active point graphics of the active sketch or edit session on a map.",
17040
+ "enum": [
17041
+ "sketching.get-active-points"
17042
+ ]
17043
+ },
17044
+ "sketching.get-active-points:input": {
17045
+ "$ref": "Maps"
17046
+ },
17047
+ "sketching.get-active-points:output": {
17048
+ "$ref": "#/definitions/GetActivePointsResult"
16802
17049
  },
16803
17050
  "sketching.get-active-sketch": {
16804
17051
  "description": "Returns the active sketch graphic from a map.",
@@ -16809,8 +17056,20 @@
16809
17056
  "sketching.get-active-sketch:output": {
16810
17057
  "$ref": "#/definitions/GetActiveSketchResult"
16811
17058
  },
17059
+ "sketching.get-adjacent-point": {
17060
+ "description": "Return the adjacent point graphic(s), relative to a given vertex that's a part of an active editing or sketching session. This operation is only supported for Polyline and Polygon geometries.",
17061
+ "enum": [
17062
+ "sketching.get-adjacent-point"
17063
+ ]
17064
+ },
17065
+ "sketching.get-adjacent-point:input": {
17066
+ "$ref": "#/definitions/GetAdjacentPointArgs"
17067
+ },
17068
+ "sketching.get-adjacent-point:output": {
17069
+ "$ref": "#/definitions/GetActiveSketchResult"
17070
+ },
16812
17071
  "sketching.insert-point": {
16813
- "description": "Inserts a point into a polygon or polyline 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.",
17072
+ "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.",
16814
17073
  "enum": [
16815
17074
  "sketching.insert-point"
16816
17075
  ]
@@ -16831,7 +17090,7 @@
16831
17090
  "$ref": "#/definitions/GeometryOperationBase"
16832
17091
  },
16833
17092
  "sketching.move-node": {
16834
- "description": "Moves a point within an active sketch to a new location.",
17093
+ "description": "Deprecated - use 'sketching.move-point' instead.",
16835
17094
  "enum": [
16836
17095
  "sketching.move-node"
16837
17096
  ]
@@ -16839,6 +17098,15 @@
16839
17098
  "sketching.move-node:input": {
16840
17099
  "$ref": "#/definitions/MoveNodeArgs"
16841
17100
  },
17101
+ "sketching.move-point": {
17102
+ "description": "Moves a point within an active sketch to a new location.",
17103
+ "enum": [
17104
+ "sketching.move-point"
17105
+ ]
17106
+ },
17107
+ "sketching.move-point:input": {
17108
+ "$ref": "#/definitions/MovePointArgs"
17109
+ },
16842
17110
  "sketching.redo": {
16843
17111
  "description": "Redoes the last undone edit while editing a geometry.",
16844
17112
  "enum": [
@@ -16872,6 +17140,15 @@
16872
17140
  "sketching.scale-geometry:output": {
16873
17141
  "$ref": "#/definitions/GeometryOperationBase"
16874
17142
  },
17143
+ "sketching.set-active-points": {
17144
+ "description": "Switches the active point of an active sketch.",
17145
+ "enum": [
17146
+ "sketching.set-active-points"
17147
+ ]
17148
+ },
17149
+ "sketching.set-active-points:input": {
17150
+ "$ref": "#/definitions/SetActivePointsArgs"
17151
+ },
16875
17152
  "sketching.set-geometry-mode": {
16876
17153
  "description": "Sets the geometry mode of the geometry editor.",
16877
17154
  "enum": [
@@ -16882,7 +17159,7 @@
16882
17159
  "$ref": "#/definitions/SetGeometryModeArgs"
16883
17160
  },
16884
17161
  "sketching.stop": {
16885
- "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.",
17162
+ "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.",
16886
17163
  "enum": [
16887
17164
  "sketching.stop"
16888
17165
  ]
@@ -16901,7 +17178,7 @@
16901
17178
  "$ref": "#/definitions/CaptureGeometryResult"
16902
17179
  },
16903
17180
  "sketching.switch-active-node": {
16904
- "description": "Switches the active point of an active sketch.",
17181
+ "description": "Deprecated - use 'sketching.set-active-points' instead.",
16905
17182
  "enum": [
16906
17183
  "sketching.switch-active-node"
16907
17184
  ]
@@ -18814,6 +19091,22 @@
18814
19091
  ],
18815
19092
  "type": "object"
18816
19093
  },
19094
+ {
19095
+ "additionalProperties": false,
19096
+ "properties": {
19097
+ "arguments": {
19098
+ "$ref": "#/definitions/sketching.move-point:input"
19099
+ },
19100
+ "name": {
19101
+ "$ref": "#/definitions/sketching.move-point"
19102
+ }
19103
+ },
19104
+ "required": [
19105
+ "name",
19106
+ "arguments"
19107
+ ],
19108
+ "type": "object"
19109
+ },
18817
19110
  {
18818
19111
  "additionalProperties": false,
18819
19112
  "properties": {
@@ -18830,6 +19123,22 @@
18830
19123
  ],
18831
19124
  "type": "object"
18832
19125
  },
19126
+ {
19127
+ "additionalProperties": false,
19128
+ "properties": {
19129
+ "arguments": {
19130
+ "$ref": "#/definitions/sketching.set-active-points:input"
19131
+ },
19132
+ "name": {
19133
+ "$ref": "#/definitions/sketching.set-active-points"
19134
+ }
19135
+ },
19136
+ "required": [
19137
+ "name",
19138
+ "arguments"
19139
+ ],
19140
+ "type": "object"
19141
+ },
18833
19142
  {
18834
19143
  "additionalProperties": false,
18835
19144
  "properties": {
@@ -19439,9 +19748,15 @@
19439
19748
  {
19440
19749
  "$ref": "#/definitions/sketching.move-node"
19441
19750
  },
19751
+ {
19752
+ "$ref": "#/definitions/sketching.move-point"
19753
+ },
19442
19754
  {
19443
19755
  "$ref": "#/definitions/sketching.redo"
19444
19756
  },
19757
+ {
19758
+ "$ref": "#/definitions/sketching.set-active-points"
19759
+ },
19445
19760
  {
19446
19761
  "$ref": "#/definitions/sketching.set-geometry-mode"
19447
19762
  },
@@ -20143,6 +20458,38 @@
20143
20458
  ],
20144
20459
  "type": "object"
20145
20460
  },
20461
+ {
20462
+ "additionalProperties": false,
20463
+ "properties": {
20464
+ "arguments": {
20465
+ "$ref": "#/definitions/sketching.get-active-points:input"
20466
+ },
20467
+ "name": {
20468
+ "$ref": "#/definitions/sketching.get-active-points"
20469
+ }
20470
+ },
20471
+ "required": [
20472
+ "name",
20473
+ "arguments"
20474
+ ],
20475
+ "type": "object"
20476
+ },
20477
+ {
20478
+ "additionalProperties": false,
20479
+ "properties": {
20480
+ "arguments": {
20481
+ "$ref": "#/definitions/sketching.get-adjacent-point:input"
20482
+ },
20483
+ "name": {
20484
+ "$ref": "#/definitions/sketching.get-adjacent-point"
20485
+ }
20486
+ },
20487
+ "required": [
20488
+ "name",
20489
+ "arguments"
20490
+ ],
20491
+ "type": "object"
20492
+ },
20146
20493
  {
20147
20494
  "additionalProperties": false,
20148
20495
  "properties": {
@@ -20504,9 +20851,15 @@
20504
20851
  {
20505
20852
  "$ref": "#/definitions/sketching.get-active-node"
20506
20853
  },
20854
+ {
20855
+ "$ref": "#/definitions/sketching.get-active-points"
20856
+ },
20507
20857
  {
20508
20858
  "$ref": "#/definitions/sketching.get-active-sketch"
20509
20859
  },
20860
+ {
20861
+ "$ref": "#/definitions/sketching.get-adjacent-point"
20862
+ },
20510
20863
  {
20511
20864
  "$ref": "#/definitions/sketching.move-geometry"
20512
20865
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "45.2.0",
3
+ "version": "46.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
@@ -34,11 +34,11 @@
34
34
  },
35
35
  "author": "VertiGIS Ltd.",
36
36
  "peerDependencies": {
37
- "@vertigis/arcgis-extensions": ">= 34.1.0 < 35.0.0"
37
+ "@vertigis/arcgis-extensions": ">= 34.2.2 < 35.0.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@arcgis/core": "4.21.2",
41
- "@vertigis/arcgis-extensions": "34.1.0 ",
41
+ "@vertigis/arcgis-extensions": "34.2.2",
42
42
  "@types/glob": "7.1.4",
43
43
  "@types/json-stable-stringify": "1.0.33",
44
44
  "@types/node": "14.14.41",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export declare const version = "45.2.0";
4
+ export declare const version = "46.0.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export const version = "45.2.0";
4
+ export const version = "46.0.0";