@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/dist/index.js
CHANGED
|
@@ -1106,6 +1106,17 @@ async function newLayersLineOfSightLayer(properties) {
|
|
|
1106
1106
|
const ModConstructor = await importLayersLineOfSightLayer();
|
|
1107
1107
|
return new ModConstructor(properties);
|
|
1108
1108
|
}
|
|
1109
|
+
async function importLayersLinkChartLayer() {
|
|
1110
|
+
if (isAMD) {
|
|
1111
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1112
|
+
}
|
|
1113
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1114
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1115
|
+
}
|
|
1116
|
+
async function newLayersLinkChartLayer(properties) {
|
|
1117
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1118
|
+
return new ModConstructor(properties);
|
|
1119
|
+
}
|
|
1109
1120
|
async function importLayersMapImageLayer() {
|
|
1110
1121
|
if (isAMD) {
|
|
1111
1122
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -2118,6 +2129,61 @@ async function newLayersWMTSLayer(properties) {
|
|
|
2118
2129
|
const ModConstructor = await importLayersWMTSLayer();
|
|
2119
2130
|
return new ModConstructor(properties);
|
|
2120
2131
|
}
|
|
2132
|
+
async function importLinkChartChronologicalLayoutSettings() {
|
|
2133
|
+
if (isAMD) {
|
|
2134
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2135
|
+
}
|
|
2136
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2137
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2138
|
+
}
|
|
2139
|
+
async function newLinkChartChronologicalLayoutSettings(properties) {
|
|
2140
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2141
|
+
return new ModConstructor(properties);
|
|
2142
|
+
}
|
|
2143
|
+
async function importLinkChartLayoutSettings() {
|
|
2144
|
+
if (isAMD) {
|
|
2145
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2146
|
+
}
|
|
2147
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2148
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2149
|
+
}
|
|
2150
|
+
async function newLinkChartLayoutSettings(properties) {
|
|
2151
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2152
|
+
return new ModConstructor(properties);
|
|
2153
|
+
}
|
|
2154
|
+
async function importLinkChartLinkChartProperties() {
|
|
2155
|
+
if (isAMD) {
|
|
2156
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2157
|
+
}
|
|
2158
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2159
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2160
|
+
}
|
|
2161
|
+
async function newLinkChartLinkChartProperties(properties) {
|
|
2162
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2163
|
+
return new ModConstructor(properties);
|
|
2164
|
+
}
|
|
2165
|
+
async function importLinkChartNonspatialDataDisplay() {
|
|
2166
|
+
if (isAMD) {
|
|
2167
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2168
|
+
}
|
|
2169
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2170
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2171
|
+
}
|
|
2172
|
+
async function newLinkChartNonspatialDataDisplay(properties) {
|
|
2173
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2174
|
+
return new ModConstructor(properties);
|
|
2175
|
+
}
|
|
2176
|
+
async function importLinkChartOrganicLayoutSettings() {
|
|
2177
|
+
if (isAMD) {
|
|
2178
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2179
|
+
}
|
|
2180
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2181
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2182
|
+
}
|
|
2183
|
+
async function newLinkChartOrganicLayoutSettings(properties) {
|
|
2184
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2185
|
+
return new ModConstructor(properties);
|
|
2186
|
+
}
|
|
2121
2187
|
async function importMap() {
|
|
2122
2188
|
if (isAMD) {
|
|
2123
2189
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -3174,6 +3240,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3174
3240
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3175
3241
|
return new ModConstructor(properties);
|
|
3176
3242
|
}
|
|
3243
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3244
|
+
if (isAMD) {
|
|
3245
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3246
|
+
}
|
|
3247
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3248
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3249
|
+
}
|
|
3250
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3251
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3252
|
+
return new ModConstructor(properties);
|
|
3253
|
+
}
|
|
3177
3254
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3178
3255
|
if (isAMD) {
|
|
3179
3256
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3306,6 +3383,17 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3306
3383
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3307
3384
|
return new ModConstructor(properties);
|
|
3308
3385
|
}
|
|
3386
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3387
|
+
if (isAMD) {
|
|
3388
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3389
|
+
}
|
|
3390
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3391
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3392
|
+
}
|
|
3393
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3394
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3395
|
+
return new ModConstructor(properties);
|
|
3396
|
+
}
|
|
3309
3397
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3310
3398
|
if (isAMD) {
|
|
3311
3399
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -5715,6 +5803,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5715
5803
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5716
5804
|
return new ModConstructor(properties);
|
|
5717
5805
|
}
|
|
5806
|
+
async function importViewsLinkChartView() {
|
|
5807
|
+
if (isAMD) {
|
|
5808
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
5809
|
+
}
|
|
5810
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
5811
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5812
|
+
}
|
|
5813
|
+
async function newViewsLinkChartView(properties) {
|
|
5814
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
5815
|
+
return new ModConstructor(properties);
|
|
5816
|
+
}
|
|
5718
5817
|
async function importViewsMagnifier() {
|
|
5719
5818
|
if (isAMD) {
|
|
5720
5819
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -6045,6 +6144,17 @@ async function newWebDocument2D(properties) {
|
|
|
6045
6144
|
const ModConstructor = await importWebDocument2D();
|
|
6046
6145
|
return new ModConstructor(properties);
|
|
6047
6146
|
}
|
|
6147
|
+
async function importWebLinkChart() {
|
|
6148
|
+
if (isAMD) {
|
|
6149
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6150
|
+
}
|
|
6151
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6152
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6153
|
+
}
|
|
6154
|
+
async function newWebLinkChart(properties) {
|
|
6155
|
+
const ModConstructor = await importWebLinkChart();
|
|
6156
|
+
return new ModConstructor(properties);
|
|
6157
|
+
}
|
|
6048
6158
|
async function importWebMap() {
|
|
6049
6159
|
if (isAMD) {
|
|
6050
6160
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -8179,6 +8289,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8179
8289
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8180
8290
|
return new ModConstructor(properties);
|
|
8181
8291
|
}
|
|
8292
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8293
|
+
if (isAMD) {
|
|
8294
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8295
|
+
}
|
|
8296
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8297
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8298
|
+
}
|
|
8299
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8300
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8301
|
+
return new ModConstructor(properties);
|
|
8302
|
+
}
|
|
8182
8303
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8183
8304
|
if (isAMD) {
|
|
8184
8305
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8495,6 +8616,13 @@ async function importGeometryOperatorsAffineTransformOperator() {
|
|
|
8495
8616
|
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
8617
|
return isDefaultModule(module) ? module.default : module;
|
|
8497
8618
|
}
|
|
8619
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8620
|
+
if (isAMD) {
|
|
8621
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8622
|
+
}
|
|
8623
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8624
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8625
|
+
}
|
|
8498
8626
|
async function importGeometryOperatorsAreaOperator() {
|
|
8499
8627
|
if (isAMD) {
|
|
8500
8628
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -8502,6 +8630,20 @@ async function importGeometryOperatorsAreaOperator() {
|
|
|
8502
8630
|
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
8631
|
return isDefaultModule(module) ? module.default : module;
|
|
8504
8632
|
}
|
|
8633
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
8634
|
+
if (isAMD) {
|
|
8635
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
8636
|
+
}
|
|
8637
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
8638
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8639
|
+
}
|
|
8640
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
8641
|
+
if (isAMD) {
|
|
8642
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
8643
|
+
}
|
|
8644
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
8645
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8646
|
+
}
|
|
8505
8647
|
async function importGeometryOperatorsBufferOperator() {
|
|
8506
8648
|
if (isAMD) {
|
|
8507
8649
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -8586,6 +8728,13 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8586
8728
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8587
8729
|
return isDefaultModule(module) ? module.default : module;
|
|
8588
8730
|
}
|
|
8731
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
8732
|
+
if (isAMD) {
|
|
8733
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
8734
|
+
}
|
|
8735
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
8736
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8737
|
+
}
|
|
8589
8738
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8590
8739
|
if (isAMD) {
|
|
8591
8740
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8600,6 +8749,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8600
8749
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8601
8750
|
return isDefaultModule(module) ? module.default : module;
|
|
8602
8751
|
}
|
|
8752
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
8753
|
+
if (isAMD) {
|
|
8754
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
8755
|
+
}
|
|
8756
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
8757
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8758
|
+
}
|
|
8603
8759
|
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8604
8760
|
if (isAMD) {
|
|
8605
8761
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -8635,6 +8791,13 @@ async function importGeometryOperatorsGraphicBufferOperator() {
|
|
|
8635
8791
|
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8636
8792
|
return isDefaultModule(module) ? module.default : module;
|
|
8637
8793
|
}
|
|
8794
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
8795
|
+
if (isAMD) {
|
|
8796
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
8797
|
+
}
|
|
8798
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
8799
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8800
|
+
}
|
|
8638
8801
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8639
8802
|
if (isAMD) {
|
|
8640
8803
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8649,6 +8812,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8649
8812
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8650
8813
|
return isDefaultModule(module) ? module.default : module;
|
|
8651
8814
|
}
|
|
8815
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
8816
|
+
if (isAMD) {
|
|
8817
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
8818
|
+
}
|
|
8819
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
8820
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8821
|
+
}
|
|
8822
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
8823
|
+
if (isAMD) {
|
|
8824
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
8825
|
+
}
|
|
8826
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
8827
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8828
|
+
}
|
|
8652
8829
|
async function importGeometryOperatorsLengthOperator() {
|
|
8653
8830
|
if (isAMD) {
|
|
8654
8831
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -8656,6 +8833,34 @@ async function importGeometryOperatorsLengthOperator() {
|
|
|
8656
8833
|
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
8834
|
return isDefaultModule(module) ? module.default : module;
|
|
8658
8835
|
}
|
|
8836
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
8837
|
+
if (isAMD) {
|
|
8838
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
8839
|
+
}
|
|
8840
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
8841
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8842
|
+
}
|
|
8843
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
8844
|
+
if (isAMD) {
|
|
8845
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
8846
|
+
}
|
|
8847
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
8848
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8849
|
+
}
|
|
8850
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
8851
|
+
if (isAMD) {
|
|
8852
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
8853
|
+
}
|
|
8854
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
8855
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8856
|
+
}
|
|
8857
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
8858
|
+
if (isAMD) {
|
|
8859
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
8860
|
+
}
|
|
8861
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
8862
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8863
|
+
}
|
|
8659
8864
|
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
8865
|
if (isAMD) {
|
|
8661
8866
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -8670,6 +8875,20 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8670
8875
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8671
8876
|
return isDefaultModule(module) ? module.default : module;
|
|
8672
8877
|
}
|
|
8878
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
8879
|
+
if (isAMD) {
|
|
8880
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
8881
|
+
}
|
|
8882
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
8883
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8884
|
+
}
|
|
8885
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
8886
|
+
if (isAMD) {
|
|
8887
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
8888
|
+
}
|
|
8889
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
8890
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8891
|
+
}
|
|
8673
8892
|
async function importGeometryOperatorsProximityOperator() {
|
|
8674
8893
|
if (isAMD) {
|
|
8675
8894
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8684,6 +8903,13 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8684
8903
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8685
8904
|
return isDefaultModule(module) ? module.default : module;
|
|
8686
8905
|
}
|
|
8906
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
8907
|
+
if (isAMD) {
|
|
8908
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
8909
|
+
}
|
|
8910
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
8911
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8912
|
+
}
|
|
8687
8913
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8688
8914
|
if (isAMD) {
|
|
8689
8915
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8775,6 +9001,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8775
9001
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8776
9002
|
return isDefaultModule(module) ? module.default : module;
|
|
8777
9003
|
}
|
|
9004
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9005
|
+
if (isAMD) {
|
|
9006
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9007
|
+
}
|
|
9008
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9009
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9010
|
+
}
|
|
9011
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9012
|
+
if (isAMD) {
|
|
9013
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9014
|
+
}
|
|
9015
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9016
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9017
|
+
}
|
|
8778
9018
|
async function importLayersOgcWfsUtils() {
|
|
8779
9019
|
if (isAMD) {
|
|
8780
9020
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8789,6 +9029,20 @@ async function importLayersOgcWcsUtils() {
|
|
|
8789
9029
|
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
9030
|
return isDefaultModule(module) ? module.default : module;
|
|
8791
9031
|
}
|
|
9032
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9033
|
+
if (isAMD) {
|
|
9034
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9035
|
+
}
|
|
9036
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9037
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9038
|
+
}
|
|
9039
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9040
|
+
if (isAMD) {
|
|
9041
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9042
|
+
}
|
|
9043
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9044
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9045
|
+
}
|
|
8792
9046
|
async function importLayersSupportArcadeUtils() {
|
|
8793
9047
|
if (isAMD) {
|
|
8794
9048
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -9237,6 +9491,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9237
9491
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9238
9492
|
return isDefaultModule(module) ? module.default : module;
|
|
9239
9493
|
}
|
|
9494
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9495
|
+
if (isAMD) {
|
|
9496
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9497
|
+
}
|
|
9498
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9499
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9500
|
+
}
|
|
9240
9501
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9241
9502
|
if (isAMD) {
|
|
9242
9503
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9636,6 +9897,27 @@ async function importApplicationsExperienceBuilderSketchUtils() {
|
|
|
9636
9897
|
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9637
9898
|
return isDefaultModule(module) ? module.default : module;
|
|
9638
9899
|
}
|
|
9900
|
+
async function importApplicationsKnowledgeStudioGeneralSharedKgUtils() {
|
|
9901
|
+
if (isAMD) {
|
|
9902
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/generalSharedKgUtils");
|
|
9903
|
+
}
|
|
9904
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/generalSharedKgUtils.js");
|
|
9905
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9906
|
+
}
|
|
9907
|
+
async function importApplicationsKnowledgeStudioLayerInternalAccessUtils() {
|
|
9908
|
+
if (isAMD) {
|
|
9909
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/layerInternalAccessUtils");
|
|
9910
|
+
}
|
|
9911
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/layerInternalAccessUtils.js");
|
|
9912
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9913
|
+
}
|
|
9914
|
+
async function importApplicationsKnowledgeStudioResourceSerializationUtils() {
|
|
9915
|
+
if (isAMD) {
|
|
9916
|
+
return await window.$arcgis.import("esri/applications/KnowledgeStudio/resourceSerializationUtils");
|
|
9917
|
+
}
|
|
9918
|
+
const module = await import("@arcgis/core/applications/KnowledgeStudio/resourceSerializationUtils.js");
|
|
9919
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9920
|
+
}
|
|
9639
9921
|
async function importApplicationsMapViewerMediaUtils() {
|
|
9640
9922
|
if (isAMD) {
|
|
9641
9923
|
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
@@ -9728,6 +10010,9 @@ export {
|
|
|
9728
10010
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9729
10011
|
importApplicationsExcaliburVideoViewUtils,
|
|
9730
10012
|
importApplicationsExperienceBuilderSketchUtils,
|
|
10013
|
+
importApplicationsKnowledgeStudioGeneralSharedKgUtils,
|
|
10014
|
+
importApplicationsKnowledgeStudioLayerInternalAccessUtils,
|
|
10015
|
+
importApplicationsKnowledgeStudioResourceSerializationUtils,
|
|
9731
10016
|
importApplicationsMapViewerMediaUtils,
|
|
9732
10017
|
importApplicationsMapViewerTemplateUtils,
|
|
9733
10018
|
importApplicationsSceneViewerColorUtils,
|
|
@@ -9795,7 +10080,10 @@ export {
|
|
|
9795
10080
|
importGeometryMesh,
|
|
9796
10081
|
importGeometryMultipoint,
|
|
9797
10082
|
importGeometryOperatorsAffineTransformOperator,
|
|
10083
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
9798
10084
|
importGeometryOperatorsAreaOperator,
|
|
10085
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10086
|
+
importGeometryOperatorsBoundaryOperator,
|
|
9799
10087
|
importGeometryOperatorsBufferOperator,
|
|
9800
10088
|
importGeometryOperatorsCentroidOperator,
|
|
9801
10089
|
importGeometryOperatorsClipOperator,
|
|
@@ -9808,20 +10096,32 @@ export {
|
|
|
9808
10096
|
importGeometryOperatorsDisjointOperator,
|
|
9809
10097
|
importGeometryOperatorsDistanceOperator,
|
|
9810
10098
|
importGeometryOperatorsEqualsOperator,
|
|
10099
|
+
importGeometryOperatorsExtendOperator,
|
|
9811
10100
|
importGeometryOperatorsGeneralizeOperator,
|
|
9812
10101
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10102
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
9813
10103
|
importGeometryOperatorsGeodeticAreaOperator,
|
|
9814
10104
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9815
10105
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9816
10106
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
9817
10107
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10108
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9818
10109
|
importGeometryOperatorsIntersectionOperator,
|
|
9819
10110
|
importGeometryOperatorsIntersectsOperator,
|
|
10111
|
+
importGeometryOperatorsIsNearOperator,
|
|
10112
|
+
importGeometryOperatorsLabelPointOperator,
|
|
9820
10113
|
importGeometryOperatorsLengthOperator,
|
|
10114
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10115
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10116
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10117
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
9821
10118
|
importGeometryOperatorsOffsetOperator,
|
|
9822
10119
|
importGeometryOperatorsOverlapsOperator,
|
|
10120
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10121
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
9823
10122
|
importGeometryOperatorsProximityOperator,
|
|
9824
10123
|
importGeometryOperatorsRelateOperator,
|
|
10124
|
+
importGeometryOperatorsReshapeOperator,
|
|
9825
10125
|
importGeometryOperatorsSimplifyOperator,
|
|
9826
10126
|
importGeometryOperatorsSupportTransformation,
|
|
9827
10127
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
@@ -9881,10 +10181,13 @@ export {
|
|
|
9881
10181
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9882
10182
|
importLayersIntegratedMeshLayer,
|
|
9883
10183
|
importLayersKMLLayer,
|
|
10184
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9884
10185
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9885
10186
|
importLayersKnowledgeGraphLayer,
|
|
10187
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9886
10188
|
importLayersLayer,
|
|
9887
10189
|
importLayersLineOfSightLayer,
|
|
10190
|
+
importLayersLinkChartLayer,
|
|
9888
10191
|
importLayersMapImageLayer,
|
|
9889
10192
|
importLayersMapNotesLayer,
|
|
9890
10193
|
importLayersMediaLayer,
|
|
@@ -9893,6 +10196,8 @@ export {
|
|
|
9893
10196
|
importLayersOgcWfsUtils,
|
|
9894
10197
|
importLayersOpenStreetMapLayer,
|
|
9895
10198
|
importLayersOrientedImageryLayer,
|
|
10199
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10200
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9896
10201
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9897
10202
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9898
10203
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9986,6 +10291,11 @@ export {
|
|
|
9986
10291
|
importLayersWMSLayer,
|
|
9987
10292
|
importLayersWMTSLayer,
|
|
9988
10293
|
importLayersWebTileLayer,
|
|
10294
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10295
|
+
importLinkChartLayoutSettings,
|
|
10296
|
+
importLinkChartLinkChartProperties,
|
|
10297
|
+
importLinkChartNonspatialDataDisplay,
|
|
10298
|
+
importLinkChartOrganicLayoutSettings,
|
|
9989
10299
|
importMap,
|
|
9990
10300
|
importNetworksNetwork,
|
|
9991
10301
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -10098,6 +10408,7 @@ export {
|
|
|
10098
10408
|
importRestKnowledgeGraphGraphProperty,
|
|
10099
10409
|
importRestKnowledgeGraphGraphQuery,
|
|
10100
10410
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10411
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
10101
10412
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
10102
10413
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10103
10414
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -10111,6 +10422,7 @@ export {
|
|
|
10111
10422
|
importRestKnowledgeGraphSearchIndex,
|
|
10112
10423
|
importRestKnowledgeGraphService,
|
|
10113
10424
|
importRestKnowledgeGraphServiceDefinition,
|
|
10425
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10114
10426
|
importRestLocator,
|
|
10115
10427
|
importRestNetworkService,
|
|
10116
10428
|
importRestNetworksQueryAssociations,
|
|
@@ -10260,6 +10572,7 @@ export {
|
|
|
10260
10572
|
importSmartMappingRenderersPredominance,
|
|
10261
10573
|
importSmartMappingRenderersRelationship,
|
|
10262
10574
|
importSmartMappingRenderersSize,
|
|
10575
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10263
10576
|
importSmartMappingRenderersType,
|
|
10264
10577
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10265
10578
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10407,6 +10720,7 @@ export {
|
|
|
10407
10720
|
importViewsLayersSceneLayerView,
|
|
10408
10721
|
importViewsLayersStreamLayerView,
|
|
10409
10722
|
importViewsLayersViewshedLayerView,
|
|
10723
|
+
importViewsLinkChartView,
|
|
10410
10724
|
importViewsMagnifier,
|
|
10411
10725
|
importViewsMapView,
|
|
10412
10726
|
importViewsNavigationGamepadGamepadSettings,
|
|
@@ -10420,6 +10734,7 @@ export {
|
|
|
10420
10734
|
importViewsView2D,
|
|
10421
10735
|
importViewsViewAnimation,
|
|
10422
10736
|
importWebDocument2D,
|
|
10737
|
+
importWebLinkChart,
|
|
10423
10738
|
importWebMap,
|
|
10424
10739
|
importWebScene,
|
|
10425
10740
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10635,6 +10950,7 @@ export {
|
|
|
10635
10950
|
importWidgetsUtilityNetworkAssociations,
|
|
10636
10951
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10637
10952
|
importWidgetsUtilityNetworkTrace,
|
|
10953
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10638
10954
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10639
10955
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10640
10956
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10751,6 +11067,7 @@ export {
|
|
|
10751
11067
|
newLayersKnowledgeGraphLayer,
|
|
10752
11068
|
newLayersLayer,
|
|
10753
11069
|
newLayersLineOfSightLayer,
|
|
11070
|
+
newLayersLinkChartLayer,
|
|
10754
11071
|
newLayersMapImageLayer,
|
|
10755
11072
|
newLayersMapNotesLayer,
|
|
10756
11073
|
newLayersMediaLayer,
|
|
@@ -10843,6 +11160,11 @@ export {
|
|
|
10843
11160
|
newLayersWMSLayer,
|
|
10844
11161
|
newLayersWMTSLayer,
|
|
10845
11162
|
newLayersWebTileLayer,
|
|
11163
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11164
|
+
newLinkChartLayoutSettings,
|
|
11165
|
+
newLinkChartLinkChartProperties,
|
|
11166
|
+
newLinkChartNonspatialDataDisplay,
|
|
11167
|
+
newLinkChartOrganicLayoutSettings,
|
|
10846
11168
|
newMap,
|
|
10847
11169
|
newNetworksNetwork,
|
|
10848
11170
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10939,6 +11261,7 @@ export {
|
|
|
10939
11261
|
newRestKnowledgeGraphGraphProperty,
|
|
10940
11262
|
newRestKnowledgeGraphGraphQuery,
|
|
10941
11263
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11264
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10942
11265
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10943
11266
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10944
11267
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10951,6 +11274,7 @@ export {
|
|
|
10951
11274
|
newRestKnowledgeGraphRelationshipType,
|
|
10952
11275
|
newRestKnowledgeGraphSearchIndex,
|
|
10953
11276
|
newRestKnowledgeGraphServiceDefinition,
|
|
11277
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10954
11278
|
newRestNetworksSupportAggregatedGeometry,
|
|
10955
11279
|
newRestNetworksSupportAssociation,
|
|
10956
11280
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -11170,6 +11494,7 @@ export {
|
|
|
11170
11494
|
newViewsLayersSceneLayerView,
|
|
11171
11495
|
newViewsLayersStreamLayerView,
|
|
11172
11496
|
newViewsLayersViewshedLayerView,
|
|
11497
|
+
newViewsLinkChartView,
|
|
11173
11498
|
newViewsMagnifier,
|
|
11174
11499
|
newViewsMapView,
|
|
11175
11500
|
newViewsNavigationGamepadGamepadSettings,
|
|
@@ -11182,6 +11507,7 @@ export {
|
|
|
11182
11507
|
newViewsView2D,
|
|
11183
11508
|
newViewsViewAnimation,
|
|
11184
11509
|
newWebDocument2D,
|
|
11510
|
+
newWebLinkChart,
|
|
11185
11511
|
newWebMap,
|
|
11186
11512
|
newWebScene,
|
|
11187
11513
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11394,6 +11720,7 @@ export {
|
|
|
11394
11720
|
newWidgetsUtilityNetworkAssociations,
|
|
11395
11721
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11396
11722
|
newWidgetsUtilityNetworkTrace,
|
|
11723
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11397
11724
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11398
11725
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11399
11726
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
package/package.json
CHANGED
package/scripts/generator.ts
CHANGED
|
@@ -165,6 +165,8 @@ function generate(): void {
|
|
|
165
165
|
|
|
166
166
|
const publicTypeValidator = new PublicTypeValidator();
|
|
167
167
|
|
|
168
|
+
const visitedModules = new Set<string>();
|
|
169
|
+
|
|
168
170
|
// We will visit the typings and extract the symbols we need
|
|
169
171
|
// Add the singletons to the typeInfos array
|
|
170
172
|
const typeInfos: TypeInfo[] = [...singletons.entries()].map(([amdModulePath, typeName]) => ({
|
|
@@ -189,6 +191,11 @@ function generate(): void {
|
|
|
189
191
|
// Only include imports that are in the import dictionary
|
|
190
192
|
// or are part of "esri/applications" modules
|
|
191
193
|
const amdModulePath = node.name.text;
|
|
194
|
+
if (visitedModules.has(amdModulePath)) {
|
|
195
|
+
console.log("\x1b[33m", "WARNING: Skipping duplicate module: ", amdModulePath);
|
|
196
|
+
return node;
|
|
197
|
+
}
|
|
198
|
+
visitedModules.add(amdModulePath);
|
|
192
199
|
if (!amdImportReferencesKeys.includes(amdModulePath) && !amdModulePath.includes("esri/applications")) {
|
|
193
200
|
return node;
|
|
194
201
|
}
|