@arcgis/core-adapter 4.34.0-next.35 → 4.34.0-next.36
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 +189 -7
- package/dist/index.d.cts +33 -5
- package/dist/index.d.ts +33 -5
- package/dist/index.js +189 -7
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -227,6 +227,17 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
227
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
228
|
return new ModConstructor(properties);
|
|
229
229
|
}
|
|
230
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
231
|
+
if (isAMD) {
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
233
|
+
}
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
235
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
|
+
}
|
|
237
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
239
|
+
return new ModConstructor(properties);
|
|
240
|
+
}
|
|
230
241
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
242
|
if (isAMD) {
|
|
232
243
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -3406,6 +3417,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3406
3417
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3407
3418
|
return new ModConstructor(properties);
|
|
3408
3419
|
}
|
|
3420
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3421
|
+
if (isAMD) {
|
|
3422
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3423
|
+
}
|
|
3424
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3425
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3426
|
+
}
|
|
3427
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3428
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3429
|
+
return new ModConstructor(properties);
|
|
3430
|
+
}
|
|
3431
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3432
|
+
if (isAMD) {
|
|
3433
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3434
|
+
}
|
|
3435
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3436
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3437
|
+
}
|
|
3438
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3439
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3440
|
+
return new ModConstructor(properties);
|
|
3441
|
+
}
|
|
3409
3442
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3410
3443
|
if (isAMD) {
|
|
3411
3444
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3428,6 +3461,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3428
3461
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3429
3462
|
return new ModConstructor(properties);
|
|
3430
3463
|
}
|
|
3464
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3465
|
+
if (isAMD) {
|
|
3466
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3467
|
+
}
|
|
3468
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3469
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3470
|
+
}
|
|
3471
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3472
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3473
|
+
return new ModConstructor(properties);
|
|
3474
|
+
}
|
|
3475
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3476
|
+
if (isAMD) {
|
|
3477
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3478
|
+
}
|
|
3479
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3480
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3481
|
+
}
|
|
3482
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3483
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3484
|
+
return new ModConstructor(properties);
|
|
3485
|
+
}
|
|
3431
3486
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3432
3487
|
if (isAMD) {
|
|
3433
3488
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3439,6 +3494,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3439
3494
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3440
3495
|
return new ModConstructor(properties);
|
|
3441
3496
|
}
|
|
3497
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3498
|
+
if (isAMD) {
|
|
3499
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3500
|
+
}
|
|
3501
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3502
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3503
|
+
}
|
|
3504
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3505
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3506
|
+
return new ModConstructor(properties);
|
|
3507
|
+
}
|
|
3442
3508
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3443
3509
|
if (isAMD) {
|
|
3444
3510
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3560,6 +3626,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3560
3626
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3561
3627
|
return new ModConstructor(properties);
|
|
3562
3628
|
}
|
|
3629
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3630
|
+
if (isAMD) {
|
|
3631
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3632
|
+
}
|
|
3633
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3634
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3635
|
+
}
|
|
3636
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3637
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3638
|
+
return new ModConstructor(properties);
|
|
3639
|
+
}
|
|
3640
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3641
|
+
if (isAMD) {
|
|
3642
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3643
|
+
}
|
|
3644
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3645
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3646
|
+
}
|
|
3647
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3648
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3649
|
+
return new ModConstructor(properties);
|
|
3650
|
+
}
|
|
3651
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3652
|
+
if (isAMD) {
|
|
3653
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3654
|
+
}
|
|
3655
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3656
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3657
|
+
}
|
|
3658
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3659
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3660
|
+
return new ModConstructor(properties);
|
|
3661
|
+
}
|
|
3563
3662
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3564
3663
|
if (isAMD) {
|
|
3565
3664
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5837,6 +5936,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5837
5936
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5838
5937
|
return new ModConstructor(properties);
|
|
5839
5938
|
}
|
|
5939
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
5940
|
+
if (isAMD) {
|
|
5941
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
5942
|
+
}
|
|
5943
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
5944
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5945
|
+
}
|
|
5946
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
5947
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
5948
|
+
return new ModConstructor(properties);
|
|
5949
|
+
}
|
|
5840
5950
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5841
5951
|
if (isAMD) {
|
|
5842
5952
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -7212,6 +7322,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7212
7322
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7213
7323
|
return new ModConstructor(properties);
|
|
7214
7324
|
}
|
|
7325
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7326
|
+
if (isAMD) {
|
|
7327
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7328
|
+
}
|
|
7329
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7330
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7331
|
+
}
|
|
7332
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7333
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7334
|
+
return new ModConstructor(properties);
|
|
7335
|
+
}
|
|
7336
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7337
|
+
if (isAMD) {
|
|
7338
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7339
|
+
}
|
|
7340
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7341
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7342
|
+
}
|
|
7343
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7344
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7345
|
+
return new ModConstructor(properties);
|
|
7346
|
+
}
|
|
7347
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7348
|
+
if (isAMD) {
|
|
7349
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7350
|
+
}
|
|
7351
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7352
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7353
|
+
}
|
|
7354
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7355
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7356
|
+
return new ModConstructor(properties);
|
|
7357
|
+
}
|
|
7358
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7359
|
+
if (isAMD) {
|
|
7360
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7361
|
+
}
|
|
7362
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7363
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7364
|
+
}
|
|
7365
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7366
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7367
|
+
return new ModConstructor(properties);
|
|
7368
|
+
}
|
|
7215
7369
|
async function importWidgetsBookmarks() {
|
|
7216
7370
|
if (isAMD) {
|
|
7217
7371
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -10596,13 +10750,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10596
10750
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10597
10751
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10598
10752
|
}
|
|
10599
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10600
|
-
if (isAMD) {
|
|
10601
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10602
|
-
}
|
|
10603
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10604
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10605
|
-
}
|
|
10606
10753
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10607
10754
|
if (isAMD) {
|
|
10608
10755
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10624,6 +10771,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10624
10771
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10625
10772
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10626
10773
|
}
|
|
10774
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10775
|
+
if (isAMD) {
|
|
10776
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10777
|
+
}
|
|
10778
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10779
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10780
|
+
}
|
|
10627
10781
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10628
10782
|
if (isAMD) {
|
|
10629
10783
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10785,7 +10939,9 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10785
10939
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10786
10940
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10787
10941
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
10942
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
10788
10943
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
10944
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10789
10945
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10790
10946
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
10791
10947
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
@@ -11207,10 +11363,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11207
11363
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11208
11364
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11209
11365
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11366
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11210
11367
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11368
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11211
11369
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11212
11370
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11371
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11372
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11213
11373
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11374
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11214
11375
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11215
11376
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11216
11377
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11222,6 +11383,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11222
11383
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11223
11384
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11224
11385
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11386
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11387
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11388
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11225
11389
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11226
11390
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11227
11391
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11502,6 +11666,7 @@ exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLi
|
|
|
11502
11666
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11503
11667
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11504
11668
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11669
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11505
11670
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11506
11671
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11507
11672
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11635,6 +11800,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11635
11800
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11636
11801
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11637
11802
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
11803
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
11804
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
11805
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11638
11806
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11639
11807
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11640
11808
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11840,6 +12008,7 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11840
12008
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11841
12009
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11842
12010
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12011
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
11843
12012
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11844
12013
|
exports.newBasemap = newBasemap;
|
|
11845
12014
|
exports.newCamera = newCamera;
|
|
@@ -12131,10 +12300,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12131
12300
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12132
12301
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12133
12302
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12303
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12134
12304
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12305
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12135
12306
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12136
12307
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12308
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12309
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12137
12310
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12311
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12138
12312
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12139
12313
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12140
12314
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12146,6 +12320,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12146
12320
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12147
12321
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12148
12322
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12323
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12324
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12325
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12149
12326
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12150
12327
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12151
12328
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12353,6 +12530,7 @@ exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSi
|
|
|
12353
12530
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12354
12531
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12355
12532
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12533
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12356
12534
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12357
12535
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12358
12536
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12478,6 +12656,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12478
12656
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12479
12657
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12480
12658
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12659
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12660
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12661
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12662
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12481
12663
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12482
12664
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12483
12665
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|
package/dist/index.d.cts
CHANGED
|
@@ -49,6 +49,8 @@ export declare function importAnalysisViewshed(): Promise<typeof __esri.Viewshed
|
|
|
49
49
|
export declare function newAnalysisViewshed(properties: __esri.ViewshedProperties): Promise<__esri.Viewshed>;
|
|
50
50
|
export declare function importAnalysisViewshedAnalysis(): Promise<typeof __esri.ViewshedAnalysis>;
|
|
51
51
|
export declare function newAnalysisViewshedAnalysis(properties: __esri.ViewshedAnalysisProperties): Promise<__esri.ViewshedAnalysis>;
|
|
52
|
+
export declare function importAnalysisVolumeMeasurementAnalysis(): Promise<typeof __esri.VolumeMeasurementAnalysis>;
|
|
53
|
+
export declare function newAnalysisVolumeMeasurementAnalysis(properties: __esri.VolumeMeasurementAnalysisProperties): Promise<__esri.VolumeMeasurementAnalysis>;
|
|
52
54
|
export declare function importAnalysisSupportAnalysisOriginWebScene(): Promise<typeof __esri.AnalysisOriginWebScene>;
|
|
53
55
|
export declare function newAnalysisSupportAnalysisOriginWebScene(properties: __esri.AnalysisOriginWebSceneProperties): Promise<__esri.AnalysisOriginWebScene>;
|
|
54
56
|
export declare function importCoreAccessor(): Promise<typeof __esri.Accessor>;
|
|
@@ -627,12 +629,22 @@ export declare function importRestKnowledgeGraphFieldIndex(): Promise<typeof __e
|
|
|
627
629
|
export declare function newRestKnowledgeGraphFieldIndex(properties: __esri.FieldIndexProperties): Promise<__esri.FieldIndex>;
|
|
628
630
|
export declare function importRestKnowledgeGraphGraphAddNamedTypesResult(): Promise<typeof __esri.GraphAddNamedTypesResult>;
|
|
629
631
|
export declare function newRestKnowledgeGraphGraphAddNamedTypesResult(properties: __esri.GraphAddNamedTypesResultProperties): Promise<__esri.GraphAddNamedTypesResult>;
|
|
632
|
+
export declare function importRestKnowledgeGraphGraphAddFieldIndexResult(): Promise<typeof __esri.GraphAddFieldIndexResult>;
|
|
633
|
+
export declare function newRestKnowledgeGraphGraphAddFieldIndexResult(properties: __esri.GraphAddFieldIndexResultProperties): Promise<__esri.GraphAddFieldIndexResult>;
|
|
634
|
+
export declare function importRestKnowledgeGraphGraphAddPropertyResult(): Promise<typeof __esri.GraphAddPropertyResult>;
|
|
635
|
+
export declare function newRestKnowledgeGraphGraphAddPropertyResult(properties: __esri.GraphAddPropertyResultProperties): Promise<__esri.GraphAddPropertyResult>;
|
|
630
636
|
export declare function importRestKnowledgeGraphGraphApplyEdits(): Promise<typeof __esri.GraphApplyEdits>;
|
|
631
637
|
export declare function newRestKnowledgeGraphGraphApplyEdits(properties: __esri.GraphApplyEditsProperties): Promise<__esri.GraphApplyEdits>;
|
|
632
638
|
export declare function importRestKnowledgeGraphGraphApplyEditsResult(): Promise<typeof __esri.GraphApplyEditsResult>;
|
|
633
639
|
export declare function newRestKnowledgeGraphGraphApplyEditsResult(properties: __esri.GraphApplyEditsResultProperties): Promise<__esri.GraphApplyEditsResult>;
|
|
640
|
+
export declare function importRestKnowledgeGraphGraphDataModelOperationResult(): Promise<typeof __esri.GraphDataModelOperationResult>;
|
|
641
|
+
export declare function newRestKnowledgeGraphGraphDataModelOperationResult(properties: __esri.GraphDataModelOperationResultProperties): Promise<__esri.GraphDataModelOperationResult>;
|
|
642
|
+
export declare function importRestKnowledgeGraphGraphDeleteFieldIndexResult(): Promise<typeof __esri.GraphDeleteFieldIndexResult>;
|
|
643
|
+
export declare function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties: __esri.GraphDeleteFieldIndexResultProperties): Promise<__esri.GraphDeleteFieldIndexResult>;
|
|
634
644
|
export declare function importRestKnowledgeGraphGraphDeleteNamedTypeResult(): Promise<typeof __esri.GraphDeleteNamedTypeResult>;
|
|
635
645
|
export declare function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties: __esri.GraphDeleteNamedTypeResultProperties): Promise<__esri.GraphDeleteNamedTypeResult>;
|
|
646
|
+
export declare function importRestKnowledgeGraphGraphDeletePropertyResult(): Promise<typeof __esri.GraphDeletePropertyResult>;
|
|
647
|
+
export declare function newRestKnowledgeGraphGraphDeletePropertyResult(properties: __esri.GraphDeletePropertyResultProperties): Promise<__esri.GraphDeletePropertyResult>;
|
|
636
648
|
export declare function importRestKnowledgeGraphGraphNamedObject(): Promise<typeof __esri.GraphNamedObject>;
|
|
637
649
|
export declare function newRestKnowledgeGraphGraphNamedObject(properties: __esri.GraphNamedObjectProperties): Promise<__esri.GraphNamedObject>;
|
|
638
650
|
export declare function importRestKnowledgeGraphGraphObject(): Promise<typeof __esri.GraphObject>;
|
|
@@ -655,6 +667,12 @@ export declare function importRestKnowledgeGraphGraphSearch(): Promise<typeof __
|
|
|
655
667
|
export declare function newRestKnowledgeGraphGraphSearch(properties: __esri.GraphSearchProperties): Promise<__esri.GraphSearch>;
|
|
656
668
|
export declare function importRestKnowledgeGraphGraphSearchStreaming(): Promise<typeof __esri.GraphSearchStreaming>;
|
|
657
669
|
export declare function newRestKnowledgeGraphGraphSearchStreaming(properties: __esri.GraphSearchStreamingProperties): Promise<__esri.GraphSearchStreaming>;
|
|
670
|
+
export declare function importRestKnowledgeGraphGraphUpdateNamedTypesResult(): Promise<typeof __esri.GraphUpdateNamedTypesResult>;
|
|
671
|
+
export declare function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties: __esri.GraphUpdateNamedTypesResultProperties): Promise<__esri.GraphUpdateNamedTypesResult>;
|
|
672
|
+
export declare function importRestKnowledgeGraphGraphUpdatePropertyResult(): Promise<typeof __esri.GraphUpdatePropertyResult>;
|
|
673
|
+
export declare function newRestKnowledgeGraphGraphUpdatePropertyResult(properties: __esri.GraphUpdatePropertyResultProperties): Promise<__esri.GraphUpdatePropertyResult>;
|
|
674
|
+
export declare function importRestKnowledgeGraphGraphUpdateSearchIndexResult(): Promise<typeof __esri.GraphUpdateSearchIndexResult>;
|
|
675
|
+
export declare function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties: __esri.GraphUpdateSearchIndexResultProperties): Promise<__esri.GraphUpdateSearchIndexResult>;
|
|
658
676
|
export declare function importRestKnowledgeGraphInputQuantizationParameters(): Promise<typeof __esri.InputQuantizationParameters>;
|
|
659
677
|
export declare function newRestKnowledgeGraphInputQuantizationParameters(properties: __esri.InputQuantizationParametersProperties): Promise<__esri.InputQuantizationParameters>;
|
|
660
678
|
export declare function importRestKnowledgeGraphKnowledgeGraph(): Promise<typeof __esri.KnowledgeGraph>;
|
|
@@ -1069,6 +1087,8 @@ export declare function importViews3dAnalysisSliceAnalysisView3D(): Promise<type
|
|
|
1069
1087
|
export declare function newViews3dAnalysisSliceAnalysisView3D(properties: any): Promise<__esri.SliceAnalysisView3D>;
|
|
1070
1088
|
export declare function importViews3dAnalysisViewshedAnalysisView3D(): Promise<typeof __esri.ViewshedAnalysisView3D>;
|
|
1071
1089
|
export declare function newViews3dAnalysisViewshedAnalysisView3D(properties: any): Promise<__esri.ViewshedAnalysisView3D>;
|
|
1090
|
+
export declare function importViews3dAnalysisVolumeMeasurementAnalysisView3D(): Promise<typeof __esri.VolumeMeasurementAnalysisView3D>;
|
|
1091
|
+
export declare function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties: any): Promise<__esri.VolumeMeasurementAnalysisView3D>;
|
|
1072
1092
|
export declare function importViews3dEnvironmentCloudyWeather(): Promise<typeof __esri.CloudyWeather>;
|
|
1073
1093
|
export declare function newViews3dEnvironmentCloudyWeather(properties: __esri.CloudyWeatherProperties): Promise<__esri.CloudyWeather>;
|
|
1074
1094
|
export declare function importViews3dEnvironmentFoggyWeather(): Promise<typeof __esri.FoggyWeather>;
|
|
@@ -1319,6 +1339,14 @@ export declare function importWidgetsBasemapToggleBasemapToggleViewModel(): Prom
|
|
|
1319
1339
|
export declare function newWidgetsBasemapToggleBasemapToggleViewModel(properties: __esri.BasemapToggleViewModelProperties): Promise<__esri.BasemapToggleViewModel>;
|
|
1320
1340
|
export declare function importWidgetsBatchAttributeForm(): Promise<typeof __esri.BatchAttributeForm>;
|
|
1321
1341
|
export declare function newWidgetsBatchAttributeForm(properties: __esri.BatchAttributeFormProperties): Promise<__esri.BatchAttributeForm>;
|
|
1342
|
+
export declare function importWidgetsBatchAttributeFormBatchAttributeFormViewModel(): Promise<typeof __esri.BatchAttributeFormViewModel>;
|
|
1343
|
+
export declare function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties: __esri.BatchAttributeFormViewModelProperties): Promise<__esri.BatchAttributeFormViewModel>;
|
|
1344
|
+
export declare function importWidgetsBatchAttributeFormInputsBatchFormInputs(): Promise<typeof __esri.BatchFormInputs>;
|
|
1345
|
+
export declare function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties: __esri.BatchFormInputsProperties): Promise<__esri.BatchFormInputs>;
|
|
1346
|
+
export declare function importWidgetsBatchAttributeFormInputsFieldInput(): Promise<typeof __esri.FieldInput>;
|
|
1347
|
+
export declare function newWidgetsBatchAttributeFormInputsFieldInput(properties: __esri.FieldInputProperties): Promise<__esri.FieldInput>;
|
|
1348
|
+
export declare function importWidgetsBatchAttributeFormInputsGroupInput(): Promise<typeof __esri.GroupInput>;
|
|
1349
|
+
export declare function newWidgetsBatchAttributeFormInputsGroupInput(properties: __esri.GroupInputProperties): Promise<__esri.GroupInput>;
|
|
1322
1350
|
export declare function importWidgetsBookmarks(): Promise<typeof __esri.Bookmarks>;
|
|
1323
1351
|
export declare function newWidgetsBookmarks(properties: __esri.BookmarksProperties): Promise<__esri.Bookmarks>;
|
|
1324
1352
|
export declare function importWidgetsBookmarksBookmarksViewModel(): Promise<typeof __esri.BookmarksViewModel>;
|
|
@@ -1413,10 +1441,10 @@ export declare function importWidgetsFeatureForm(): Promise<typeof __esri.Featur
|
|
|
1413
1441
|
export declare function newWidgetsFeatureForm(properties: __esri.FeatureFormProperties): Promise<__esri.FeatureForm>;
|
|
1414
1442
|
export declare function importWidgetsFeatureFormFeatureFormViewModel(): Promise<typeof __esri.FeatureFormViewModel>;
|
|
1415
1443
|
export declare function newWidgetsFeatureFormFeatureFormViewModel(properties: __esri.FeatureFormViewModelProperties): Promise<__esri.FeatureFormViewModel>;
|
|
1416
|
-
export declare function importWidgetsFeatureFormFieldInput(): Promise<typeof __esri.
|
|
1417
|
-
export declare function newWidgetsFeatureFormFieldInput(properties: __esri.
|
|
1418
|
-
export declare function importWidgetsFeatureFormGroupInput(): Promise<typeof __esri.
|
|
1419
|
-
export declare function newWidgetsFeatureFormGroupInput(properties: __esri.
|
|
1444
|
+
export declare function importWidgetsFeatureFormFieldInput(): Promise<typeof __esri.FeatureFormFieldInput>;
|
|
1445
|
+
export declare function newWidgetsFeatureFormFieldInput(properties: __esri.FeatureFormFieldInputProperties): Promise<__esri.FeatureFormFieldInput>;
|
|
1446
|
+
export declare function importWidgetsFeatureFormGroupInput(): Promise<typeof __esri.FeatureFormGroupInput>;
|
|
1447
|
+
export declare function newWidgetsFeatureFormGroupInput(properties: __esri.FeatureFormGroupInputProperties): Promise<__esri.FeatureFormGroupInput>;
|
|
1420
1448
|
export declare function importWidgetsFeatureFormRelationshipInput(): Promise<typeof __esri.RelationshipInput>;
|
|
1421
1449
|
export declare function newWidgetsFeatureFormRelationshipInput(properties: __esri.RelationshipInputProperties): Promise<__esri.RelationshipInput>;
|
|
1422
1450
|
export declare function importWidgetsFeatureFormTextElementInput(): Promise<typeof __esri.TextElementInput>;
|
|
@@ -1883,10 +1911,10 @@ export declare function importViews3dSupportLayerPerformanceInfo(): Promise<type
|
|
|
1883
1911
|
export declare function importViews3dSupportSceneViewPerformanceInfo(): Promise<typeof __esri.SceneViewPerformanceInfo>;
|
|
1884
1912
|
export declare function importViewsAnalysisLengthDimensionResult(): Promise<typeof __esri.LengthDimensionResult>;
|
|
1885
1913
|
export declare function importViewsSupportColorUtils(): Promise<typeof __esri.colorUtils>;
|
|
1886
|
-
export declare function importWidgetsBatchAttributeFormBatchAttributeFormViewModel(): Promise<typeof __esri.BatchAttributeFormViewModel>;
|
|
1887
1914
|
export declare function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils>;
|
|
1888
1915
|
export declare function importWidgetsSupportWidget(): Promise<typeof __esri.widget>;
|
|
1889
1916
|
export declare function importApplicationsComponentsAnalysisUtils(): Promise<typeof __esri.analysisUtils>;
|
|
1917
|
+
export declare function importApplicationsComponentsArcadeFeatureUtils(): Promise<typeof __esri.arcadeFeatureUtils>;
|
|
1890
1918
|
export declare function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils>;
|
|
1891
1919
|
export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
|
|
1892
1920
|
export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ export declare function importAnalysisViewshed(): Promise<typeof __esri.Viewshed
|
|
|
49
49
|
export declare function newAnalysisViewshed(properties: __esri.ViewshedProperties): Promise<__esri.Viewshed>;
|
|
50
50
|
export declare function importAnalysisViewshedAnalysis(): Promise<typeof __esri.ViewshedAnalysis>;
|
|
51
51
|
export declare function newAnalysisViewshedAnalysis(properties: __esri.ViewshedAnalysisProperties): Promise<__esri.ViewshedAnalysis>;
|
|
52
|
+
export declare function importAnalysisVolumeMeasurementAnalysis(): Promise<typeof __esri.VolumeMeasurementAnalysis>;
|
|
53
|
+
export declare function newAnalysisVolumeMeasurementAnalysis(properties: __esri.VolumeMeasurementAnalysisProperties): Promise<__esri.VolumeMeasurementAnalysis>;
|
|
52
54
|
export declare function importAnalysisSupportAnalysisOriginWebScene(): Promise<typeof __esri.AnalysisOriginWebScene>;
|
|
53
55
|
export declare function newAnalysisSupportAnalysisOriginWebScene(properties: __esri.AnalysisOriginWebSceneProperties): Promise<__esri.AnalysisOriginWebScene>;
|
|
54
56
|
export declare function importCoreAccessor(): Promise<typeof __esri.Accessor>;
|
|
@@ -627,12 +629,22 @@ export declare function importRestKnowledgeGraphFieldIndex(): Promise<typeof __e
|
|
|
627
629
|
export declare function newRestKnowledgeGraphFieldIndex(properties: __esri.FieldIndexProperties): Promise<__esri.FieldIndex>;
|
|
628
630
|
export declare function importRestKnowledgeGraphGraphAddNamedTypesResult(): Promise<typeof __esri.GraphAddNamedTypesResult>;
|
|
629
631
|
export declare function newRestKnowledgeGraphGraphAddNamedTypesResult(properties: __esri.GraphAddNamedTypesResultProperties): Promise<__esri.GraphAddNamedTypesResult>;
|
|
632
|
+
export declare function importRestKnowledgeGraphGraphAddFieldIndexResult(): Promise<typeof __esri.GraphAddFieldIndexResult>;
|
|
633
|
+
export declare function newRestKnowledgeGraphGraphAddFieldIndexResult(properties: __esri.GraphAddFieldIndexResultProperties): Promise<__esri.GraphAddFieldIndexResult>;
|
|
634
|
+
export declare function importRestKnowledgeGraphGraphAddPropertyResult(): Promise<typeof __esri.GraphAddPropertyResult>;
|
|
635
|
+
export declare function newRestKnowledgeGraphGraphAddPropertyResult(properties: __esri.GraphAddPropertyResultProperties): Promise<__esri.GraphAddPropertyResult>;
|
|
630
636
|
export declare function importRestKnowledgeGraphGraphApplyEdits(): Promise<typeof __esri.GraphApplyEdits>;
|
|
631
637
|
export declare function newRestKnowledgeGraphGraphApplyEdits(properties: __esri.GraphApplyEditsProperties): Promise<__esri.GraphApplyEdits>;
|
|
632
638
|
export declare function importRestKnowledgeGraphGraphApplyEditsResult(): Promise<typeof __esri.GraphApplyEditsResult>;
|
|
633
639
|
export declare function newRestKnowledgeGraphGraphApplyEditsResult(properties: __esri.GraphApplyEditsResultProperties): Promise<__esri.GraphApplyEditsResult>;
|
|
640
|
+
export declare function importRestKnowledgeGraphGraphDataModelOperationResult(): Promise<typeof __esri.GraphDataModelOperationResult>;
|
|
641
|
+
export declare function newRestKnowledgeGraphGraphDataModelOperationResult(properties: __esri.GraphDataModelOperationResultProperties): Promise<__esri.GraphDataModelOperationResult>;
|
|
642
|
+
export declare function importRestKnowledgeGraphGraphDeleteFieldIndexResult(): Promise<typeof __esri.GraphDeleteFieldIndexResult>;
|
|
643
|
+
export declare function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties: __esri.GraphDeleteFieldIndexResultProperties): Promise<__esri.GraphDeleteFieldIndexResult>;
|
|
634
644
|
export declare function importRestKnowledgeGraphGraphDeleteNamedTypeResult(): Promise<typeof __esri.GraphDeleteNamedTypeResult>;
|
|
635
645
|
export declare function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties: __esri.GraphDeleteNamedTypeResultProperties): Promise<__esri.GraphDeleteNamedTypeResult>;
|
|
646
|
+
export declare function importRestKnowledgeGraphGraphDeletePropertyResult(): Promise<typeof __esri.GraphDeletePropertyResult>;
|
|
647
|
+
export declare function newRestKnowledgeGraphGraphDeletePropertyResult(properties: __esri.GraphDeletePropertyResultProperties): Promise<__esri.GraphDeletePropertyResult>;
|
|
636
648
|
export declare function importRestKnowledgeGraphGraphNamedObject(): Promise<typeof __esri.GraphNamedObject>;
|
|
637
649
|
export declare function newRestKnowledgeGraphGraphNamedObject(properties: __esri.GraphNamedObjectProperties): Promise<__esri.GraphNamedObject>;
|
|
638
650
|
export declare function importRestKnowledgeGraphGraphObject(): Promise<typeof __esri.GraphObject>;
|
|
@@ -655,6 +667,12 @@ export declare function importRestKnowledgeGraphGraphSearch(): Promise<typeof __
|
|
|
655
667
|
export declare function newRestKnowledgeGraphGraphSearch(properties: __esri.GraphSearchProperties): Promise<__esri.GraphSearch>;
|
|
656
668
|
export declare function importRestKnowledgeGraphGraphSearchStreaming(): Promise<typeof __esri.GraphSearchStreaming>;
|
|
657
669
|
export declare function newRestKnowledgeGraphGraphSearchStreaming(properties: __esri.GraphSearchStreamingProperties): Promise<__esri.GraphSearchStreaming>;
|
|
670
|
+
export declare function importRestKnowledgeGraphGraphUpdateNamedTypesResult(): Promise<typeof __esri.GraphUpdateNamedTypesResult>;
|
|
671
|
+
export declare function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties: __esri.GraphUpdateNamedTypesResultProperties): Promise<__esri.GraphUpdateNamedTypesResult>;
|
|
672
|
+
export declare function importRestKnowledgeGraphGraphUpdatePropertyResult(): Promise<typeof __esri.GraphUpdatePropertyResult>;
|
|
673
|
+
export declare function newRestKnowledgeGraphGraphUpdatePropertyResult(properties: __esri.GraphUpdatePropertyResultProperties): Promise<__esri.GraphUpdatePropertyResult>;
|
|
674
|
+
export declare function importRestKnowledgeGraphGraphUpdateSearchIndexResult(): Promise<typeof __esri.GraphUpdateSearchIndexResult>;
|
|
675
|
+
export declare function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties: __esri.GraphUpdateSearchIndexResultProperties): Promise<__esri.GraphUpdateSearchIndexResult>;
|
|
658
676
|
export declare function importRestKnowledgeGraphInputQuantizationParameters(): Promise<typeof __esri.InputQuantizationParameters>;
|
|
659
677
|
export declare function newRestKnowledgeGraphInputQuantizationParameters(properties: __esri.InputQuantizationParametersProperties): Promise<__esri.InputQuantizationParameters>;
|
|
660
678
|
export declare function importRestKnowledgeGraphKnowledgeGraph(): Promise<typeof __esri.KnowledgeGraph>;
|
|
@@ -1069,6 +1087,8 @@ export declare function importViews3dAnalysisSliceAnalysisView3D(): Promise<type
|
|
|
1069
1087
|
export declare function newViews3dAnalysisSliceAnalysisView3D(properties: any): Promise<__esri.SliceAnalysisView3D>;
|
|
1070
1088
|
export declare function importViews3dAnalysisViewshedAnalysisView3D(): Promise<typeof __esri.ViewshedAnalysisView3D>;
|
|
1071
1089
|
export declare function newViews3dAnalysisViewshedAnalysisView3D(properties: any): Promise<__esri.ViewshedAnalysisView3D>;
|
|
1090
|
+
export declare function importViews3dAnalysisVolumeMeasurementAnalysisView3D(): Promise<typeof __esri.VolumeMeasurementAnalysisView3D>;
|
|
1091
|
+
export declare function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties: any): Promise<__esri.VolumeMeasurementAnalysisView3D>;
|
|
1072
1092
|
export declare function importViews3dEnvironmentCloudyWeather(): Promise<typeof __esri.CloudyWeather>;
|
|
1073
1093
|
export declare function newViews3dEnvironmentCloudyWeather(properties: __esri.CloudyWeatherProperties): Promise<__esri.CloudyWeather>;
|
|
1074
1094
|
export declare function importViews3dEnvironmentFoggyWeather(): Promise<typeof __esri.FoggyWeather>;
|
|
@@ -1319,6 +1339,14 @@ export declare function importWidgetsBasemapToggleBasemapToggleViewModel(): Prom
|
|
|
1319
1339
|
export declare function newWidgetsBasemapToggleBasemapToggleViewModel(properties: __esri.BasemapToggleViewModelProperties): Promise<__esri.BasemapToggleViewModel>;
|
|
1320
1340
|
export declare function importWidgetsBatchAttributeForm(): Promise<typeof __esri.BatchAttributeForm>;
|
|
1321
1341
|
export declare function newWidgetsBatchAttributeForm(properties: __esri.BatchAttributeFormProperties): Promise<__esri.BatchAttributeForm>;
|
|
1342
|
+
export declare function importWidgetsBatchAttributeFormBatchAttributeFormViewModel(): Promise<typeof __esri.BatchAttributeFormViewModel>;
|
|
1343
|
+
export declare function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties: __esri.BatchAttributeFormViewModelProperties): Promise<__esri.BatchAttributeFormViewModel>;
|
|
1344
|
+
export declare function importWidgetsBatchAttributeFormInputsBatchFormInputs(): Promise<typeof __esri.BatchFormInputs>;
|
|
1345
|
+
export declare function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties: __esri.BatchFormInputsProperties): Promise<__esri.BatchFormInputs>;
|
|
1346
|
+
export declare function importWidgetsBatchAttributeFormInputsFieldInput(): Promise<typeof __esri.FieldInput>;
|
|
1347
|
+
export declare function newWidgetsBatchAttributeFormInputsFieldInput(properties: __esri.FieldInputProperties): Promise<__esri.FieldInput>;
|
|
1348
|
+
export declare function importWidgetsBatchAttributeFormInputsGroupInput(): Promise<typeof __esri.GroupInput>;
|
|
1349
|
+
export declare function newWidgetsBatchAttributeFormInputsGroupInput(properties: __esri.GroupInputProperties): Promise<__esri.GroupInput>;
|
|
1322
1350
|
export declare function importWidgetsBookmarks(): Promise<typeof __esri.Bookmarks>;
|
|
1323
1351
|
export declare function newWidgetsBookmarks(properties: __esri.BookmarksProperties): Promise<__esri.Bookmarks>;
|
|
1324
1352
|
export declare function importWidgetsBookmarksBookmarksViewModel(): Promise<typeof __esri.BookmarksViewModel>;
|
|
@@ -1413,10 +1441,10 @@ export declare function importWidgetsFeatureForm(): Promise<typeof __esri.Featur
|
|
|
1413
1441
|
export declare function newWidgetsFeatureForm(properties: __esri.FeatureFormProperties): Promise<__esri.FeatureForm>;
|
|
1414
1442
|
export declare function importWidgetsFeatureFormFeatureFormViewModel(): Promise<typeof __esri.FeatureFormViewModel>;
|
|
1415
1443
|
export declare function newWidgetsFeatureFormFeatureFormViewModel(properties: __esri.FeatureFormViewModelProperties): Promise<__esri.FeatureFormViewModel>;
|
|
1416
|
-
export declare function importWidgetsFeatureFormFieldInput(): Promise<typeof __esri.
|
|
1417
|
-
export declare function newWidgetsFeatureFormFieldInput(properties: __esri.
|
|
1418
|
-
export declare function importWidgetsFeatureFormGroupInput(): Promise<typeof __esri.
|
|
1419
|
-
export declare function newWidgetsFeatureFormGroupInput(properties: __esri.
|
|
1444
|
+
export declare function importWidgetsFeatureFormFieldInput(): Promise<typeof __esri.FeatureFormFieldInput>;
|
|
1445
|
+
export declare function newWidgetsFeatureFormFieldInput(properties: __esri.FeatureFormFieldInputProperties): Promise<__esri.FeatureFormFieldInput>;
|
|
1446
|
+
export declare function importWidgetsFeatureFormGroupInput(): Promise<typeof __esri.FeatureFormGroupInput>;
|
|
1447
|
+
export declare function newWidgetsFeatureFormGroupInput(properties: __esri.FeatureFormGroupInputProperties): Promise<__esri.FeatureFormGroupInput>;
|
|
1420
1448
|
export declare function importWidgetsFeatureFormRelationshipInput(): Promise<typeof __esri.RelationshipInput>;
|
|
1421
1449
|
export declare function newWidgetsFeatureFormRelationshipInput(properties: __esri.RelationshipInputProperties): Promise<__esri.RelationshipInput>;
|
|
1422
1450
|
export declare function importWidgetsFeatureFormTextElementInput(): Promise<typeof __esri.TextElementInput>;
|
|
@@ -1883,10 +1911,10 @@ export declare function importViews3dSupportLayerPerformanceInfo(): Promise<type
|
|
|
1883
1911
|
export declare function importViews3dSupportSceneViewPerformanceInfo(): Promise<typeof __esri.SceneViewPerformanceInfo>;
|
|
1884
1912
|
export declare function importViewsAnalysisLengthDimensionResult(): Promise<typeof __esri.LengthDimensionResult>;
|
|
1885
1913
|
export declare function importViewsSupportColorUtils(): Promise<typeof __esri.colorUtils>;
|
|
1886
|
-
export declare function importWidgetsBatchAttributeFormBatchAttributeFormViewModel(): Promise<typeof __esri.BatchAttributeFormViewModel>;
|
|
1887
1914
|
export declare function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils>;
|
|
1888
1915
|
export declare function importWidgetsSupportWidget(): Promise<typeof __esri.widget>;
|
|
1889
1916
|
export declare function importApplicationsComponentsAnalysisUtils(): Promise<typeof __esri.analysisUtils>;
|
|
1917
|
+
export declare function importApplicationsComponentsArcadeFeatureUtils(): Promise<typeof __esri.arcadeFeatureUtils>;
|
|
1890
1918
|
export declare function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils>;
|
|
1891
1919
|
export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
|
|
1892
1920
|
export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
|
package/dist/index.js
CHANGED
|
@@ -203,6 +203,17 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
203
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
204
|
return new ModConstructor(properties);
|
|
205
205
|
}
|
|
206
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
207
|
+
if (isAMD) {
|
|
208
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
209
|
+
}
|
|
210
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
211
|
+
return isDefaultModule(module) ? module.default : module;
|
|
212
|
+
}
|
|
213
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
214
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
215
|
+
return new ModConstructor(properties);
|
|
216
|
+
}
|
|
206
217
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
207
218
|
if (isAMD) {
|
|
208
219
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -3382,6 +3393,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3382
3393
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3383
3394
|
return new ModConstructor(properties);
|
|
3384
3395
|
}
|
|
3396
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3397
|
+
if (isAMD) {
|
|
3398
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3399
|
+
}
|
|
3400
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3401
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3402
|
+
}
|
|
3403
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3404
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3405
|
+
return new ModConstructor(properties);
|
|
3406
|
+
}
|
|
3407
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3408
|
+
if (isAMD) {
|
|
3409
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3410
|
+
}
|
|
3411
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3412
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3413
|
+
}
|
|
3414
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3415
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3416
|
+
return new ModConstructor(properties);
|
|
3417
|
+
}
|
|
3385
3418
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3386
3419
|
if (isAMD) {
|
|
3387
3420
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3404,6 +3437,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3404
3437
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3405
3438
|
return new ModConstructor(properties);
|
|
3406
3439
|
}
|
|
3440
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3441
|
+
if (isAMD) {
|
|
3442
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3443
|
+
}
|
|
3444
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3445
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3446
|
+
}
|
|
3447
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3448
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3449
|
+
return new ModConstructor(properties);
|
|
3450
|
+
}
|
|
3451
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3452
|
+
if (isAMD) {
|
|
3453
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3454
|
+
}
|
|
3455
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3456
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3457
|
+
}
|
|
3458
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3459
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3460
|
+
return new ModConstructor(properties);
|
|
3461
|
+
}
|
|
3407
3462
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3408
3463
|
if (isAMD) {
|
|
3409
3464
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3415,6 +3470,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3415
3470
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3416
3471
|
return new ModConstructor(properties);
|
|
3417
3472
|
}
|
|
3473
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3474
|
+
if (isAMD) {
|
|
3475
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3476
|
+
}
|
|
3477
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3478
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3479
|
+
}
|
|
3480
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3481
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3482
|
+
return new ModConstructor(properties);
|
|
3483
|
+
}
|
|
3418
3484
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3419
3485
|
if (isAMD) {
|
|
3420
3486
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3536,6 +3602,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3536
3602
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3537
3603
|
return new ModConstructor(properties);
|
|
3538
3604
|
}
|
|
3605
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3606
|
+
if (isAMD) {
|
|
3607
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3608
|
+
}
|
|
3609
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3610
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3611
|
+
}
|
|
3612
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3613
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3614
|
+
return new ModConstructor(properties);
|
|
3615
|
+
}
|
|
3616
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3617
|
+
if (isAMD) {
|
|
3618
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3619
|
+
}
|
|
3620
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3621
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3622
|
+
}
|
|
3623
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3624
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3625
|
+
return new ModConstructor(properties);
|
|
3626
|
+
}
|
|
3627
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3628
|
+
if (isAMD) {
|
|
3629
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3630
|
+
}
|
|
3631
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3632
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3633
|
+
}
|
|
3634
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3635
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3636
|
+
return new ModConstructor(properties);
|
|
3637
|
+
}
|
|
3539
3638
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3540
3639
|
if (isAMD) {
|
|
3541
3640
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5813,6 +5912,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5813
5912
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5814
5913
|
return new ModConstructor(properties);
|
|
5815
5914
|
}
|
|
5915
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
5916
|
+
if (isAMD) {
|
|
5917
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
5918
|
+
}
|
|
5919
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
5920
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5921
|
+
}
|
|
5922
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
5923
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
5924
|
+
return new ModConstructor(properties);
|
|
5925
|
+
}
|
|
5816
5926
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5817
5927
|
if (isAMD) {
|
|
5818
5928
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -7188,6 +7298,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7188
7298
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7189
7299
|
return new ModConstructor(properties);
|
|
7190
7300
|
}
|
|
7301
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7302
|
+
if (isAMD) {
|
|
7303
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7304
|
+
}
|
|
7305
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7306
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7307
|
+
}
|
|
7308
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7309
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7310
|
+
return new ModConstructor(properties);
|
|
7311
|
+
}
|
|
7312
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7313
|
+
if (isAMD) {
|
|
7314
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7315
|
+
}
|
|
7316
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7317
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7318
|
+
}
|
|
7319
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7320
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7321
|
+
return new ModConstructor(properties);
|
|
7322
|
+
}
|
|
7323
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7324
|
+
if (isAMD) {
|
|
7325
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7326
|
+
}
|
|
7327
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7328
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7329
|
+
}
|
|
7330
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7331
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7332
|
+
return new ModConstructor(properties);
|
|
7333
|
+
}
|
|
7334
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7335
|
+
if (isAMD) {
|
|
7336
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7337
|
+
}
|
|
7338
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7339
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7340
|
+
}
|
|
7341
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7342
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7343
|
+
return new ModConstructor(properties);
|
|
7344
|
+
}
|
|
7191
7345
|
async function importWidgetsBookmarks() {
|
|
7192
7346
|
if (isAMD) {
|
|
7193
7347
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -10572,13 +10726,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10572
10726
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10573
10727
|
return isDefaultModule(module) ? module.default : module;
|
|
10574
10728
|
}
|
|
10575
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10576
|
-
if (isAMD) {
|
|
10577
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10578
|
-
}
|
|
10579
|
-
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10580
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10581
|
-
}
|
|
10582
10729
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10583
10730
|
if (isAMD) {
|
|
10584
10731
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10600,6 +10747,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10600
10747
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10601
10748
|
return isDefaultModule(module) ? module.default : module;
|
|
10602
10749
|
}
|
|
10750
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10751
|
+
if (isAMD) {
|
|
10752
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10753
|
+
}
|
|
10754
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10755
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10756
|
+
}
|
|
10603
10757
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10604
10758
|
if (isAMD) {
|
|
10605
10759
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10762,7 +10916,9 @@ export {
|
|
|
10762
10916
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10763
10917
|
importAnalysisViewshed,
|
|
10764
10918
|
importAnalysisViewshedAnalysis,
|
|
10919
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
10765
10920
|
importApplicationsComponentsAnalysisUtils,
|
|
10921
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10766
10922
|
importApplicationsComponentsBasemapUtils,
|
|
10767
10923
|
importApplicationsComponentsDrawUtils,
|
|
10768
10924
|
importApplicationsComponentsFontUtils,
|
|
@@ -11184,10 +11340,15 @@ export {
|
|
|
11184
11340
|
importRestKnowledgeGraphEntity,
|
|
11185
11341
|
importRestKnowledgeGraphEntityType,
|
|
11186
11342
|
importRestKnowledgeGraphFieldIndex,
|
|
11343
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11187
11344
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11345
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11188
11346
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11189
11347
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11348
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11349
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11190
11350
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11351
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11191
11352
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11192
11353
|
importRestKnowledgeGraphGraphObject,
|
|
11193
11354
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11199,6 +11360,9 @@ export {
|
|
|
11199
11360
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11200
11361
|
importRestKnowledgeGraphGraphSearch,
|
|
11201
11362
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11363
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11364
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11365
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11202
11366
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11203
11367
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11204
11368
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11479,6 +11643,7 @@ export {
|
|
|
11479
11643
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11480
11644
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11481
11645
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11646
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11482
11647
|
importViews3dEnvironmentCloudyWeather,
|
|
11483
11648
|
importViews3dEnvironmentFoggyWeather,
|
|
11484
11649
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11612,6 +11777,9 @@ export {
|
|
|
11612
11777
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11613
11778
|
importWidgetsBatchAttributeForm,
|
|
11614
11779
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
11780
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
11781
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
11782
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11615
11783
|
importWidgetsBookmarks,
|
|
11616
11784
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11617
11785
|
importWidgetsBuildingExplorer,
|
|
@@ -11817,6 +11985,7 @@ export {
|
|
|
11817
11985
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11818
11986
|
newAnalysisViewshed,
|
|
11819
11987
|
newAnalysisViewshedAnalysis,
|
|
11988
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
11820
11989
|
newAttributeBinsGraphic,
|
|
11821
11990
|
newBasemap,
|
|
11822
11991
|
newCamera,
|
|
@@ -12108,10 +12277,15 @@ export {
|
|
|
12108
12277
|
newRestKnowledgeGraphEntity,
|
|
12109
12278
|
newRestKnowledgeGraphEntityType,
|
|
12110
12279
|
newRestKnowledgeGraphFieldIndex,
|
|
12280
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12111
12281
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12282
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12112
12283
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12113
12284
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12285
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12286
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12114
12287
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12288
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12115
12289
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12116
12290
|
newRestKnowledgeGraphGraphObject,
|
|
12117
12291
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12123,6 +12297,9 @@ export {
|
|
|
12123
12297
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12124
12298
|
newRestKnowledgeGraphGraphSearch,
|
|
12125
12299
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12300
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12301
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12302
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12126
12303
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12127
12304
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12128
12305
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12330,6 +12507,7 @@ export {
|
|
|
12330
12507
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12331
12508
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12332
12509
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12510
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12333
12511
|
newViews3dEnvironmentCloudyWeather,
|
|
12334
12512
|
newViews3dEnvironmentFoggyWeather,
|
|
12335
12513
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12455,6 +12633,10 @@ export {
|
|
|
12455
12633
|
newWidgetsBasemapToggle,
|
|
12456
12634
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12457
12635
|
newWidgetsBatchAttributeForm,
|
|
12636
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12637
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12638
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
12639
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12458
12640
|
newWidgetsBookmarks,
|
|
12459
12641
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12460
12642
|
newWidgetsBuildingExplorer,
|