@arcgis/core-adapter 4.34.0-next.5 → 4.34.0-next.51
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/dist/index.cjs +516 -8
- package/dist/index.d.cts +82 -5
- package/dist/index.d.ts +82 -5
- package/dist/index.js +516 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -30,7 +30,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
|
|
|
30
30
|
if (isAMD) {
|
|
31
31
|
return await window.$arcgis.import(modulePath);
|
|
32
32
|
}
|
|
33
|
-
const module2 = deferredImport();
|
|
33
|
+
const module2 = await deferredImport();
|
|
34
34
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
35
35
|
}
|
|
36
36
|
async function importIdentityIdentityManager() {
|
|
@@ -227,6 +227,28 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
227
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
228
|
return new ModConstructor(properties);
|
|
229
229
|
}
|
|
230
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
231
|
+
if (isAMD) {
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
233
|
+
}
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
235
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
|
+
}
|
|
237
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
239
|
+
return new ModConstructor(properties);
|
|
240
|
+
}
|
|
241
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
242
|
+
if (isAMD) {
|
|
243
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
244
|
+
}
|
|
245
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
246
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
247
|
+
}
|
|
248
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
249
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
250
|
+
return new ModConstructor(properties);
|
|
251
|
+
}
|
|
230
252
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
253
|
if (isAMD) {
|
|
232
254
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -293,6 +315,39 @@ async function newCoreWorkersConnection() {
|
|
|
293
315
|
const ModConstructor = await importCoreWorkersConnection();
|
|
294
316
|
return new ModConstructor();
|
|
295
317
|
}
|
|
318
|
+
async function importEffectsFocusAreas() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/effects/FocusAreas.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newEffectsFocusAreas(properties) {
|
|
326
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
329
|
+
async function importEffectsFocusArea() {
|
|
330
|
+
if (isAMD) {
|
|
331
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
332
|
+
}
|
|
333
|
+
const module2 = await import("@arcgis/core/effects/FocusArea.js");
|
|
334
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
|
+
}
|
|
336
|
+
async function newEffectsFocusArea(properties) {
|
|
337
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
338
|
+
return new ModConstructor(properties);
|
|
339
|
+
}
|
|
340
|
+
async function importEffectsFocusAreaOutline() {
|
|
341
|
+
if (isAMD) {
|
|
342
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
343
|
+
}
|
|
344
|
+
const module2 = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
345
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
346
|
+
}
|
|
347
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
348
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
349
|
+
return new ModConstructor(properties);
|
|
350
|
+
}
|
|
296
351
|
async function importFormElementsAttachmentElement() {
|
|
297
352
|
if (isAMD) {
|
|
298
353
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -821,6 +876,171 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
821
876
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
822
877
|
return new ModConstructor(properties);
|
|
823
878
|
}
|
|
879
|
+
async function importGraphicGraphicOrigin() {
|
|
880
|
+
if (isAMD) {
|
|
881
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
882
|
+
}
|
|
883
|
+
const module2 = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
884
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
885
|
+
}
|
|
886
|
+
async function newGraphicGraphicOrigin() {
|
|
887
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
888
|
+
return new ModConstructor();
|
|
889
|
+
}
|
|
890
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
891
|
+
if (isAMD) {
|
|
892
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
893
|
+
}
|
|
894
|
+
const module2 = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
895
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
896
|
+
}
|
|
897
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
898
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
899
|
+
return new ModConstructor(sublayer);
|
|
900
|
+
}
|
|
901
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
902
|
+
if (isAMD) {
|
|
903
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
904
|
+
}
|
|
905
|
+
const module2 = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
906
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
907
|
+
}
|
|
908
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
909
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
910
|
+
return new ModConstructor(layer);
|
|
911
|
+
}
|
|
912
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
913
|
+
if (isAMD) {
|
|
914
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
915
|
+
}
|
|
916
|
+
const module2 = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
917
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
918
|
+
}
|
|
919
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
920
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
921
|
+
return new ModConstructor(layer);
|
|
922
|
+
}
|
|
923
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
924
|
+
if (isAMD) {
|
|
925
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
926
|
+
}
|
|
927
|
+
const module2 = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
928
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
929
|
+
}
|
|
930
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
931
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
932
|
+
return new ModConstructor(layer);
|
|
933
|
+
}
|
|
934
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
935
|
+
if (isAMD) {
|
|
936
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
937
|
+
}
|
|
938
|
+
const module2 = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
939
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
940
|
+
}
|
|
941
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
942
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
943
|
+
return new ModConstructor(layer);
|
|
944
|
+
}
|
|
945
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
946
|
+
if (isAMD) {
|
|
947
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
948
|
+
}
|
|
949
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
950
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
951
|
+
}
|
|
952
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
953
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
954
|
+
return new ModConstructor(layer);
|
|
955
|
+
}
|
|
956
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
957
|
+
if (isAMD) {
|
|
958
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
959
|
+
}
|
|
960
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
961
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
962
|
+
}
|
|
963
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
964
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
965
|
+
return new ModConstructor(layer);
|
|
966
|
+
}
|
|
967
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
968
|
+
if (isAMD) {
|
|
969
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
970
|
+
}
|
|
971
|
+
const module2 = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
972
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
973
|
+
}
|
|
974
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
975
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
976
|
+
return new ModConstructor(layer);
|
|
977
|
+
}
|
|
978
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
979
|
+
if (isAMD) {
|
|
980
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
981
|
+
}
|
|
982
|
+
const module2 = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
983
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
984
|
+
}
|
|
985
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
986
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
987
|
+
return new ModConstructor(layer);
|
|
988
|
+
}
|
|
989
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
990
|
+
if (isAMD) {
|
|
991
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
992
|
+
}
|
|
993
|
+
const module2 = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
994
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
995
|
+
}
|
|
996
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
997
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
998
|
+
return new ModConstructor(layer);
|
|
999
|
+
}
|
|
1000
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1008
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(layer);
|
|
1010
|
+
}
|
|
1011
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1012
|
+
if (isAMD) {
|
|
1013
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1014
|
+
}
|
|
1015
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1016
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1017
|
+
}
|
|
1018
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1019
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1020
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1021
|
+
}
|
|
1022
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1023
|
+
if (isAMD) {
|
|
1024
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1025
|
+
}
|
|
1026
|
+
const module2 = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1027
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1028
|
+
}
|
|
1029
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1030
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1031
|
+
return new ModConstructor(layer);
|
|
1032
|
+
}
|
|
1033
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1034
|
+
if (isAMD) {
|
|
1035
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1036
|
+
}
|
|
1037
|
+
const module2 = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1038
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1039
|
+
}
|
|
1040
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1041
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1042
|
+
return new ModConstructor(layer);
|
|
1043
|
+
}
|
|
824
1044
|
async function importAttributeBinsGraphic() {
|
|
825
1045
|
if (isAMD) {
|
|
826
1046
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1811,6 +2031,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1811
2031
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1812
2032
|
return new ModConstructor(properties);
|
|
1813
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
|
+
}
|
|
1814
2045
|
async function importLayersSupportPublishingInfo() {
|
|
1815
2046
|
if (isAMD) {
|
|
1816
2047
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3362,6 +3593,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3362
3593
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3363
3594
|
return new ModConstructor(properties);
|
|
3364
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
|
+
}
|
|
3365
3618
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3366
3619
|
if (isAMD) {
|
|
3367
3620
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3384,6 +3637,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3384
3637
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3385
3638
|
return new ModConstructor(properties);
|
|
3386
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
|
+
}
|
|
3387
3662
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3388
3663
|
if (isAMD) {
|
|
3389
3664
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3395,6 +3670,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3395
3670
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3396
3671
|
return new ModConstructor(properties);
|
|
3397
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
|
+
}
|
|
3398
3684
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3399
3685
|
if (isAMD) {
|
|
3400
3686
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3516,6 +3802,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3516
3802
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3517
3803
|
return new ModConstructor(properties);
|
|
3518
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
|
+
}
|
|
3519
3838
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3520
3839
|
if (isAMD) {
|
|
3521
3840
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5419,6 +5738,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5419
5738
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5420
5739
|
return new ModConstructor(properties);
|
|
5421
5740
|
}
|
|
5741
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5742
|
+
if (isAMD) {
|
|
5743
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5744
|
+
}
|
|
5745
|
+
const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5746
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5747
|
+
}
|
|
5748
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5749
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5750
|
+
return new ModConstructor(properties);
|
|
5751
|
+
}
|
|
5752
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5753
|
+
if (isAMD) {
|
|
5754
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5755
|
+
}
|
|
5756
|
+
const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5757
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5758
|
+
}
|
|
5759
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5760
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5761
|
+
return new ModConstructor(properties);
|
|
5762
|
+
}
|
|
5422
5763
|
async function importSymbolsSupportStyleOrigin() {
|
|
5423
5764
|
if (isAMD) {
|
|
5424
5765
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5771,6 +6112,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5771
6112
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5772
6113
|
return new ModConstructor(properties);
|
|
5773
6114
|
}
|
|
6115
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6116
|
+
if (isAMD) {
|
|
6117
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6118
|
+
}
|
|
6119
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6120
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6121
|
+
}
|
|
6122
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6123
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6124
|
+
return new ModConstructor(properties);
|
|
6125
|
+
}
|
|
5774
6126
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5775
6127
|
if (isAMD) {
|
|
5776
6128
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -7146,6 +7498,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7146
7498
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7147
7499
|
return new ModConstructor(properties);
|
|
7148
7500
|
}
|
|
7501
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7502
|
+
if (isAMD) {
|
|
7503
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7504
|
+
}
|
|
7505
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7506
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7507
|
+
}
|
|
7508
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7509
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7510
|
+
return new ModConstructor(properties);
|
|
7511
|
+
}
|
|
7512
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7513
|
+
if (isAMD) {
|
|
7514
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7515
|
+
}
|
|
7516
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7517
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7518
|
+
}
|
|
7519
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7520
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7521
|
+
return new ModConstructor(properties);
|
|
7522
|
+
}
|
|
7523
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7524
|
+
if (isAMD) {
|
|
7525
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7526
|
+
}
|
|
7527
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7528
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7529
|
+
}
|
|
7530
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7531
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7532
|
+
return new ModConstructor(properties);
|
|
7533
|
+
}
|
|
7534
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7535
|
+
if (isAMD) {
|
|
7536
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7537
|
+
}
|
|
7538
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7539
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7540
|
+
}
|
|
7541
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7542
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7543
|
+
return new ModConstructor(properties);
|
|
7544
|
+
}
|
|
7149
7545
|
async function importWidgetsBookmarks() {
|
|
7150
7546
|
if (isAMD) {
|
|
7151
7547
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9753,6 +10149,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9753
10149
|
const module2 = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9754
10150
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9755
10151
|
}
|
|
10152
|
+
async function importGraphicGraphicOrigins() {
|
|
10153
|
+
if (isAMD) {
|
|
10154
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10155
|
+
}
|
|
10156
|
+
const module2 = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10157
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10158
|
+
}
|
|
9756
10159
|
async function importIntl() {
|
|
9757
10160
|
if (isAMD) {
|
|
9758
10161
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10530,13 +10933,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10530
10933
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10531
10934
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10532
10935
|
}
|
|
10533
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10534
|
-
if (isAMD) {
|
|
10535
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10536
|
-
}
|
|
10537
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10538
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10539
|
-
}
|
|
10540
10936
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10541
10937
|
if (isAMD) {
|
|
10542
10938
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10558,6 +10954,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10558
10954
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10559
10955
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10560
10956
|
}
|
|
10957
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10958
|
+
if (isAMD) {
|
|
10959
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10960
|
+
}
|
|
10961
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10962
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10963
|
+
}
|
|
10561
10964
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10562
10965
|
if (isAMD) {
|
|
10563
10966
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10572,6 +10975,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10572
10975
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10573
10976
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10574
10977
|
}
|
|
10978
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10979
|
+
if (isAMD) {
|
|
10980
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10981
|
+
}
|
|
10982
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10983
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10984
|
+
}
|
|
10575
10985
|
async function importApplicationsComponentsFontUtils() {
|
|
10576
10986
|
if (isAMD) {
|
|
10577
10987
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10593,6 +11003,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10593
11003
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10594
11004
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10595
11005
|
}
|
|
11006
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11007
|
+
if (isAMD) {
|
|
11008
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11009
|
+
}
|
|
11010
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11011
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11012
|
+
}
|
|
10596
11013
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10597
11014
|
if (isAMD) {
|
|
10598
11015
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10621,6 +11038,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10621
11038
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10622
11039
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10623
11040
|
}
|
|
11041
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11042
|
+
if (isAMD) {
|
|
11043
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11044
|
+
}
|
|
11045
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11046
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11047
|
+
}
|
|
10624
11048
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10625
11049
|
if (isAMD) {
|
|
10626
11050
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10635,6 +11059,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10635
11059
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10636
11060
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10637
11061
|
}
|
|
11062
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11063
|
+
if (isAMD) {
|
|
11064
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11065
|
+
}
|
|
11066
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11067
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11068
|
+
}
|
|
10638
11069
|
async function importApplicationsComponentsStyleUtils() {
|
|
10639
11070
|
if (isAMD) {
|
|
10640
11071
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10705,18 +11136,25 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10705
11136
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10706
11137
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10707
11138
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
11139
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
11140
|
+
exports.importAnalysisVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementCutFillOptions;
|
|
10708
11141
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
11142
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10709
11143
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10710
11144
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
11145
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10711
11146
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
10712
11147
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10713
11148
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
11149
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10714
11150
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10715
11151
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10716
11152
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10717
11153
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
11154
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10718
11155
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10719
11156
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
11157
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10720
11158
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10721
11159
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10722
11160
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10748,6 +11186,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10748
11186
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10749
11187
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10750
11188
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
11189
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
11190
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
11191
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10751
11192
|
exports.importFormElements = importFormElements;
|
|
10752
11193
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10753
11194
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10861,6 +11302,22 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
10861
11302
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
10862
11303
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
10863
11304
|
exports.importGraphic = importGraphic;
|
|
11305
|
+
exports.importGraphicBuildingGraphicOrigin = importGraphicBuildingGraphicOrigin;
|
|
11306
|
+
exports.importGraphicCSVGraphicOrigin = importGraphicCSVGraphicOrigin;
|
|
11307
|
+
exports.importGraphicCatalogGraphicOrigin = importGraphicCatalogGraphicOrigin;
|
|
11308
|
+
exports.importGraphicFeatureGraphicOrigin = importGraphicFeatureGraphicOrigin;
|
|
11309
|
+
exports.importGraphicGeoJSONGraphicOrigin = importGraphicGeoJSONGraphicOrigin;
|
|
11310
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11311
|
+
exports.importGraphicGraphicOrigins = importGraphicGraphicOrigins;
|
|
11312
|
+
exports.importGraphicIntegratedMesh3DTilesGraphicOrigin = importGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
11313
|
+
exports.importGraphicIntegratedMeshGraphicOrigin = importGraphicIntegratedMeshGraphicOrigin;
|
|
11314
|
+
exports.importGraphicOGCFeatureGraphicOrigin = importGraphicOGCFeatureGraphicOrigin;
|
|
11315
|
+
exports.importGraphicPointCloudGraphicOrigin = importGraphicPointCloudGraphicOrigin;
|
|
11316
|
+
exports.importGraphicSceneGraphicOrigin = importGraphicSceneGraphicOrigin;
|
|
11317
|
+
exports.importGraphicStreamGraphicOrigin = importGraphicStreamGraphicOrigin;
|
|
11318
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
11319
|
+
exports.importGraphicVoxelGraphicOrigin = importGraphicVoxelGraphicOrigin;
|
|
11320
|
+
exports.importGraphicWFSGraphicOrigin = importGraphicWFSGraphicOrigin;
|
|
10864
11321
|
exports.importGround = importGround;
|
|
10865
11322
|
exports.importIdentityCredential = importIdentityCredential;
|
|
10866
11323
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -10961,6 +11418,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10961
11418
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10962
11419
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10963
11420
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11421
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10964
11422
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10965
11423
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10966
11424
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11121,10 +11579,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11121
11579
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11122
11580
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11123
11581
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11582
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11124
11583
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11584
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11125
11585
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11126
11586
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11587
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11588
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11127
11589
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11590
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11128
11591
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11129
11592
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11130
11593
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11136,6 +11599,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11136
11599
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11137
11600
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11138
11601
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11602
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11603
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11604
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11139
11605
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11140
11606
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11141
11607
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11377,6 +11843,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
|
|
|
11377
11843
|
exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
|
|
11378
11844
|
exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
|
|
11379
11845
|
exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
|
|
11846
|
+
exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
|
|
11847
|
+
exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
|
|
11380
11848
|
exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
|
|
11381
11849
|
exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
|
|
11382
11850
|
exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
|
|
@@ -11414,6 +11882,7 @@ exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLi
|
|
|
11414
11882
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11415
11883
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11416
11884
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11885
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11417
11886
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11418
11887
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11419
11888
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11547,6 +12016,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11547
12016
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11548
12017
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11549
12018
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12019
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12020
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
12021
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11550
12022
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11551
12023
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11552
12024
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11752,6 +12224,8 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11752
12224
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11753
12225
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11754
12226
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12227
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12228
|
+
exports.newAnalysisVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementCutFillOptions;
|
|
11755
12229
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11756
12230
|
exports.newBasemap = newBasemap;
|
|
11757
12231
|
exports.newCamera = newCamera;
|
|
@@ -11762,6 +12236,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11762
12236
|
exports.newCoreError = newCoreError;
|
|
11763
12237
|
exports.newCoreHandles = newCoreHandles;
|
|
11764
12238
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12239
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12240
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12241
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11765
12242
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11766
12243
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11767
12244
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11811,6 +12288,21 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
11811
12288
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
11812
12289
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
11813
12290
|
exports.newGraphic = newGraphic;
|
|
12291
|
+
exports.newGraphicBuildingGraphicOrigin = newGraphicBuildingGraphicOrigin;
|
|
12292
|
+
exports.newGraphicCSVGraphicOrigin = newGraphicCSVGraphicOrigin;
|
|
12293
|
+
exports.newGraphicCatalogGraphicOrigin = newGraphicCatalogGraphicOrigin;
|
|
12294
|
+
exports.newGraphicFeatureGraphicOrigin = newGraphicFeatureGraphicOrigin;
|
|
12295
|
+
exports.newGraphicGeoJSONGraphicOrigin = newGraphicGeoJSONGraphicOrigin;
|
|
12296
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12297
|
+
exports.newGraphicIntegratedMesh3DTilesGraphicOrigin = newGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
12298
|
+
exports.newGraphicIntegratedMeshGraphicOrigin = newGraphicIntegratedMeshGraphicOrigin;
|
|
12299
|
+
exports.newGraphicOGCFeatureGraphicOrigin = newGraphicOGCFeatureGraphicOrigin;
|
|
12300
|
+
exports.newGraphicPointCloudGraphicOrigin = newGraphicPointCloudGraphicOrigin;
|
|
12301
|
+
exports.newGraphicSceneGraphicOrigin = newGraphicSceneGraphicOrigin;
|
|
12302
|
+
exports.newGraphicStreamGraphicOrigin = newGraphicStreamGraphicOrigin;
|
|
12303
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
12304
|
+
exports.newGraphicVoxelGraphicOrigin = newGraphicVoxelGraphicOrigin;
|
|
12305
|
+
exports.newGraphicWFSGraphicOrigin = newGraphicWFSGraphicOrigin;
|
|
11814
12306
|
exports.newGround = newGround;
|
|
11815
12307
|
exports.newIdentityCredential = newIdentityCredential;
|
|
11816
12308
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
|
@@ -11899,6 +12391,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11899
12391
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11900
12392
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11901
12393
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12394
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11902
12395
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11903
12396
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11904
12397
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12039,10 +12532,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12039
12532
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12040
12533
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12041
12534
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12535
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12042
12536
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12537
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12043
12538
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12044
12539
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12540
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12541
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12045
12542
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12543
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12046
12544
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12047
12545
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12048
12546
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12054,6 +12552,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12054
12552
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12055
12553
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12056
12554
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12555
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12556
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12557
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12057
12558
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12058
12559
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12059
12560
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12227,6 +12728,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
|
|
|
12227
12728
|
exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
|
|
12228
12729
|
exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
|
|
12229
12730
|
exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
|
|
12731
|
+
exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
|
|
12732
|
+
exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
|
|
12230
12733
|
exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
|
|
12231
12734
|
exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
|
|
12232
12735
|
exports.newSymbolsSymbol = newSymbolsSymbol;
|
|
@@ -12259,6 +12762,7 @@ exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSi
|
|
|
12259
12762
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12260
12763
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12261
12764
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12765
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12262
12766
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12263
12767
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12264
12768
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12384,6 +12888,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12384
12888
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12385
12889
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12386
12890
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12891
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12892
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12893
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12894
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12387
12895
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12388
12896
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12389
12897
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|