@arcgis/core-adapter 4.32.0-next.20 → 4.32.0-next.21
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/.turbo/turbo-build.log +4 -3
- package/dist/index.cjs +372 -0
- package/dist/index.d.cts +47 -2
- package/dist/index.d.ts +47 -2
- package/dist/index.js +327 -0
- package/package.json +1 -1
- package/scripts/generator.ts +7 -0
- package/src/index.ts +328 -1
- package/support/api-reference-esm-imports.json +41 -10
- package/support/arcgis.d.ts +1255 -205
package/src/index.ts
CHANGED
|
@@ -1328,6 +1328,19 @@ export async function newLayersLineOfSightLayer(properties: __esri.LineOfSightLa
|
|
|
1328
1328
|
return new ModConstructor(properties);
|
|
1329
1329
|
}
|
|
1330
1330
|
|
|
1331
|
+
export async function importLayersLinkChartLayer(): Promise<typeof __esri.LinkChartLayer> {
|
|
1332
|
+
if (isAMD) {
|
|
1333
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1334
|
+
}
|
|
1335
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1336
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
export async function newLayersLinkChartLayer(properties: __esri.LinkChartLayerProperties): Promise<__esri.LinkChartLayer> {
|
|
1340
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1341
|
+
return new ModConstructor(properties);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1331
1344
|
export async function importLayersMapImageLayer(): Promise<typeof __esri.MapImageLayer> {
|
|
1332
1345
|
if (isAMD) {
|
|
1333
1346
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -2524,6 +2537,71 @@ export async function newLayersWMTSLayer(properties: __esri.WMTSLayerProperties)
|
|
|
2524
2537
|
return new ModConstructor(properties);
|
|
2525
2538
|
}
|
|
2526
2539
|
|
|
2540
|
+
export async function importLinkChartChronologicalLayoutSettings(): Promise<typeof __esri.ChronologicalLayoutSettings> {
|
|
2541
|
+
if (isAMD) {
|
|
2542
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2543
|
+
}
|
|
2544
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2545
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
export async function newLinkChartChronologicalLayoutSettings(properties: __esri.ChronologicalLayoutSettingsProperties): Promise<__esri.ChronologicalLayoutSettings> {
|
|
2549
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2550
|
+
return new ModConstructor(properties);
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
export async function importLinkChartLayoutSettings(): Promise<typeof __esri.LayoutSettings> {
|
|
2554
|
+
if (isAMD) {
|
|
2555
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2556
|
+
}
|
|
2557
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2558
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
export async function newLinkChartLayoutSettings(properties: __esri.LayoutSettingsProperties): Promise<__esri.LayoutSettings> {
|
|
2562
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2563
|
+
return new ModConstructor(properties);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
export async function importLinkChartLinkChartProperties(): Promise<typeof __esri.LinkChartProperties> {
|
|
2567
|
+
if (isAMD) {
|
|
2568
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2569
|
+
}
|
|
2570
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2571
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
export async function newLinkChartLinkChartProperties(properties: __esri.LinkChartPropertiesProperties): Promise<__esri.LinkChartProperties> {
|
|
2575
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2576
|
+
return new ModConstructor(properties);
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
export async function importLinkChartNonspatialDataDisplay(): Promise<typeof __esri.NonspatialDataDisplay> {
|
|
2580
|
+
if (isAMD) {
|
|
2581
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2582
|
+
}
|
|
2583
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2584
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
export async function newLinkChartNonspatialDataDisplay(properties: __esri.NonspatialDataDisplayProperties): Promise<__esri.NonspatialDataDisplay> {
|
|
2588
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2589
|
+
return new ModConstructor(properties);
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
export async function importLinkChartOrganicLayoutSettings(): Promise<typeof __esri.OrganicLayoutSettings> {
|
|
2593
|
+
if (isAMD) {
|
|
2594
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2595
|
+
}
|
|
2596
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2597
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
export async function newLinkChartOrganicLayoutSettings(properties: __esri.OrganicLayoutSettingsProperties): Promise<__esri.OrganicLayoutSettings> {
|
|
2601
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2602
|
+
return new ModConstructor(properties);
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2527
2605
|
export async function importMap(): Promise<typeof __esri.Map> {
|
|
2528
2606
|
if (isAMD) {
|
|
2529
2607
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -3772,6 +3850,19 @@ export async function newRestKnowledgeGraphGraphQueryResult(properties: __esri.G
|
|
|
3772
3850
|
return new ModConstructor(properties);
|
|
3773
3851
|
}
|
|
3774
3852
|
|
|
3853
|
+
export async function importRestKnowledgeGraphGraphQueryResultHeader(): Promise<typeof __esri.GraphQueryResultHeader> {
|
|
3854
|
+
if (isAMD) {
|
|
3855
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3856
|
+
}
|
|
3857
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3858
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
export async function newRestKnowledgeGraphGraphQueryResultHeader(properties: __esri.GraphQueryResultHeaderProperties): Promise<__esri.GraphQueryResultHeader> {
|
|
3862
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3863
|
+
return new ModConstructor(properties);
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3775
3866
|
export async function importRestKnowledgeGraphGraphQueryStreaming(): Promise<typeof __esri.GraphQueryStreaming> {
|
|
3776
3867
|
if (isAMD) {
|
|
3777
3868
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3928,6 +4019,19 @@ export async function newRestKnowledgeGraphServiceDefinition(properties: __esri.
|
|
|
3928
4019
|
return new ModConstructor(properties);
|
|
3929
4020
|
}
|
|
3930
4021
|
|
|
4022
|
+
export async function importRestKnowledgeGraphSourceTypeValueBehavior(): Promise<typeof __esri.SourceTypeValueBehavior> {
|
|
4023
|
+
if (isAMD) {
|
|
4024
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
4025
|
+
}
|
|
4026
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
4027
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
export async function newRestKnowledgeGraphSourceTypeValueBehavior(properties: __esri.SourceTypeValueBehaviorProperties): Promise<__esri.SourceTypeValueBehavior> {
|
|
4031
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
4032
|
+
return new ModConstructor(properties);
|
|
4033
|
+
}
|
|
4034
|
+
|
|
3931
4035
|
export async function importRestNetworksSupportAggregatedGeometry(): Promise<typeof __esri.AggregatedGeometry> {
|
|
3932
4036
|
if (isAMD) {
|
|
3933
4037
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -6775,6 +6879,19 @@ export async function newViewsLayersViewshedLayerView(properties: __esri.Viewshe
|
|
|
6775
6879
|
return new ModConstructor(properties);
|
|
6776
6880
|
}
|
|
6777
6881
|
|
|
6882
|
+
export async function importViewsLinkChartView(): Promise<typeof __esri.LinkChartView> {
|
|
6883
|
+
if (isAMD) {
|
|
6884
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
6885
|
+
}
|
|
6886
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
6887
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6888
|
+
}
|
|
6889
|
+
|
|
6890
|
+
export async function newViewsLinkChartView(properties: __esri.LinkChartViewProperties): Promise<__esri.LinkChartView> {
|
|
6891
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
6892
|
+
return new ModConstructor(properties);
|
|
6893
|
+
}
|
|
6894
|
+
|
|
6778
6895
|
export async function importViewsMagnifier(): Promise<typeof __esri.Magnifier> {
|
|
6779
6896
|
if (isAMD) {
|
|
6780
6897
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -7165,6 +7282,19 @@ export async function newWebDocument2D(properties: __esri.WebDocument2DPropertie
|
|
|
7165
7282
|
return new ModConstructor(properties);
|
|
7166
7283
|
}
|
|
7167
7284
|
|
|
7285
|
+
export async function importWebLinkChart(): Promise<typeof __esri.WebLinkChart> {
|
|
7286
|
+
if (isAMD) {
|
|
7287
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
7288
|
+
}
|
|
7289
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
7290
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7291
|
+
}
|
|
7292
|
+
|
|
7293
|
+
export async function newWebLinkChart(properties: __esri.WebLinkChartProperties): Promise<__esri.WebLinkChart> {
|
|
7294
|
+
const ModConstructor = await importWebLinkChart();
|
|
7295
|
+
return new ModConstructor(properties);
|
|
7296
|
+
}
|
|
7297
|
+
|
|
7168
7298
|
export async function importWebMap(): Promise<typeof __esri.WebMap> {
|
|
7169
7299
|
if (isAMD) {
|
|
7170
7300
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -9687,6 +9817,19 @@ export async function newWidgetsUtilityNetworkTrace(properties: __esri.UtilityNe
|
|
|
9687
9817
|
return new ModConstructor(properties);
|
|
9688
9818
|
}
|
|
9689
9819
|
|
|
9820
|
+
export async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(): Promise<typeof __esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9821
|
+
if (isAMD) {
|
|
9822
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
9823
|
+
}
|
|
9824
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
9825
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9826
|
+
}
|
|
9827
|
+
|
|
9828
|
+
export async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties: any): Promise<__esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9829
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
9830
|
+
return new ModConstructor(properties);
|
|
9831
|
+
}
|
|
9832
|
+
|
|
9690
9833
|
export async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel(): Promise<typeof __esri.UtilityNetworkTraceViewModel> {
|
|
9691
9834
|
if (isAMD) {
|
|
9692
9835
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -10055,6 +10198,14 @@ export async function importGeometryOperatorsAffineTransformOperator(): Promise<
|
|
|
10055
10198
|
return isDefaultModule(module) ? module.default : module;
|
|
10056
10199
|
}
|
|
10057
10200
|
|
|
10201
|
+
export async function importGeometryOperatorsAlphaShapeOperator(): Promise<typeof __esri.alphaShapeOperator> {
|
|
10202
|
+
if (isAMD) {
|
|
10203
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
10204
|
+
}
|
|
10205
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
10206
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10207
|
+
}
|
|
10208
|
+
|
|
10058
10209
|
export async function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator> {
|
|
10059
10210
|
if (isAMD) {
|
|
10060
10211
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -10063,6 +10214,22 @@ export async function importGeometryOperatorsAreaOperator(): Promise<typeof __es
|
|
|
10063
10214
|
return isDefaultModule(module) ? module.default : module;
|
|
10064
10215
|
}
|
|
10065
10216
|
|
|
10217
|
+
export async function importGeometryOperatorsAutoCompleteOperator(): Promise<typeof __esri.autoCompleteOperator> {
|
|
10218
|
+
if (isAMD) {
|
|
10219
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
10220
|
+
}
|
|
10221
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
10222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10223
|
+
}
|
|
10224
|
+
|
|
10225
|
+
export async function importGeometryOperatorsBoundaryOperator(): Promise<typeof __esri.boundaryOperator> {
|
|
10226
|
+
if (isAMD) {
|
|
10227
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
10228
|
+
}
|
|
10229
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
10230
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10231
|
+
}
|
|
10232
|
+
|
|
10066
10233
|
export async function importGeometryOperatorsBufferOperator(): Promise<typeof __esri.bufferOperator> {
|
|
10067
10234
|
if (isAMD) {
|
|
10068
10235
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -10159,6 +10326,14 @@ export async function importGeometryOperatorsEqualsOperator(): Promise<typeof __
|
|
|
10159
10326
|
return isDefaultModule(module) ? module.default : module;
|
|
10160
10327
|
}
|
|
10161
10328
|
|
|
10329
|
+
export async function importGeometryOperatorsExtendOperator(): Promise<typeof __esri.extendOperator> {
|
|
10330
|
+
if (isAMD) {
|
|
10331
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
10332
|
+
}
|
|
10333
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
10334
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10335
|
+
}
|
|
10336
|
+
|
|
10162
10337
|
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10163
10338
|
if (isAMD) {
|
|
10164
10339
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -10175,6 +10350,14 @@ export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<t
|
|
|
10175
10350
|
return isDefaultModule(module) ? module.default : module;
|
|
10176
10351
|
}
|
|
10177
10352
|
|
|
10353
|
+
export async function importGeometryOperatorsGeodesicProximityOperator(): Promise<typeof __esri.geodesicProximityOperator> {
|
|
10354
|
+
if (isAMD) {
|
|
10355
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
10356
|
+
}
|
|
10357
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
10358
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10359
|
+
}
|
|
10360
|
+
|
|
10178
10361
|
export async function importGeometryOperatorsGeodeticAreaOperator(): Promise<typeof __esri.geodeticAreaOperator> {
|
|
10179
10362
|
if (isAMD) {
|
|
10180
10363
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -10215,6 +10398,14 @@ export async function importGeometryOperatorsGraphicBufferOperator(): Promise<ty
|
|
|
10215
10398
|
return isDefaultModule(module) ? module.default : module;
|
|
10216
10399
|
}
|
|
10217
10400
|
|
|
10401
|
+
export async function importGeometryOperatorsIntegrateOperator(): Promise<typeof __esri.integrateOperator> {
|
|
10402
|
+
if (isAMD) {
|
|
10403
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
10404
|
+
}
|
|
10405
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
10406
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10407
|
+
}
|
|
10408
|
+
|
|
10218
10409
|
export async function importGeometryOperatorsIntersectionOperator(): Promise<typeof __esri.intersectionOperator> {
|
|
10219
10410
|
if (isAMD) {
|
|
10220
10411
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -10231,6 +10422,22 @@ export async function importGeometryOperatorsIntersectsOperator(): Promise<typeo
|
|
|
10231
10422
|
return isDefaultModule(module) ? module.default : module;
|
|
10232
10423
|
}
|
|
10233
10424
|
|
|
10425
|
+
export async function importGeometryOperatorsIsNearOperator(): Promise<typeof __esri.isNearOperator> {
|
|
10426
|
+
if (isAMD) {
|
|
10427
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
10428
|
+
}
|
|
10429
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
10430
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10431
|
+
}
|
|
10432
|
+
|
|
10433
|
+
export async function importGeometryOperatorsLabelPointOperator(): Promise<typeof __esri.labelPointOperator> {
|
|
10434
|
+
if (isAMD) {
|
|
10435
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
10436
|
+
}
|
|
10437
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
10438
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10439
|
+
}
|
|
10440
|
+
|
|
10234
10441
|
export async function importGeometryOperatorsLengthOperator(): Promise<typeof __esri.lengthOperator> {
|
|
10235
10442
|
if (isAMD) {
|
|
10236
10443
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -10239,6 +10446,38 @@ export async function importGeometryOperatorsLengthOperator(): Promise<typeof __
|
|
|
10239
10446
|
return isDefaultModule(module) ? module.default : module;
|
|
10240
10447
|
}
|
|
10241
10448
|
|
|
10449
|
+
export async function importGeometryOperatorsLinesToPolygonsOperator(): Promise<typeof __esri.linesToPolygonsOperator> {
|
|
10450
|
+
if (isAMD) {
|
|
10451
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
10452
|
+
}
|
|
10453
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
10454
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10455
|
+
}
|
|
10456
|
+
|
|
10457
|
+
export async function importGeometryOperatorsLocateBetweenOperator(): Promise<typeof __esri.locateBetweenOperator> {
|
|
10458
|
+
if (isAMD) {
|
|
10459
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
10460
|
+
}
|
|
10461
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
10462
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10463
|
+
}
|
|
10464
|
+
|
|
10465
|
+
export async function importGeometryOperatorsMinimumBoundingCircleOperator(): Promise<typeof __esri.minimumBoundingCircleOperator> {
|
|
10466
|
+
if (isAMD) {
|
|
10467
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
10468
|
+
}
|
|
10469
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
10470
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10471
|
+
}
|
|
10472
|
+
|
|
10473
|
+
export async function importGeometryOperatorsMultiPartToSinglePartOperator(): Promise<typeof __esri.multiPartToSinglePartOperator> {
|
|
10474
|
+
if (isAMD) {
|
|
10475
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
10476
|
+
}
|
|
10477
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
10478
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10479
|
+
}
|
|
10480
|
+
|
|
10242
10481
|
export async function importGeometryOperatorsOffsetOperator(): Promise<typeof __esri.offsetOperator> {
|
|
10243
10482
|
if (isAMD) {
|
|
10244
10483
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -10255,6 +10494,22 @@ export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof
|
|
|
10255
10494
|
return isDefaultModule(module) ? module.default : module;
|
|
10256
10495
|
}
|
|
10257
10496
|
|
|
10497
|
+
export async function importGeometryOperatorsPolygonOverlayOperator(): Promise<typeof __esri.polygonOverlayOperator> {
|
|
10498
|
+
if (isAMD) {
|
|
10499
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
10500
|
+
}
|
|
10501
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
10502
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10503
|
+
}
|
|
10504
|
+
|
|
10505
|
+
export async function importGeometryOperatorsPolygonSlicerOperator(): Promise<typeof __esri.polygonSlicerOperator> {
|
|
10506
|
+
if (isAMD) {
|
|
10507
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
10508
|
+
}
|
|
10509
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
10510
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10511
|
+
}
|
|
10512
|
+
|
|
10258
10513
|
export async function importGeometryOperatorsProximityOperator(): Promise<typeof __esri.proximityOperator> {
|
|
10259
10514
|
if (isAMD) {
|
|
10260
10515
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -10271,6 +10526,14 @@ export async function importGeometryOperatorsRelateOperator(): Promise<typeof __
|
|
|
10271
10526
|
return isDefaultModule(module) ? module.default : module;
|
|
10272
10527
|
}
|
|
10273
10528
|
|
|
10529
|
+
export async function importGeometryOperatorsReshapeOperator(): Promise<typeof __esri.reshapeOperator> {
|
|
10530
|
+
if (isAMD) {
|
|
10531
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
10532
|
+
}
|
|
10533
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
10534
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10535
|
+
}
|
|
10536
|
+
|
|
10274
10537
|
export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof __esri.simplifyOperator> {
|
|
10275
10538
|
if (isAMD) {
|
|
10276
10539
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -10375,6 +10638,22 @@ export async function importLayersCatalogCatalogUtils(): Promise<typeof __esri.c
|
|
|
10375
10638
|
return isDefaultModule(module) ? module.default : module;
|
|
10376
10639
|
}
|
|
10377
10640
|
|
|
10641
|
+
export async function importLayersKnowledgeGraphCypherUtils(): Promise<typeof __esri.cypherUtils> {
|
|
10642
|
+
if (isAMD) {
|
|
10643
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
10644
|
+
}
|
|
10645
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
10646
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10647
|
+
}
|
|
10648
|
+
|
|
10649
|
+
export async function importLayersKnowledgeGraphSupportUtils(): Promise<typeof __esri.supportUtils> {
|
|
10650
|
+
if (isAMD) {
|
|
10651
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
10652
|
+
}
|
|
10653
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
10654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10655
|
+
}
|
|
10656
|
+
|
|
10378
10657
|
export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils> {
|
|
10379
10658
|
if (isAMD) {
|
|
10380
10659
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -10391,6 +10670,22 @@ export async function importLayersOgcWcsUtils(): Promise<typeof __esri.wcsUtils>
|
|
|
10391
10670
|
return isDefaultModule(module) ? module.default : module;
|
|
10392
10671
|
}
|
|
10393
10672
|
|
|
10673
|
+
export async function importLayersOrientedImageryTransformationsWorldToImage(): Promise<typeof __esri.worldToImage> {
|
|
10674
|
+
if (isAMD) {
|
|
10675
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
10676
|
+
}
|
|
10677
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
10678
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10679
|
+
}
|
|
10680
|
+
|
|
10681
|
+
export async function importLayersOrientedImageryTransformationsImageToWorld(): Promise<typeof __esri.imageToWorld> {
|
|
10682
|
+
if (isAMD) {
|
|
10683
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
10684
|
+
}
|
|
10685
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
10686
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10687
|
+
}
|
|
10688
|
+
|
|
10394
10689
|
export async function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils> {
|
|
10395
10690
|
if (isAMD) {
|
|
10396
10691
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -10807,7 +11102,7 @@ export async function importSmartMappingRasterSupportColorRamps(): Promise<typeo
|
|
|
10807
11102
|
return isDefaultModule(module) ? module.default : module;
|
|
10808
11103
|
}
|
|
10809
11104
|
|
|
10810
|
-
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.
|
|
11105
|
+
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.rasterSupportUtils> {
|
|
10811
11106
|
if (isAMD) {
|
|
10812
11107
|
return await window.$arcgis.import("esri/smartMapping/raster/support/utils");
|
|
10813
11108
|
}
|
|
@@ -10903,6 +11198,14 @@ export async function importSmartMappingRenderersUnivariateColorSize(): Promise<
|
|
|
10903
11198
|
return isDefaultModule(module) ? module.default : module;
|
|
10904
11199
|
}
|
|
10905
11200
|
|
|
11201
|
+
export async function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils> {
|
|
11202
|
+
if (isAMD) {
|
|
11203
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
11204
|
+
}
|
|
11205
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
11206
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11207
|
+
}
|
|
11208
|
+
|
|
10906
11209
|
export async function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks> {
|
|
10907
11210
|
if (isAMD) {
|
|
10908
11211
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -11359,6 +11662,30 @@ export async function importApplicationsExperienceBuilderSketchUtils(): Promise<
|
|
|
11359
11662
|
return isDefaultModule(module) ? module.default : module;
|
|
11360
11663
|
}
|
|
11361
11664
|
|
|
11665
|
+
export async function importApplicationsKnowledgeStudioGeneralSharedKgUtils(): Promise<typeof __esri.generalSharedKgUtils> {
|
|
11666
|
+
if (isAMD) {
|
|
11667
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/generalSharedKgUtils");
|
|
11668
|
+
}
|
|
11669
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/generalSharedKgUtils.js");
|
|
11670
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11671
|
+
}
|
|
11672
|
+
|
|
11673
|
+
export async function importApplicationsKnowledgeStudioLayerInternalAccessUtils(): Promise<typeof __esri.layerInternalAccessUtils> {
|
|
11674
|
+
if (isAMD) {
|
|
11675
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/layerInternalAccessUtils");
|
|
11676
|
+
}
|
|
11677
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/layerInternalAccessUtils.js");
|
|
11678
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11679
|
+
}
|
|
11680
|
+
|
|
11681
|
+
export async function importApplicationsKnowledgeStudioResourceSerializationUtils(): Promise<typeof __esri.resourceSerializationUtils> {
|
|
11682
|
+
if (isAMD) {
|
|
11683
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/resourceSerializationUtils");
|
|
11684
|
+
}
|
|
11685
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/resourceSerializationUtils.js");
|
|
11686
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11687
|
+
}
|
|
11688
|
+
|
|
11362
11689
|
export async function importApplicationsMapViewerMediaUtils(): Promise<typeof __esri.mediaUtils> {
|
|
11363
11690
|
if (isAMD) {
|
|
11364
11691
|
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|