@arcgis/core-adapter 4.34.0-next.16 → 4.34.0-next.161
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 +654 -231
- package/dist/index.d.cts +115 -52
- package/dist/index.d.ts +115 -52
- package/dist/index.js +654 -231
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -139,6 +139,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
139
139
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
140
140
|
return new ModConstructor(properties);
|
|
141
141
|
}
|
|
142
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
143
|
+
if (isAMD) {
|
|
144
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
145
|
+
}
|
|
146
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
147
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
148
|
+
}
|
|
149
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
150
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
151
|
+
return new ModConstructor(properties);
|
|
152
|
+
}
|
|
142
153
|
async function importAnalysisLengthDimension() {
|
|
143
154
|
if (isAMD) {
|
|
144
155
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -227,6 +238,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
238
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
239
|
return new ModConstructor(properties);
|
|
229
240
|
}
|
|
241
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
242
|
+
if (isAMD) {
|
|
243
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
244
|
+
}
|
|
245
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
246
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
247
|
+
}
|
|
248
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
249
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
250
|
+
return new ModConstructor(properties);
|
|
251
|
+
}
|
|
252
|
+
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
253
|
+
if (isAMD) {
|
|
254
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
255
|
+
}
|
|
256
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
257
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
258
|
+
}
|
|
259
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
260
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
261
|
+
return new ModConstructor(properties);
|
|
262
|
+
}
|
|
263
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
264
|
+
if (isAMD) {
|
|
265
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
266
|
+
}
|
|
267
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
268
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
269
|
+
}
|
|
270
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
271
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
272
|
+
return new ModConstructor(properties);
|
|
273
|
+
}
|
|
274
|
+
async function importAnalysisElevationProfileElevationProfileLineGround() {
|
|
275
|
+
if (isAMD) {
|
|
276
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineGround");
|
|
277
|
+
}
|
|
278
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineGround.js");
|
|
279
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
280
|
+
}
|
|
281
|
+
async function newAnalysisElevationProfileElevationProfileLineGround(properties) {
|
|
282
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineGround();
|
|
283
|
+
return new ModConstructor(properties);
|
|
284
|
+
}
|
|
285
|
+
async function importAnalysisElevationProfileElevationProfileLineInput() {
|
|
286
|
+
if (isAMD) {
|
|
287
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineInput");
|
|
288
|
+
}
|
|
289
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineInput.js");
|
|
290
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
291
|
+
}
|
|
292
|
+
async function newAnalysisElevationProfileElevationProfileLineInput(properties) {
|
|
293
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineInput();
|
|
294
|
+
return new ModConstructor(properties);
|
|
295
|
+
}
|
|
296
|
+
async function importAnalysisElevationProfileElevationProfileLineQuery() {
|
|
297
|
+
if (isAMD) {
|
|
298
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineQuery");
|
|
299
|
+
}
|
|
300
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineQuery.js");
|
|
301
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
302
|
+
}
|
|
303
|
+
async function newAnalysisElevationProfileElevationProfileLineQuery(properties) {
|
|
304
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineQuery();
|
|
305
|
+
return new ModConstructor(properties);
|
|
306
|
+
}
|
|
307
|
+
async function importAnalysisElevationProfileElevationProfileLineScene() {
|
|
308
|
+
if (isAMD) {
|
|
309
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineScene");
|
|
310
|
+
}
|
|
311
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineScene.js");
|
|
312
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
|
+
}
|
|
314
|
+
async function newAnalysisElevationProfileElevationProfileLineScene(properties) {
|
|
315
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineScene();
|
|
316
|
+
return new ModConstructor(properties);
|
|
317
|
+
}
|
|
318
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
326
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
329
|
+
async function importAnalysisElevationProfileElevationProfileDisplayUnits() {
|
|
330
|
+
if (isAMD) {
|
|
331
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileDisplayUnits");
|
|
332
|
+
}
|
|
333
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileDisplayUnits.js");
|
|
334
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
|
+
}
|
|
336
|
+
async function newAnalysisElevationProfileElevationProfileDisplayUnits(properties) {
|
|
337
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileDisplayUnits();
|
|
338
|
+
return new ModConstructor(properties);
|
|
339
|
+
}
|
|
340
|
+
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
341
|
+
if (isAMD) {
|
|
342
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileViewOptions");
|
|
343
|
+
}
|
|
344
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileViewOptions.js");
|
|
345
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
346
|
+
}
|
|
347
|
+
async function newAnalysisElevationProfileElevationProfileViewOptions(properties) {
|
|
348
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
349
|
+
return new ModConstructor(properties);
|
|
350
|
+
}
|
|
230
351
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
352
|
if (isAMD) {
|
|
232
353
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -238,6 +359,39 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
238
359
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
239
360
|
return new ModConstructor(properties);
|
|
240
361
|
}
|
|
362
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions() {
|
|
363
|
+
if (isAMD) {
|
|
364
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions");
|
|
365
|
+
}
|
|
366
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions.js");
|
|
367
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
368
|
+
}
|
|
369
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(properties) {
|
|
370
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
371
|
+
return new ModConstructor(properties);
|
|
372
|
+
}
|
|
373
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
374
|
+
if (isAMD) {
|
|
375
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
376
|
+
}
|
|
377
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
378
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
379
|
+
}
|
|
380
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
381
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
382
|
+
return new ModConstructor(properties);
|
|
383
|
+
}
|
|
384
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
385
|
+
if (isAMD) {
|
|
386
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
387
|
+
}
|
|
388
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
389
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
390
|
+
}
|
|
391
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
392
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
393
|
+
return new ModConstructor(properties);
|
|
394
|
+
}
|
|
241
395
|
async function importCoreAccessor() {
|
|
242
396
|
if (isAMD) {
|
|
243
397
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -744,28 +898,6 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
744
898
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
745
899
|
return new ModConstructor();
|
|
746
900
|
}
|
|
747
|
-
async function importGeometrySupportGeographicTransformation() {
|
|
748
|
-
if (isAMD) {
|
|
749
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
750
|
-
}
|
|
751
|
-
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
752
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
753
|
-
}
|
|
754
|
-
async function newGeometrySupportGeographicTransformation(properties) {
|
|
755
|
-
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
756
|
-
return new ModConstructor(properties);
|
|
757
|
-
}
|
|
758
|
-
async function importGeometrySupportGeographicTransformationStep() {
|
|
759
|
-
if (isAMD) {
|
|
760
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
761
|
-
}
|
|
762
|
-
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
763
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
764
|
-
}
|
|
765
|
-
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
766
|
-
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
767
|
-
return new ModConstructor(properties);
|
|
768
|
-
}
|
|
769
901
|
async function importGeometrySupportMeshComponent() {
|
|
770
902
|
if (isAMD) {
|
|
771
903
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -854,6 +986,28 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
854
986
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
855
987
|
return new ModConstructor(properties);
|
|
856
988
|
}
|
|
989
|
+
async function importGraphicGraphicOrigin() {
|
|
990
|
+
if (isAMD) {
|
|
991
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
992
|
+
}
|
|
993
|
+
const module2 = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
994
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
995
|
+
}
|
|
996
|
+
async function newGraphicGraphicOrigin() {
|
|
997
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
998
|
+
return new ModConstructor();
|
|
999
|
+
}
|
|
1000
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1008
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1010
|
+
}
|
|
857
1011
|
async function importAttributeBinsGraphic() {
|
|
858
1012
|
if (isAMD) {
|
|
859
1013
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1481,6 +1635,17 @@ async function newLayersSupportCornersGeoreference(properties) {
|
|
|
1481
1635
|
const ModConstructor = await importLayersSupportCornersGeoreference();
|
|
1482
1636
|
return new ModConstructor(properties);
|
|
1483
1637
|
}
|
|
1638
|
+
async function importLayersSupportDateTimeFieldFormat() {
|
|
1639
|
+
if (isAMD) {
|
|
1640
|
+
return await window.$arcgis.import("esri/layers/support/DateTimeFieldFormat");
|
|
1641
|
+
}
|
|
1642
|
+
const module2 = await import("@arcgis/core/layers/support/DateTimeFieldFormat.js");
|
|
1643
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1644
|
+
}
|
|
1645
|
+
async function newLayersSupportDateTimeFieldFormat(properties) {
|
|
1646
|
+
const ModConstructor = await importLayersSupportDateTimeFieldFormat();
|
|
1647
|
+
return new ModConstructor(properties);
|
|
1648
|
+
}
|
|
1484
1649
|
async function importLayersSupportDimensionalDefinition() {
|
|
1485
1650
|
if (isAMD) {
|
|
1486
1651
|
return await window.$arcgis.import("esri/layers/support/DimensionalDefinition");
|
|
@@ -1657,6 +1822,17 @@ async function newLayersSupportField(properties) {
|
|
|
1657
1822
|
const ModConstructor = await importLayersSupportField();
|
|
1658
1823
|
return new ModConstructor(properties);
|
|
1659
1824
|
}
|
|
1825
|
+
async function importLayersSupportFieldConfiguration() {
|
|
1826
|
+
if (isAMD) {
|
|
1827
|
+
return await window.$arcgis.import("esri/layers/support/FieldConfiguration");
|
|
1828
|
+
}
|
|
1829
|
+
const module2 = await import("@arcgis/core/layers/support/FieldConfiguration.js");
|
|
1830
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1831
|
+
}
|
|
1832
|
+
async function newLayersSupportFieldConfiguration(properties) {
|
|
1833
|
+
const ModConstructor = await importLayersSupportFieldConfiguration();
|
|
1834
|
+
return new ModConstructor(properties);
|
|
1835
|
+
}
|
|
1660
1836
|
async function importLayersSupportFieldsIndex() {
|
|
1661
1837
|
if (isAMD) {
|
|
1662
1838
|
return await window.$arcgis.import("esri/layers/support/FieldsIndex");
|
|
@@ -1800,6 +1976,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1800
1976
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1801
1977
|
return new ModConstructor(properties);
|
|
1802
1978
|
}
|
|
1979
|
+
async function importLayersSupportNumberFieldFormat() {
|
|
1980
|
+
if (isAMD) {
|
|
1981
|
+
return await window.$arcgis.import("esri/layers/support/NumberFieldFormat");
|
|
1982
|
+
}
|
|
1983
|
+
const module2 = await import("@arcgis/core/layers/support/NumberFieldFormat.js");
|
|
1984
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1985
|
+
}
|
|
1986
|
+
async function newLayersSupportNumberFieldFormat(properties) {
|
|
1987
|
+
const ModConstructor = await importLayersSupportNumberFieldFormat();
|
|
1988
|
+
return new ModConstructor(properties);
|
|
1989
|
+
}
|
|
1803
1990
|
async function importLayersSupportOrderByInfo() {
|
|
1804
1991
|
if (isAMD) {
|
|
1805
1992
|
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
@@ -1844,6 +2031,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1844
2031
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1845
2032
|
return new ModConstructor(properties);
|
|
1846
2033
|
}
|
|
2034
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2035
|
+
if (isAMD) {
|
|
2036
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2037
|
+
}
|
|
2038
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2039
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2040
|
+
}
|
|
2041
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2042
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2043
|
+
return new ModConstructor(properties);
|
|
2044
|
+
}
|
|
1847
2045
|
async function importLayersSupportPublishingInfo() {
|
|
1848
2046
|
if (isAMD) {
|
|
1849
2047
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3395,6 +3593,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3395
3593
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3396
3594
|
return new ModConstructor(properties);
|
|
3397
3595
|
}
|
|
3596
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3597
|
+
if (isAMD) {
|
|
3598
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3599
|
+
}
|
|
3600
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3601
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3602
|
+
}
|
|
3603
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3604
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3605
|
+
return new ModConstructor(properties);
|
|
3606
|
+
}
|
|
3607
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3608
|
+
if (isAMD) {
|
|
3609
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3610
|
+
}
|
|
3611
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3612
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3613
|
+
}
|
|
3614
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3615
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3616
|
+
return new ModConstructor(properties);
|
|
3617
|
+
}
|
|
3398
3618
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3399
3619
|
if (isAMD) {
|
|
3400
3620
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3417,6 +3637,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3417
3637
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3418
3638
|
return new ModConstructor(properties);
|
|
3419
3639
|
}
|
|
3640
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3641
|
+
if (isAMD) {
|
|
3642
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3643
|
+
}
|
|
3644
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3645
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3646
|
+
}
|
|
3647
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3648
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3649
|
+
return new ModConstructor(properties);
|
|
3650
|
+
}
|
|
3651
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3652
|
+
if (isAMD) {
|
|
3653
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3654
|
+
}
|
|
3655
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3656
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3657
|
+
}
|
|
3658
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3659
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3660
|
+
return new ModConstructor(properties);
|
|
3661
|
+
}
|
|
3420
3662
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3421
3663
|
if (isAMD) {
|
|
3422
3664
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3428,6 +3670,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3428
3670
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3429
3671
|
return new ModConstructor(properties);
|
|
3430
3672
|
}
|
|
3673
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3674
|
+
if (isAMD) {
|
|
3675
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3676
|
+
}
|
|
3677
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3678
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3679
|
+
}
|
|
3680
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3681
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3682
|
+
return new ModConstructor(properties);
|
|
3683
|
+
}
|
|
3431
3684
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3432
3685
|
if (isAMD) {
|
|
3433
3686
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3549,6 +3802,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3549
3802
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3550
3803
|
return new ModConstructor(properties);
|
|
3551
3804
|
}
|
|
3805
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3806
|
+
if (isAMD) {
|
|
3807
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3808
|
+
}
|
|
3809
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3810
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3811
|
+
}
|
|
3812
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3813
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3814
|
+
return new ModConstructor(properties);
|
|
3815
|
+
}
|
|
3816
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3817
|
+
if (isAMD) {
|
|
3818
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3819
|
+
}
|
|
3820
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3821
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3822
|
+
}
|
|
3823
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3824
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3825
|
+
return new ModConstructor(properties);
|
|
3826
|
+
}
|
|
3827
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3828
|
+
if (isAMD) {
|
|
3829
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3830
|
+
}
|
|
3831
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3832
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3833
|
+
}
|
|
3834
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3835
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3836
|
+
return new ModConstructor(properties);
|
|
3837
|
+
}
|
|
3552
3838
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3553
3839
|
if (isAMD) {
|
|
3554
3840
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -4638,6 +4924,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
4638
4924
|
const ModConstructor = await importRestSupportJobInfo();
|
|
4639
4925
|
return new ModConstructor(properties);
|
|
4640
4926
|
}
|
|
4927
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4928
|
+
if (isAMD) {
|
|
4929
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4930
|
+
}
|
|
4931
|
+
const module2 = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4932
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4933
|
+
}
|
|
4934
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4935
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4936
|
+
return new ModConstructor(properties);
|
|
4937
|
+
}
|
|
4641
4938
|
async function importRestSupportLegendLayer() {
|
|
4642
4939
|
if (isAMD) {
|
|
4643
4940
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -5661,28 +5958,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
5661
5958
|
const ModConstructor = await importTimeTimeInterval();
|
|
5662
5959
|
return new ModConstructor(properties);
|
|
5663
5960
|
}
|
|
5664
|
-
async function importTimeExtent() {
|
|
5665
|
-
if (isAMD) {
|
|
5666
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
5667
|
-
}
|
|
5668
|
-
const module2 = await import("@arcgis/core/TimeExtent.js");
|
|
5669
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5670
|
-
}
|
|
5671
|
-
async function newTimeExtent(properties) {
|
|
5672
|
-
const ModConstructor = await importTimeExtent();
|
|
5673
|
-
return new ModConstructor(properties);
|
|
5674
|
-
}
|
|
5675
|
-
async function importTimeInterval() {
|
|
5676
|
-
if (isAMD) {
|
|
5677
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
5678
|
-
}
|
|
5679
|
-
const module2 = await import("@arcgis/core/TimeInterval.js");
|
|
5680
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5681
|
-
}
|
|
5682
|
-
async function newTimeInterval(properties) {
|
|
5683
|
-
const ModConstructor = await importTimeInterval();
|
|
5684
|
-
return new ModConstructor(properties);
|
|
5685
|
-
}
|
|
5686
5961
|
async function importVersionManagementVersioningState() {
|
|
5687
5962
|
if (isAMD) {
|
|
5688
5963
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -5716,26 +5991,26 @@ async function newViewpoint(properties) {
|
|
|
5716
5991
|
const ModConstructor = await importViewpoint();
|
|
5717
5992
|
return new ModConstructor(properties);
|
|
5718
5993
|
}
|
|
5719
|
-
async function
|
|
5994
|
+
async function importViewsBasemapView() {
|
|
5720
5995
|
if (isAMD) {
|
|
5721
|
-
return await window.$arcgis.import("esri/views/
|
|
5996
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5722
5997
|
}
|
|
5723
|
-
const module2 = await import("@arcgis/core/views/
|
|
5998
|
+
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
5724
5999
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5725
6000
|
}
|
|
5726
|
-
async function
|
|
5727
|
-
const ModConstructor = await
|
|
6001
|
+
async function newViewsBasemapView(properties) {
|
|
6002
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5728
6003
|
return new ModConstructor(properties);
|
|
5729
6004
|
}
|
|
5730
|
-
async function
|
|
6005
|
+
async function importViewsGroundView() {
|
|
5731
6006
|
if (isAMD) {
|
|
5732
|
-
return await window.$arcgis.import("esri/views/
|
|
6007
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5733
6008
|
}
|
|
5734
|
-
const module2 = await import("@arcgis/core/views/
|
|
6009
|
+
const module2 = await import("@arcgis/core/views/GroundView.js");
|
|
5735
6010
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5736
6011
|
}
|
|
5737
|
-
async function
|
|
5738
|
-
const ModConstructor = await
|
|
6012
|
+
async function newViewsGroundView(properties) {
|
|
6013
|
+
const ModConstructor = await importViewsGroundView();
|
|
5739
6014
|
return new ModConstructor(properties);
|
|
5740
6015
|
}
|
|
5741
6016
|
async function importViews2dViewState() {
|
|
@@ -5749,6 +6024,39 @@ async function newViews2dViewState(properties) {
|
|
|
5749
6024
|
const ModConstructor = await importViews2dViewState();
|
|
5750
6025
|
return new ModConstructor(properties);
|
|
5751
6026
|
}
|
|
6027
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6028
|
+
if (isAMD) {
|
|
6029
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
6030
|
+
}
|
|
6031
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
6032
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6033
|
+
}
|
|
6034
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6035
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6036
|
+
return new ModConstructor(properties);
|
|
6037
|
+
}
|
|
6038
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6039
|
+
if (isAMD) {
|
|
6040
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6041
|
+
}
|
|
6042
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6043
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6044
|
+
}
|
|
6045
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6046
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6047
|
+
return new ModConstructor(properties);
|
|
6048
|
+
}
|
|
6049
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6050
|
+
if (isAMD) {
|
|
6051
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6052
|
+
}
|
|
6053
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6054
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6055
|
+
}
|
|
6056
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6057
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6058
|
+
return new ModConstructor(properties);
|
|
6059
|
+
}
|
|
5752
6060
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5753
6061
|
if (isAMD) {
|
|
5754
6062
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5782,6 +6090,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5782
6090
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5783
6091
|
return new ModConstructor(properties);
|
|
5784
6092
|
}
|
|
6093
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6094
|
+
if (isAMD) {
|
|
6095
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6096
|
+
}
|
|
6097
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6098
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6099
|
+
}
|
|
6100
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6101
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6102
|
+
return new ModConstructor(properties);
|
|
6103
|
+
}
|
|
5785
6104
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5786
6105
|
if (isAMD) {
|
|
5787
6106
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5826,6 +6145,39 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5826
6145
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5827
6146
|
return new ModConstructor(properties);
|
|
5828
6147
|
}
|
|
6148
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6149
|
+
if (isAMD) {
|
|
6150
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6151
|
+
}
|
|
6152
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6153
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6154
|
+
}
|
|
6155
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6156
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6157
|
+
return new ModConstructor(properties);
|
|
6158
|
+
}
|
|
6159
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementError() {
|
|
6160
|
+
if (isAMD) {
|
|
6161
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError");
|
|
6162
|
+
}
|
|
6163
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.js");
|
|
6164
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6165
|
+
}
|
|
6166
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementError(name, message, details) {
|
|
6167
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementError();
|
|
6168
|
+
return new ModConstructor(name, message, details);
|
|
6169
|
+
}
|
|
6170
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6171
|
+
if (isAMD) {
|
|
6172
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6173
|
+
}
|
|
6174
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6175
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6176
|
+
}
|
|
6177
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6178
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6179
|
+
return new ModConstructor(properties);
|
|
6180
|
+
}
|
|
5829
6181
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5830
6182
|
if (isAMD) {
|
|
5831
6183
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5914,15 +6266,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5914
6266
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5915
6267
|
return new ModConstructor(properties);
|
|
5916
6268
|
}
|
|
5917
|
-
async function
|
|
6269
|
+
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5918
6270
|
if (isAMD) {
|
|
5919
|
-
return await window.$arcgis.import("esri/views/
|
|
6271
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5920
6272
|
}
|
|
5921
|
-
const module2 = await import("@arcgis/core/views/
|
|
6273
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5922
6274
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5923
6275
|
}
|
|
5924
|
-
async function
|
|
5925
|
-
const ModConstructor = await
|
|
6276
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6277
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
5926
6278
|
return new ModConstructor(properties);
|
|
5927
6279
|
}
|
|
5928
6280
|
async function importViewsDrawDraw() {
|
|
@@ -6002,15 +6354,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
6002
6354
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
6003
6355
|
return new ModConstructor(properties);
|
|
6004
6356
|
}
|
|
6005
|
-
async function
|
|
6357
|
+
async function importViewsInputInput() {
|
|
6006
6358
|
if (isAMD) {
|
|
6007
|
-
return await window.$arcgis.import("esri/views/
|
|
6359
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
6008
6360
|
}
|
|
6009
|
-
const module2 = await import("@arcgis/core/views/
|
|
6361
|
+
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6010
6362
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6011
6363
|
}
|
|
6012
|
-
async function
|
|
6013
|
-
const ModConstructor = await
|
|
6364
|
+
async function newViewsInputInput(properties) {
|
|
6365
|
+
const ModConstructor = await importViewsInputInput();
|
|
6014
6366
|
return new ModConstructor(properties);
|
|
6015
6367
|
}
|
|
6016
6368
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6035,17 +6387,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6035
6387
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6036
6388
|
return new ModConstructor(properties);
|
|
6037
6389
|
}
|
|
6038
|
-
async function importViewsInputInput() {
|
|
6039
|
-
if (isAMD) {
|
|
6040
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6041
|
-
}
|
|
6042
|
-
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6043
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6044
|
-
}
|
|
6045
|
-
async function newViewsInputInput(properties) {
|
|
6046
|
-
const ModConstructor = await importViewsInputInput();
|
|
6047
|
-
return new ModConstructor(properties);
|
|
6048
|
-
}
|
|
6049
6390
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6050
6391
|
if (isAMD) {
|
|
6051
6392
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6134,39 +6475,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6134
6475
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6135
6476
|
return new ModConstructor(properties);
|
|
6136
6477
|
}
|
|
6137
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6138
|
-
if (isAMD) {
|
|
6139
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6140
|
-
}
|
|
6141
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6142
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6143
|
-
}
|
|
6144
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6145
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6146
|
-
return new ModConstructor(properties);
|
|
6147
|
-
}
|
|
6148
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6149
|
-
if (isAMD) {
|
|
6150
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6151
|
-
}
|
|
6152
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6153
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6154
|
-
}
|
|
6155
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6156
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6157
|
-
return new ModConstructor(properties);
|
|
6158
|
-
}
|
|
6159
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6160
|
-
if (isAMD) {
|
|
6161
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6162
|
-
}
|
|
6163
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6164
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6165
|
-
}
|
|
6166
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6167
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6168
|
-
return new ModConstructor(properties);
|
|
6169
|
-
}
|
|
6170
6478
|
async function importViewsLayersDimensionLayerView() {
|
|
6171
6479
|
if (isAMD) {
|
|
6172
6480
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6178,17 +6486,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6178
6486
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6179
6487
|
return new ModConstructor(properties);
|
|
6180
6488
|
}
|
|
6181
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6182
|
-
if (isAMD) {
|
|
6183
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6184
|
-
}
|
|
6185
|
-
const module2 = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6186
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6187
|
-
}
|
|
6188
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6189
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6190
|
-
return new ModConstructor(properties);
|
|
6191
|
-
}
|
|
6192
6489
|
async function importViewsLayersGroupLayerView() {
|
|
6193
6490
|
if (isAMD) {
|
|
6194
6491
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6255,28 +6552,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6255
6552
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6256
6553
|
return new ModConstructor(properties);
|
|
6257
6554
|
}
|
|
6258
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6259
|
-
if (isAMD) {
|
|
6260
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6261
|
-
}
|
|
6262
|
-
const module2 = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6263
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6264
|
-
}
|
|
6265
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6266
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6267
|
-
return new ModConstructor(properties);
|
|
6268
|
-
}
|
|
6269
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6270
|
-
if (isAMD) {
|
|
6271
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6272
|
-
}
|
|
6273
|
-
const module2 = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6274
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6275
|
-
}
|
|
6276
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6277
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6278
|
-
return new ModConstructor(properties);
|
|
6279
|
-
}
|
|
6280
6555
|
async function importViewsLayersSceneLayerView() {
|
|
6281
6556
|
if (isAMD) {
|
|
6282
6557
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6288,17 +6563,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6288
6563
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6289
6564
|
return new ModConstructor(properties);
|
|
6290
6565
|
}
|
|
6291
|
-
async function importViewsLayersStreamLayerView() {
|
|
6292
|
-
if (isAMD) {
|
|
6293
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6294
|
-
}
|
|
6295
|
-
const module2 = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6296
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6297
|
-
}
|
|
6298
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6299
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6300
|
-
return new ModConstructor(properties);
|
|
6301
|
-
}
|
|
6302
6566
|
async function importViewsLayersViewshedLayerView() {
|
|
6303
6567
|
if (isAMD) {
|
|
6304
6568
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7201,6 +7465,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7201
7465
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7202
7466
|
return new ModConstructor(properties);
|
|
7203
7467
|
}
|
|
7468
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7469
|
+
if (isAMD) {
|
|
7470
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7471
|
+
}
|
|
7472
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7473
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7474
|
+
}
|
|
7475
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7476
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7477
|
+
return new ModConstructor(properties);
|
|
7478
|
+
}
|
|
7479
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7480
|
+
if (isAMD) {
|
|
7481
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7482
|
+
}
|
|
7483
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7484
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7485
|
+
}
|
|
7486
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7487
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7488
|
+
return new ModConstructor(properties);
|
|
7489
|
+
}
|
|
7490
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7491
|
+
if (isAMD) {
|
|
7492
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7493
|
+
}
|
|
7494
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7495
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7496
|
+
}
|
|
7497
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7498
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7499
|
+
return new ModConstructor(properties);
|
|
7500
|
+
}
|
|
7501
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7502
|
+
if (isAMD) {
|
|
7503
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7504
|
+
}
|
|
7505
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7506
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7507
|
+
}
|
|
7508
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7509
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7510
|
+
return new ModConstructor(properties);
|
|
7511
|
+
}
|
|
7204
7512
|
async function importWidgetsBookmarks() {
|
|
7205
7513
|
if (isAMD) {
|
|
7206
7514
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -7520,6 +7828,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7520
7828
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7521
7829
|
return new ModConstructor(properties);
|
|
7522
7830
|
}
|
|
7831
|
+
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7832
|
+
if (isAMD) {
|
|
7833
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
7834
|
+
}
|
|
7835
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflow.js");
|
|
7836
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7837
|
+
}
|
|
7838
|
+
async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
7839
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7840
|
+
return new ModConstructor(properties);
|
|
7841
|
+
}
|
|
7842
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
7843
|
+
if (isAMD) {
|
|
7844
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
7845
|
+
}
|
|
7846
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
7847
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7848
|
+
}
|
|
7849
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
7850
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
7851
|
+
return new ModConstructor(properties);
|
|
7852
|
+
}
|
|
7523
7853
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7524
7854
|
if (isAMD) {
|
|
7525
7855
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -7883,39 +8213,6 @@ async function newWidgetsFeatureTableGridGroupColumn(properties) {
|
|
|
7883
8213
|
const ModConstructor = await importWidgetsFeatureTableGridGroupColumn();
|
|
7884
8214
|
return new ModConstructor(properties);
|
|
7885
8215
|
}
|
|
7886
|
-
async function importWidgetsFeatureTableGridSupportButtonMenu() {
|
|
7887
|
-
if (isAMD) {
|
|
7888
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenu");
|
|
7889
|
-
}
|
|
7890
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenu.js");
|
|
7891
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7892
|
-
}
|
|
7893
|
-
async function newWidgetsFeatureTableGridSupportButtonMenu(properties) {
|
|
7894
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenu();
|
|
7895
|
-
return new ModConstructor(properties);
|
|
7896
|
-
}
|
|
7897
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuItem() {
|
|
7898
|
-
if (isAMD) {
|
|
7899
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuItem");
|
|
7900
|
-
}
|
|
7901
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuItem.js");
|
|
7902
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7903
|
-
}
|
|
7904
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuItem(properties) {
|
|
7905
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuItem();
|
|
7906
|
-
return new ModConstructor(properties);
|
|
7907
|
-
}
|
|
7908
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuViewModel() {
|
|
7909
|
-
if (isAMD) {
|
|
7910
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuViewModel");
|
|
7911
|
-
}
|
|
7912
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuViewModel.js");
|
|
7913
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7914
|
-
}
|
|
7915
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties) {
|
|
7916
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7917
|
-
return new ModConstructor(properties);
|
|
7918
|
-
}
|
|
7919
8216
|
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7920
8217
|
if (isAMD) {
|
|
7921
8218
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
@@ -9402,13 +9699,6 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9402
9699
|
const module2 = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9403
9700
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9404
9701
|
}
|
|
9405
|
-
async function importGeometryProjection() {
|
|
9406
|
-
if (isAMD) {
|
|
9407
|
-
return await window.$arcgis.import("esri/geometry/projection");
|
|
9408
|
-
}
|
|
9409
|
-
const module2 = await import("@arcgis/core/geometry/projection.js");
|
|
9410
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9411
|
-
}
|
|
9412
9702
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9413
9703
|
if (isAMD) {
|
|
9414
9704
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -9584,6 +9874,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
9584
9874
|
const module2 = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
9585
9875
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9586
9876
|
}
|
|
9877
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9878
|
+
if (isAMD) {
|
|
9879
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9880
|
+
}
|
|
9881
|
+
const module2 = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9882
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
9883
|
+
}
|
|
9587
9884
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
9588
9885
|
if (isAMD) {
|
|
9589
9886
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10032,6 +10329,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10032
10329
|
const module2 = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10033
10330
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10034
10331
|
}
|
|
10332
|
+
async function importRestLastMileDelivery() {
|
|
10333
|
+
if (isAMD) {
|
|
10334
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10335
|
+
}
|
|
10336
|
+
const module2 = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10337
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10338
|
+
}
|
|
10035
10339
|
async function importRestLocator() {
|
|
10036
10340
|
if (isAMD) {
|
|
10037
10341
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -10536,6 +10840,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10536
10840
|
const module2 = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10537
10841
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10538
10842
|
}
|
|
10843
|
+
async function importViews3dWebgl() {
|
|
10844
|
+
if (isAMD) {
|
|
10845
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10846
|
+
}
|
|
10847
|
+
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10848
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10849
|
+
}
|
|
10539
10850
|
async function importViews3dWebglManagedFBO() {
|
|
10540
10851
|
if (isAMD) {
|
|
10541
10852
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10550,13 +10861,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10550
10861
|
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10551
10862
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10552
10863
|
}
|
|
10553
|
-
async function importViews3dWebgl() {
|
|
10554
|
-
if (isAMD) {
|
|
10555
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10556
|
-
}
|
|
10557
|
-
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10558
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10559
|
-
}
|
|
10560
10864
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10561
10865
|
if (isAMD) {
|
|
10562
10866
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10585,11 +10889,11 @@ async function importViewsSupportColorUtils() {
|
|
|
10585
10889
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10586
10890
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10587
10891
|
}
|
|
10588
|
-
async function
|
|
10892
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10589
10893
|
if (isAMD) {
|
|
10590
|
-
return await window.$arcgis.import("esri/widgets/
|
|
10894
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10591
10895
|
}
|
|
10592
|
-
const module2 = await import("@arcgis/core/widgets/
|
|
10896
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10593
10897
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10594
10898
|
}
|
|
10595
10899
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
@@ -10606,6 +10910,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10606
10910
|
const module2 = await import("@arcgis/core/widgets/support/widget.js");
|
|
10607
10911
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10608
10912
|
}
|
|
10913
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10914
|
+
if (isAMD) {
|
|
10915
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10916
|
+
}
|
|
10917
|
+
const module2 = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10918
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10919
|
+
}
|
|
10609
10920
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
10610
10921
|
if (isAMD) {
|
|
10611
10922
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -10613,6 +10924,20 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10613
10924
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10614
10925
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10615
10926
|
}
|
|
10927
|
+
async function importApplicationsComponentsArcadeEditorUtils() {
|
|
10928
|
+
if (isAMD) {
|
|
10929
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeEditorUtils");
|
|
10930
|
+
}
|
|
10931
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeEditorUtils.js");
|
|
10932
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10933
|
+
}
|
|
10934
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10935
|
+
if (isAMD) {
|
|
10936
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10937
|
+
}
|
|
10938
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10939
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10940
|
+
}
|
|
10616
10941
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10617
10942
|
if (isAMD) {
|
|
10618
10943
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10627,6 +10952,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10627
10952
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10628
10953
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10629
10954
|
}
|
|
10955
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10956
|
+
if (isAMD) {
|
|
10957
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10958
|
+
}
|
|
10959
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10960
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10961
|
+
}
|
|
10630
10962
|
async function importApplicationsComponentsFontUtils() {
|
|
10631
10963
|
if (isAMD) {
|
|
10632
10964
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10634,6 +10966,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10634
10966
|
const module2 = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10635
10967
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10636
10968
|
}
|
|
10969
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
10970
|
+
if (isAMD) {
|
|
10971
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
10972
|
+
}
|
|
10973
|
+
const module2 = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
10974
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10975
|
+
}
|
|
10637
10976
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10638
10977
|
if (isAMD) {
|
|
10639
10978
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10648,6 +10987,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10648
10987
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10649
10988
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10650
10989
|
}
|
|
10990
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10991
|
+
if (isAMD) {
|
|
10992
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10993
|
+
}
|
|
10994
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10995
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10996
|
+
}
|
|
10651
10997
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10652
10998
|
if (isAMD) {
|
|
10653
10999
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10676,6 +11022,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10676
11022
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10677
11023
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10678
11024
|
}
|
|
11025
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11026
|
+
if (isAMD) {
|
|
11027
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11028
|
+
}
|
|
11029
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11030
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11031
|
+
}
|
|
10679
11032
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10680
11033
|
if (isAMD) {
|
|
10681
11034
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10690,6 +11043,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10690
11043
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10691
11044
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10692
11045
|
}
|
|
11046
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11047
|
+
if (isAMD) {
|
|
11048
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11049
|
+
}
|
|
11050
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11051
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11052
|
+
}
|
|
10693
11053
|
async function importApplicationsComponentsStyleUtils() {
|
|
10694
11054
|
if (isAMD) {
|
|
10695
11055
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10751,6 +11111,16 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
10751
11111
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
10752
11112
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
10753
11113
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11114
|
+
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11115
|
+
exports.importAnalysisElevationProfileElevationProfileDisplayUnits = importAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
11116
|
+
exports.importAnalysisElevationProfileElevationProfileLine = importAnalysisElevationProfileElevationProfileLine;
|
|
11117
|
+
exports.importAnalysisElevationProfileElevationProfileLineChartOptions = importAnalysisElevationProfileElevationProfileLineChartOptions;
|
|
11118
|
+
exports.importAnalysisElevationProfileElevationProfileLineGround = importAnalysisElevationProfileElevationProfileLineGround;
|
|
11119
|
+
exports.importAnalysisElevationProfileElevationProfileLineInput = importAnalysisElevationProfileElevationProfileLineInput;
|
|
11120
|
+
exports.importAnalysisElevationProfileElevationProfileLineQuery = importAnalysisElevationProfileElevationProfileLineQuery;
|
|
11121
|
+
exports.importAnalysisElevationProfileElevationProfileLineScene = importAnalysisElevationProfileElevationProfileLineScene;
|
|
11122
|
+
exports.importAnalysisElevationProfileElevationProfileLineViewOptions = importAnalysisElevationProfileElevationProfileLineViewOptions;
|
|
11123
|
+
exports.importAnalysisElevationProfileElevationProfileViewOptions = importAnalysisElevationProfileElevationProfileViewOptions;
|
|
10754
11124
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
10755
11125
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
10756
11126
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
@@ -10760,18 +11130,30 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10760
11130
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10761
11131
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10762
11132
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
11133
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
11134
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions;
|
|
11135
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits = importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits;
|
|
11136
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementInputUnits = importAnalysisVolumeMeasurementVolumeMeasurementInputUnits;
|
|
11137
|
+
exports.importApplicationsComponentsActionUtils = importApplicationsComponentsActionUtils;
|
|
10763
11138
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
11139
|
+
exports.importApplicationsComponentsArcadeEditorUtils = importApplicationsComponentsArcadeEditorUtils;
|
|
11140
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10764
11141
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10765
11142
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
11143
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10766
11144
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
11145
|
+
exports.importApplicationsComponentsFormatUtils = importApplicationsComponentsFormatUtils;
|
|
10767
11146
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10768
11147
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
11148
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10769
11149
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10770
11150
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10771
11151
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10772
11152
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
11153
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10773
11154
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10774
11155
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
11156
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10775
11157
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10776
11158
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10777
11159
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10868,6 +11250,7 @@ exports.importGeometryOperatorsGeodeticAreaOperator = importGeometryOperatorsGeo
|
|
|
10868
11250
|
exports.importGeometryOperatorsGeodeticDensifyOperator = importGeometryOperatorsGeodeticDensifyOperator;
|
|
10869
11251
|
exports.importGeometryOperatorsGeodeticDistanceOperator = importGeometryOperatorsGeodeticDistanceOperator;
|
|
10870
11252
|
exports.importGeometryOperatorsGeodeticLengthOperator = importGeometryOperatorsGeodeticLengthOperator;
|
|
11253
|
+
exports.importGeometryOperatorsGeodeticUtilsOperator = importGeometryOperatorsGeodeticUtilsOperator;
|
|
10871
11254
|
exports.importGeometryOperatorsGraphicBufferOperator = importGeometryOperatorsGraphicBufferOperator;
|
|
10872
11255
|
exports.importGeometryOperatorsIntegrateOperator = importGeometryOperatorsIntegrateOperator;
|
|
10873
11256
|
exports.importGeometryOperatorsIntersectionOperator = importGeometryOperatorsIntersectionOperator;
|
|
@@ -10901,11 +11284,8 @@ exports.importGeometryOperatorsWithinOperator = importGeometryOperatorsWithinOpe
|
|
|
10901
11284
|
exports.importGeometryPoint = importGeometryPoint;
|
|
10902
11285
|
exports.importGeometryPolygon = importGeometryPolygon;
|
|
10903
11286
|
exports.importGeometryPolyline = importGeometryPolyline;
|
|
10904
|
-
exports.importGeometryProjection = importGeometryProjection;
|
|
10905
11287
|
exports.importGeometrySpatialReference = importGeometrySpatialReference;
|
|
10906
11288
|
exports.importGeometrySupportGeodesicUtils = importGeometrySupportGeodesicUtils;
|
|
10907
|
-
exports.importGeometrySupportGeographicTransformation = importGeometrySupportGeographicTransformation;
|
|
10908
|
-
exports.importGeometrySupportGeographicTransformationStep = importGeometrySupportGeographicTransformationStep;
|
|
10909
11289
|
exports.importGeometrySupportJsonUtils = importGeometrySupportJsonUtils;
|
|
10910
11290
|
exports.importGeometrySupportMeshComponent = importGeometrySupportMeshComponent;
|
|
10911
11291
|
exports.importGeometrySupportMeshGeoreferencedVertexSpace = importGeometrySupportMeshGeoreferencedVertexSpace;
|
|
@@ -10919,6 +11299,8 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
10919
11299
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
10920
11300
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
10921
11301
|
exports.importGraphic = importGraphic;
|
|
11302
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11303
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
10922
11304
|
exports.importGround = importGround;
|
|
10923
11305
|
exports.importIdentityCredential = importIdentityCredential;
|
|
10924
11306
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -10984,6 +11366,7 @@ exports.importLayersSupportCodedValueDomain = importLayersSupportCodedValueDomai
|
|
|
10984
11366
|
exports.importLayersSupportControlPointsGeoreference = importLayersSupportControlPointsGeoreference;
|
|
10985
11367
|
exports.importLayersSupportCornersGeoreference = importLayersSupportCornersGeoreference;
|
|
10986
11368
|
exports.importLayersSupportCsvUtils = importLayersSupportCsvUtils;
|
|
11369
|
+
exports.importLayersSupportDateTimeFieldFormat = importLayersSupportDateTimeFieldFormat;
|
|
10987
11370
|
exports.importLayersSupportDimensionalDefinition = importLayersSupportDimensionalDefinition;
|
|
10988
11371
|
exports.importLayersSupportDisplayFilter = importLayersSupportDisplayFilter;
|
|
10989
11372
|
exports.importLayersSupportDisplayFilterInfo = importLayersSupportDisplayFilterInfo;
|
|
@@ -11000,6 +11383,7 @@ exports.importLayersSupportFeatureReductionSelection = importLayersSupportFeatur
|
|
|
11000
11383
|
exports.importLayersSupportFeatureTemplate = importLayersSupportFeatureTemplate;
|
|
11001
11384
|
exports.importLayersSupportFeatureType = importLayersSupportFeatureType;
|
|
11002
11385
|
exports.importLayersSupportField = importLayersSupportField;
|
|
11386
|
+
exports.importLayersSupportFieldConfiguration = importLayersSupportFieldConfiguration;
|
|
11003
11387
|
exports.importLayersSupportFieldUtils = importLayersSupportFieldUtils;
|
|
11004
11388
|
exports.importLayersSupportFieldsIndex = importLayersSupportFieldsIndex;
|
|
11005
11389
|
exports.importLayersSupportGeometryFieldsInfo = importLayersSupportGeometryFieldsInfo;
|
|
@@ -11014,11 +11398,13 @@ exports.importLayersSupportLocalMediaElementSource = importLayersSupportLocalMed
|
|
|
11014
11398
|
exports.importLayersSupportMapImage = importLayersSupportMapImage;
|
|
11015
11399
|
exports.importLayersSupportMosaicRule = importLayersSupportMosaicRule;
|
|
11016
11400
|
exports.importLayersSupportMultidimensionalSubset = importLayersSupportMultidimensionalSubset;
|
|
11401
|
+
exports.importLayersSupportNumberFieldFormat = importLayersSupportNumberFieldFormat;
|
|
11017
11402
|
exports.importLayersSupportOrderByInfo = importLayersSupportOrderByInfo;
|
|
11018
11403
|
exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetEncodingLocation;
|
|
11019
11404
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
11020
11405
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
11021
11406
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11407
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
11022
11408
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
11023
11409
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
11024
11410
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11179,10 +11565,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11179
11565
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11180
11566
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11181
11567
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11568
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11182
11569
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11570
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11183
11571
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11184
11572
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11573
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11574
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11185
11575
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11576
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11186
11577
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11187
11578
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11188
11579
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11194,6 +11585,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11194
11585
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11195
11586
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11196
11587
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11588
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11589
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11590
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11197
11591
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11198
11592
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11199
11593
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11209,6 +11603,7 @@ exports.importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity =
|
|
|
11209
11603
|
exports.importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter = importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter;
|
|
11210
11604
|
exports.importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection = importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection;
|
|
11211
11605
|
exports.importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings;
|
|
11606
|
+
exports.importRestLastMileDelivery = importRestLastMileDelivery;
|
|
11212
11607
|
exports.importRestLocator = importRestLocator;
|
|
11213
11608
|
exports.importRestNetworkService = importRestNetworkService;
|
|
11214
11609
|
exports.importRestNetworksQueryAssociations = importRestNetworksQueryAssociations;
|
|
@@ -11305,6 +11700,7 @@ exports.importRestSupportImageVolume = importRestSupportImageVolume;
|
|
|
11305
11700
|
exports.importRestSupportImageVolumeParameters = importRestSupportImageVolumeParameters;
|
|
11306
11701
|
exports.importRestSupportImageVolumeResult = importRestSupportImageVolumeResult;
|
|
11307
11702
|
exports.importRestSupportJobInfo = importRestSupportJobInfo;
|
|
11703
|
+
exports.importRestSupportLastMileDeliveryParameters = importRestSupportLastMileDeliveryParameters;
|
|
11308
11704
|
exports.importRestSupportLegendLayer = importRestSupportLegendLayer;
|
|
11309
11705
|
exports.importRestSupportLengthsParameters = importRestSupportLengthsParameters;
|
|
11310
11706
|
exports.importRestSupportLinearUnit = importRestSupportLinearUnit;
|
|
@@ -11455,8 +11851,6 @@ exports.importTablesElementsAttributeTableElement = importTablesElementsAttribut
|
|
|
11455
11851
|
exports.importTablesElementsAttributeTableFieldElement = importTablesElementsAttributeTableFieldElement;
|
|
11456
11852
|
exports.importTablesElementsAttributeTableGroupElement = importTablesElementsAttributeTableGroupElement;
|
|
11457
11853
|
exports.importTablesElementsAttributeTableRelationshipElement = importTablesElementsAttributeTableRelationshipElement;
|
|
11458
|
-
exports.importTimeExtent = importTimeExtent;
|
|
11459
|
-
exports.importTimeInterval = importTimeInterval;
|
|
11460
11854
|
exports.importTimeTimeExtent = importTimeTimeExtent;
|
|
11461
11855
|
exports.importTimeTimeInterval = importTimeTimeInterval;
|
|
11462
11856
|
exports.importVersionManagementUtils = importVersionManagementUtils;
|
|
@@ -11464,16 +11858,21 @@ exports.importVersionManagementVersionAdaptersUtils = importVersionManagementVer
|
|
|
11464
11858
|
exports.importVersionManagementVersionManagementService = importVersionManagementVersionManagementService;
|
|
11465
11859
|
exports.importVersionManagementVersioningState = importVersionManagementVersioningState;
|
|
11466
11860
|
exports.importViewpoint = importViewpoint;
|
|
11861
|
+
exports.importViews2dAnalysisElevationProfileAnalysisView2D = importViews2dAnalysisElevationProfileAnalysisView2D;
|
|
11467
11862
|
exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
11468
11863
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
11469
11864
|
exports.importViews2dViewState = importViews2dViewState;
|
|
11470
11865
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11471
11866
|
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11472
11867
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
11868
|
+
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11473
11869
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11474
11870
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11475
11871
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11476
11872
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11873
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11874
|
+
exports.importViews3dAnalysisVolumeMeasurementVolumeMeasurementError = importViews3dAnalysisVolumeMeasurementVolumeMeasurementError;
|
|
11875
|
+
exports.importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult = importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult;
|
|
11477
11876
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11478
11877
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11479
11878
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11487,6 +11886,7 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11487
11886
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11488
11887
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11489
11888
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
11889
|
+
exports.importViewsAnalysisElevationProfileElevationProfileResult = importViewsAnalysisElevationProfileElevationProfileResult;
|
|
11490
11890
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11491
11891
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11492
11892
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11508,21 +11908,14 @@ exports.importViewsInteractiveSnappingSnappingOptions = importViewsInteractiveSn
|
|
|
11508
11908
|
exports.importViewsInteractiveTooltip = importViewsInteractiveTooltip;
|
|
11509
11909
|
exports.importViewsLayersBuildingComponentSublayerView = importViewsLayersBuildingComponentSublayerView;
|
|
11510
11910
|
exports.importViewsLayersBuildingSceneLayerView = importViewsLayersBuildingSceneLayerView;
|
|
11511
|
-
exports.importViewsLayersCatalogDynamicGroupLayerView = importViewsLayersCatalogDynamicGroupLayerView;
|
|
11512
|
-
exports.importViewsLayersCatalogFootprintLayerView = importViewsLayersCatalogFootprintLayerView;
|
|
11513
|
-
exports.importViewsLayersCatalogLayerView = importViewsLayersCatalogLayerView;
|
|
11514
11911
|
exports.importViewsLayersDimensionLayerView = importViewsLayersDimensionLayerView;
|
|
11515
|
-
exports.importViewsLayersFeatureLayerView = importViewsLayersFeatureLayerView;
|
|
11516
11912
|
exports.importViewsLayersGroupLayerView = importViewsLayersGroupLayerView;
|
|
11517
11913
|
exports.importViewsLayersImageryLayerView = importViewsLayersImageryLayerView;
|
|
11518
11914
|
exports.importViewsLayersImageryTileLayerView = importViewsLayersImageryTileLayerView;
|
|
11519
11915
|
exports.importViewsLayersLayerView = importViewsLayersLayerView;
|
|
11520
11916
|
exports.importViewsLayersLineOfSightLayerView = importViewsLayersLineOfSightLayerView;
|
|
11521
11917
|
exports.importViewsLayersMediaLayerView = importViewsLayersMediaLayerView;
|
|
11522
|
-
exports.importViewsLayersOGCFeatureLayerView = importViewsLayersOGCFeatureLayerView;
|
|
11523
|
-
exports.importViewsLayersPointCloudLayerView = importViewsLayersPointCloudLayerView;
|
|
11524
11918
|
exports.importViewsLayersSceneLayerView = importViewsLayersSceneLayerView;
|
|
11525
|
-
exports.importViewsLayersStreamLayerView = importViewsLayersStreamLayerView;
|
|
11526
11919
|
exports.importViewsLayersViewshedLayerView = importViewsLayersViewshedLayerView;
|
|
11527
11920
|
exports.importViewsLinkChartView = importViewsLinkChartView;
|
|
11528
11921
|
exports.importViewsMagnifier = importViewsMagnifier;
|
|
@@ -11607,6 +12000,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11607
12000
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11608
12001
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11609
12002
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12003
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12004
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
12005
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11610
12006
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11611
12007
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11612
12008
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11636,7 +12032,10 @@ exports.importWidgetsEditorCreateFeaturesWorkflow = importWidgetsEditorCreateFea
|
|
|
11636
12032
|
exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreateFeaturesWorkflowData;
|
|
11637
12033
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
11638
12034
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
12035
|
+
exports.importWidgetsEditorSplitFeatureWorkflow = importWidgetsEditorSplitFeatureWorkflow;
|
|
12036
|
+
exports.importWidgetsEditorSplitFeatureWorkflowData = importWidgetsEditorSplitFeatureWorkflowData;
|
|
11639
12037
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
12038
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflow = importWidgetsEditorUpdateFeaturesWorkflow;
|
|
11640
12039
|
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
11641
12040
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
11642
12041
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
@@ -11666,9 +12065,6 @@ exports.importWidgetsFeatureTableFeatureTableViewModel = importWidgetsFeatureTab
|
|
|
11666
12065
|
exports.importWidgetsFeatureTableFieldColumn = importWidgetsFeatureTableFieldColumn;
|
|
11667
12066
|
exports.importWidgetsFeatureTableGridColumn = importWidgetsFeatureTableGridColumn;
|
|
11668
12067
|
exports.importWidgetsFeatureTableGridGroupColumn = importWidgetsFeatureTableGridGroupColumn;
|
|
11669
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenu = importWidgetsFeatureTableGridSupportButtonMenu;
|
|
11670
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenuItem = importWidgetsFeatureTableGridSupportButtonMenuItem;
|
|
11671
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenuViewModel = importWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
11672
12068
|
exports.importWidgetsFeatureTableRelationshipColumn = importWidgetsFeatureTableRelationshipColumn;
|
|
11673
12069
|
exports.importWidgetsFeatureTableSupportAttachmentsColumnTemplate = importWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
11674
12070
|
exports.importWidgetsFeatureTableSupportAttachmentsViewOptions = importWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
@@ -11803,6 +12199,16 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
11803
12199
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
11804
12200
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
11805
12201
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12202
|
+
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12203
|
+
exports.newAnalysisElevationProfileElevationProfileDisplayUnits = newAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
12204
|
+
exports.newAnalysisElevationProfileElevationProfileLine = newAnalysisElevationProfileElevationProfileLine;
|
|
12205
|
+
exports.newAnalysisElevationProfileElevationProfileLineChartOptions = newAnalysisElevationProfileElevationProfileLineChartOptions;
|
|
12206
|
+
exports.newAnalysisElevationProfileElevationProfileLineGround = newAnalysisElevationProfileElevationProfileLineGround;
|
|
12207
|
+
exports.newAnalysisElevationProfileElevationProfileLineInput = newAnalysisElevationProfileElevationProfileLineInput;
|
|
12208
|
+
exports.newAnalysisElevationProfileElevationProfileLineQuery = newAnalysisElevationProfileElevationProfileLineQuery;
|
|
12209
|
+
exports.newAnalysisElevationProfileElevationProfileLineScene = newAnalysisElevationProfileElevationProfileLineScene;
|
|
12210
|
+
exports.newAnalysisElevationProfileElevationProfileLineViewOptions = newAnalysisElevationProfileElevationProfileLineViewOptions;
|
|
12211
|
+
exports.newAnalysisElevationProfileElevationProfileViewOptions = newAnalysisElevationProfileElevationProfileViewOptions;
|
|
11806
12212
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
11807
12213
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
11808
12214
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
@@ -11812,6 +12218,10 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11812
12218
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11813
12219
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11814
12220
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12221
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12222
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions;
|
|
12223
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits = newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits;
|
|
12224
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementInputUnits = newAnalysisVolumeMeasurementVolumeMeasurementInputUnits;
|
|
11815
12225
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11816
12226
|
exports.newBasemap = newBasemap;
|
|
11817
12227
|
exports.newCamera = newCamera;
|
|
@@ -11863,8 +12273,6 @@ exports.newGeometryPoint = newGeometryPoint;
|
|
|
11863
12273
|
exports.newGeometryPolygon = newGeometryPolygon;
|
|
11864
12274
|
exports.newGeometryPolyline = newGeometryPolyline;
|
|
11865
12275
|
exports.newGeometrySpatialReference = newGeometrySpatialReference;
|
|
11866
|
-
exports.newGeometrySupportGeographicTransformation = newGeometrySupportGeographicTransformation;
|
|
11867
|
-
exports.newGeometrySupportGeographicTransformationStep = newGeometrySupportGeographicTransformationStep;
|
|
11868
12276
|
exports.newGeometrySupportMeshComponent = newGeometrySupportMeshComponent;
|
|
11869
12277
|
exports.newGeometrySupportMeshGeoreferencedVertexSpace = newGeometrySupportMeshGeoreferencedVertexSpace;
|
|
11870
12278
|
exports.newGeometrySupportMeshLocalVertexSpace = newGeometrySupportMeshLocalVertexSpace;
|
|
@@ -11874,6 +12282,8 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
11874
12282
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
11875
12283
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
11876
12284
|
exports.newGraphic = newGraphic;
|
|
12285
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12286
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
11877
12287
|
exports.newGround = newGround;
|
|
11878
12288
|
exports.newIdentityCredential = newIdentityCredential;
|
|
11879
12289
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
|
@@ -11929,6 +12339,7 @@ exports.newLayersSupportBuildingSummaryStatistics = newLayersSupportBuildingSumm
|
|
|
11929
12339
|
exports.newLayersSupportCodedValueDomain = newLayersSupportCodedValueDomain;
|
|
11930
12340
|
exports.newLayersSupportControlPointsGeoreference = newLayersSupportControlPointsGeoreference;
|
|
11931
12341
|
exports.newLayersSupportCornersGeoreference = newLayersSupportCornersGeoreference;
|
|
12342
|
+
exports.newLayersSupportDateTimeFieldFormat = newLayersSupportDateTimeFieldFormat;
|
|
11932
12343
|
exports.newLayersSupportDimensionalDefinition = newLayersSupportDimensionalDefinition;
|
|
11933
12344
|
exports.newLayersSupportDisplayFilter = newLayersSupportDisplayFilter;
|
|
11934
12345
|
exports.newLayersSupportDisplayFilterInfo = newLayersSupportDisplayFilterInfo;
|
|
@@ -11945,6 +12356,7 @@ exports.newLayersSupportFeatureReductionSelection = newLayersSupportFeatureReduc
|
|
|
11945
12356
|
exports.newLayersSupportFeatureTemplate = newLayersSupportFeatureTemplate;
|
|
11946
12357
|
exports.newLayersSupportFeatureType = newLayersSupportFeatureType;
|
|
11947
12358
|
exports.newLayersSupportField = newLayersSupportField;
|
|
12359
|
+
exports.newLayersSupportFieldConfiguration = newLayersSupportFieldConfiguration;
|
|
11948
12360
|
exports.newLayersSupportFieldsIndex = newLayersSupportFieldsIndex;
|
|
11949
12361
|
exports.newLayersSupportGeometryFieldsInfo = newLayersSupportGeometryFieldsInfo;
|
|
11950
12362
|
exports.newLayersSupportImageElement = newLayersSupportImageElement;
|
|
@@ -11958,10 +12370,12 @@ exports.newLayersSupportLocalMediaElementSource = newLayersSupportLocalMediaElem
|
|
|
11958
12370
|
exports.newLayersSupportMapImage = newLayersSupportMapImage;
|
|
11959
12371
|
exports.newLayersSupportMosaicRule = newLayersSupportMosaicRule;
|
|
11960
12372
|
exports.newLayersSupportMultidimensionalSubset = newLayersSupportMultidimensionalSubset;
|
|
12373
|
+
exports.newLayersSupportNumberFieldFormat = newLayersSupportNumberFieldFormat;
|
|
11961
12374
|
exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
11962
12375
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11963
12376
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11964
12377
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12378
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11965
12379
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11966
12380
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11967
12381
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12102,10 +12516,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12102
12516
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12103
12517
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12104
12518
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12519
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12105
12520
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12521
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12106
12522
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12107
12523
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12524
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12525
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12108
12526
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12527
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12109
12528
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12110
12529
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12111
12530
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12117,6 +12536,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12117
12536
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12118
12537
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12119
12538
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12539
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12540
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12541
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12120
12542
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12121
12543
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12122
12544
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12216,6 +12638,7 @@ exports.newRestSupportImageVolume = newRestSupportImageVolume;
|
|
|
12216
12638
|
exports.newRestSupportImageVolumeParameters = newRestSupportImageVolumeParameters;
|
|
12217
12639
|
exports.newRestSupportImageVolumeResult = newRestSupportImageVolumeResult;
|
|
12218
12640
|
exports.newRestSupportJobInfo = newRestSupportJobInfo;
|
|
12641
|
+
exports.newRestSupportLastMileDeliveryParameters = newRestSupportLastMileDeliveryParameters;
|
|
12219
12642
|
exports.newRestSupportLegendLayer = newRestSupportLegendLayer;
|
|
12220
12643
|
exports.newRestSupportLengthsParameters = newRestSupportLengthsParameters;
|
|
12221
12644
|
exports.newRestSupportLinearUnit = newRestSupportLinearUnit;
|
|
@@ -12307,23 +12730,26 @@ exports.newTablesElementsAttributeTableElement = newTablesElementsAttributeTable
|
|
|
12307
12730
|
exports.newTablesElementsAttributeTableFieldElement = newTablesElementsAttributeTableFieldElement;
|
|
12308
12731
|
exports.newTablesElementsAttributeTableGroupElement = newTablesElementsAttributeTableGroupElement;
|
|
12309
12732
|
exports.newTablesElementsAttributeTableRelationshipElement = newTablesElementsAttributeTableRelationshipElement;
|
|
12310
|
-
exports.newTimeExtent = newTimeExtent;
|
|
12311
|
-
exports.newTimeInterval = newTimeInterval;
|
|
12312
12733
|
exports.newTimeTimeExtent = newTimeTimeExtent;
|
|
12313
12734
|
exports.newTimeTimeInterval = newTimeTimeInterval;
|
|
12314
12735
|
exports.newVersionManagementVersionManagementService = newVersionManagementVersionManagementService;
|
|
12315
12736
|
exports.newVersionManagementVersioningState = newVersionManagementVersioningState;
|
|
12316
12737
|
exports.newViewpoint = newViewpoint;
|
|
12738
|
+
exports.newViews2dAnalysisElevationProfileAnalysisView2D = newViews2dAnalysisElevationProfileAnalysisView2D;
|
|
12317
12739
|
exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
12318
12740
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
12319
12741
|
exports.newViews2dViewState = newViews2dViewState;
|
|
12320
12742
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12321
12743
|
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12322
12744
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12745
|
+
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12323
12746
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12324
12747
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12325
12748
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12326
12749
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12750
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12751
|
+
exports.newViews3dAnalysisVolumeMeasurementVolumeMeasurementError = newViews3dAnalysisVolumeMeasurementVolumeMeasurementError;
|
|
12752
|
+
exports.newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult = newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult;
|
|
12327
12753
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12328
12754
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12329
12755
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12332,6 +12758,7 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12332
12758
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12333
12759
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12334
12760
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12761
|
+
exports.newViewsAnalysisElevationProfileElevationProfileResult = newViewsAnalysisElevationProfileElevationProfileResult;
|
|
12335
12762
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12336
12763
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12337
12764
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12352,21 +12779,14 @@ exports.newViewsInteractiveSnappingSnappingOptions = newViewsInteractiveSnapping
|
|
|
12352
12779
|
exports.newViewsInteractiveTooltip = newViewsInteractiveTooltip;
|
|
12353
12780
|
exports.newViewsLayersBuildingComponentSublayerView = newViewsLayersBuildingComponentSublayerView;
|
|
12354
12781
|
exports.newViewsLayersBuildingSceneLayerView = newViewsLayersBuildingSceneLayerView;
|
|
12355
|
-
exports.newViewsLayersCatalogDynamicGroupLayerView = newViewsLayersCatalogDynamicGroupLayerView;
|
|
12356
|
-
exports.newViewsLayersCatalogFootprintLayerView = newViewsLayersCatalogFootprintLayerView;
|
|
12357
|
-
exports.newViewsLayersCatalogLayerView = newViewsLayersCatalogLayerView;
|
|
12358
12782
|
exports.newViewsLayersDimensionLayerView = newViewsLayersDimensionLayerView;
|
|
12359
|
-
exports.newViewsLayersFeatureLayerView = newViewsLayersFeatureLayerView;
|
|
12360
12783
|
exports.newViewsLayersGroupLayerView = newViewsLayersGroupLayerView;
|
|
12361
12784
|
exports.newViewsLayersImageryLayerView = newViewsLayersImageryLayerView;
|
|
12362
12785
|
exports.newViewsLayersImageryTileLayerView = newViewsLayersImageryTileLayerView;
|
|
12363
12786
|
exports.newViewsLayersLayerView = newViewsLayersLayerView;
|
|
12364
12787
|
exports.newViewsLayersLineOfSightLayerView = newViewsLayersLineOfSightLayerView;
|
|
12365
12788
|
exports.newViewsLayersMediaLayerView = newViewsLayersMediaLayerView;
|
|
12366
|
-
exports.newViewsLayersOGCFeatureLayerView = newViewsLayersOGCFeatureLayerView;
|
|
12367
|
-
exports.newViewsLayersPointCloudLayerView = newViewsLayersPointCloudLayerView;
|
|
12368
12789
|
exports.newViewsLayersSceneLayerView = newViewsLayersSceneLayerView;
|
|
12369
|
-
exports.newViewsLayersStreamLayerView = newViewsLayersStreamLayerView;
|
|
12370
12790
|
exports.newViewsLayersViewshedLayerView = newViewsLayersViewshedLayerView;
|
|
12371
12791
|
exports.newViewsLinkChartView = newViewsLinkChartView;
|
|
12372
12792
|
exports.newViewsMagnifier = newViewsMagnifier;
|
|
@@ -12449,6 +12869,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12449
12869
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12450
12870
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12451
12871
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12872
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12873
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12874
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12875
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12452
12876
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12453
12877
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12454
12878
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|
|
@@ -12478,7 +12902,9 @@ exports.newWidgetsEditorCreateFeaturesWorkflow = newWidgetsEditorCreateFeaturesW
|
|
|
12478
12902
|
exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeaturesWorkflowData;
|
|
12479
12903
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12480
12904
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
12905
|
+
exports.newWidgetsEditorSplitFeatureWorkflow = newWidgetsEditorSplitFeatureWorkflow;
|
|
12481
12906
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
12907
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflow = newWidgetsEditorUpdateFeaturesWorkflow;
|
|
12482
12908
|
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12483
12909
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12484
12910
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|
|
@@ -12508,9 +12934,6 @@ exports.newWidgetsFeatureTableFeatureTableViewModel = newWidgetsFeatureTableFeat
|
|
|
12508
12934
|
exports.newWidgetsFeatureTableFieldColumn = newWidgetsFeatureTableFieldColumn;
|
|
12509
12935
|
exports.newWidgetsFeatureTableGridColumn = newWidgetsFeatureTableGridColumn;
|
|
12510
12936
|
exports.newWidgetsFeatureTableGridGroupColumn = newWidgetsFeatureTableGridGroupColumn;
|
|
12511
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenu = newWidgetsFeatureTableGridSupportButtonMenu;
|
|
12512
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenuItem = newWidgetsFeatureTableGridSupportButtonMenuItem;
|
|
12513
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenuViewModel = newWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
12514
12937
|
exports.newWidgetsFeatureTableRelationshipColumn = newWidgetsFeatureTableRelationshipColumn;
|
|
12515
12938
|
exports.newWidgetsFeatureTableSupportAttachmentsColumnTemplate = newWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
12516
12939
|
exports.newWidgetsFeatureTableSupportAttachmentsViewOptions = newWidgetsFeatureTableSupportAttachmentsViewOptions;
|