@vertigis/viewer-spec 43.6.0 → 45.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/messaging/Operation.d.ts +22 -0
- package/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/arcade.d.ts +100 -0
- package/messaging/registry/arcade.js +1 -0
- package/messaging/registry/geometry.d.ts +7 -7
- package/messaging/registry/geometry.js +1 -1
- package/messaging/registry/map.d.ts +5 -0
- package/messaging/registry/measurement.d.ts +7 -7
- package/messaging/registry/measurement.js +1 -1
- package/messaging/registry/sketching.d.ts +164 -4
- package/messaging/registry/sketching.js +1 -1
- package/messaging/schema/common-action.schema.json +104 -0
- package/messaging/schema/mobile-action.schema.json +306 -0
- package/messaging/schema/web-action.schema.json +248 -20
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -770,6 +770,24 @@
|
|
|
770
770
|
],
|
|
771
771
|
"type": "object"
|
|
772
772
|
},
|
|
773
|
+
"AddPointArgs": {
|
|
774
|
+
"additionalProperties": false,
|
|
775
|
+
"description": "Arguments for the \"sketching.add-point\" command.",
|
|
776
|
+
"properties": {
|
|
777
|
+
"maps": {
|
|
778
|
+
"$ref": "MapsLike",
|
|
779
|
+
"description": "Map(s) to use for the command/operation."
|
|
780
|
+
},
|
|
781
|
+
"newPoint": {
|
|
782
|
+
"$ref": "#/definitions/esri.Point",
|
|
783
|
+
"description": "The new point to be added."
|
|
784
|
+
}
|
|
785
|
+
},
|
|
786
|
+
"required": [
|
|
787
|
+
"newPoint"
|
|
788
|
+
],
|
|
789
|
+
"type": "object"
|
|
790
|
+
},
|
|
773
791
|
"AlertCommandArgs": {
|
|
774
792
|
"additionalProperties": false,
|
|
775
793
|
"description": "Arguments for the 'ui.alert' command.",
|
|
@@ -1019,6 +1037,10 @@
|
|
|
1019
1037
|
"$ref": "MapsLike",
|
|
1020
1038
|
"description": "The maps to activate drawing on. By default it will be all maps."
|
|
1021
1039
|
},
|
|
1040
|
+
"maxSegments": {
|
|
1041
|
+
"description": "The maximum number of segments permitted for a polyline or polygon sketch. Default is no limit. Mobile only.",
|
|
1042
|
+
"type": "number"
|
|
1043
|
+
},
|
|
1022
1044
|
"symbol": {
|
|
1023
1045
|
"anyOf": [
|
|
1024
1046
|
{
|
|
@@ -2840,6 +2862,32 @@
|
|
|
2840
2862
|
],
|
|
2841
2863
|
"type": "object"
|
|
2842
2864
|
},
|
|
2865
|
+
"InsertPointArgs": {
|
|
2866
|
+
"additionalProperties": false,
|
|
2867
|
+
"description": "Arguments for the \"sketching.insert-point\" command.",
|
|
2868
|
+
"properties": {
|
|
2869
|
+
"maps": {
|
|
2870
|
+
"$ref": "MapsLike",
|
|
2871
|
+
"description": "Map(s) to use for the command/operation."
|
|
2872
|
+
},
|
|
2873
|
+
"newPoint": {
|
|
2874
|
+
"$ref": "#/definitions/esri.Point",
|
|
2875
|
+
"description": "The new point to be added."
|
|
2876
|
+
},
|
|
2877
|
+
"partIndex": {
|
|
2878
|
+
"description": "The index of the part to which the point will be added. If null, the last part will be used.",
|
|
2879
|
+
"type": "number"
|
|
2880
|
+
},
|
|
2881
|
+
"pointIndex": {
|
|
2882
|
+
"description": "The index at which the point will be added. If null, the point will be added as the last point.",
|
|
2883
|
+
"type": "number"
|
|
2884
|
+
}
|
|
2885
|
+
},
|
|
2886
|
+
"required": [
|
|
2887
|
+
"newPoint"
|
|
2888
|
+
],
|
|
2889
|
+
"type": "object"
|
|
2890
|
+
},
|
|
2843
2891
|
"ItemConfig": {
|
|
2844
2892
|
"additionalProperties": {
|
|
2845
2893
|
},
|
|
@@ -3480,6 +3528,31 @@
|
|
|
3480
3528
|
],
|
|
3481
3529
|
"type": "object"
|
|
3482
3530
|
},
|
|
3531
|
+
"RunArcadeArgs": {
|
|
3532
|
+
"additionalProperties": false,
|
|
3533
|
+
"description": "The arguments for the arcade.run operation.",
|
|
3534
|
+
"properties": {
|
|
3535
|
+
"arguments": {
|
|
3536
|
+
"description": "An arguments object that provides named variables and associated values, which can be referenced from within the executeScript and canExecuteScript. NOTE: All variable keys must consist of only lowercase letters; camel-cased context variables will break the script when they are referenced at runtime."
|
|
3537
|
+
},
|
|
3538
|
+
"canExecuteScript": {
|
|
3539
|
+
"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 canEecuteScript returns a falsey value, it will throw a {@link Cancellation}.",
|
|
3540
|
+
"type": "string"
|
|
3541
|
+
},
|
|
3542
|
+
"executeScript": {
|
|
3543
|
+
"description": "The stringified Arcade script to run. If this property is included, the operation will return the result of the script.",
|
|
3544
|
+
"type": "string"
|
|
3545
|
+
},
|
|
3546
|
+
"watchHandles": {
|
|
3547
|
+
"description": "Properties used to set a series of watch handles and/or event listeners on an item that will trigger the canExecuteChanged event for the 'arcade.run' operation.",
|
|
3548
|
+
"items": {
|
|
3549
|
+
"$ref": "#/definitions/WatchEventHandleProperties"
|
|
3550
|
+
},
|
|
3551
|
+
"type": "array"
|
|
3552
|
+
}
|
|
3553
|
+
},
|
|
3554
|
+
"type": "object"
|
|
3555
|
+
},
|
|
3483
3556
|
"RunPrintArgs": {
|
|
3484
3557
|
"additionalProperties": false,
|
|
3485
3558
|
"description": "The arguments required by the printing.run command.",
|
|
@@ -4770,6 +4843,70 @@
|
|
|
4770
4843
|
"description": "A component's visual state. The values will vary based on the component type.",
|
|
4771
4844
|
"type": "string"
|
|
4772
4845
|
},
|
|
4846
|
+
"WatchEventHandleProperties": {
|
|
4847
|
+
"additionalProperties": false,
|
|
4848
|
+
"description": "Properties used to set a series of watch handles and/or event listeners on an item.",
|
|
4849
|
+
"properties": {
|
|
4850
|
+
"item": {
|
|
4851
|
+
"anyOf": [
|
|
4852
|
+
{
|
|
4853
|
+
"$ref": "#/definitions/Model"
|
|
4854
|
+
},
|
|
4855
|
+
{
|
|
4856
|
+
"type": "string"
|
|
4857
|
+
}
|
|
4858
|
+
],
|
|
4859
|
+
"description": "The item whose properties will be watched for changes and/or events."
|
|
4860
|
+
},
|
|
4861
|
+
"watch": {
|
|
4862
|
+
"anyOf": [
|
|
4863
|
+
{
|
|
4864
|
+
"$ref": "#/definitions/WatchEventProperty"
|
|
4865
|
+
},
|
|
4866
|
+
{
|
|
4867
|
+
"items": {
|
|
4868
|
+
"anyOf": [
|
|
4869
|
+
{
|
|
4870
|
+
"$ref": "#/definitions/WatchEventProperty"
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
"type": "string"
|
|
4874
|
+
}
|
|
4875
|
+
]
|
|
4876
|
+
},
|
|
4877
|
+
"type": "array"
|
|
4878
|
+
},
|
|
4879
|
+
{
|
|
4880
|
+
"type": "string"
|
|
4881
|
+
}
|
|
4882
|
+
],
|
|
4883
|
+
"description": "One or more properties on the item that will be watched for changes and/or events. Any strings will be used as propertyPaths that will be watched for changes; for this to work, the item and all properties referenced within the path (except for the last) must implement {@link Observable}."
|
|
4884
|
+
}
|
|
4885
|
+
},
|
|
4886
|
+
"required": [
|
|
4887
|
+
"item",
|
|
4888
|
+
"watch"
|
|
4889
|
+
],
|
|
4890
|
+
"type": "object"
|
|
4891
|
+
},
|
|
4892
|
+
"WatchEventProperty": {
|
|
4893
|
+
"additionalProperties": false,
|
|
4894
|
+
"description": "Properties on an item to watch, with an optional event name to listen for.",
|
|
4895
|
+
"properties": {
|
|
4896
|
+
"eventName": {
|
|
4897
|
+
"description": "The name of the event to listen for. If no propertyPath is included, the listener will go directly on the watched item.",
|
|
4898
|
+
"type": "string"
|
|
4899
|
+
},
|
|
4900
|
+
"propertyPath": {
|
|
4901
|
+
"description": "The path used to target a property on an item that will be watched for events. The watched property must implement {@link Evented}; this will effectively do `item[propertyPath].on(eventName)`.",
|
|
4902
|
+
"type": "string"
|
|
4903
|
+
}
|
|
4904
|
+
},
|
|
4905
|
+
"required": [
|
|
4906
|
+
"eventName"
|
|
4907
|
+
],
|
|
4908
|
+
"type": "object"
|
|
4909
|
+
},
|
|
4773
4910
|
"ZoomToLayerArgs": {
|
|
4774
4911
|
"additionalProperties": false,
|
|
4775
4912
|
"description": "Arguments for the map.zoom-to-layer-extent and map.zoom-to-layer-visible-scale commands.",
|
|
@@ -4880,6 +5017,22 @@
|
|
|
4880
5017
|
}
|
|
4881
5018
|
]
|
|
4882
5019
|
},
|
|
5020
|
+
"arcade.run": {
|
|
5021
|
+
"description": "Runs a stringified Arcade script. If only a string is passed in as an argument, it is interpreted as an executeScript. If an executeSript is provided, the operation will return its result. If only a canExecute script is provided and it returns a truthy result, the operation will return its input arguments. If a canExecuteScript returns a falsey value, the operation will throw a {@link Cancellation}.",
|
|
5022
|
+
"enum": [
|
|
5023
|
+
"arcade.run"
|
|
5024
|
+
]
|
|
5025
|
+
},
|
|
5026
|
+
"arcade.run:input": {
|
|
5027
|
+
"anyOf": [
|
|
5028
|
+
{
|
|
5029
|
+
"$ref": "#/definitions/RunArcadeArgs"
|
|
5030
|
+
},
|
|
5031
|
+
{
|
|
5032
|
+
"type": "string"
|
|
5033
|
+
}
|
|
5034
|
+
]
|
|
5035
|
+
},
|
|
4883
5036
|
"auth.get-current-user": {
|
|
4884
5037
|
"description": "Gets the user that is currently signed into the application.",
|
|
4885
5038
|
"enum": [
|
|
@@ -15698,6 +15851,15 @@
|
|
|
15698
15851
|
"measurement.create-graphics:output": {
|
|
15699
15852
|
"$ref": "#/definitions/CreateMeasurementGraphicsResult"
|
|
15700
15853
|
},
|
|
15854
|
+
"measurement.display-settings": {
|
|
15855
|
+
"description": "Display the measurements settings dialog. This allows you to configure measurements system, area and length units.",
|
|
15856
|
+
"enum": [
|
|
15857
|
+
"measurement.display-settings"
|
|
15858
|
+
]
|
|
15859
|
+
},
|
|
15860
|
+
"measurement.display-settings:input": {
|
|
15861
|
+
"$ref": "#/definitions/HasUITarget"
|
|
15862
|
+
},
|
|
15701
15863
|
"measurement.get-area-units": {
|
|
15702
15864
|
"description": "Gets the area units used for measurements. If undefined the units will be selected intelligently based on dimensions.",
|
|
15703
15865
|
"enum": [
|
|
@@ -15903,15 +16065,6 @@
|
|
|
15903
16065
|
}
|
|
15904
16066
|
]
|
|
15905
16067
|
},
|
|
15906
|
-
"measurement.show-settings": {
|
|
15907
|
-
"description": "Show the measurements settings dialog. This allows you to configure measurements system, area and length units.",
|
|
15908
|
-
"enum": [
|
|
15909
|
-
"measurement.show-settings"
|
|
15910
|
-
]
|
|
15911
|
-
},
|
|
15912
|
-
"measurement.show-settings:input": {
|
|
15913
|
-
"$ref": "#/definitions/HasUITarget"
|
|
15914
|
-
},
|
|
15915
16068
|
"messaging.mix-in-args": {
|
|
15916
16069
|
"description": "Attempts to merge an array of values into a single value that can be used as an argument for a command or operation. For example: ``` [features, { chart: \"average-household-income\" }] ``` This would mix `features` obtained from some other source into arguments intended for the \"charts.display\" command. If the values cannot be merged, then the leftmost value is returned. Note that argument merging already occurs automatically in command chains; this explicit operation exists for advanced scenarios like Geocortex Workflow or custom code written using the SDK.",
|
|
15917
16070
|
"enum": [
|
|
@@ -16554,6 +16707,15 @@
|
|
|
16554
16707
|
"sketching.add-node-to-geometry:output": {
|
|
16555
16708
|
"$ref": "#/definitions/esri.Geometry"
|
|
16556
16709
|
},
|
|
16710
|
+
"sketching.add-point": {
|
|
16711
|
+
"description": "Adds a point to polygon or polyline using the selected index as the point to insert after.",
|
|
16712
|
+
"enum": [
|
|
16713
|
+
"sketching.add-point"
|
|
16714
|
+
]
|
|
16715
|
+
},
|
|
16716
|
+
"sketching.add-point:input": {
|
|
16717
|
+
"$ref": "#/definitions/AddPointArgs"
|
|
16718
|
+
},
|
|
16557
16719
|
"sketching.cancel": {
|
|
16558
16720
|
"description": "Cancels the current geometry edit or capture operation.",
|
|
16559
16721
|
"enum": [
|
|
@@ -16647,6 +16809,15 @@
|
|
|
16647
16809
|
"sketching.get-active-sketch:output": {
|
|
16648
16810
|
"$ref": "#/definitions/GetActiveSketchResult"
|
|
16649
16811
|
},
|
|
16812
|
+
"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.",
|
|
16814
|
+
"enum": [
|
|
16815
|
+
"sketching.insert-point"
|
|
16816
|
+
]
|
|
16817
|
+
},
|
|
16818
|
+
"sketching.insert-point:input": {
|
|
16819
|
+
"$ref": "#/definitions/InsertPointArgs"
|
|
16820
|
+
},
|
|
16650
16821
|
"sketching.move-geometry": {
|
|
16651
16822
|
"description": "Allows the user to move an existing geometry by a specified amount. Returns the altered geometry or the supplied feature with altered geometry applied. Will also pass through any map or symbol associated with the command chain, but only the map is required for this operation.",
|
|
16652
16823
|
"enum": [
|
|
@@ -17075,6 +17246,22 @@
|
|
|
17075
17246
|
],
|
|
17076
17247
|
"type": "object"
|
|
17077
17248
|
},
|
|
17249
|
+
{
|
|
17250
|
+
"additionalProperties": false,
|
|
17251
|
+
"properties": {
|
|
17252
|
+
"arguments": {
|
|
17253
|
+
"$ref": "#/definitions/arcade.run:input"
|
|
17254
|
+
},
|
|
17255
|
+
"name": {
|
|
17256
|
+
"$ref": "#/definitions/arcade.run"
|
|
17257
|
+
}
|
|
17258
|
+
},
|
|
17259
|
+
"required": [
|
|
17260
|
+
"name",
|
|
17261
|
+
"arguments"
|
|
17262
|
+
],
|
|
17263
|
+
"type": "object"
|
|
17264
|
+
},
|
|
17078
17265
|
{
|
|
17079
17266
|
"additionalProperties": false,
|
|
17080
17267
|
"properties": {
|
|
@@ -18263,10 +18450,10 @@
|
|
|
18263
18450
|
"additionalProperties": false,
|
|
18264
18451
|
"properties": {
|
|
18265
18452
|
"arguments": {
|
|
18266
|
-
"$ref": "#/definitions/measurement.
|
|
18453
|
+
"$ref": "#/definitions/measurement.display-settings:input"
|
|
18267
18454
|
},
|
|
18268
18455
|
"name": {
|
|
18269
|
-
"$ref": "#/definitions/measurement.
|
|
18456
|
+
"$ref": "#/definitions/measurement.display-settings"
|
|
18270
18457
|
}
|
|
18271
18458
|
},
|
|
18272
18459
|
"required": [
|
|
@@ -18279,10 +18466,10 @@
|
|
|
18279
18466
|
"additionalProperties": false,
|
|
18280
18467
|
"properties": {
|
|
18281
18468
|
"arguments": {
|
|
18282
|
-
"$ref": "#/definitions/measurement.set-
|
|
18469
|
+
"$ref": "#/definitions/measurement.set-area-units:input"
|
|
18283
18470
|
},
|
|
18284
18471
|
"name": {
|
|
18285
|
-
"$ref": "#/definitions/measurement.set-
|
|
18472
|
+
"$ref": "#/definitions/measurement.set-area-units"
|
|
18286
18473
|
}
|
|
18287
18474
|
},
|
|
18288
18475
|
"required": [
|
|
@@ -18295,10 +18482,10 @@
|
|
|
18295
18482
|
"additionalProperties": false,
|
|
18296
18483
|
"properties": {
|
|
18297
18484
|
"arguments": {
|
|
18298
|
-
"$ref": "#/definitions/measurement.set-
|
|
18485
|
+
"$ref": "#/definitions/measurement.set-default-symbol:input"
|
|
18299
18486
|
},
|
|
18300
18487
|
"name": {
|
|
18301
|
-
"$ref": "#/definitions/measurement.set-
|
|
18488
|
+
"$ref": "#/definitions/measurement.set-default-symbol"
|
|
18302
18489
|
}
|
|
18303
18490
|
},
|
|
18304
18491
|
"required": [
|
|
@@ -18311,10 +18498,10 @@
|
|
|
18311
18498
|
"additionalProperties": false,
|
|
18312
18499
|
"properties": {
|
|
18313
18500
|
"arguments": {
|
|
18314
|
-
"$ref": "#/definitions/measurement.
|
|
18501
|
+
"$ref": "#/definitions/measurement.set-length-units:input"
|
|
18315
18502
|
},
|
|
18316
18503
|
"name": {
|
|
18317
|
-
"$ref": "#/definitions/measurement.
|
|
18504
|
+
"$ref": "#/definitions/measurement.set-length-units"
|
|
18318
18505
|
}
|
|
18319
18506
|
},
|
|
18320
18507
|
"required": [
|
|
@@ -18563,6 +18750,22 @@
|
|
|
18563
18750
|
],
|
|
18564
18751
|
"type": "object"
|
|
18565
18752
|
},
|
|
18753
|
+
{
|
|
18754
|
+
"additionalProperties": false,
|
|
18755
|
+
"properties": {
|
|
18756
|
+
"arguments": {
|
|
18757
|
+
"$ref": "#/definitions/sketching.add-point:input"
|
|
18758
|
+
},
|
|
18759
|
+
"name": {
|
|
18760
|
+
"$ref": "#/definitions/sketching.add-point"
|
|
18761
|
+
}
|
|
18762
|
+
},
|
|
18763
|
+
"required": [
|
|
18764
|
+
"name",
|
|
18765
|
+
"arguments"
|
|
18766
|
+
],
|
|
18767
|
+
"type": "object"
|
|
18768
|
+
},
|
|
18566
18769
|
{
|
|
18567
18770
|
"additionalProperties": false,
|
|
18568
18771
|
"properties": {
|
|
@@ -18579,6 +18782,22 @@
|
|
|
18579
18782
|
],
|
|
18580
18783
|
"type": "object"
|
|
18581
18784
|
},
|
|
18785
|
+
{
|
|
18786
|
+
"additionalProperties": false,
|
|
18787
|
+
"properties": {
|
|
18788
|
+
"arguments": {
|
|
18789
|
+
"$ref": "#/definitions/sketching.insert-point:input"
|
|
18790
|
+
},
|
|
18791
|
+
"name": {
|
|
18792
|
+
"$ref": "#/definitions/sketching.insert-point"
|
|
18793
|
+
}
|
|
18794
|
+
},
|
|
18795
|
+
"required": [
|
|
18796
|
+
"name",
|
|
18797
|
+
"arguments"
|
|
18798
|
+
],
|
|
18799
|
+
"type": "object"
|
|
18800
|
+
},
|
|
18582
18801
|
{
|
|
18583
18802
|
"additionalProperties": false,
|
|
18584
18803
|
"properties": {
|
|
@@ -18902,6 +19121,9 @@
|
|
|
18902
19121
|
{
|
|
18903
19122
|
"$ref": "#/definitions/app.load-project"
|
|
18904
19123
|
},
|
|
19124
|
+
{
|
|
19125
|
+
"$ref": "#/definitions/arcade.run"
|
|
19126
|
+
},
|
|
18905
19127
|
{
|
|
18906
19128
|
"$ref": "#/definitions/auth.sign-in"
|
|
18907
19129
|
},
|
|
@@ -19130,6 +19352,9 @@
|
|
|
19130
19352
|
{
|
|
19131
19353
|
"$ref": "#/definitions/map.zoom-to-viewpoint"
|
|
19132
19354
|
},
|
|
19355
|
+
{
|
|
19356
|
+
"$ref": "#/definitions/measurement.display-settings"
|
|
19357
|
+
},
|
|
19133
19358
|
{
|
|
19134
19359
|
"$ref": "#/definitions/measurement.set-area-units"
|
|
19135
19360
|
},
|
|
@@ -19139,9 +19364,6 @@
|
|
|
19139
19364
|
{
|
|
19140
19365
|
"$ref": "#/definitions/measurement.set-length-units"
|
|
19141
19366
|
},
|
|
19142
|
-
{
|
|
19143
|
-
"$ref": "#/definitions/measurement.show-settings"
|
|
19144
|
-
},
|
|
19145
19367
|
{
|
|
19146
19368
|
"$ref": "#/definitions/messaging.mix-in-args"
|
|
19147
19369
|
},
|
|
@@ -19190,6 +19412,9 @@
|
|
|
19190
19412
|
{
|
|
19191
19413
|
"$ref": "#/definitions/search.clear"
|
|
19192
19414
|
},
|
|
19415
|
+
{
|
|
19416
|
+
"$ref": "#/definitions/sketching.add-point"
|
|
19417
|
+
},
|
|
19193
19418
|
{
|
|
19194
19419
|
"$ref": "#/definitions/sketching.cancel"
|
|
19195
19420
|
},
|
|
@@ -19208,6 +19433,9 @@
|
|
|
19208
19433
|
{
|
|
19209
19434
|
"$ref": "#/definitions/sketching.enable-precision-mode"
|
|
19210
19435
|
},
|
|
19436
|
+
{
|
|
19437
|
+
"$ref": "#/definitions/sketching.insert-point"
|
|
19438
|
+
},
|
|
19211
19439
|
{
|
|
19212
19440
|
"$ref": "#/definitions/sketching.move-node"
|
|
19213
19441
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "45.2.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": ">=
|
|
37
|
+
"@vertigis/arcgis-extensions": ">= 34.1.0 < 35.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arcgis/core": "4.21.2",
|
|
41
|
-
"@vertigis/arcgis-extensions": "
|
|
41
|
+
"@vertigis/arcgis-extensions": "34.1.0 ",
|
|
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
package/version.js
CHANGED