@arcgis/core-adapter 5.0.0-next.4 → 5.0.0-next.41
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 +526 -89
- package/dist/index.d.cts +90 -20
- package/dist/index.d.ts +90 -20
- package/dist/index.js +526 -89
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisDistanceMeasurementAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/DistanceMeasurementAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/DistanceMeasurementAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisDistanceMeasurementAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisDistanceMeasurementAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisElevationProfileAnalysis() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
@@ -170,6 +181,17 @@ async function newAnalysisLineOfSightAnalysisTarget(properties) {
|
|
|
170
181
|
const ModConstructor = await importAnalysisLineOfSightAnalysisTarget();
|
|
171
182
|
return new ModConstructor(properties);
|
|
172
183
|
}
|
|
184
|
+
async function importAnalysisShadowCastAnalysis() {
|
|
185
|
+
if (isAMD) {
|
|
186
|
+
return await window.$arcgis.import("esri/analysis/ShadowCastAnalysis");
|
|
187
|
+
}
|
|
188
|
+
const module = await import("@arcgis/core/analysis/ShadowCastAnalysis.js");
|
|
189
|
+
return isDefaultModule(module) ? module.default : module;
|
|
190
|
+
}
|
|
191
|
+
async function newAnalysisShadowCastAnalysis(properties) {
|
|
192
|
+
const ModConstructor = await importAnalysisShadowCastAnalysis();
|
|
193
|
+
return new ModConstructor(properties);
|
|
194
|
+
}
|
|
173
195
|
async function importAnalysisSliceAnalysis() {
|
|
174
196
|
if (isAMD) {
|
|
175
197
|
return await window.$arcgis.import("esri/analysis/SliceAnalysis");
|
|
@@ -324,6 +346,39 @@ async function newAnalysisElevationProfileElevationProfileViewOptions(properties
|
|
|
324
346
|
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
325
347
|
return new ModConstructor(properties);
|
|
326
348
|
}
|
|
349
|
+
async function importAnalysisShadowCastDiscreteOptions() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DiscreteOptions");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/DiscreteOptions.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisShadowCastDiscreteOptions(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisShadowCastDiscreteOptions();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
360
|
+
async function importAnalysisShadowCastDurationOptions() {
|
|
361
|
+
if (isAMD) {
|
|
362
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DurationOptions");
|
|
363
|
+
}
|
|
364
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/DurationOptions.js");
|
|
365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
366
|
+
}
|
|
367
|
+
async function newAnalysisShadowCastDurationOptions(properties) {
|
|
368
|
+
const ModConstructor = await importAnalysisShadowCastDurationOptions();
|
|
369
|
+
return new ModConstructor(properties);
|
|
370
|
+
}
|
|
371
|
+
async function importAnalysisShadowCastThresholdOptions() {
|
|
372
|
+
if (isAMD) {
|
|
373
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/ThresholdOptions");
|
|
374
|
+
}
|
|
375
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/ThresholdOptions.js");
|
|
376
|
+
return isDefaultModule(module) ? module.default : module;
|
|
377
|
+
}
|
|
378
|
+
async function newAnalysisShadowCastThresholdOptions(properties) {
|
|
379
|
+
const ModConstructor = await importAnalysisShadowCastThresholdOptions();
|
|
380
|
+
return new ModConstructor(properties);
|
|
381
|
+
}
|
|
327
382
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
328
383
|
if (isAMD) {
|
|
329
384
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -423,6 +478,28 @@ async function newCoreWorkersConnection() {
|
|
|
423
478
|
const ModConstructor = await importCoreWorkersConnection();
|
|
424
479
|
return new ModConstructor();
|
|
425
480
|
}
|
|
481
|
+
async function importEditingSharedTemplatesSharedTemplate() {
|
|
482
|
+
if (isAMD) {
|
|
483
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
484
|
+
}
|
|
485
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
486
|
+
return isDefaultModule(module) ? module.default : module;
|
|
487
|
+
}
|
|
488
|
+
async function newEditingSharedTemplatesSharedTemplate() {
|
|
489
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplate();
|
|
490
|
+
return new ModConstructor();
|
|
491
|
+
}
|
|
492
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
493
|
+
if (isAMD) {
|
|
494
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
495
|
+
}
|
|
496
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
497
|
+
return isDefaultModule(module) ? module.default : module;
|
|
498
|
+
}
|
|
499
|
+
async function newEditingSharedTemplatesSharedTemplateMetadata() {
|
|
500
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplateMetadata();
|
|
501
|
+
return new ModConstructor();
|
|
502
|
+
}
|
|
426
503
|
async function importEffectsFocusAreas() {
|
|
427
504
|
if (isAMD) {
|
|
428
505
|
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
@@ -1816,9 +1893,9 @@ async function importLayersSupportFieldsIndex() {
|
|
|
1816
1893
|
const module = await import("@arcgis/core/layers/support/FieldsIndex.js");
|
|
1817
1894
|
return isDefaultModule(module) ? module.default : module;
|
|
1818
1895
|
}
|
|
1819
|
-
async function newLayersSupportFieldsIndex(
|
|
1896
|
+
async function newLayersSupportFieldsIndex(fields) {
|
|
1820
1897
|
const ModConstructor = await importLayersSupportFieldsIndex();
|
|
1821
|
-
return new ModConstructor(
|
|
1898
|
+
return new ModConstructor(fields);
|
|
1822
1899
|
}
|
|
1823
1900
|
async function importLayersSupportGeometryFieldsInfo() {
|
|
1824
1901
|
if (isAMD) {
|
|
@@ -2161,6 +2238,17 @@ async function newLayersSupportSiteLayerInfo(properties) {
|
|
|
2161
2238
|
const ModConstructor = await importLayersSupportSiteLayerInfo();
|
|
2162
2239
|
return new ModConstructor(properties);
|
|
2163
2240
|
}
|
|
2241
|
+
async function importLayersSupportStreamConnection() {
|
|
2242
|
+
if (isAMD) {
|
|
2243
|
+
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
2244
|
+
}
|
|
2245
|
+
const module = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
2246
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2247
|
+
}
|
|
2248
|
+
async function newLayersSupportStreamConnection() {
|
|
2249
|
+
const ModConstructor = await importLayersSupportStreamConnection();
|
|
2250
|
+
return new ModConstructor();
|
|
2251
|
+
}
|
|
2164
2252
|
async function importLayersSupportSublayer() {
|
|
2165
2253
|
if (isAMD) {
|
|
2166
2254
|
return await window.$arcgis.import("esri/layers/support/Sublayer");
|
|
@@ -2337,6 +2425,17 @@ async function newLayersVoxelVoxelTransferFunctionStyle(properties) {
|
|
|
2337
2425
|
const ModConstructor = await importLayersVoxelVoxelTransferFunctionStyle();
|
|
2338
2426
|
return new ModConstructor(properties);
|
|
2339
2427
|
}
|
|
2428
|
+
async function importLayersVoxelVoxelVariable() {
|
|
2429
|
+
if (isAMD) {
|
|
2430
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
2431
|
+
}
|
|
2432
|
+
const module = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
2433
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2434
|
+
}
|
|
2435
|
+
async function newLayersVoxelVoxelVariable(properties) {
|
|
2436
|
+
const ModConstructor = await importLayersVoxelVoxelVariable();
|
|
2437
|
+
return new ModConstructor(properties);
|
|
2438
|
+
}
|
|
2340
2439
|
async function importLayersVoxelVoxelVariableStyle() {
|
|
2341
2440
|
if (isAMD) {
|
|
2342
2441
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVariableStyle");
|
|
@@ -2348,6 +2447,17 @@ async function newLayersVoxelVoxelVariableStyle(properties) {
|
|
|
2348
2447
|
const ModConstructor = await importLayersVoxelVoxelVariableStyle();
|
|
2349
2448
|
return new ModConstructor(properties);
|
|
2350
2449
|
}
|
|
2450
|
+
async function importLayersVoxelVoxelVolume() {
|
|
2451
|
+
if (isAMD) {
|
|
2452
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
2453
|
+
}
|
|
2454
|
+
const module = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
2455
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2456
|
+
}
|
|
2457
|
+
async function newLayersVoxelVoxelVolume() {
|
|
2458
|
+
const ModConstructor = await importLayersVoxelVoxelVolume();
|
|
2459
|
+
return new ModConstructor();
|
|
2460
|
+
}
|
|
2351
2461
|
async function importLayersVoxelVoxelVolumeStyle() {
|
|
2352
2462
|
if (isAMD) {
|
|
2353
2463
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVolumeStyle");
|
|
@@ -2579,6 +2689,17 @@ async function newMap(properties) {
|
|
|
2579
2689
|
const ModConstructor = await importMap();
|
|
2580
2690
|
return new ModConstructor(properties);
|
|
2581
2691
|
}
|
|
2692
|
+
async function importNetworksCircuitManager() {
|
|
2693
|
+
if (isAMD) {
|
|
2694
|
+
return await window.$arcgis.import("esri/networks/CircuitManager");
|
|
2695
|
+
}
|
|
2696
|
+
const module = await import("@arcgis/core/networks/CircuitManager.js");
|
|
2697
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2698
|
+
}
|
|
2699
|
+
async function newNetworksCircuitManager(properties) {
|
|
2700
|
+
const ModConstructor = await importNetworksCircuitManager();
|
|
2701
|
+
return new ModConstructor(properties);
|
|
2702
|
+
}
|
|
2582
2703
|
async function importNetworksNetwork() {
|
|
2583
2704
|
if (isAMD) {
|
|
2584
2705
|
return await window.$arcgis.import("esri/networks/Network");
|
|
@@ -2590,6 +2711,17 @@ async function newNetworksNetwork(properties) {
|
|
|
2590
2711
|
const ModConstructor = await importNetworksNetwork();
|
|
2591
2712
|
return new ModConstructor(properties);
|
|
2592
2713
|
}
|
|
2714
|
+
async function importNetworksUnitIdentifierManager() {
|
|
2715
|
+
if (isAMD) {
|
|
2716
|
+
return await window.$arcgis.import("esri/networks/UnitIdentifierManager");
|
|
2717
|
+
}
|
|
2718
|
+
const module = await import("@arcgis/core/networks/UnitIdentifierManager.js");
|
|
2719
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2720
|
+
}
|
|
2721
|
+
async function newNetworksUnitIdentifierManager(properties) {
|
|
2722
|
+
const ModConstructor = await importNetworksUnitIdentifierManager();
|
|
2723
|
+
return new ModConstructor(properties);
|
|
2724
|
+
}
|
|
2593
2725
|
async function importNetworksUtilityNetwork() {
|
|
2594
2726
|
if (isAMD) {
|
|
2595
2727
|
return await window.$arcgis.import("esri/networks/UtilityNetwork");
|
|
@@ -2601,6 +2733,61 @@ async function newNetworksUtilityNetwork(properties) {
|
|
|
2601
2733
|
const ModConstructor = await importNetworksUtilityNetwork();
|
|
2602
2734
|
return new ModConstructor(properties);
|
|
2603
2735
|
}
|
|
2736
|
+
async function importNetworksSupportCircuit() {
|
|
2737
|
+
if (isAMD) {
|
|
2738
|
+
return await window.$arcgis.import("esri/networks/support/Circuit");
|
|
2739
|
+
}
|
|
2740
|
+
const module = await import("@arcgis/core/networks/support/Circuit.js");
|
|
2741
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2742
|
+
}
|
|
2743
|
+
async function newNetworksSupportCircuit(properties) {
|
|
2744
|
+
const ModConstructor = await importNetworksSupportCircuit();
|
|
2745
|
+
return new ModConstructor(properties);
|
|
2746
|
+
}
|
|
2747
|
+
async function importNetworksSupportCircuitPath() {
|
|
2748
|
+
if (isAMD) {
|
|
2749
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPath");
|
|
2750
|
+
}
|
|
2751
|
+
const module = await import("@arcgis/core/networks/support/CircuitPath.js");
|
|
2752
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2753
|
+
}
|
|
2754
|
+
async function newNetworksSupportCircuitPath(properties) {
|
|
2755
|
+
const ModConstructor = await importNetworksSupportCircuitPath();
|
|
2756
|
+
return new ModConstructor(properties);
|
|
2757
|
+
}
|
|
2758
|
+
async function importNetworksSupportCircuitPathConnectivityElement() {
|
|
2759
|
+
if (isAMD) {
|
|
2760
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPathConnectivityElement");
|
|
2761
|
+
}
|
|
2762
|
+
const module = await import("@arcgis/core/networks/support/CircuitPathConnectivityElement.js");
|
|
2763
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2764
|
+
}
|
|
2765
|
+
async function newNetworksSupportCircuitPathConnectivityElement(properties) {
|
|
2766
|
+
const ModConstructor = await importNetworksSupportCircuitPathConnectivityElement();
|
|
2767
|
+
return new ModConstructor(properties);
|
|
2768
|
+
}
|
|
2769
|
+
async function importNetworksSupportCircuitSection() {
|
|
2770
|
+
if (isAMD) {
|
|
2771
|
+
return await window.$arcgis.import("esri/networks/support/CircuitSection");
|
|
2772
|
+
}
|
|
2773
|
+
const module = await import("@arcgis/core/networks/support/CircuitSection.js");
|
|
2774
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2775
|
+
}
|
|
2776
|
+
async function newNetworksSupportCircuitSection(properties) {
|
|
2777
|
+
const ModConstructor = await importNetworksSupportCircuitSection();
|
|
2778
|
+
return new ModConstructor(properties);
|
|
2779
|
+
}
|
|
2780
|
+
async function importNetworksSupportCircuitLocation() {
|
|
2781
|
+
if (isAMD) {
|
|
2782
|
+
return await window.$arcgis.import("esri/networks/support/CircuitLocation");
|
|
2783
|
+
}
|
|
2784
|
+
const module = await import("@arcgis/core/networks/support/CircuitLocation.js");
|
|
2785
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2786
|
+
}
|
|
2787
|
+
async function newNetworksSupportCircuitLocation(properties) {
|
|
2788
|
+
const ModConstructor = await importNetworksSupportCircuitLocation();
|
|
2789
|
+
return new ModConstructor(properties);
|
|
2790
|
+
}
|
|
2604
2791
|
async function importNetworksSupportNamedTraceConfiguration() {
|
|
2605
2792
|
if (isAMD) {
|
|
2606
2793
|
return await window.$arcgis.import("esri/networks/support/NamedTraceConfiguration");
|
|
@@ -2623,6 +2810,17 @@ async function newNetworksSupportNetworkSystemLayers(properties) {
|
|
|
2623
2810
|
const ModConstructor = await importNetworksSupportNetworkSystemLayers();
|
|
2624
2811
|
return new ModConstructor(properties);
|
|
2625
2812
|
}
|
|
2813
|
+
async function importNetworksSupportSubcircuit() {
|
|
2814
|
+
if (isAMD) {
|
|
2815
|
+
return await window.$arcgis.import("esri/networks/support/Subcircuit");
|
|
2816
|
+
}
|
|
2817
|
+
const module = await import("@arcgis/core/networks/support/Subcircuit.js");
|
|
2818
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2819
|
+
}
|
|
2820
|
+
async function newNetworksSupportSubcircuit(properties) {
|
|
2821
|
+
const ModConstructor = await importNetworksSupportSubcircuit();
|
|
2822
|
+
return new ModConstructor(properties);
|
|
2823
|
+
}
|
|
2626
2824
|
async function importNetworksSupportTerminal() {
|
|
2627
2825
|
if (isAMD) {
|
|
2628
2826
|
return await window.$arcgis.import("esri/networks/support/Terminal");
|
|
@@ -3514,6 +3712,17 @@ async function newRestFeatureServiceFeatureService(properties) {
|
|
|
3514
3712
|
const ModConstructor = await importRestFeatureServiceFeatureService();
|
|
3515
3713
|
return new ModConstructor(properties);
|
|
3516
3714
|
}
|
|
3715
|
+
async function importRestGeoprocessorGPOptions() {
|
|
3716
|
+
if (isAMD) {
|
|
3717
|
+
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
3718
|
+
}
|
|
3719
|
+
const module = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
3720
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3721
|
+
}
|
|
3722
|
+
async function newRestGeoprocessorGPOptions() {
|
|
3723
|
+
const ModConstructor = await importRestGeoprocessorGPOptions();
|
|
3724
|
+
return new ModConstructor();
|
|
3725
|
+
}
|
|
3517
3726
|
async function importRestKnowledgeGraphDataModel() {
|
|
3518
3727
|
if (isAMD) {
|
|
3519
3728
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/DataModel");
|
|
@@ -3965,6 +4174,39 @@ async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(pr
|
|
|
3965
4174
|
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3966
4175
|
return new ModConstructor(properties);
|
|
3967
4176
|
}
|
|
4177
|
+
async function importRestNetworksCircuitsSupportCircuitTraceResult() {
|
|
4178
|
+
if (isAMD) {
|
|
4179
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitTraceResult");
|
|
4180
|
+
}
|
|
4181
|
+
const module = await import("@arcgis/core/rest/networks/circuits/support/CircuitTraceResult.js");
|
|
4182
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4183
|
+
}
|
|
4184
|
+
async function newRestNetworksCircuitsSupportCircuitTraceResult(properties) {
|
|
4185
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitTraceResult();
|
|
4186
|
+
return new ModConstructor(properties);
|
|
4187
|
+
}
|
|
4188
|
+
async function importRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4189
|
+
if (isAMD) {
|
|
4190
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitVerifyResult");
|
|
4191
|
+
}
|
|
4192
|
+
const module = await import("@arcgis/core/rest/networks/circuits/support/CircuitVerifyResult.js");
|
|
4193
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4194
|
+
}
|
|
4195
|
+
async function newRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4196
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitVerifyResult();
|
|
4197
|
+
return new ModConstructor();
|
|
4198
|
+
}
|
|
4199
|
+
async function importRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4200
|
+
if (isAMD) {
|
|
4201
|
+
return await window.$arcgis.import("esri/rest/networks/unitIdentifiers/support/UnitQueryResult");
|
|
4202
|
+
}
|
|
4203
|
+
const module = await import("@arcgis/core/rest/networks/unitIdentifiers/support/UnitQueryResult.js");
|
|
4204
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4205
|
+
}
|
|
4206
|
+
async function newRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4207
|
+
const ModConstructor = await importRestNetworksUnitIdentifiersSupportUnitQueryResult();
|
|
4208
|
+
return new ModConstructor();
|
|
4209
|
+
}
|
|
3968
4210
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3969
4211
|
if (isAMD) {
|
|
3970
4212
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4053,6 +4295,17 @@ async function newRestNetworksSupportSynthesizeAssociationGeometriesParameters(p
|
|
|
4053
4295
|
const ModConstructor = await importRestNetworksSupportSynthesizeAssociationGeometriesParameters();
|
|
4054
4296
|
return new ModConstructor(properties);
|
|
4055
4297
|
}
|
|
4298
|
+
async function importRestNetworksSupportTelecomNetworkElement() {
|
|
4299
|
+
if (isAMD) {
|
|
4300
|
+
return await window.$arcgis.import("esri/rest/networks/support/TelecomNetworkElement");
|
|
4301
|
+
}
|
|
4302
|
+
const module = await import("@arcgis/core/rest/networks/support/TelecomNetworkElement.js");
|
|
4303
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4304
|
+
}
|
|
4305
|
+
async function newRestNetworksSupportTelecomNetworkElement(properties) {
|
|
4306
|
+
const ModConstructor = await importRestNetworksSupportTelecomNetworkElement();
|
|
4307
|
+
return new ModConstructor(properties);
|
|
4308
|
+
}
|
|
4056
4309
|
async function importRestNetworksSupportTraceLocation() {
|
|
4057
4310
|
if (isAMD) {
|
|
4058
4311
|
return await window.$arcgis.import("esri/rest/networks/support/TraceLocation");
|
|
@@ -4097,6 +4350,17 @@ async function newRestNetworksSupportValidateNetworkTopologyParameters(propertie
|
|
|
4097
4350
|
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyParameters();
|
|
4098
4351
|
return new ModConstructor(properties);
|
|
4099
4352
|
}
|
|
4353
|
+
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4354
|
+
if (isAMD) {
|
|
4355
|
+
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
4356
|
+
}
|
|
4357
|
+
const module = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
4358
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4359
|
+
}
|
|
4360
|
+
async function newRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4361
|
+
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyResult();
|
|
4362
|
+
return new ModConstructor();
|
|
4363
|
+
}
|
|
4100
4364
|
async function importRestQuerySupportAttachmentInfo() {
|
|
4101
4365
|
if (isAMD) {
|
|
4102
4366
|
return await window.$arcgis.import("esri/rest/query/support/AttachmentInfo");
|
|
@@ -4944,6 +5208,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
4944
5208
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
4945
5209
|
return new ModConstructor(properties);
|
|
4946
5210
|
}
|
|
5211
|
+
async function importRestSupportLocateSetting() {
|
|
5212
|
+
if (isAMD) {
|
|
5213
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5214
|
+
}
|
|
5215
|
+
const module = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5216
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5217
|
+
}
|
|
5218
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5219
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5220
|
+
return new ModConstructor(properties);
|
|
5221
|
+
}
|
|
5222
|
+
async function importRestSupportLocateSettingBase() {
|
|
5223
|
+
if (isAMD) {
|
|
5224
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5225
|
+
}
|
|
5226
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5227
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5228
|
+
}
|
|
5229
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5230
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5231
|
+
return new ModConstructor(properties);
|
|
5232
|
+
}
|
|
5233
|
+
async function importRestSupportLocateSettingSource() {
|
|
5234
|
+
if (isAMD) {
|
|
5235
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5236
|
+
}
|
|
5237
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5238
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5239
|
+
}
|
|
5240
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5241
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5242
|
+
return new ModConstructor(properties);
|
|
5243
|
+
}
|
|
5244
|
+
async function importRestSupportLocateSettings() {
|
|
5245
|
+
if (isAMD) {
|
|
5246
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5247
|
+
}
|
|
5248
|
+
const module = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5249
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5250
|
+
}
|
|
5251
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5252
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5253
|
+
return new ModConstructor(properties);
|
|
5254
|
+
}
|
|
5255
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5256
|
+
if (isAMD) {
|
|
5257
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5258
|
+
}
|
|
5259
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5261
|
+
}
|
|
5262
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5263
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5264
|
+
return new ModConstructor(properties);
|
|
5265
|
+
}
|
|
4947
5266
|
async function importRestSupportMapToImageParameters() {
|
|
4948
5267
|
if (isAMD) {
|
|
4949
5268
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -6000,6 +6319,28 @@ async function newViews2dViewState(properties) {
|
|
|
6000
6319
|
const ModConstructor = await importViews2dViewState();
|
|
6001
6320
|
return new ModConstructor(properties);
|
|
6002
6321
|
}
|
|
6322
|
+
async function importViews2dAnalysisAreaMeasurementAnalysisView2D() {
|
|
6323
|
+
if (isAMD) {
|
|
6324
|
+
return await window.$arcgis.import("esri/views/2d/analysis/AreaMeasurementAnalysisView2D");
|
|
6325
|
+
}
|
|
6326
|
+
const module = await import("@arcgis/core/views/2d/analysis/AreaMeasurementAnalysisView2D.js");
|
|
6327
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6328
|
+
}
|
|
6329
|
+
async function newViews2dAnalysisAreaMeasurementAnalysisView2D(properties) {
|
|
6330
|
+
const ModConstructor = await importViews2dAnalysisAreaMeasurementAnalysisView2D();
|
|
6331
|
+
return new ModConstructor(properties);
|
|
6332
|
+
}
|
|
6333
|
+
async function importViews2dAnalysisDistanceMeasurementAnalysisView2D() {
|
|
6334
|
+
if (isAMD) {
|
|
6335
|
+
return await window.$arcgis.import("esri/views/2d/analysis/DistanceMeasurementAnalysisView2D");
|
|
6336
|
+
}
|
|
6337
|
+
const module = await import("@arcgis/core/views/2d/analysis/DistanceMeasurementAnalysisView2D.js");
|
|
6338
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6339
|
+
}
|
|
6340
|
+
async function newViews2dAnalysisDistanceMeasurementAnalysisView2D(properties) {
|
|
6341
|
+
const ModConstructor = await importViews2dAnalysisDistanceMeasurementAnalysisView2D();
|
|
6342
|
+
return new ModConstructor(properties);
|
|
6343
|
+
}
|
|
6003
6344
|
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6004
6345
|
if (isAMD) {
|
|
6005
6346
|
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
@@ -6099,6 +6440,17 @@ async function newViews3dAnalysisLineOfSightAnalysisView3D(properties) {
|
|
|
6099
6440
|
const ModConstructor = await importViews3dAnalysisLineOfSightAnalysisView3D();
|
|
6100
6441
|
return new ModConstructor(properties);
|
|
6101
6442
|
}
|
|
6443
|
+
async function importViews3dAnalysisShadowCastAnalysisView3D() {
|
|
6444
|
+
if (isAMD) {
|
|
6445
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ShadowCastAnalysisView3D");
|
|
6446
|
+
}
|
|
6447
|
+
const module = await import("@arcgis/core/views/3d/analysis/ShadowCastAnalysisView3D.js");
|
|
6448
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6449
|
+
}
|
|
6450
|
+
async function newViews3dAnalysisShadowCastAnalysisView3D(properties) {
|
|
6451
|
+
const ModConstructor = await importViews3dAnalysisShadowCastAnalysisView3D();
|
|
6452
|
+
return new ModConstructor(properties);
|
|
6453
|
+
}
|
|
6102
6454
|
async function importViews3dAnalysisSliceAnalysisView3D() {
|
|
6103
6455
|
if (isAMD) {
|
|
6104
6456
|
return await window.$arcgis.import("esri/views/3d/analysis/SliceAnalysisView3D");
|
|
@@ -6231,6 +6583,28 @@ async function newViews3dEnvironmentVirtualLighting(properties) {
|
|
|
6231
6583
|
const ModConstructor = await importViews3dEnvironmentVirtualLighting();
|
|
6232
6584
|
return new ModConstructor(properties);
|
|
6233
6585
|
}
|
|
6586
|
+
async function importViews3dWebglManagedFBO() {
|
|
6587
|
+
if (isAMD) {
|
|
6588
|
+
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
6589
|
+
}
|
|
6590
|
+
const module = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
6591
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6592
|
+
}
|
|
6593
|
+
async function newViews3dWebglManagedFBO() {
|
|
6594
|
+
const ModConstructor = await importViews3dWebglManagedFBO();
|
|
6595
|
+
return new ModConstructor();
|
|
6596
|
+
}
|
|
6597
|
+
async function importViews3dWebglRenderCamera() {
|
|
6598
|
+
if (isAMD) {
|
|
6599
|
+
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
6600
|
+
}
|
|
6601
|
+
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
6602
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6603
|
+
}
|
|
6604
|
+
async function newViews3dWebglRenderCamera() {
|
|
6605
|
+
const ModConstructor = await importViews3dWebglRenderCamera();
|
|
6606
|
+
return new ModConstructor();
|
|
6607
|
+
}
|
|
6234
6608
|
async function importViews3dWebglRenderNode() {
|
|
6235
6609
|
if (isAMD) {
|
|
6236
6610
|
return await window.$arcgis.import("esri/views/3d/webgl/RenderNode");
|
|
@@ -6242,6 +6616,28 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6242
6616
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6243
6617
|
return new ModConstructor(properties);
|
|
6244
6618
|
}
|
|
6619
|
+
async function importViews3dSupportLayerPerformanceInfo() {
|
|
6620
|
+
if (isAMD) {
|
|
6621
|
+
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
6622
|
+
}
|
|
6623
|
+
const module = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
6624
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6625
|
+
}
|
|
6626
|
+
async function newViews3dSupportLayerPerformanceInfo() {
|
|
6627
|
+
const ModConstructor = await importViews3dSupportLayerPerformanceInfo();
|
|
6628
|
+
return new ModConstructor();
|
|
6629
|
+
}
|
|
6630
|
+
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
6631
|
+
if (isAMD) {
|
|
6632
|
+
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
6633
|
+
}
|
|
6634
|
+
const module = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
6635
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6636
|
+
}
|
|
6637
|
+
async function newViews3dSupportSceneViewPerformanceInfo() {
|
|
6638
|
+
const ModConstructor = await importViews3dSupportSceneViewPerformanceInfo();
|
|
6639
|
+
return new ModConstructor();
|
|
6640
|
+
}
|
|
6245
6641
|
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6246
6642
|
if (isAMD) {
|
|
6247
6643
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
@@ -6264,6 +6660,17 @@ async function newViewsAnalysisElevationProfileElevationProfileResult(properties
|
|
|
6264
6660
|
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
6265
6661
|
return new ModConstructor(properties);
|
|
6266
6662
|
}
|
|
6663
|
+
async function importViewsAnalysisLengthDimensionResult() {
|
|
6664
|
+
if (isAMD) {
|
|
6665
|
+
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
6666
|
+
}
|
|
6667
|
+
const module = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
6668
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6669
|
+
}
|
|
6670
|
+
async function newViewsAnalysisLengthDimensionResult() {
|
|
6671
|
+
const ModConstructor = await importViewsAnalysisLengthDimensionResult();
|
|
6672
|
+
return new ModConstructor();
|
|
6673
|
+
}
|
|
6267
6674
|
async function importViewsDrawDraw() {
|
|
6268
6675
|
if (isAMD) {
|
|
6269
6676
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -7815,6 +8222,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7815
8222
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7816
8223
|
return new ModConstructor(properties);
|
|
7817
8224
|
}
|
|
8225
|
+
async function importWidgetsEditorMergeFeaturesWorkflow() {
|
|
8226
|
+
if (isAMD) {
|
|
8227
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflow");
|
|
8228
|
+
}
|
|
8229
|
+
const module = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflow.js");
|
|
8230
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8231
|
+
}
|
|
8232
|
+
async function newWidgetsEditorMergeFeaturesWorkflow(properties) {
|
|
8233
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflow();
|
|
8234
|
+
return new ModConstructor(properties);
|
|
8235
|
+
}
|
|
8236
|
+
async function importWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8237
|
+
if (isAMD) {
|
|
8238
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflowData");
|
|
8239
|
+
}
|
|
8240
|
+
const module = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflowData.js");
|
|
8241
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8242
|
+
}
|
|
8243
|
+
async function newWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8244
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflowData();
|
|
8245
|
+
return new ModConstructor();
|
|
8246
|
+
}
|
|
7818
8247
|
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7819
8248
|
if (isAMD) {
|
|
7820
8249
|
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
@@ -7826,6 +8255,28 @@ async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
|
7826
8255
|
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7827
8256
|
return new ModConstructor(properties);
|
|
7828
8257
|
}
|
|
8258
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
8259
|
+
if (isAMD) {
|
|
8260
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
8261
|
+
}
|
|
8262
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
8263
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8264
|
+
}
|
|
8265
|
+
async function newWidgetsEditorSplitFeatureWorkflowData() {
|
|
8266
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflowData();
|
|
8267
|
+
return new ModConstructor();
|
|
8268
|
+
}
|
|
8269
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
8270
|
+
if (isAMD) {
|
|
8271
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
8272
|
+
}
|
|
8273
|
+
const module = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
8274
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8275
|
+
}
|
|
8276
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
8277
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
8278
|
+
return new ModConstructor(properties);
|
|
8279
|
+
}
|
|
7829
8280
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7830
8281
|
if (isAMD) {
|
|
7831
8282
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -9619,20 +10070,6 @@ async function importCoreWorkers() {
|
|
|
9619
10070
|
const module = await import("@arcgis/core/core/workers.js");
|
|
9620
10071
|
return isDefaultModule(module) ? module.default : module;
|
|
9621
10072
|
}
|
|
9622
|
-
async function importEditingSharedTemplatesSharedTemplate() {
|
|
9623
|
-
if (isAMD) {
|
|
9624
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
9625
|
-
}
|
|
9626
|
-
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
9627
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9628
|
-
}
|
|
9629
|
-
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
9630
|
-
if (isAMD) {
|
|
9631
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
9632
|
-
}
|
|
9633
|
-
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
9634
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9635
|
-
}
|
|
9636
10073
|
async function importFormElementsInputs() {
|
|
9637
10074
|
if (isAMD) {
|
|
9638
10075
|
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
@@ -10172,27 +10609,6 @@ async function importLayersSupportRasterFunctionUtils() {
|
|
|
10172
10609
|
const module = await import("@arcgis/core/layers/support/rasterFunctionUtils.js");
|
|
10173
10610
|
return isDefaultModule(module) ? module.default : module;
|
|
10174
10611
|
}
|
|
10175
|
-
async function importLayersSupportStreamConnection() {
|
|
10176
|
-
if (isAMD) {
|
|
10177
|
-
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
10178
|
-
}
|
|
10179
|
-
const module = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
10180
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10181
|
-
}
|
|
10182
|
-
async function importLayersVoxelVoxelVariable() {
|
|
10183
|
-
if (isAMD) {
|
|
10184
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
10185
|
-
}
|
|
10186
|
-
const module = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
10187
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10188
|
-
}
|
|
10189
|
-
async function importLayersVoxelVoxelVolume() {
|
|
10190
|
-
if (isAMD) {
|
|
10191
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
10192
|
-
}
|
|
10193
|
-
const module = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
10194
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10195
|
-
}
|
|
10196
10612
|
async function importPointCloudRenderers() {
|
|
10197
10613
|
if (isAMD) {
|
|
10198
10614
|
return await window.$arcgis.import("esri/pointCloudRenderers");
|
|
@@ -10277,13 +10693,6 @@ async function importRestGeoprocessor() {
|
|
|
10277
10693
|
const module = await import("@arcgis/core/rest/geoprocessor.js");
|
|
10278
10694
|
return isDefaultModule(module) ? module.default : module;
|
|
10279
10695
|
}
|
|
10280
|
-
async function importRestGeoprocessorGPOptions() {
|
|
10281
|
-
if (isAMD) {
|
|
10282
|
-
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
10283
|
-
}
|
|
10284
|
-
const module = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
10285
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10286
|
-
}
|
|
10287
10696
|
async function importRestIdentify() {
|
|
10288
10697
|
if (isAMD) {
|
|
10289
10698
|
return await window.$arcgis.import("esri/rest/identify");
|
|
@@ -10326,13 +10735,6 @@ async function importRestNetworksQueryAssociations() {
|
|
|
10326
10735
|
const module = await import("@arcgis/core/rest/networks/queryAssociations.js");
|
|
10327
10736
|
return isDefaultModule(module) ? module.default : module;
|
|
10328
10737
|
}
|
|
10329
|
-
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
10330
|
-
if (isAMD) {
|
|
10331
|
-
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
10332
|
-
}
|
|
10333
|
-
const module = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
10334
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10335
|
-
}
|
|
10336
10738
|
async function importRestNetworksSynthesizeAssociationGeometries() {
|
|
10337
10739
|
if (isAMD) {
|
|
10338
10740
|
return await window.$arcgis.import("esri/rest/networks/synthesizeAssociationGeometries");
|
|
@@ -10823,39 +11225,11 @@ async function importViews3dWebgl() {
|
|
|
10823
11225
|
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10824
11226
|
return isDefaultModule(module) ? module.default : module;
|
|
10825
11227
|
}
|
|
10826
|
-
async function
|
|
10827
|
-
if (isAMD) {
|
|
10828
|
-
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
10829
|
-
}
|
|
10830
|
-
const module = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
10831
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10832
|
-
}
|
|
10833
|
-
async function importViews3dWebglRenderCamera() {
|
|
10834
|
-
if (isAMD) {
|
|
10835
|
-
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
10836
|
-
}
|
|
10837
|
-
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10838
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10839
|
-
}
|
|
10840
|
-
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10841
|
-
if (isAMD) {
|
|
10842
|
-
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
10843
|
-
}
|
|
10844
|
-
const module = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
10845
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10846
|
-
}
|
|
10847
|
-
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
11228
|
+
async function importViewsSupportAttributionItem() {
|
|
10848
11229
|
if (isAMD) {
|
|
10849
|
-
return await window.$arcgis.import("esri/views/
|
|
11230
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
10850
11231
|
}
|
|
10851
|
-
const module = await import("@arcgis/core/views/
|
|
10852
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10853
|
-
}
|
|
10854
|
-
async function importViewsAnalysisLengthDimensionResult() {
|
|
10855
|
-
if (isAMD) {
|
|
10856
|
-
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
10857
|
-
}
|
|
10858
|
-
const module = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
11232
|
+
const module = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
10859
11233
|
return isDefaultModule(module) ? module.default : module;
|
|
10860
11234
|
}
|
|
10861
11235
|
async function importViewsSupportColorUtils() {
|
|
@@ -10865,13 +11239,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10865
11239
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10866
11240
|
return isDefaultModule(module) ? module.default : module;
|
|
10867
11241
|
}
|
|
10868
|
-
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10869
|
-
if (isAMD) {
|
|
10870
|
-
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10871
|
-
}
|
|
10872
|
-
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10873
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10874
|
-
}
|
|
10875
11242
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10876
11243
|
if (isAMD) {
|
|
10877
11244
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11088,6 +11455,7 @@ export {
|
|
|
11088
11455
|
importAnalysisDimensionAnalysis,
|
|
11089
11456
|
importAnalysisDimensionSimpleStyle,
|
|
11090
11457
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11458
|
+
importAnalysisDistanceMeasurementAnalysis,
|
|
11091
11459
|
importAnalysisElevationProfileAnalysis,
|
|
11092
11460
|
importAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
11093
11461
|
importAnalysisElevationProfileElevationProfileLine,
|
|
@@ -11102,6 +11470,10 @@ export {
|
|
|
11102
11470
|
importAnalysisLineOfSightAnalysis,
|
|
11103
11471
|
importAnalysisLineOfSightAnalysisObserver,
|
|
11104
11472
|
importAnalysisLineOfSightAnalysisTarget,
|
|
11473
|
+
importAnalysisShadowCastAnalysis,
|
|
11474
|
+
importAnalysisShadowCastDiscreteOptions,
|
|
11475
|
+
importAnalysisShadowCastDurationOptions,
|
|
11476
|
+
importAnalysisShadowCastThresholdOptions,
|
|
11105
11477
|
importAnalysisSliceAnalysis,
|
|
11106
11478
|
importAnalysisSlicePlane,
|
|
11107
11479
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
@@ -11438,15 +11810,23 @@ export {
|
|
|
11438
11810
|
importLinkChartNonspatialDataDisplay,
|
|
11439
11811
|
importLinkChartOrganicLayoutSettings,
|
|
11440
11812
|
importMap,
|
|
11813
|
+
importNetworksCircuitManager,
|
|
11441
11814
|
importNetworksNetwork,
|
|
11815
|
+
importNetworksSupportCircuit,
|
|
11816
|
+
importNetworksSupportCircuitLocation,
|
|
11817
|
+
importNetworksSupportCircuitPath,
|
|
11818
|
+
importNetworksSupportCircuitPathConnectivityElement,
|
|
11819
|
+
importNetworksSupportCircuitSection,
|
|
11442
11820
|
importNetworksSupportNamedTraceConfiguration,
|
|
11443
11821
|
importNetworksSupportNetworkSystemLayers,
|
|
11822
|
+
importNetworksSupportSubcircuit,
|
|
11444
11823
|
importNetworksSupportTerminal,
|
|
11445
11824
|
importNetworksSupportTerminalConfiguration,
|
|
11446
11825
|
importNetworksSupportTopologyValidationJobInfo,
|
|
11447
11826
|
importNetworksSupportTraceConfiguration,
|
|
11448
11827
|
importNetworksSupportTraceJobInfo,
|
|
11449
11828
|
importNetworksSupportUNTraceConfiguration,
|
|
11829
|
+
importNetworksUnitIdentifierManager,
|
|
11450
11830
|
importNetworksUtilityNetwork,
|
|
11451
11831
|
importPointCloudRenderers,
|
|
11452
11832
|
importPopupContent,
|
|
@@ -11583,6 +11963,8 @@ export {
|
|
|
11583
11963
|
importRestLastMileDelivery,
|
|
11584
11964
|
importRestLocator,
|
|
11585
11965
|
importRestNetworkService,
|
|
11966
|
+
importRestNetworksCircuitsSupportCircuitTraceResult,
|
|
11967
|
+
importRestNetworksCircuitsSupportCircuitVerifyResult,
|
|
11586
11968
|
importRestNetworksQueryAssociations,
|
|
11587
11969
|
importRestNetworksSupportAggregatedGeometry,
|
|
11588
11970
|
importRestNetworksSupportAssociation,
|
|
@@ -11592,6 +11974,7 @@ export {
|
|
|
11592
11974
|
importRestNetworksSupportQueryAssociationsParameters,
|
|
11593
11975
|
importRestNetworksSupportQueryAssociationsResult,
|
|
11594
11976
|
importRestNetworksSupportSynthesizeAssociationGeometriesParameters,
|
|
11977
|
+
importRestNetworksSupportTelecomNetworkElement,
|
|
11595
11978
|
importRestNetworksSupportTraceLocation,
|
|
11596
11979
|
importRestNetworksSupportTraceParameters,
|
|
11597
11980
|
importRestNetworksSupportTraceResult,
|
|
@@ -11599,6 +11982,7 @@ export {
|
|
|
11599
11982
|
importRestNetworksSupportValidateNetworkTopologyResult,
|
|
11600
11983
|
importRestNetworksSynthesizeAssociationGeometries,
|
|
11601
11984
|
importRestNetworksTrace,
|
|
11985
|
+
importRestNetworksUnitIdentifiersSupportUnitQueryResult,
|
|
11602
11986
|
importRestPlaces,
|
|
11603
11987
|
importRestPrint,
|
|
11604
11988
|
importRestQuery,
|
|
@@ -11681,6 +12065,11 @@ export {
|
|
|
11681
12065
|
importRestSupportLegendLayer,
|
|
11682
12066
|
importRestSupportLengthsParameters,
|
|
11683
12067
|
importRestSupportLinearUnit,
|
|
12068
|
+
importRestSupportLocateSetting,
|
|
12069
|
+
importRestSupportLocateSettingBase,
|
|
12070
|
+
importRestSupportLocateSettingSource,
|
|
12071
|
+
importRestSupportLocateSettings,
|
|
12072
|
+
importRestSupportLocateSettingsOverrides,
|
|
11684
12073
|
importRestSupportMapToImageParameters,
|
|
11685
12074
|
importRestSupportMeasureAreaFromImageResult,
|
|
11686
12075
|
importRestSupportMeasureFromImageParameters,
|
|
@@ -11835,6 +12224,8 @@ export {
|
|
|
11835
12224
|
importVersionManagementVersionManagementService,
|
|
11836
12225
|
importVersionManagementVersioningState,
|
|
11837
12226
|
importViewpoint,
|
|
12227
|
+
importViews2dAnalysisAreaMeasurementAnalysisView2D,
|
|
12228
|
+
importViews2dAnalysisDistanceMeasurementAnalysisView2D,
|
|
11838
12229
|
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
11839
12230
|
importViews2dLayersBaseLayerView2D,
|
|
11840
12231
|
importViews2dLayersBaseLayerViewGL2D,
|
|
@@ -11845,6 +12236,7 @@ export {
|
|
|
11845
12236
|
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11846
12237
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11847
12238
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12239
|
+
importViews3dAnalysisShadowCastAnalysisView3D,
|
|
11848
12240
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11849
12241
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11850
12242
|
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
@@ -11902,6 +12294,7 @@ export {
|
|
|
11902
12294
|
importViewsNavigationNavigation,
|
|
11903
12295
|
importViewsNavigationNavigationActionMap,
|
|
11904
12296
|
importViewsSceneView,
|
|
12297
|
+
importViewsSupportAttributionItem,
|
|
11905
12298
|
importViewsSupportColorUtils,
|
|
11906
12299
|
importViewsSupportHighlightOptions,
|
|
11907
12300
|
importViewsTheme,
|
|
@@ -12010,9 +12403,12 @@ export {
|
|
|
12010
12403
|
importWidgetsEditorCreateFeaturesWorkflowData,
|
|
12011
12404
|
importWidgetsEditorEditorViewModel,
|
|
12012
12405
|
importWidgetsEditorEdits,
|
|
12406
|
+
importWidgetsEditorMergeFeaturesWorkflow,
|
|
12407
|
+
importWidgetsEditorMergeFeaturesWorkflowData,
|
|
12013
12408
|
importWidgetsEditorSplitFeatureWorkflow,
|
|
12014
12409
|
importWidgetsEditorSplitFeatureWorkflowData,
|
|
12015
12410
|
importWidgetsEditorSupportEditorItem,
|
|
12411
|
+
importWidgetsEditorUpdateFeaturesWorkflow,
|
|
12016
12412
|
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12017
12413
|
importWidgetsEditorUpdateWorkflow,
|
|
12018
12414
|
importWidgetsEditorUpdateWorkflowData,
|
|
@@ -12176,6 +12572,7 @@ export {
|
|
|
12176
12572
|
newAnalysisDimensionAnalysis,
|
|
12177
12573
|
newAnalysisDimensionSimpleStyle,
|
|
12178
12574
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12575
|
+
newAnalysisDistanceMeasurementAnalysis,
|
|
12179
12576
|
newAnalysisElevationProfileAnalysis,
|
|
12180
12577
|
newAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
12181
12578
|
newAnalysisElevationProfileElevationProfileLine,
|
|
@@ -12190,6 +12587,10 @@ export {
|
|
|
12190
12587
|
newAnalysisLineOfSightAnalysis,
|
|
12191
12588
|
newAnalysisLineOfSightAnalysisObserver,
|
|
12192
12589
|
newAnalysisLineOfSightAnalysisTarget,
|
|
12590
|
+
newAnalysisShadowCastAnalysis,
|
|
12591
|
+
newAnalysisShadowCastDiscreteOptions,
|
|
12592
|
+
newAnalysisShadowCastDurationOptions,
|
|
12593
|
+
newAnalysisShadowCastThresholdOptions,
|
|
12193
12594
|
newAnalysisSliceAnalysis,
|
|
12194
12595
|
newAnalysisSlicePlane,
|
|
12195
12596
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
@@ -12209,6 +12610,8 @@ export {
|
|
|
12209
12610
|
newCoreError,
|
|
12210
12611
|
newCoreHandles,
|
|
12211
12612
|
newCoreWorkersConnection,
|
|
12613
|
+
newEditingSharedTemplatesSharedTemplate,
|
|
12614
|
+
newEditingSharedTemplatesSharedTemplateMetadata,
|
|
12212
12615
|
newEffectsFocusArea,
|
|
12213
12616
|
newEffectsFocusAreaOutline,
|
|
12214
12617
|
newEffectsFocusAreas,
|
|
@@ -12366,6 +12769,7 @@ export {
|
|
|
12366
12769
|
newLayersSupportSceneModification,
|
|
12367
12770
|
newLayersSupportSceneModifications,
|
|
12368
12771
|
newLayersSupportSiteLayerInfo,
|
|
12772
|
+
newLayersSupportStreamConnection,
|
|
12369
12773
|
newLayersSupportSublayer,
|
|
12370
12774
|
newLayersSupportSubtype,
|
|
12371
12775
|
newLayersSupportSubtypeSublayer,
|
|
@@ -12391,7 +12795,9 @@ export {
|
|
|
12391
12795
|
newLayersVoxelVoxelDynamicSection,
|
|
12392
12796
|
newLayersVoxelVoxelSlice,
|
|
12393
12797
|
newLayersVoxelVoxelTransferFunctionStyle,
|
|
12798
|
+
newLayersVoxelVoxelVariable,
|
|
12394
12799
|
newLayersVoxelVoxelVariableStyle,
|
|
12800
|
+
newLayersVoxelVoxelVolume,
|
|
12395
12801
|
newLayersVoxelVoxelVolumeStyle,
|
|
12396
12802
|
newLayersWCSLayer,
|
|
12397
12803
|
newLayersWFSLayer,
|
|
@@ -12404,15 +12810,23 @@ export {
|
|
|
12404
12810
|
newLinkChartNonspatialDataDisplay,
|
|
12405
12811
|
newLinkChartOrganicLayoutSettings,
|
|
12406
12812
|
newMap,
|
|
12813
|
+
newNetworksCircuitManager,
|
|
12407
12814
|
newNetworksNetwork,
|
|
12815
|
+
newNetworksSupportCircuit,
|
|
12816
|
+
newNetworksSupportCircuitLocation,
|
|
12817
|
+
newNetworksSupportCircuitPath,
|
|
12818
|
+
newNetworksSupportCircuitPathConnectivityElement,
|
|
12819
|
+
newNetworksSupportCircuitSection,
|
|
12408
12820
|
newNetworksSupportNamedTraceConfiguration,
|
|
12409
12821
|
newNetworksSupportNetworkSystemLayers,
|
|
12822
|
+
newNetworksSupportSubcircuit,
|
|
12410
12823
|
newNetworksSupportTerminal,
|
|
12411
12824
|
newNetworksSupportTerminalConfiguration,
|
|
12412
12825
|
newNetworksSupportTopologyValidationJobInfo,
|
|
12413
12826
|
newNetworksSupportTraceConfiguration,
|
|
12414
12827
|
newNetworksSupportTraceJobInfo,
|
|
12415
12828
|
newNetworksSupportUNTraceConfiguration,
|
|
12829
|
+
newNetworksUnitIdentifierManager,
|
|
12416
12830
|
newNetworksUtilityNetwork,
|
|
12417
12831
|
newPopupContentAttachmentsContent,
|
|
12418
12832
|
newPopupContentBarChartMediaInfo,
|
|
@@ -12489,6 +12903,7 @@ export {
|
|
|
12489
12903
|
newRenderersVisualVariablesSupportSizeStop,
|
|
12490
12904
|
newRenderersVisualVariablesVisualVariable,
|
|
12491
12905
|
newRestFeatureServiceFeatureService,
|
|
12906
|
+
newRestGeoprocessorGPOptions,
|
|
12492
12907
|
newRestKnowledgeGraphDataModel,
|
|
12493
12908
|
newRestKnowledgeGraphEntity,
|
|
12494
12909
|
newRestKnowledgeGraphEntityType,
|
|
@@ -12530,6 +12945,8 @@ export {
|
|
|
12530
12945
|
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
12531
12946
|
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
12532
12947
|
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
12948
|
+
newRestNetworksCircuitsSupportCircuitTraceResult,
|
|
12949
|
+
newRestNetworksCircuitsSupportCircuitVerifyResult,
|
|
12533
12950
|
newRestNetworksSupportAggregatedGeometry,
|
|
12534
12951
|
newRestNetworksSupportAssociation,
|
|
12535
12952
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -12538,10 +12955,13 @@ export {
|
|
|
12538
12955
|
newRestNetworksSupportQueryAssociationsParameters,
|
|
12539
12956
|
newRestNetworksSupportQueryAssociationsResult,
|
|
12540
12957
|
newRestNetworksSupportSynthesizeAssociationGeometriesParameters,
|
|
12958
|
+
newRestNetworksSupportTelecomNetworkElement,
|
|
12541
12959
|
newRestNetworksSupportTraceLocation,
|
|
12542
12960
|
newRestNetworksSupportTraceParameters,
|
|
12543
12961
|
newRestNetworksSupportTraceResult,
|
|
12544
12962
|
newRestNetworksSupportValidateNetworkTopologyParameters,
|
|
12963
|
+
newRestNetworksSupportValidateNetworkTopologyResult,
|
|
12964
|
+
newRestNetworksUnitIdentifiersSupportUnitQueryResult,
|
|
12545
12965
|
newRestQuerySupportAttachmentInfo,
|
|
12546
12966
|
newRestSupportAddressCandidate,
|
|
12547
12967
|
newRestSupportAlgorithmicColorRamp,
|
|
@@ -12619,6 +13039,11 @@ export {
|
|
|
12619
13039
|
newRestSupportLegendLayer,
|
|
12620
13040
|
newRestSupportLengthsParameters,
|
|
12621
13041
|
newRestSupportLinearUnit,
|
|
13042
|
+
newRestSupportLocateSetting,
|
|
13043
|
+
newRestSupportLocateSettingBase,
|
|
13044
|
+
newRestSupportLocateSettingSource,
|
|
13045
|
+
newRestSupportLocateSettings,
|
|
13046
|
+
newRestSupportLocateSettingsOverrides,
|
|
12622
13047
|
newRestSupportMapToImageParameters,
|
|
12623
13048
|
newRestSupportMeasureAreaFromImageResult,
|
|
12624
13049
|
newRestSupportMeasureFromImageParameters,
|
|
@@ -12712,6 +13137,8 @@ export {
|
|
|
12712
13137
|
newVersionManagementVersionManagementService,
|
|
12713
13138
|
newVersionManagementVersioningState,
|
|
12714
13139
|
newViewpoint,
|
|
13140
|
+
newViews2dAnalysisAreaMeasurementAnalysisView2D,
|
|
13141
|
+
newViews2dAnalysisDistanceMeasurementAnalysisView2D,
|
|
12715
13142
|
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12716
13143
|
newViews2dLayersBaseLayerView2D,
|
|
12717
13144
|
newViews2dLayersBaseLayerViewGL2D,
|
|
@@ -12722,6 +13149,7 @@ export {
|
|
|
12722
13149
|
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12723
13150
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12724
13151
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
13152
|
+
newViews3dAnalysisShadowCastAnalysisView3D,
|
|
12725
13153
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12726
13154
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12727
13155
|
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
@@ -12734,9 +13162,14 @@ export {
|
|
|
12734
13162
|
newViews3dEnvironmentSunLighting,
|
|
12735
13163
|
newViews3dEnvironmentSunnyWeather,
|
|
12736
13164
|
newViews3dEnvironmentVirtualLighting,
|
|
13165
|
+
newViews3dSupportLayerPerformanceInfo,
|
|
13166
|
+
newViews3dSupportSceneViewPerformanceInfo,
|
|
13167
|
+
newViews3dWebglManagedFBO,
|
|
13168
|
+
newViews3dWebglRenderCamera,
|
|
12737
13169
|
newViews3dWebglRenderNode,
|
|
12738
13170
|
newViewsAnalysisElevationProfileElevationProfileError,
|
|
12739
13171
|
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
13172
|
+
newViewsAnalysisLengthDimensionResult,
|
|
12740
13173
|
newViewsBasemapView,
|
|
12741
13174
|
newViewsDrawDraw,
|
|
12742
13175
|
newViewsDrawDrawAction,
|
|
@@ -12880,8 +13313,12 @@ export {
|
|
|
12880
13313
|
newWidgetsEditorCreateFeaturesWorkflowData,
|
|
12881
13314
|
newWidgetsEditorEditorViewModel,
|
|
12882
13315
|
newWidgetsEditorEdits,
|
|
13316
|
+
newWidgetsEditorMergeFeaturesWorkflow,
|
|
13317
|
+
newWidgetsEditorMergeFeaturesWorkflowData,
|
|
12883
13318
|
newWidgetsEditorSplitFeatureWorkflow,
|
|
13319
|
+
newWidgetsEditorSplitFeatureWorkflowData,
|
|
12884
13320
|
newWidgetsEditorSupportEditorItem,
|
|
13321
|
+
newWidgetsEditorUpdateFeaturesWorkflow,
|
|
12885
13322
|
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12886
13323
|
newWidgetsEditorUpdateWorkflow,
|
|
12887
13324
|
newWidgetsEditorUpdateWorkflowData,
|