@arcgis/core-adapter 4.34.0-next.15 → 4.34.0-next.151
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/LICENSE.md +1 -1
- package/README.md +2 -10
- package/dist/index.cjs +641 -231
- package/dist/index.d.cts +113 -52
- package/dist/index.d.ts +113 -52
- package/dist/index.js +641 -231
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisLengthDimension() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -203,6 +214,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
214
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
215
|
return new ModConstructor(properties);
|
|
205
216
|
}
|
|
217
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
218
|
+
if (isAMD) {
|
|
219
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
220
|
+
}
|
|
221
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
223
|
+
}
|
|
224
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
225
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
|
+
return new ModConstructor(properties);
|
|
227
|
+
}
|
|
228
|
+
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
229
|
+
if (isAMD) {
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
231
|
+
}
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
234
|
+
}
|
|
235
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
237
|
+
return new ModConstructor(properties);
|
|
238
|
+
}
|
|
239
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
240
|
+
if (isAMD) {
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
242
|
+
}
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
245
|
+
}
|
|
246
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
248
|
+
return new ModConstructor(properties);
|
|
249
|
+
}
|
|
250
|
+
async function importAnalysisElevationProfileElevationProfileLineGround() {
|
|
251
|
+
if (isAMD) {
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineGround");
|
|
253
|
+
}
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineGround.js");
|
|
255
|
+
return isDefaultModule(module) ? module.default : module;
|
|
256
|
+
}
|
|
257
|
+
async function newAnalysisElevationProfileElevationProfileLineGround(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineGround();
|
|
259
|
+
return new ModConstructor(properties);
|
|
260
|
+
}
|
|
261
|
+
async function importAnalysisElevationProfileElevationProfileLineInput() {
|
|
262
|
+
if (isAMD) {
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineInput");
|
|
264
|
+
}
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineInput.js");
|
|
266
|
+
return isDefaultModule(module) ? module.default : module;
|
|
267
|
+
}
|
|
268
|
+
async function newAnalysisElevationProfileElevationProfileLineInput(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineInput();
|
|
270
|
+
return new ModConstructor(properties);
|
|
271
|
+
}
|
|
272
|
+
async function importAnalysisElevationProfileElevationProfileLineQuery() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineQuery");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineQuery.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newAnalysisElevationProfileElevationProfileLineQuery(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineQuery();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importAnalysisElevationProfileElevationProfileLineScene() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineScene");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineScene.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisElevationProfileElevationProfileLineScene(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineScene();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
305
|
+
async function importAnalysisElevationProfileElevationProfileDisplayUnits() {
|
|
306
|
+
if (isAMD) {
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileDisplayUnits");
|
|
308
|
+
}
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileDisplayUnits.js");
|
|
310
|
+
return isDefaultModule(module) ? module.default : module;
|
|
311
|
+
}
|
|
312
|
+
async function newAnalysisElevationProfileElevationProfileDisplayUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileDisplayUnits();
|
|
314
|
+
return new ModConstructor(properties);
|
|
315
|
+
}
|
|
316
|
+
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
317
|
+
if (isAMD) {
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileViewOptions");
|
|
319
|
+
}
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileViewOptions.js");
|
|
321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
322
|
+
}
|
|
323
|
+
async function newAnalysisElevationProfileElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
325
|
+
return new ModConstructor(properties);
|
|
326
|
+
}
|
|
206
327
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
207
328
|
if (isAMD) {
|
|
208
329
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -214,6 +335,39 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
214
335
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
215
336
|
return new ModConstructor(properties);
|
|
216
337
|
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
347
|
+
return new ModConstructor(properties);
|
|
348
|
+
}
|
|
349
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
360
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
361
|
+
if (isAMD) {
|
|
362
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
363
|
+
}
|
|
364
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
366
|
+
}
|
|
367
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
368
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
369
|
+
return new ModConstructor(properties);
|
|
370
|
+
}
|
|
217
371
|
async function importCoreAccessor() {
|
|
218
372
|
if (isAMD) {
|
|
219
373
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -720,28 +874,6 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
720
874
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
721
875
|
return new ModConstructor();
|
|
722
876
|
}
|
|
723
|
-
async function importGeometrySupportGeographicTransformation() {
|
|
724
|
-
if (isAMD) {
|
|
725
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
726
|
-
}
|
|
727
|
-
const module = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
728
|
-
return isDefaultModule(module) ? module.default : module;
|
|
729
|
-
}
|
|
730
|
-
async function newGeometrySupportGeographicTransformation(properties) {
|
|
731
|
-
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
732
|
-
return new ModConstructor(properties);
|
|
733
|
-
}
|
|
734
|
-
async function importGeometrySupportGeographicTransformationStep() {
|
|
735
|
-
if (isAMD) {
|
|
736
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
737
|
-
}
|
|
738
|
-
const module = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
739
|
-
return isDefaultModule(module) ? module.default : module;
|
|
740
|
-
}
|
|
741
|
-
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
742
|
-
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
743
|
-
return new ModConstructor(properties);
|
|
744
|
-
}
|
|
745
877
|
async function importGeometrySupportMeshComponent() {
|
|
746
878
|
if (isAMD) {
|
|
747
879
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -830,6 +962,28 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
830
962
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
831
963
|
return new ModConstructor(properties);
|
|
832
964
|
}
|
|
965
|
+
async function importGraphicGraphicOrigin() {
|
|
966
|
+
if (isAMD) {
|
|
967
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
968
|
+
}
|
|
969
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
971
|
+
}
|
|
972
|
+
async function newGraphicGraphicOrigin() {
|
|
973
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
974
|
+
return new ModConstructor();
|
|
975
|
+
}
|
|
976
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
977
|
+
if (isAMD) {
|
|
978
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
979
|
+
}
|
|
980
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
981
|
+
return isDefaultModule(module) ? module.default : module;
|
|
982
|
+
}
|
|
983
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
984
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
985
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
986
|
+
}
|
|
833
987
|
async function importAttributeBinsGraphic() {
|
|
834
988
|
if (isAMD) {
|
|
835
989
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1457,6 +1611,17 @@ async function newLayersSupportCornersGeoreference(properties) {
|
|
|
1457
1611
|
const ModConstructor = await importLayersSupportCornersGeoreference();
|
|
1458
1612
|
return new ModConstructor(properties);
|
|
1459
1613
|
}
|
|
1614
|
+
async function importLayersSupportDateTimeFieldFormat() {
|
|
1615
|
+
if (isAMD) {
|
|
1616
|
+
return await window.$arcgis.import("esri/layers/support/DateTimeFieldFormat");
|
|
1617
|
+
}
|
|
1618
|
+
const module = await import("@arcgis/core/layers/support/DateTimeFieldFormat.js");
|
|
1619
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1620
|
+
}
|
|
1621
|
+
async function newLayersSupportDateTimeFieldFormat(properties) {
|
|
1622
|
+
const ModConstructor = await importLayersSupportDateTimeFieldFormat();
|
|
1623
|
+
return new ModConstructor(properties);
|
|
1624
|
+
}
|
|
1460
1625
|
async function importLayersSupportDimensionalDefinition() {
|
|
1461
1626
|
if (isAMD) {
|
|
1462
1627
|
return await window.$arcgis.import("esri/layers/support/DimensionalDefinition");
|
|
@@ -1633,6 +1798,17 @@ async function newLayersSupportField(properties) {
|
|
|
1633
1798
|
const ModConstructor = await importLayersSupportField();
|
|
1634
1799
|
return new ModConstructor(properties);
|
|
1635
1800
|
}
|
|
1801
|
+
async function importLayersSupportFieldConfiguration() {
|
|
1802
|
+
if (isAMD) {
|
|
1803
|
+
return await window.$arcgis.import("esri/layers/support/FieldConfiguration");
|
|
1804
|
+
}
|
|
1805
|
+
const module = await import("@arcgis/core/layers/support/FieldConfiguration.js");
|
|
1806
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1807
|
+
}
|
|
1808
|
+
async function newLayersSupportFieldConfiguration(properties) {
|
|
1809
|
+
const ModConstructor = await importLayersSupportFieldConfiguration();
|
|
1810
|
+
return new ModConstructor(properties);
|
|
1811
|
+
}
|
|
1636
1812
|
async function importLayersSupportFieldsIndex() {
|
|
1637
1813
|
if (isAMD) {
|
|
1638
1814
|
return await window.$arcgis.import("esri/layers/support/FieldsIndex");
|
|
@@ -1776,6 +1952,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1776
1952
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1777
1953
|
return new ModConstructor(properties);
|
|
1778
1954
|
}
|
|
1955
|
+
async function importLayersSupportNumberFieldFormat() {
|
|
1956
|
+
if (isAMD) {
|
|
1957
|
+
return await window.$arcgis.import("esri/layers/support/NumberFieldFormat");
|
|
1958
|
+
}
|
|
1959
|
+
const module = await import("@arcgis/core/layers/support/NumberFieldFormat.js");
|
|
1960
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1961
|
+
}
|
|
1962
|
+
async function newLayersSupportNumberFieldFormat(properties) {
|
|
1963
|
+
const ModConstructor = await importLayersSupportNumberFieldFormat();
|
|
1964
|
+
return new ModConstructor(properties);
|
|
1965
|
+
}
|
|
1779
1966
|
async function importLayersSupportOrderByInfo() {
|
|
1780
1967
|
if (isAMD) {
|
|
1781
1968
|
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
@@ -1820,6 +2007,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1820
2007
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1821
2008
|
return new ModConstructor(properties);
|
|
1822
2009
|
}
|
|
2010
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2011
|
+
if (isAMD) {
|
|
2012
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2013
|
+
}
|
|
2014
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2015
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2016
|
+
}
|
|
2017
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2018
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2019
|
+
return new ModConstructor(properties);
|
|
2020
|
+
}
|
|
1823
2021
|
async function importLayersSupportPublishingInfo() {
|
|
1824
2022
|
if (isAMD) {
|
|
1825
2023
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3371,6 +3569,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3371
3569
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3372
3570
|
return new ModConstructor(properties);
|
|
3373
3571
|
}
|
|
3572
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3573
|
+
if (isAMD) {
|
|
3574
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3575
|
+
}
|
|
3576
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3577
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3578
|
+
}
|
|
3579
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3580
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3581
|
+
return new ModConstructor(properties);
|
|
3582
|
+
}
|
|
3583
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3584
|
+
if (isAMD) {
|
|
3585
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3586
|
+
}
|
|
3587
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3588
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3589
|
+
}
|
|
3590
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3591
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3592
|
+
return new ModConstructor(properties);
|
|
3593
|
+
}
|
|
3374
3594
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3375
3595
|
if (isAMD) {
|
|
3376
3596
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3393,6 +3613,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3393
3613
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3394
3614
|
return new ModConstructor(properties);
|
|
3395
3615
|
}
|
|
3616
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3617
|
+
if (isAMD) {
|
|
3618
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3619
|
+
}
|
|
3620
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3621
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3622
|
+
}
|
|
3623
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3624
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3625
|
+
return new ModConstructor(properties);
|
|
3626
|
+
}
|
|
3627
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3628
|
+
if (isAMD) {
|
|
3629
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3630
|
+
}
|
|
3631
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3632
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3633
|
+
}
|
|
3634
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3635
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3636
|
+
return new ModConstructor(properties);
|
|
3637
|
+
}
|
|
3396
3638
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3397
3639
|
if (isAMD) {
|
|
3398
3640
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3404,6 +3646,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3404
3646
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3405
3647
|
return new ModConstructor(properties);
|
|
3406
3648
|
}
|
|
3649
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3650
|
+
if (isAMD) {
|
|
3651
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3652
|
+
}
|
|
3653
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3655
|
+
}
|
|
3656
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3657
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3658
|
+
return new ModConstructor(properties);
|
|
3659
|
+
}
|
|
3407
3660
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3408
3661
|
if (isAMD) {
|
|
3409
3662
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3525,6 +3778,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3525
3778
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3526
3779
|
return new ModConstructor(properties);
|
|
3527
3780
|
}
|
|
3781
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3782
|
+
if (isAMD) {
|
|
3783
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3784
|
+
}
|
|
3785
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3786
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3787
|
+
}
|
|
3788
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3789
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3790
|
+
return new ModConstructor(properties);
|
|
3791
|
+
}
|
|
3792
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3793
|
+
if (isAMD) {
|
|
3794
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3795
|
+
}
|
|
3796
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3797
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3798
|
+
}
|
|
3799
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3800
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3801
|
+
return new ModConstructor(properties);
|
|
3802
|
+
}
|
|
3803
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3804
|
+
if (isAMD) {
|
|
3805
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3806
|
+
}
|
|
3807
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3808
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3809
|
+
}
|
|
3810
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3811
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3812
|
+
return new ModConstructor(properties);
|
|
3813
|
+
}
|
|
3528
3814
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3529
3815
|
if (isAMD) {
|
|
3530
3816
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -4614,6 +4900,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
4614
4900
|
const ModConstructor = await importRestSupportJobInfo();
|
|
4615
4901
|
return new ModConstructor(properties);
|
|
4616
4902
|
}
|
|
4903
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4904
|
+
if (isAMD) {
|
|
4905
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4906
|
+
}
|
|
4907
|
+
const module = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4908
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4909
|
+
}
|
|
4910
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4911
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4912
|
+
return new ModConstructor(properties);
|
|
4913
|
+
}
|
|
4617
4914
|
async function importRestSupportLegendLayer() {
|
|
4618
4915
|
if (isAMD) {
|
|
4619
4916
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -5637,28 +5934,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
5637
5934
|
const ModConstructor = await importTimeTimeInterval();
|
|
5638
5935
|
return new ModConstructor(properties);
|
|
5639
5936
|
}
|
|
5640
|
-
async function importTimeExtent() {
|
|
5641
|
-
if (isAMD) {
|
|
5642
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
5643
|
-
}
|
|
5644
|
-
const module = await import("@arcgis/core/TimeExtent.js");
|
|
5645
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5646
|
-
}
|
|
5647
|
-
async function newTimeExtent(properties) {
|
|
5648
|
-
const ModConstructor = await importTimeExtent();
|
|
5649
|
-
return new ModConstructor(properties);
|
|
5650
|
-
}
|
|
5651
|
-
async function importTimeInterval() {
|
|
5652
|
-
if (isAMD) {
|
|
5653
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
5654
|
-
}
|
|
5655
|
-
const module = await import("@arcgis/core/TimeInterval.js");
|
|
5656
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5657
|
-
}
|
|
5658
|
-
async function newTimeInterval(properties) {
|
|
5659
|
-
const ModConstructor = await importTimeInterval();
|
|
5660
|
-
return new ModConstructor(properties);
|
|
5661
|
-
}
|
|
5662
5937
|
async function importVersionManagementVersioningState() {
|
|
5663
5938
|
if (isAMD) {
|
|
5664
5939
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -5692,26 +5967,26 @@ async function newViewpoint(properties) {
|
|
|
5692
5967
|
const ModConstructor = await importViewpoint();
|
|
5693
5968
|
return new ModConstructor(properties);
|
|
5694
5969
|
}
|
|
5695
|
-
async function
|
|
5970
|
+
async function importViewsBasemapView() {
|
|
5696
5971
|
if (isAMD) {
|
|
5697
|
-
return await window.$arcgis.import("esri/views/
|
|
5972
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5698
5973
|
}
|
|
5699
|
-
const module = await import("@arcgis/core/views/
|
|
5974
|
+
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
5700
5975
|
return isDefaultModule(module) ? module.default : module;
|
|
5701
5976
|
}
|
|
5702
|
-
async function
|
|
5703
|
-
const ModConstructor = await
|
|
5977
|
+
async function newViewsBasemapView(properties) {
|
|
5978
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5704
5979
|
return new ModConstructor(properties);
|
|
5705
5980
|
}
|
|
5706
|
-
async function
|
|
5981
|
+
async function importViewsGroundView() {
|
|
5707
5982
|
if (isAMD) {
|
|
5708
|
-
return await window.$arcgis.import("esri/views/
|
|
5983
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5709
5984
|
}
|
|
5710
|
-
const module = await import("@arcgis/core/views/
|
|
5985
|
+
const module = await import("@arcgis/core/views/GroundView.js");
|
|
5711
5986
|
return isDefaultModule(module) ? module.default : module;
|
|
5712
5987
|
}
|
|
5713
|
-
async function
|
|
5714
|
-
const ModConstructor = await
|
|
5988
|
+
async function newViewsGroundView(properties) {
|
|
5989
|
+
const ModConstructor = await importViewsGroundView();
|
|
5715
5990
|
return new ModConstructor(properties);
|
|
5716
5991
|
}
|
|
5717
5992
|
async function importViews2dViewState() {
|
|
@@ -5725,6 +6000,39 @@ async function newViews2dViewState(properties) {
|
|
|
5725
6000
|
const ModConstructor = await importViews2dViewState();
|
|
5726
6001
|
return new ModConstructor(properties);
|
|
5727
6002
|
}
|
|
6003
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6004
|
+
if (isAMD) {
|
|
6005
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
6006
|
+
}
|
|
6007
|
+
const module = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
6008
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6009
|
+
}
|
|
6010
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6011
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6012
|
+
return new ModConstructor(properties);
|
|
6013
|
+
}
|
|
6014
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6015
|
+
if (isAMD) {
|
|
6016
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6017
|
+
}
|
|
6018
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
+
}
|
|
6021
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6022
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6023
|
+
return new ModConstructor(properties);
|
|
6024
|
+
}
|
|
6025
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6026
|
+
if (isAMD) {
|
|
6027
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6028
|
+
}
|
|
6029
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6030
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6031
|
+
}
|
|
6032
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6033
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6034
|
+
return new ModConstructor(properties);
|
|
6035
|
+
}
|
|
5728
6036
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5729
6037
|
if (isAMD) {
|
|
5730
6038
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5758,6 +6066,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5758
6066
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5759
6067
|
return new ModConstructor(properties);
|
|
5760
6068
|
}
|
|
6069
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6070
|
+
if (isAMD) {
|
|
6071
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6072
|
+
}
|
|
6073
|
+
const module = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6074
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6075
|
+
}
|
|
6076
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6077
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6078
|
+
return new ModConstructor(properties);
|
|
6079
|
+
}
|
|
5761
6080
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5762
6081
|
if (isAMD) {
|
|
5763
6082
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5802,6 +6121,39 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5802
6121
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5803
6122
|
return new ModConstructor(properties);
|
|
5804
6123
|
}
|
|
6124
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6125
|
+
if (isAMD) {
|
|
6126
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6127
|
+
}
|
|
6128
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6129
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
+
}
|
|
6131
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6132
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6133
|
+
return new ModConstructor(properties);
|
|
6134
|
+
}
|
|
6135
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementError() {
|
|
6136
|
+
if (isAMD) {
|
|
6137
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError");
|
|
6138
|
+
}
|
|
6139
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.js");
|
|
6140
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
+
}
|
|
6142
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementError(name, message, details) {
|
|
6143
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementError();
|
|
6144
|
+
return new ModConstructor(name, message, details);
|
|
6145
|
+
}
|
|
6146
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6147
|
+
if (isAMD) {
|
|
6148
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6149
|
+
}
|
|
6150
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6151
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6152
|
+
}
|
|
6153
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6154
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6155
|
+
return new ModConstructor(properties);
|
|
6156
|
+
}
|
|
5805
6157
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5806
6158
|
if (isAMD) {
|
|
5807
6159
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5890,15 +6242,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5890
6242
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5891
6243
|
return new ModConstructor(properties);
|
|
5892
6244
|
}
|
|
5893
|
-
async function
|
|
6245
|
+
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5894
6246
|
if (isAMD) {
|
|
5895
|
-
return await window.$arcgis.import("esri/views/
|
|
6247
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5896
6248
|
}
|
|
5897
|
-
const module = await import("@arcgis/core/views/
|
|
6249
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5898
6250
|
return isDefaultModule(module) ? module.default : module;
|
|
5899
6251
|
}
|
|
5900
|
-
async function
|
|
5901
|
-
const ModConstructor = await
|
|
6252
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6253
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
5902
6254
|
return new ModConstructor(properties);
|
|
5903
6255
|
}
|
|
5904
6256
|
async function importViewsDrawDraw() {
|
|
@@ -5978,15 +6330,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
5978
6330
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
5979
6331
|
return new ModConstructor(properties);
|
|
5980
6332
|
}
|
|
5981
|
-
async function
|
|
6333
|
+
async function importViewsInputInput() {
|
|
5982
6334
|
if (isAMD) {
|
|
5983
|
-
return await window.$arcgis.import("esri/views/
|
|
6335
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
5984
6336
|
}
|
|
5985
|
-
const module = await import("@arcgis/core/views/
|
|
6337
|
+
const module = await import("@arcgis/core/views/input/Input.js");
|
|
5986
6338
|
return isDefaultModule(module) ? module.default : module;
|
|
5987
6339
|
}
|
|
5988
|
-
async function
|
|
5989
|
-
const ModConstructor = await
|
|
6340
|
+
async function newViewsInputInput(properties) {
|
|
6341
|
+
const ModConstructor = await importViewsInputInput();
|
|
5990
6342
|
return new ModConstructor(properties);
|
|
5991
6343
|
}
|
|
5992
6344
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6011,17 +6363,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6011
6363
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6012
6364
|
return new ModConstructor(properties);
|
|
6013
6365
|
}
|
|
6014
|
-
async function importViewsInputInput() {
|
|
6015
|
-
if (isAMD) {
|
|
6016
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6017
|
-
}
|
|
6018
|
-
const module = await import("@arcgis/core/views/input/Input.js");
|
|
6019
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
-
}
|
|
6021
|
-
async function newViewsInputInput(properties) {
|
|
6022
|
-
const ModConstructor = await importViewsInputInput();
|
|
6023
|
-
return new ModConstructor(properties);
|
|
6024
|
-
}
|
|
6025
6366
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6026
6367
|
if (isAMD) {
|
|
6027
6368
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6110,39 +6451,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6110
6451
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6111
6452
|
return new ModConstructor(properties);
|
|
6112
6453
|
}
|
|
6113
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6114
|
-
if (isAMD) {
|
|
6115
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6116
|
-
}
|
|
6117
|
-
const module = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6118
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6119
|
-
}
|
|
6120
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6121
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6122
|
-
return new ModConstructor(properties);
|
|
6123
|
-
}
|
|
6124
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6125
|
-
if (isAMD) {
|
|
6126
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6127
|
-
}
|
|
6128
|
-
const module = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6129
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
-
}
|
|
6131
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6132
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6133
|
-
return new ModConstructor(properties);
|
|
6134
|
-
}
|
|
6135
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6136
|
-
if (isAMD) {
|
|
6137
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6138
|
-
}
|
|
6139
|
-
const module = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6140
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
-
}
|
|
6142
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6143
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6144
|
-
return new ModConstructor(properties);
|
|
6145
|
-
}
|
|
6146
6454
|
async function importViewsLayersDimensionLayerView() {
|
|
6147
6455
|
if (isAMD) {
|
|
6148
6456
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6154,17 +6462,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6154
6462
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6155
6463
|
return new ModConstructor(properties);
|
|
6156
6464
|
}
|
|
6157
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6158
|
-
if (isAMD) {
|
|
6159
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6160
|
-
}
|
|
6161
|
-
const module = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6162
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6163
|
-
}
|
|
6164
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6165
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6166
|
-
return new ModConstructor(properties);
|
|
6167
|
-
}
|
|
6168
6465
|
async function importViewsLayersGroupLayerView() {
|
|
6169
6466
|
if (isAMD) {
|
|
6170
6467
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6231,28 +6528,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6231
6528
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6232
6529
|
return new ModConstructor(properties);
|
|
6233
6530
|
}
|
|
6234
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6235
|
-
if (isAMD) {
|
|
6236
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6237
|
-
}
|
|
6238
|
-
const module = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6239
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6240
|
-
}
|
|
6241
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6242
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6243
|
-
return new ModConstructor(properties);
|
|
6244
|
-
}
|
|
6245
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6246
|
-
if (isAMD) {
|
|
6247
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6248
|
-
}
|
|
6249
|
-
const module = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6250
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6251
|
-
}
|
|
6252
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6253
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6254
|
-
return new ModConstructor(properties);
|
|
6255
|
-
}
|
|
6256
6531
|
async function importViewsLayersSceneLayerView() {
|
|
6257
6532
|
if (isAMD) {
|
|
6258
6533
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6264,17 +6539,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6264
6539
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6265
6540
|
return new ModConstructor(properties);
|
|
6266
6541
|
}
|
|
6267
|
-
async function importViewsLayersStreamLayerView() {
|
|
6268
|
-
if (isAMD) {
|
|
6269
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6270
|
-
}
|
|
6271
|
-
const module = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6272
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6273
|
-
}
|
|
6274
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6275
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6276
|
-
return new ModConstructor(properties);
|
|
6277
|
-
}
|
|
6278
6542
|
async function importViewsLayersViewshedLayerView() {
|
|
6279
6543
|
if (isAMD) {
|
|
6280
6544
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7177,6 +7441,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7177
7441
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7178
7442
|
return new ModConstructor(properties);
|
|
7179
7443
|
}
|
|
7444
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7445
|
+
if (isAMD) {
|
|
7446
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7447
|
+
}
|
|
7448
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7449
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7450
|
+
}
|
|
7451
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7452
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7453
|
+
return new ModConstructor(properties);
|
|
7454
|
+
}
|
|
7455
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7456
|
+
if (isAMD) {
|
|
7457
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7458
|
+
}
|
|
7459
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7460
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7461
|
+
}
|
|
7462
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7463
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7464
|
+
return new ModConstructor(properties);
|
|
7465
|
+
}
|
|
7466
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7467
|
+
if (isAMD) {
|
|
7468
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7469
|
+
}
|
|
7470
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7471
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7472
|
+
}
|
|
7473
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7474
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7475
|
+
return new ModConstructor(properties);
|
|
7476
|
+
}
|
|
7477
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7478
|
+
if (isAMD) {
|
|
7479
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7480
|
+
}
|
|
7481
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7482
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7483
|
+
}
|
|
7484
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7485
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7486
|
+
return new ModConstructor(properties);
|
|
7487
|
+
}
|
|
7180
7488
|
async function importWidgetsBookmarks() {
|
|
7181
7489
|
if (isAMD) {
|
|
7182
7490
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -7496,6 +7804,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7496
7804
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7497
7805
|
return new ModConstructor(properties);
|
|
7498
7806
|
}
|
|
7807
|
+
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7808
|
+
if (isAMD) {
|
|
7809
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
7810
|
+
}
|
|
7811
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflow.js");
|
|
7812
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7813
|
+
}
|
|
7814
|
+
async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
7815
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7816
|
+
return new ModConstructor(properties);
|
|
7817
|
+
}
|
|
7499
7818
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7500
7819
|
if (isAMD) {
|
|
7501
7820
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -7859,39 +8178,6 @@ async function newWidgetsFeatureTableGridGroupColumn(properties) {
|
|
|
7859
8178
|
const ModConstructor = await importWidgetsFeatureTableGridGroupColumn();
|
|
7860
8179
|
return new ModConstructor(properties);
|
|
7861
8180
|
}
|
|
7862
|
-
async function importWidgetsFeatureTableGridSupportButtonMenu() {
|
|
7863
|
-
if (isAMD) {
|
|
7864
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenu");
|
|
7865
|
-
}
|
|
7866
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenu.js");
|
|
7867
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7868
|
-
}
|
|
7869
|
-
async function newWidgetsFeatureTableGridSupportButtonMenu(properties) {
|
|
7870
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenu();
|
|
7871
|
-
return new ModConstructor(properties);
|
|
7872
|
-
}
|
|
7873
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuItem() {
|
|
7874
|
-
if (isAMD) {
|
|
7875
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuItem");
|
|
7876
|
-
}
|
|
7877
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuItem.js");
|
|
7878
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7879
|
-
}
|
|
7880
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuItem(properties) {
|
|
7881
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuItem();
|
|
7882
|
-
return new ModConstructor(properties);
|
|
7883
|
-
}
|
|
7884
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuViewModel() {
|
|
7885
|
-
if (isAMD) {
|
|
7886
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuViewModel");
|
|
7887
|
-
}
|
|
7888
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuViewModel.js");
|
|
7889
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7890
|
-
}
|
|
7891
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties) {
|
|
7892
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7893
|
-
return new ModConstructor(properties);
|
|
7894
|
-
}
|
|
7895
8181
|
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7896
8182
|
if (isAMD) {
|
|
7897
8183
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
@@ -9378,13 +9664,6 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9378
9664
|
const module = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9379
9665
|
return isDefaultModule(module) ? module.default : module;
|
|
9380
9666
|
}
|
|
9381
|
-
async function importGeometryProjection() {
|
|
9382
|
-
if (isAMD) {
|
|
9383
|
-
return await window.$arcgis.import("esri/geometry/projection");
|
|
9384
|
-
}
|
|
9385
|
-
const module = await import("@arcgis/core/geometry/projection.js");
|
|
9386
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9387
|
-
}
|
|
9388
9667
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9389
9668
|
if (isAMD) {
|
|
9390
9669
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -9560,6 +9839,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
9560
9839
|
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
9561
9840
|
return isDefaultModule(module) ? module.default : module;
|
|
9562
9841
|
}
|
|
9842
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9843
|
+
if (isAMD) {
|
|
9844
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9845
|
+
}
|
|
9846
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9847
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9848
|
+
}
|
|
9563
9849
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
9564
9850
|
if (isAMD) {
|
|
9565
9851
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10008,6 +10294,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10008
10294
|
const module = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10009
10295
|
return isDefaultModule(module) ? module.default : module;
|
|
10010
10296
|
}
|
|
10297
|
+
async function importRestLastMileDelivery() {
|
|
10298
|
+
if (isAMD) {
|
|
10299
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10300
|
+
}
|
|
10301
|
+
const module = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10302
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10303
|
+
}
|
|
10011
10304
|
async function importRestLocator() {
|
|
10012
10305
|
if (isAMD) {
|
|
10013
10306
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -10512,6 +10805,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10512
10805
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10513
10806
|
return isDefaultModule(module) ? module.default : module;
|
|
10514
10807
|
}
|
|
10808
|
+
async function importViews3dWebgl() {
|
|
10809
|
+
if (isAMD) {
|
|
10810
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10811
|
+
}
|
|
10812
|
+
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10813
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10814
|
+
}
|
|
10515
10815
|
async function importViews3dWebglManagedFBO() {
|
|
10516
10816
|
if (isAMD) {
|
|
10517
10817
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10526,13 +10826,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10526
10826
|
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10527
10827
|
return isDefaultModule(module) ? module.default : module;
|
|
10528
10828
|
}
|
|
10529
|
-
async function importViews3dWebgl() {
|
|
10530
|
-
if (isAMD) {
|
|
10531
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10532
|
-
}
|
|
10533
|
-
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10534
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10535
|
-
}
|
|
10536
10829
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10537
10830
|
if (isAMD) {
|
|
10538
10831
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10561,11 +10854,11 @@ async function importViewsSupportColorUtils() {
|
|
|
10561
10854
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10562
10855
|
return isDefaultModule(module) ? module.default : module;
|
|
10563
10856
|
}
|
|
10564
|
-
async function
|
|
10857
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10565
10858
|
if (isAMD) {
|
|
10566
|
-
return await window.$arcgis.import("esri/widgets/
|
|
10859
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10567
10860
|
}
|
|
10568
|
-
const module = await import("@arcgis/core/widgets/
|
|
10861
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10569
10862
|
return isDefaultModule(module) ? module.default : module;
|
|
10570
10863
|
}
|
|
10571
10864
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
@@ -10582,6 +10875,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10582
10875
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
10583
10876
|
return isDefaultModule(module) ? module.default : module;
|
|
10584
10877
|
}
|
|
10878
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10879
|
+
if (isAMD) {
|
|
10880
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10881
|
+
}
|
|
10882
|
+
const module = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10883
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10884
|
+
}
|
|
10585
10885
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
10586
10886
|
if (isAMD) {
|
|
10587
10887
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -10589,6 +10889,20 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10589
10889
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10590
10890
|
return isDefaultModule(module) ? module.default : module;
|
|
10591
10891
|
}
|
|
10892
|
+
async function importApplicationsComponentsArcadeEditorUtils() {
|
|
10893
|
+
if (isAMD) {
|
|
10894
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeEditorUtils");
|
|
10895
|
+
}
|
|
10896
|
+
const module = await import("@arcgis/core/applications/Components/arcadeEditorUtils.js");
|
|
10897
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10898
|
+
}
|
|
10899
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10900
|
+
if (isAMD) {
|
|
10901
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10902
|
+
}
|
|
10903
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10904
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10905
|
+
}
|
|
10592
10906
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10593
10907
|
if (isAMD) {
|
|
10594
10908
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10603,6 +10917,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10603
10917
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10604
10918
|
return isDefaultModule(module) ? module.default : module;
|
|
10605
10919
|
}
|
|
10920
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10921
|
+
if (isAMD) {
|
|
10922
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10923
|
+
}
|
|
10924
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10925
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10926
|
+
}
|
|
10606
10927
|
async function importApplicationsComponentsFontUtils() {
|
|
10607
10928
|
if (isAMD) {
|
|
10608
10929
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10610,6 +10931,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10610
10931
|
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10611
10932
|
return isDefaultModule(module) ? module.default : module;
|
|
10612
10933
|
}
|
|
10934
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
10935
|
+
if (isAMD) {
|
|
10936
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
10937
|
+
}
|
|
10938
|
+
const module = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
10939
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10940
|
+
}
|
|
10613
10941
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10614
10942
|
if (isAMD) {
|
|
10615
10943
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10624,6 +10952,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10624
10952
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10625
10953
|
return isDefaultModule(module) ? module.default : module;
|
|
10626
10954
|
}
|
|
10955
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10956
|
+
if (isAMD) {
|
|
10957
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10958
|
+
}
|
|
10959
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10960
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10961
|
+
}
|
|
10627
10962
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10628
10963
|
if (isAMD) {
|
|
10629
10964
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10652,6 +10987,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10652
10987
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10653
10988
|
return isDefaultModule(module) ? module.default : module;
|
|
10654
10989
|
}
|
|
10990
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10991
|
+
if (isAMD) {
|
|
10992
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10993
|
+
}
|
|
10994
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10995
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10996
|
+
}
|
|
10655
10997
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10656
10998
|
if (isAMD) {
|
|
10657
10999
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10666,6 +11008,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10666
11008
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10667
11009
|
return isDefaultModule(module) ? module.default : module;
|
|
10668
11010
|
}
|
|
11011
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11012
|
+
if (isAMD) {
|
|
11013
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11014
|
+
}
|
|
11015
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11016
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11017
|
+
}
|
|
10669
11018
|
async function importApplicationsComponentsStyleUtils() {
|
|
10670
11019
|
if (isAMD) {
|
|
10671
11020
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10728,6 +11077,16 @@ export {
|
|
|
10728
11077
|
importAnalysisDimensionAnalysis,
|
|
10729
11078
|
importAnalysisDimensionSimpleStyle,
|
|
10730
11079
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11080
|
+
importAnalysisElevationProfileAnalysis,
|
|
11081
|
+
importAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
11082
|
+
importAnalysisElevationProfileElevationProfileLine,
|
|
11083
|
+
importAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
11084
|
+
importAnalysisElevationProfileElevationProfileLineGround,
|
|
11085
|
+
importAnalysisElevationProfileElevationProfileLineInput,
|
|
11086
|
+
importAnalysisElevationProfileElevationProfileLineQuery,
|
|
11087
|
+
importAnalysisElevationProfileElevationProfileLineScene,
|
|
11088
|
+
importAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
11089
|
+
importAnalysisElevationProfileElevationProfileViewOptions,
|
|
10731
11090
|
importAnalysisLengthDimension,
|
|
10732
11091
|
importAnalysisLineOfSightAnalysis,
|
|
10733
11092
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10737,18 +11096,30 @@ export {
|
|
|
10737
11096
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10738
11097
|
importAnalysisViewshed,
|
|
10739
11098
|
importAnalysisViewshedAnalysis,
|
|
11099
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11100
|
+
importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
11101
|
+
importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
11102
|
+
importAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11103
|
+
importApplicationsComponentsActionUtils,
|
|
10740
11104
|
importApplicationsComponentsAnalysisUtils,
|
|
11105
|
+
importApplicationsComponentsArcadeEditorUtils,
|
|
11106
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10741
11107
|
importApplicationsComponentsBasemapUtils,
|
|
10742
11108
|
importApplicationsComponentsDrawUtils,
|
|
11109
|
+
importApplicationsComponentsFeatureUtils,
|
|
10743
11110
|
importApplicationsComponentsFontUtils,
|
|
11111
|
+
importApplicationsComponentsFormatUtils,
|
|
10744
11112
|
importApplicationsComponentsGetDefaultUnits,
|
|
10745
11113
|
importApplicationsComponentsGfxUtils,
|
|
11114
|
+
importApplicationsComponentsImageryUtils,
|
|
10746
11115
|
importApplicationsComponentsLayerOriginUtils,
|
|
10747
11116
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10748
11117
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10749
11118
|
importApplicationsComponentsReactiveUtils,
|
|
11119
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10750
11120
|
importApplicationsComponentsSelectionOperation,
|
|
10751
11121
|
importApplicationsComponentsSketchTooltipControls,
|
|
11122
|
+
importApplicationsComponentsStringUtils,
|
|
10752
11123
|
importApplicationsComponentsStyleUtils,
|
|
10753
11124
|
importApplicationsComponentsSvgUtils,
|
|
10754
11125
|
importApplicationsComponentsViewUtils,
|
|
@@ -10845,6 +11216,7 @@ export {
|
|
|
10845
11216
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
10846
11217
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
10847
11218
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
11219
|
+
importGeometryOperatorsGeodeticUtilsOperator,
|
|
10848
11220
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10849
11221
|
importGeometryOperatorsIntegrateOperator,
|
|
10850
11222
|
importGeometryOperatorsIntersectionOperator,
|
|
@@ -10878,11 +11250,8 @@ export {
|
|
|
10878
11250
|
importGeometryPoint,
|
|
10879
11251
|
importGeometryPolygon,
|
|
10880
11252
|
importGeometryPolyline,
|
|
10881
|
-
importGeometryProjection,
|
|
10882
11253
|
importGeometrySpatialReference,
|
|
10883
11254
|
importGeometrySupportGeodesicUtils,
|
|
10884
|
-
importGeometrySupportGeographicTransformation,
|
|
10885
|
-
importGeometrySupportGeographicTransformationStep,
|
|
10886
11255
|
importGeometrySupportJsonUtils,
|
|
10887
11256
|
importGeometrySupportMeshComponent,
|
|
10888
11257
|
importGeometrySupportMeshGeoreferencedVertexSpace,
|
|
@@ -10896,6 +11265,8 @@ export {
|
|
|
10896
11265
|
importGeometrySupportNormalizeUtils,
|
|
10897
11266
|
importGeometrySupportWebMercatorUtils,
|
|
10898
11267
|
importGraphic,
|
|
11268
|
+
importGraphicGraphicOrigin,
|
|
11269
|
+
importGraphicVectorTileGraphicOrigin,
|
|
10899
11270
|
importGround,
|
|
10900
11271
|
importIdentityCredential,
|
|
10901
11272
|
importIdentityIdentityManager,
|
|
@@ -10961,6 +11332,7 @@ export {
|
|
|
10961
11332
|
importLayersSupportControlPointsGeoreference,
|
|
10962
11333
|
importLayersSupportCornersGeoreference,
|
|
10963
11334
|
importLayersSupportCsvUtils,
|
|
11335
|
+
importLayersSupportDateTimeFieldFormat,
|
|
10964
11336
|
importLayersSupportDimensionalDefinition,
|
|
10965
11337
|
importLayersSupportDisplayFilter,
|
|
10966
11338
|
importLayersSupportDisplayFilterInfo,
|
|
@@ -10977,6 +11349,7 @@ export {
|
|
|
10977
11349
|
importLayersSupportFeatureTemplate,
|
|
10978
11350
|
importLayersSupportFeatureType,
|
|
10979
11351
|
importLayersSupportField,
|
|
11352
|
+
importLayersSupportFieldConfiguration,
|
|
10980
11353
|
importLayersSupportFieldUtils,
|
|
10981
11354
|
importLayersSupportFieldsIndex,
|
|
10982
11355
|
importLayersSupportGeometryFieldsInfo,
|
|
@@ -10991,11 +11364,13 @@ export {
|
|
|
10991
11364
|
importLayersSupportMapImage,
|
|
10992
11365
|
importLayersSupportMosaicRule,
|
|
10993
11366
|
importLayersSupportMultidimensionalSubset,
|
|
11367
|
+
importLayersSupportNumberFieldFormat,
|
|
10994
11368
|
importLayersSupportOrderByInfo,
|
|
10995
11369
|
importLayersSupportParquetEncodingLocation,
|
|
10996
11370
|
importLayersSupportParquetEncodingWkb,
|
|
10997
11371
|
importLayersSupportParquetUtils,
|
|
10998
11372
|
importLayersSupportPixelBlock,
|
|
11373
|
+
importLayersSupportPlaybackInfo,
|
|
10999
11374
|
importLayersSupportPublishingInfo,
|
|
11000
11375
|
importLayersSupportRangeDomain,
|
|
11001
11376
|
importLayersSupportRasterBandInfo,
|
|
@@ -11156,10 +11531,15 @@ export {
|
|
|
11156
11531
|
importRestKnowledgeGraphEntity,
|
|
11157
11532
|
importRestKnowledgeGraphEntityType,
|
|
11158
11533
|
importRestKnowledgeGraphFieldIndex,
|
|
11534
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11159
11535
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11536
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11160
11537
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11161
11538
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11539
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11540
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11162
11541
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11542
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11163
11543
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11164
11544
|
importRestKnowledgeGraphGraphObject,
|
|
11165
11545
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11171,6 +11551,9 @@ export {
|
|
|
11171
11551
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11172
11552
|
importRestKnowledgeGraphGraphSearch,
|
|
11173
11553
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11554
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11555
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11556
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11174
11557
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11175
11558
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11176
11559
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11186,6 +11569,7 @@ export {
|
|
|
11186
11569
|
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11187
11570
|
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11188
11571
|
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
11572
|
+
importRestLastMileDelivery,
|
|
11189
11573
|
importRestLocator,
|
|
11190
11574
|
importRestNetworkService,
|
|
11191
11575
|
importRestNetworksQueryAssociations,
|
|
@@ -11282,6 +11666,7 @@ export {
|
|
|
11282
11666
|
importRestSupportImageVolumeParameters,
|
|
11283
11667
|
importRestSupportImageVolumeResult,
|
|
11284
11668
|
importRestSupportJobInfo,
|
|
11669
|
+
importRestSupportLastMileDeliveryParameters,
|
|
11285
11670
|
importRestSupportLegendLayer,
|
|
11286
11671
|
importRestSupportLengthsParameters,
|
|
11287
11672
|
importRestSupportLinearUnit,
|
|
@@ -11432,8 +11817,6 @@ export {
|
|
|
11432
11817
|
importTablesElementsAttributeTableFieldElement,
|
|
11433
11818
|
importTablesElementsAttributeTableGroupElement,
|
|
11434
11819
|
importTablesElementsAttributeTableRelationshipElement,
|
|
11435
|
-
importTimeExtent,
|
|
11436
|
-
importTimeInterval,
|
|
11437
11820
|
importTimeTimeExtent,
|
|
11438
11821
|
importTimeTimeInterval,
|
|
11439
11822
|
importVersionManagementUtils,
|
|
@@ -11441,16 +11824,21 @@ export {
|
|
|
11441
11824
|
importVersionManagementVersionManagementService,
|
|
11442
11825
|
importVersionManagementVersioningState,
|
|
11443
11826
|
importViewpoint,
|
|
11827
|
+
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
11444
11828
|
importViews2dLayersBaseLayerView2D,
|
|
11445
11829
|
importViews2dLayersBaseLayerViewGL2D,
|
|
11446
11830
|
importViews2dViewState,
|
|
11447
11831
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11448
11832
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11449
11833
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
11834
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11450
11835
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11451
11836
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11452
11837
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11453
11838
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11839
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11840
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
11841
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
11454
11842
|
importViews3dEnvironmentCloudyWeather,
|
|
11455
11843
|
importViews3dEnvironmentFoggyWeather,
|
|
11456
11844
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11464,6 +11852,7 @@ export {
|
|
|
11464
11852
|
importViews3dWebglManagedFBO,
|
|
11465
11853
|
importViews3dWebglRenderCamera,
|
|
11466
11854
|
importViews3dWebglRenderNode,
|
|
11855
|
+
importViewsAnalysisElevationProfileElevationProfileResult,
|
|
11467
11856
|
importViewsAnalysisLengthDimensionResult,
|
|
11468
11857
|
importViewsBasemapView,
|
|
11469
11858
|
importViewsDrawDraw,
|
|
@@ -11485,21 +11874,14 @@ export {
|
|
|
11485
11874
|
importViewsInteractiveTooltip,
|
|
11486
11875
|
importViewsLayersBuildingComponentSublayerView,
|
|
11487
11876
|
importViewsLayersBuildingSceneLayerView,
|
|
11488
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11489
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11490
|
-
importViewsLayersCatalogLayerView,
|
|
11491
11877
|
importViewsLayersDimensionLayerView,
|
|
11492
|
-
importViewsLayersFeatureLayerView,
|
|
11493
11878
|
importViewsLayersGroupLayerView,
|
|
11494
11879
|
importViewsLayersImageryLayerView,
|
|
11495
11880
|
importViewsLayersImageryTileLayerView,
|
|
11496
11881
|
importViewsLayersLayerView,
|
|
11497
11882
|
importViewsLayersLineOfSightLayerView,
|
|
11498
11883
|
importViewsLayersMediaLayerView,
|
|
11499
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11500
|
-
importViewsLayersPointCloudLayerView,
|
|
11501
11884
|
importViewsLayersSceneLayerView,
|
|
11502
|
-
importViewsLayersStreamLayerView,
|
|
11503
11885
|
importViewsLayersViewshedLayerView,
|
|
11504
11886
|
importViewsLinkChartView,
|
|
11505
11887
|
importViewsMagnifier,
|
|
@@ -11584,6 +11966,9 @@ export {
|
|
|
11584
11966
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11585
11967
|
importWidgetsBatchAttributeForm,
|
|
11586
11968
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
11969
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
11970
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
11971
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11587
11972
|
importWidgetsBookmarks,
|
|
11588
11973
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11589
11974
|
importWidgetsBuildingExplorer,
|
|
@@ -11613,6 +11998,8 @@ export {
|
|
|
11613
11998
|
importWidgetsEditorCreateFeaturesWorkflowData,
|
|
11614
11999
|
importWidgetsEditorEditorViewModel,
|
|
11615
12000
|
importWidgetsEditorEdits,
|
|
12001
|
+
importWidgetsEditorSplitFeatureWorkflow,
|
|
12002
|
+
importWidgetsEditorSplitFeatureWorkflowData,
|
|
11616
12003
|
importWidgetsEditorSupportEditorItem,
|
|
11617
12004
|
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
11618
12005
|
importWidgetsEditorUpdateWorkflow,
|
|
@@ -11643,9 +12030,6 @@ export {
|
|
|
11643
12030
|
importWidgetsFeatureTableFieldColumn,
|
|
11644
12031
|
importWidgetsFeatureTableGridColumn,
|
|
11645
12032
|
importWidgetsFeatureTableGridGroupColumn,
|
|
11646
|
-
importWidgetsFeatureTableGridSupportButtonMenu,
|
|
11647
|
-
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11648
|
-
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11649
12033
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11650
12034
|
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11651
12035
|
importWidgetsFeatureTableSupportAttachmentsViewOptions,
|
|
@@ -11780,6 +12164,16 @@ export {
|
|
|
11780
12164
|
newAnalysisDimensionAnalysis,
|
|
11781
12165
|
newAnalysisDimensionSimpleStyle,
|
|
11782
12166
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12167
|
+
newAnalysisElevationProfileAnalysis,
|
|
12168
|
+
newAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
12169
|
+
newAnalysisElevationProfileElevationProfileLine,
|
|
12170
|
+
newAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
12171
|
+
newAnalysisElevationProfileElevationProfileLineGround,
|
|
12172
|
+
newAnalysisElevationProfileElevationProfileLineInput,
|
|
12173
|
+
newAnalysisElevationProfileElevationProfileLineQuery,
|
|
12174
|
+
newAnalysisElevationProfileElevationProfileLineScene,
|
|
12175
|
+
newAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
12176
|
+
newAnalysisElevationProfileElevationProfileViewOptions,
|
|
11783
12177
|
newAnalysisLengthDimension,
|
|
11784
12178
|
newAnalysisLineOfSightAnalysis,
|
|
11785
12179
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11789,6 +12183,10 @@ export {
|
|
|
11789
12183
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11790
12184
|
newAnalysisViewshed,
|
|
11791
12185
|
newAnalysisViewshedAnalysis,
|
|
12186
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12187
|
+
newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
12188
|
+
newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
12189
|
+
newAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11792
12190
|
newAttributeBinsGraphic,
|
|
11793
12191
|
newBasemap,
|
|
11794
12192
|
newCamera,
|
|
@@ -11840,8 +12238,6 @@ export {
|
|
|
11840
12238
|
newGeometryPolygon,
|
|
11841
12239
|
newGeometryPolyline,
|
|
11842
12240
|
newGeometrySpatialReference,
|
|
11843
|
-
newGeometrySupportGeographicTransformation,
|
|
11844
|
-
newGeometrySupportGeographicTransformationStep,
|
|
11845
12241
|
newGeometrySupportMeshComponent,
|
|
11846
12242
|
newGeometrySupportMeshGeoreferencedVertexSpace,
|
|
11847
12243
|
newGeometrySupportMeshLocalVertexSpace,
|
|
@@ -11851,6 +12247,8 @@ export {
|
|
|
11851
12247
|
newGeometrySupportMeshTextureTransform,
|
|
11852
12248
|
newGeometrySupportMeshTransform,
|
|
11853
12249
|
newGraphic,
|
|
12250
|
+
newGraphicGraphicOrigin,
|
|
12251
|
+
newGraphicVectorTileGraphicOrigin,
|
|
11854
12252
|
newGround,
|
|
11855
12253
|
newIdentityCredential,
|
|
11856
12254
|
newIdentityOAuthInfo,
|
|
@@ -11906,6 +12304,7 @@ export {
|
|
|
11906
12304
|
newLayersSupportCodedValueDomain,
|
|
11907
12305
|
newLayersSupportControlPointsGeoreference,
|
|
11908
12306
|
newLayersSupportCornersGeoreference,
|
|
12307
|
+
newLayersSupportDateTimeFieldFormat,
|
|
11909
12308
|
newLayersSupportDimensionalDefinition,
|
|
11910
12309
|
newLayersSupportDisplayFilter,
|
|
11911
12310
|
newLayersSupportDisplayFilterInfo,
|
|
@@ -11922,6 +12321,7 @@ export {
|
|
|
11922
12321
|
newLayersSupportFeatureTemplate,
|
|
11923
12322
|
newLayersSupportFeatureType,
|
|
11924
12323
|
newLayersSupportField,
|
|
12324
|
+
newLayersSupportFieldConfiguration,
|
|
11925
12325
|
newLayersSupportFieldsIndex,
|
|
11926
12326
|
newLayersSupportGeometryFieldsInfo,
|
|
11927
12327
|
newLayersSupportImageElement,
|
|
@@ -11935,10 +12335,12 @@ export {
|
|
|
11935
12335
|
newLayersSupportMapImage,
|
|
11936
12336
|
newLayersSupportMosaicRule,
|
|
11937
12337
|
newLayersSupportMultidimensionalSubset,
|
|
12338
|
+
newLayersSupportNumberFieldFormat,
|
|
11938
12339
|
newLayersSupportOrderByInfo,
|
|
11939
12340
|
newLayersSupportParquetEncodingLocation,
|
|
11940
12341
|
newLayersSupportParquetEncodingWkb,
|
|
11941
12342
|
newLayersSupportPixelBlock,
|
|
12343
|
+
newLayersSupportPlaybackInfo,
|
|
11942
12344
|
newLayersSupportPublishingInfo,
|
|
11943
12345
|
newLayersSupportRangeDomain,
|
|
11944
12346
|
newLayersSupportRasterBandInfo,
|
|
@@ -12079,10 +12481,15 @@ export {
|
|
|
12079
12481
|
newRestKnowledgeGraphEntity,
|
|
12080
12482
|
newRestKnowledgeGraphEntityType,
|
|
12081
12483
|
newRestKnowledgeGraphFieldIndex,
|
|
12484
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12082
12485
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12486
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12083
12487
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12084
12488
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12489
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12490
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12085
12491
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12492
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12086
12493
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12087
12494
|
newRestKnowledgeGraphGraphObject,
|
|
12088
12495
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12094,6 +12501,9 @@ export {
|
|
|
12094
12501
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12095
12502
|
newRestKnowledgeGraphGraphSearch,
|
|
12096
12503
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12504
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12505
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12506
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12097
12507
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12098
12508
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12099
12509
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12193,6 +12603,7 @@ export {
|
|
|
12193
12603
|
newRestSupportImageVolumeParameters,
|
|
12194
12604
|
newRestSupportImageVolumeResult,
|
|
12195
12605
|
newRestSupportJobInfo,
|
|
12606
|
+
newRestSupportLastMileDeliveryParameters,
|
|
12196
12607
|
newRestSupportLegendLayer,
|
|
12197
12608
|
newRestSupportLengthsParameters,
|
|
12198
12609
|
newRestSupportLinearUnit,
|
|
@@ -12284,23 +12695,26 @@ export {
|
|
|
12284
12695
|
newTablesElementsAttributeTableFieldElement,
|
|
12285
12696
|
newTablesElementsAttributeTableGroupElement,
|
|
12286
12697
|
newTablesElementsAttributeTableRelationshipElement,
|
|
12287
|
-
newTimeExtent,
|
|
12288
|
-
newTimeInterval,
|
|
12289
12698
|
newTimeTimeExtent,
|
|
12290
12699
|
newTimeTimeInterval,
|
|
12291
12700
|
newVersionManagementVersionManagementService,
|
|
12292
12701
|
newVersionManagementVersioningState,
|
|
12293
12702
|
newViewpoint,
|
|
12703
|
+
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12294
12704
|
newViews2dLayersBaseLayerView2D,
|
|
12295
12705
|
newViews2dLayersBaseLayerViewGL2D,
|
|
12296
12706
|
newViews2dViewState,
|
|
12297
12707
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12298
12708
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12299
12709
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12710
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12300
12711
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12301
12712
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12302
12713
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12303
12714
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12715
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12716
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
12717
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
12304
12718
|
newViews3dEnvironmentCloudyWeather,
|
|
12305
12719
|
newViews3dEnvironmentFoggyWeather,
|
|
12306
12720
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12309,6 +12723,7 @@ export {
|
|
|
12309
12723
|
newViews3dEnvironmentSunnyWeather,
|
|
12310
12724
|
newViews3dEnvironmentVirtualLighting,
|
|
12311
12725
|
newViews3dWebglRenderNode,
|
|
12726
|
+
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
12312
12727
|
newViewsBasemapView,
|
|
12313
12728
|
newViewsDrawDraw,
|
|
12314
12729
|
newViewsDrawDrawAction,
|
|
@@ -12329,21 +12744,14 @@ export {
|
|
|
12329
12744
|
newViewsInteractiveTooltip,
|
|
12330
12745
|
newViewsLayersBuildingComponentSublayerView,
|
|
12331
12746
|
newViewsLayersBuildingSceneLayerView,
|
|
12332
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12333
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12334
|
-
newViewsLayersCatalogLayerView,
|
|
12335
12747
|
newViewsLayersDimensionLayerView,
|
|
12336
|
-
newViewsLayersFeatureLayerView,
|
|
12337
12748
|
newViewsLayersGroupLayerView,
|
|
12338
12749
|
newViewsLayersImageryLayerView,
|
|
12339
12750
|
newViewsLayersImageryTileLayerView,
|
|
12340
12751
|
newViewsLayersLayerView,
|
|
12341
12752
|
newViewsLayersLineOfSightLayerView,
|
|
12342
12753
|
newViewsLayersMediaLayerView,
|
|
12343
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12344
|
-
newViewsLayersPointCloudLayerView,
|
|
12345
12754
|
newViewsLayersSceneLayerView,
|
|
12346
|
-
newViewsLayersStreamLayerView,
|
|
12347
12755
|
newViewsLayersViewshedLayerView,
|
|
12348
12756
|
newViewsLinkChartView,
|
|
12349
12757
|
newViewsMagnifier,
|
|
@@ -12426,6 +12834,10 @@ export {
|
|
|
12426
12834
|
newWidgetsBasemapToggle,
|
|
12427
12835
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12428
12836
|
newWidgetsBatchAttributeForm,
|
|
12837
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12838
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12839
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
12840
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12429
12841
|
newWidgetsBookmarks,
|
|
12430
12842
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12431
12843
|
newWidgetsBuildingExplorer,
|
|
@@ -12455,6 +12867,7 @@ export {
|
|
|
12455
12867
|
newWidgetsEditorCreateFeaturesWorkflowData,
|
|
12456
12868
|
newWidgetsEditorEditorViewModel,
|
|
12457
12869
|
newWidgetsEditorEdits,
|
|
12870
|
+
newWidgetsEditorSplitFeatureWorkflow,
|
|
12458
12871
|
newWidgetsEditorSupportEditorItem,
|
|
12459
12872
|
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12460
12873
|
newWidgetsEditorUpdateWorkflow,
|
|
@@ -12485,9 +12898,6 @@ export {
|
|
|
12485
12898
|
newWidgetsFeatureTableFieldColumn,
|
|
12486
12899
|
newWidgetsFeatureTableGridColumn,
|
|
12487
12900
|
newWidgetsFeatureTableGridGroupColumn,
|
|
12488
|
-
newWidgetsFeatureTableGridSupportButtonMenu,
|
|
12489
|
-
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
12490
|
-
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
12491
12901
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12492
12902
|
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
12493
12903
|
newWidgetsFeatureTableSupportAttachmentsViewOptions,
|