@itwin/rpcinterface-full-stack-tests 5.11.0-dev.13 → 5.11.0-dev.14
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/lib/dist/bundled-tests.js +1719 -1598
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_4_3_4__loaders_gl_core_4_3_4_node_modu-4c1fc9.bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -97445,213 +97445,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
97445
97445
|
* WITH clauses are broken down into individual variables.
|
|
97446
97446
|
*/
|
|
97447
97447
|
const propertyType = (alias) => {
|
|
97448
|
-
return `
|
|
97449
|
-
CASE
|
|
97450
|
-
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
97451
|
-
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
97452
|
-
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
97453
|
-
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
97454
|
-
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
97455
|
-
ELSE NULL
|
|
97456
|
-
END
|
|
97448
|
+
return `
|
|
97449
|
+
CASE
|
|
97450
|
+
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
97451
|
+
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
97452
|
+
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
97453
|
+
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
97454
|
+
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
97455
|
+
ELSE NULL
|
|
97456
|
+
END
|
|
97457
97457
|
`;
|
|
97458
97458
|
};
|
|
97459
97459
|
const navigationDirection = (alias) => {
|
|
97460
|
-
return `
|
|
97461
|
-
CASE
|
|
97462
|
-
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
97463
|
-
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
97464
|
-
ELSE NULL
|
|
97465
|
-
END
|
|
97460
|
+
return `
|
|
97461
|
+
CASE
|
|
97462
|
+
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
97463
|
+
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
97464
|
+
ELSE NULL
|
|
97465
|
+
END
|
|
97466
97466
|
`;
|
|
97467
97467
|
};
|
|
97468
97468
|
const schemaCustomAttribute = (alias) => {
|
|
97469
|
-
return `
|
|
97470
|
-
SELECT
|
|
97471
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97472
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97473
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
97474
|
-
ORDER BY [ca].[Ordinal]
|
|
97469
|
+
return `
|
|
97470
|
+
SELECT
|
|
97471
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97472
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97473
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
97474
|
+
ORDER BY [ca].[Ordinal]
|
|
97475
97475
|
`;
|
|
97476
97476
|
};
|
|
97477
97477
|
/**
|
|
97478
97478
|
* Selects customAttribute data for each class type.
|
|
97479
97479
|
*/
|
|
97480
97480
|
const classCustomAttribute = (alias) => {
|
|
97481
|
-
return `
|
|
97482
|
-
SELECT
|
|
97483
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97484
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97485
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
97486
|
-
ORDER BY [ca].[Ordinal]
|
|
97481
|
+
return `
|
|
97482
|
+
SELECT
|
|
97483
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97484
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97485
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
97486
|
+
ORDER BY [ca].[Ordinal]
|
|
97487
97487
|
`;
|
|
97488
97488
|
};
|
|
97489
97489
|
const propertyCustomAttribute = (alias) => {
|
|
97490
|
-
return `
|
|
97491
|
-
SELECT
|
|
97492
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97493
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97494
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
97495
|
-
ORDER BY [ca].[Ordinal]
|
|
97490
|
+
return `
|
|
97491
|
+
SELECT
|
|
97492
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97493
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97494
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
97495
|
+
ORDER BY [ca].[Ordinal]
|
|
97496
97496
|
`;
|
|
97497
97497
|
};
|
|
97498
97498
|
/**
|
|
97499
97499
|
* Selects base class data for each class type.
|
|
97500
97500
|
*/
|
|
97501
|
-
const selectBaseClasses = `
|
|
97502
|
-
SELECT
|
|
97503
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
97504
|
-
FROM
|
|
97505
|
-
[meta].[ECClassDef] [baseClass]
|
|
97506
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97507
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
97508
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97509
|
-
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
97510
|
-
LIMIT 1
|
|
97501
|
+
const selectBaseClasses = `
|
|
97502
|
+
SELECT
|
|
97503
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
97504
|
+
FROM
|
|
97505
|
+
[meta].[ECClassDef] [baseClass]
|
|
97506
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97507
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
97508
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97509
|
+
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
97510
|
+
LIMIT 1
|
|
97511
97511
|
`;
|
|
97512
97512
|
/**
|
|
97513
97513
|
* Selects class property data for each class type. ClassProperties
|
|
97514
97514
|
* is a common table expression (CTE or WITH clause) defined below.
|
|
97515
97515
|
*/
|
|
97516
|
-
const selectProperties = `
|
|
97517
|
-
SELECT
|
|
97518
|
-
json_group_array(json([classProperties].[property]))
|
|
97519
|
-
FROM
|
|
97520
|
-
[ClassProperties] [classProperties]
|
|
97521
|
-
WHERE
|
|
97522
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
97516
|
+
const selectProperties = `
|
|
97517
|
+
SELECT
|
|
97518
|
+
json_group_array(json([classProperties].[property]))
|
|
97519
|
+
FROM
|
|
97520
|
+
[ClassProperties] [classProperties]
|
|
97521
|
+
WHERE
|
|
97522
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
97523
97523
|
`;
|
|
97524
97524
|
/**
|
|
97525
97525
|
* A CTE used to select AppliesTo from IsMixin CustomAttributes for a given Mixin.
|
|
97526
97526
|
*/
|
|
97527
|
-
const withAppliesTo = `
|
|
97528
|
-
AppliesToCTE AS (
|
|
97529
|
-
SELECT
|
|
97530
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
97531
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
97532
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
97533
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97534
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
97535
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
97536
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
97537
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
97538
|
-
WHERE [ca].[ContainerType] = 30
|
|
97539
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
97540
|
-
)
|
|
97527
|
+
const withAppliesTo = `
|
|
97528
|
+
AppliesToCTE AS (
|
|
97529
|
+
SELECT
|
|
97530
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
97531
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
97532
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
97533
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97534
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
97535
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
97536
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
97537
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
97538
|
+
WHERE [ca].[ContainerType] = 30
|
|
97539
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
97540
|
+
)
|
|
97541
97541
|
`;
|
|
97542
97542
|
/**
|
|
97543
97543
|
* A CTE used to select Schema reference data for a given Schema.
|
|
97544
97544
|
*/
|
|
97545
|
-
const withSchemaReferences = `
|
|
97546
|
-
SchemaReferences as (
|
|
97547
|
-
SELECT
|
|
97548
|
-
[ref].[SourceECInstanceId] as [SchemaId],
|
|
97549
|
-
json_object(
|
|
97550
|
-
'name', [Name],
|
|
97551
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
97552
|
-
) as [reference]
|
|
97553
|
-
FROM
|
|
97554
|
-
[meta].[ECSchemaDef] as [refSchema]
|
|
97555
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
97556
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
97557
|
-
)
|
|
97545
|
+
const withSchemaReferences = `
|
|
97546
|
+
SchemaReferences as (
|
|
97547
|
+
SELECT
|
|
97548
|
+
[ref].[SourceECInstanceId] as [SchemaId],
|
|
97549
|
+
json_object(
|
|
97550
|
+
'name', [Name],
|
|
97551
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
97552
|
+
) as [reference]
|
|
97553
|
+
FROM
|
|
97554
|
+
[meta].[ECSchemaDef] as [refSchema]
|
|
97555
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
97556
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
97557
|
+
)
|
|
97558
97558
|
`;
|
|
97559
97559
|
/**
|
|
97560
97560
|
* A CTE used to select Relationship constraints for a given RelationshipClass.
|
|
97561
97561
|
*/
|
|
97562
|
-
const withRelationshipConstraints = `
|
|
97563
|
-
ClassRelationshipConstraints as (
|
|
97564
|
-
SELECT
|
|
97565
|
-
[rhc].[SourceECInstanceId] as [ClassId],
|
|
97566
|
-
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
97567
|
-
[RelationshipEnd],
|
|
97568
|
-
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
97569
|
-
[IsPolyMorphic],
|
|
97570
|
-
[RoleLabel],
|
|
97571
|
-
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
97572
|
-
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
97573
|
-
FROM
|
|
97574
|
-
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
97575
|
-
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
97576
|
-
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
97577
|
-
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
97578
|
-
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
97579
|
-
GROUP BY [constraintDef].[ECInstanceId]
|
|
97580
|
-
)
|
|
97562
|
+
const withRelationshipConstraints = `
|
|
97563
|
+
ClassRelationshipConstraints as (
|
|
97564
|
+
SELECT
|
|
97565
|
+
[rhc].[SourceECInstanceId] as [ClassId],
|
|
97566
|
+
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
97567
|
+
[RelationshipEnd],
|
|
97568
|
+
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
97569
|
+
[IsPolyMorphic],
|
|
97570
|
+
[RoleLabel],
|
|
97571
|
+
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
97572
|
+
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
97573
|
+
FROM
|
|
97574
|
+
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
97575
|
+
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
97576
|
+
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
97577
|
+
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
97578
|
+
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
97579
|
+
GROUP BY [constraintDef].[ECInstanceId]
|
|
97580
|
+
)
|
|
97581
97581
|
`;
|
|
97582
97582
|
/**
|
|
97583
97583
|
* A CTE used to select Class property data for a given Class.
|
|
97584
97584
|
*/
|
|
97585
|
-
const withClassProperties = `
|
|
97586
|
-
ClassProperties as (
|
|
97587
|
-
SELECT
|
|
97588
|
-
[cop].[SourceECInstanceId] as [ClassId],
|
|
97589
|
-
json_object(
|
|
97590
|
-
'name', [pd].[Name],
|
|
97591
|
-
'label', [pd].[DisplayLabel],
|
|
97592
|
-
'description', [pd].[Description],
|
|
97593
|
-
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
97594
|
-
'priority', [pd].[Priority],
|
|
97595
|
-
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
97596
|
-
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
97597
|
-
'typeName',
|
|
97598
|
-
CASE
|
|
97599
|
-
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
97600
|
-
CASE
|
|
97601
|
-
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
97602
|
-
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
97603
|
-
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
97604
|
-
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
97605
|
-
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
97606
|
-
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
97607
|
-
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
97608
|
-
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
97609
|
-
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
97610
|
-
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
97611
|
-
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
97612
|
-
ELSE null
|
|
97613
|
-
END
|
|
97614
|
-
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
97615
|
-
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
97616
|
-
ELSE null
|
|
97617
|
-
END,
|
|
97618
|
-
'type', ${propertyType("pd")},
|
|
97619
|
-
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
97620
|
-
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
97621
|
-
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
97622
|
-
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
97623
|
-
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
97624
|
-
'minOccurs', [pd].[ArrayMinOccurs],
|
|
97625
|
-
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
97626
|
-
'direction', ${navigationDirection("pd")},
|
|
97627
|
-
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
97628
|
-
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
97629
|
-
) as [property]
|
|
97630
|
-
FROM
|
|
97631
|
-
[meta].[ECPropertyDef] as [pd]
|
|
97632
|
-
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
97633
|
-
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
97634
|
-
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
97635
|
-
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
97636
|
-
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
97637
|
-
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
97638
|
-
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
97639
|
-
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
97640
|
-
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
97641
|
-
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
97642
|
-
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
97643
|
-
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
97644
|
-
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
97645
|
-
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
97646
|
-
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
97647
|
-
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
97648
|
-
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
97649
|
-
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
97650
|
-
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
97651
|
-
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
97652
|
-
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
97653
|
-
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
97654
|
-
)
|
|
97585
|
+
const withClassProperties = `
|
|
97586
|
+
ClassProperties as (
|
|
97587
|
+
SELECT
|
|
97588
|
+
[cop].[SourceECInstanceId] as [ClassId],
|
|
97589
|
+
json_object(
|
|
97590
|
+
'name', [pd].[Name],
|
|
97591
|
+
'label', [pd].[DisplayLabel],
|
|
97592
|
+
'description', [pd].[Description],
|
|
97593
|
+
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
97594
|
+
'priority', [pd].[Priority],
|
|
97595
|
+
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
97596
|
+
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
97597
|
+
'typeName',
|
|
97598
|
+
CASE
|
|
97599
|
+
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
97600
|
+
CASE
|
|
97601
|
+
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
97602
|
+
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
97603
|
+
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
97604
|
+
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
97605
|
+
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
97606
|
+
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
97607
|
+
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
97608
|
+
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
97609
|
+
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
97610
|
+
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
97611
|
+
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
97612
|
+
ELSE null
|
|
97613
|
+
END
|
|
97614
|
+
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
97615
|
+
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
97616
|
+
ELSE null
|
|
97617
|
+
END,
|
|
97618
|
+
'type', ${propertyType("pd")},
|
|
97619
|
+
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
97620
|
+
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
97621
|
+
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
97622
|
+
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
97623
|
+
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
97624
|
+
'minOccurs', [pd].[ArrayMinOccurs],
|
|
97625
|
+
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
97626
|
+
'direction', ${navigationDirection("pd")},
|
|
97627
|
+
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
97628
|
+
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
97629
|
+
) as [property]
|
|
97630
|
+
FROM
|
|
97631
|
+
[meta].[ECPropertyDef] as [pd]
|
|
97632
|
+
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
97633
|
+
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
97634
|
+
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
97635
|
+
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
97636
|
+
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
97637
|
+
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
97638
|
+
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
97639
|
+
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
97640
|
+
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
97641
|
+
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
97642
|
+
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
97643
|
+
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
97644
|
+
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
97645
|
+
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
97646
|
+
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
97647
|
+
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
97648
|
+
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
97649
|
+
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
97650
|
+
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
97651
|
+
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
97652
|
+
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
97653
|
+
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
97654
|
+
)
|
|
97655
97655
|
`;
|
|
97656
97656
|
/**
|
|
97657
97657
|
* Query that provides EntityClass data and is shared by two cases:
|
|
@@ -97659,52 +97659,52 @@ LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
|
97659
97659
|
* 2. When querying a full schema with multiple schema item queries or
|
|
97660
97660
|
* when just querying for Entity classes.
|
|
97661
97661
|
*/
|
|
97662
|
-
const baseEntityQuery = `
|
|
97663
|
-
SELECT
|
|
97664
|
-
[sd].[Name] as [schema],
|
|
97665
|
-
json_object (
|
|
97666
|
-
'schemaItemType', 'EntityClass',
|
|
97667
|
-
'name', [class].[Name],
|
|
97668
|
-
'label', [class].[DisplayLabel],
|
|
97669
|
-
'description', [class].[Description],
|
|
97670
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97671
|
-
'baseClass', (
|
|
97672
|
-
${selectBaseClasses}
|
|
97673
|
-
),
|
|
97674
|
-
'mixins', (
|
|
97675
|
-
SELECT
|
|
97676
|
-
json_group_array(
|
|
97677
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
97678
|
-
)
|
|
97679
|
-
FROM
|
|
97680
|
-
[meta].[ECClassDef] [baseClass]
|
|
97681
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97682
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
97683
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97684
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97685
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97686
|
-
),
|
|
97687
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
97688
|
-
'properties', (
|
|
97689
|
-
${selectProperties}
|
|
97690
|
-
)
|
|
97691
|
-
) AS [item]
|
|
97692
|
-
FROM [meta].[ECClassDef] [class]
|
|
97693
|
-
JOIN
|
|
97694
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97695
|
-
WHERE [class].[Type] = 0 AND
|
|
97696
|
-
[sd].[Name] = :schemaName
|
|
97697
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97698
|
-
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
97662
|
+
const baseEntityQuery = `
|
|
97663
|
+
SELECT
|
|
97664
|
+
[sd].[Name] as [schema],
|
|
97665
|
+
json_object (
|
|
97666
|
+
'schemaItemType', 'EntityClass',
|
|
97667
|
+
'name', [class].[Name],
|
|
97668
|
+
'label', [class].[DisplayLabel],
|
|
97669
|
+
'description', [class].[Description],
|
|
97670
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97671
|
+
'baseClass', (
|
|
97672
|
+
${selectBaseClasses}
|
|
97673
|
+
),
|
|
97674
|
+
'mixins', (
|
|
97675
|
+
SELECT
|
|
97676
|
+
json_group_array(
|
|
97677
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
97678
|
+
)
|
|
97679
|
+
FROM
|
|
97680
|
+
[meta].[ECClassDef] [baseClass]
|
|
97681
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97682
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
97683
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97684
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97685
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97686
|
+
),
|
|
97687
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
97688
|
+
'properties', (
|
|
97689
|
+
${selectProperties}
|
|
97690
|
+
)
|
|
97691
|
+
) AS [item]
|
|
97692
|
+
FROM [meta].[ECClassDef] [class]
|
|
97693
|
+
JOIN
|
|
97694
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97695
|
+
WHERE [class].[Type] = 0 AND
|
|
97696
|
+
[sd].[Name] = :schemaName
|
|
97697
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97698
|
+
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
97699
97699
|
`;
|
|
97700
97700
|
/**
|
|
97701
97701
|
* EntityClass query used to when querying for EntityClass data only. Not used
|
|
97702
97702
|
* for full Schema load via single query.
|
|
97703
97703
|
*/
|
|
97704
|
-
const entityQuery = `
|
|
97705
|
-
WITH
|
|
97706
|
-
${withClassProperties}
|
|
97707
|
-
${baseEntityQuery}
|
|
97704
|
+
const entityQuery = `
|
|
97705
|
+
WITH
|
|
97706
|
+
${withClassProperties}
|
|
97707
|
+
${baseEntityQuery}
|
|
97708
97708
|
`;
|
|
97709
97709
|
/**
|
|
97710
97710
|
* Query that provides Mixin data and is shared by two cases:
|
|
@@ -97712,56 +97712,56 @@ const entityQuery = `
|
|
|
97712
97712
|
* 2. When querying a full schema with multiple schema item queries or
|
|
97713
97713
|
* when just querying for Mixin classes.
|
|
97714
97714
|
*/
|
|
97715
|
-
const baseMixinQuery = `
|
|
97716
|
-
SELECT
|
|
97717
|
-
[sd].[Name] as [schema],
|
|
97718
|
-
json_object (
|
|
97719
|
-
'schemaItemType', 'Mixin',
|
|
97720
|
-
'name', [class].[Name],
|
|
97721
|
-
'label', [class].[DisplayLabel],
|
|
97722
|
-
'description', [class].[Description],
|
|
97723
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97724
|
-
'baseClass', (
|
|
97725
|
-
${selectBaseClasses}
|
|
97726
|
-
),
|
|
97727
|
-
'appliesTo', (
|
|
97728
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97729
|
-
FROM [AppliesToCTE] [atCTE]
|
|
97730
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
97731
|
-
),
|
|
97732
|
-
'customAttributes', (
|
|
97733
|
-
SELECT
|
|
97734
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97735
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97736
|
-
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
97737
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
97738
|
-
),
|
|
97739
|
-
'properties', (
|
|
97740
|
-
SELECT
|
|
97741
|
-
json_group_array(json([classProperties].[property]))
|
|
97742
|
-
FROM
|
|
97743
|
-
[ClassProperties] [classProperties]
|
|
97744
|
-
WHERE
|
|
97745
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
97746
|
-
)
|
|
97747
|
-
) AS [item]
|
|
97748
|
-
FROM [meta].[ECClassDef] [class]
|
|
97749
|
-
JOIN
|
|
97750
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97751
|
-
WHERE [class].[Type] = 0 AND
|
|
97752
|
-
[sd].[Name] = :schemaName
|
|
97753
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97754
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97715
|
+
const baseMixinQuery = `
|
|
97716
|
+
SELECT
|
|
97717
|
+
[sd].[Name] as [schema],
|
|
97718
|
+
json_object (
|
|
97719
|
+
'schemaItemType', 'Mixin',
|
|
97720
|
+
'name', [class].[Name],
|
|
97721
|
+
'label', [class].[DisplayLabel],
|
|
97722
|
+
'description', [class].[Description],
|
|
97723
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97724
|
+
'baseClass', (
|
|
97725
|
+
${selectBaseClasses}
|
|
97726
|
+
),
|
|
97727
|
+
'appliesTo', (
|
|
97728
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97729
|
+
FROM [AppliesToCTE] [atCTE]
|
|
97730
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
97731
|
+
),
|
|
97732
|
+
'customAttributes', (
|
|
97733
|
+
SELECT
|
|
97734
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97735
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97736
|
+
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
97737
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
97738
|
+
),
|
|
97739
|
+
'properties', (
|
|
97740
|
+
SELECT
|
|
97741
|
+
json_group_array(json([classProperties].[property]))
|
|
97742
|
+
FROM
|
|
97743
|
+
[ClassProperties] [classProperties]
|
|
97744
|
+
WHERE
|
|
97745
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
97746
|
+
)
|
|
97747
|
+
) AS [item]
|
|
97748
|
+
FROM [meta].[ECClassDef] [class]
|
|
97749
|
+
JOIN
|
|
97750
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97751
|
+
WHERE [class].[Type] = 0 AND
|
|
97752
|
+
[sd].[Name] = :schemaName
|
|
97753
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97754
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97755
97755
|
`;
|
|
97756
97756
|
/**
|
|
97757
97757
|
* Mixin query used to when querying for Mixin data only. Not used
|
|
97758
97758
|
* for full Schema load via single query.
|
|
97759
97759
|
*/
|
|
97760
|
-
const mixinQuery = `
|
|
97761
|
-
WITH
|
|
97762
|
-
${withAppliesTo},
|
|
97763
|
-
${withClassProperties}
|
|
97764
|
-
${baseMixinQuery}
|
|
97760
|
+
const mixinQuery = `
|
|
97761
|
+
WITH
|
|
97762
|
+
${withAppliesTo},
|
|
97763
|
+
${withClassProperties}
|
|
97764
|
+
${baseMixinQuery}
|
|
97765
97765
|
`;
|
|
97766
97766
|
/**
|
|
97767
97767
|
* Query that provides RelationshipClass data and is shared by two cases:
|
|
@@ -97769,82 +97769,82 @@ ${baseMixinQuery}
|
|
|
97769
97769
|
* 2. When querying a full schema with multiple schema item queries or
|
|
97770
97770
|
* when just querying for Relationship classes.
|
|
97771
97771
|
*/
|
|
97772
|
-
const baseRelationshipClassQuery = `
|
|
97773
|
-
SELECT
|
|
97774
|
-
[sd].Name as schema,
|
|
97775
|
-
json_object (
|
|
97776
|
-
'schemaItemType', 'RelationshipClass',
|
|
97777
|
-
'name', [class].[Name],
|
|
97778
|
-
'label', [class].[DisplayLabel],
|
|
97779
|
-
'description', [class].[Description],
|
|
97780
|
-
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
97781
|
-
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
97782
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97783
|
-
'baseClass', (
|
|
97784
|
-
${selectBaseClasses}
|
|
97785
|
-
),
|
|
97786
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
97787
|
-
'properties', (
|
|
97788
|
-
${selectProperties}
|
|
97789
|
-
),
|
|
97790
|
-
'source', (
|
|
97791
|
-
SELECT
|
|
97792
|
-
json_object (
|
|
97793
|
-
'multiplicity', [sourceConst].[Multiplicity],
|
|
97794
|
-
'roleLabel', [sourceConst].[RoleLabel],
|
|
97795
|
-
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
97796
|
-
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
97797
|
-
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
97798
|
-
'customAttributes', (
|
|
97799
|
-
SELECT
|
|
97800
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97801
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97802
|
-
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
97803
|
-
ORDER BY [ca].[Ordinal]
|
|
97804
|
-
)
|
|
97805
|
-
)
|
|
97806
|
-
FROM
|
|
97807
|
-
[ClassRelationshipConstraints] [sourceConst]
|
|
97808
|
-
WHERE [sourceConst].[relationshipEnd] = 0
|
|
97809
|
-
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
97810
|
-
),
|
|
97811
|
-
'target', (
|
|
97812
|
-
SELECT
|
|
97813
|
-
json_object (
|
|
97814
|
-
'multiplicity', [targetConst].[Multiplicity],
|
|
97815
|
-
'roleLabel', [targetConst].[RoleLabel],
|
|
97816
|
-
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
97817
|
-
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
97818
|
-
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
97819
|
-
'customAttributes', (
|
|
97820
|
-
SELECT
|
|
97821
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97822
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
97823
|
-
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
97824
|
-
ORDER BY [ca].[Ordinal]
|
|
97825
|
-
)
|
|
97826
|
-
)
|
|
97827
|
-
FROM
|
|
97828
|
-
[ClassRelationshipConstraints] [targetConst]
|
|
97829
|
-
WHERE [targetConst].[relationshipEnd] = 1
|
|
97830
|
-
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
97831
|
-
)
|
|
97832
|
-
) AS [item]
|
|
97833
|
-
FROM [meta].[ECClassDef] [class]
|
|
97834
|
-
JOIN
|
|
97835
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97836
|
-
WHERE [class].[Type] = 1 AND
|
|
97837
|
-
[sd].[Name] = :schemaName
|
|
97772
|
+
const baseRelationshipClassQuery = `
|
|
97773
|
+
SELECT
|
|
97774
|
+
[sd].Name as schema,
|
|
97775
|
+
json_object (
|
|
97776
|
+
'schemaItemType', 'RelationshipClass',
|
|
97777
|
+
'name', [class].[Name],
|
|
97778
|
+
'label', [class].[DisplayLabel],
|
|
97779
|
+
'description', [class].[Description],
|
|
97780
|
+
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
97781
|
+
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
97782
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97783
|
+
'baseClass', (
|
|
97784
|
+
${selectBaseClasses}
|
|
97785
|
+
),
|
|
97786
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
97787
|
+
'properties', (
|
|
97788
|
+
${selectProperties}
|
|
97789
|
+
),
|
|
97790
|
+
'source', (
|
|
97791
|
+
SELECT
|
|
97792
|
+
json_object (
|
|
97793
|
+
'multiplicity', [sourceConst].[Multiplicity],
|
|
97794
|
+
'roleLabel', [sourceConst].[RoleLabel],
|
|
97795
|
+
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
97796
|
+
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
97797
|
+
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
97798
|
+
'customAttributes', (
|
|
97799
|
+
SELECT
|
|
97800
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97801
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97802
|
+
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
97803
|
+
ORDER BY [ca].[Ordinal]
|
|
97804
|
+
)
|
|
97805
|
+
)
|
|
97806
|
+
FROM
|
|
97807
|
+
[ClassRelationshipConstraints] [sourceConst]
|
|
97808
|
+
WHERE [sourceConst].[relationshipEnd] = 0
|
|
97809
|
+
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
97810
|
+
),
|
|
97811
|
+
'target', (
|
|
97812
|
+
SELECT
|
|
97813
|
+
json_object (
|
|
97814
|
+
'multiplicity', [targetConst].[Multiplicity],
|
|
97815
|
+
'roleLabel', [targetConst].[RoleLabel],
|
|
97816
|
+
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
97817
|
+
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
97818
|
+
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
97819
|
+
'customAttributes', (
|
|
97820
|
+
SELECT
|
|
97821
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
97822
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97823
|
+
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
97824
|
+
ORDER BY [ca].[Ordinal]
|
|
97825
|
+
)
|
|
97826
|
+
)
|
|
97827
|
+
FROM
|
|
97828
|
+
[ClassRelationshipConstraints] [targetConst]
|
|
97829
|
+
WHERE [targetConst].[relationshipEnd] = 1
|
|
97830
|
+
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
97831
|
+
)
|
|
97832
|
+
) AS [item]
|
|
97833
|
+
FROM [meta].[ECClassDef] [class]
|
|
97834
|
+
JOIN
|
|
97835
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97836
|
+
WHERE [class].[Type] = 1 AND
|
|
97837
|
+
[sd].[Name] = :schemaName
|
|
97838
97838
|
`;
|
|
97839
97839
|
/**
|
|
97840
97840
|
* RelationshipClass query used to when querying for RelationshipClass data only. Not used
|
|
97841
97841
|
* for full Schema load via single query.
|
|
97842
97842
|
*/
|
|
97843
|
-
const relationshipClassQuery = `
|
|
97844
|
-
WITH
|
|
97845
|
-
${withClassProperties},
|
|
97846
|
-
${withRelationshipConstraints}
|
|
97847
|
-
${baseRelationshipClassQuery}
|
|
97843
|
+
const relationshipClassQuery = `
|
|
97844
|
+
WITH
|
|
97845
|
+
${withClassProperties},
|
|
97846
|
+
${withRelationshipConstraints}
|
|
97847
|
+
${baseRelationshipClassQuery}
|
|
97848
97848
|
`;
|
|
97849
97849
|
/**
|
|
97850
97850
|
* Query that provides StructClass data and is shared by two cases:
|
|
@@ -97852,37 +97852,37 @@ ${baseRelationshipClassQuery}
|
|
|
97852
97852
|
* 2. When querying a full schema with multiple schema item queries or
|
|
97853
97853
|
* when just querying for Struct classes.
|
|
97854
97854
|
*/
|
|
97855
|
-
const baseStructQuery = `
|
|
97856
|
-
SELECT
|
|
97857
|
-
[sd].Name as schema,
|
|
97858
|
-
json_object (
|
|
97859
|
-
'schemaItemType', 'StructClass',
|
|
97860
|
-
'name', [class].[Name],
|
|
97861
|
-
'label', [class].[DisplayLabel],
|
|
97862
|
-
'description', [class].[Description],
|
|
97863
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97864
|
-
'baseClass', (
|
|
97865
|
-
${selectBaseClasses}
|
|
97866
|
-
),
|
|
97867
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
97868
|
-
'properties', (
|
|
97869
|
-
${selectProperties}
|
|
97870
|
-
)
|
|
97871
|
-
) AS item
|
|
97872
|
-
FROM [meta].[ECClassDef] [class]
|
|
97873
|
-
JOIN
|
|
97874
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97875
|
-
WHERE [class].[Type] = 2 AND
|
|
97876
|
-
[sd].[Name] = :schemaName
|
|
97855
|
+
const baseStructQuery = `
|
|
97856
|
+
SELECT
|
|
97857
|
+
[sd].Name as schema,
|
|
97858
|
+
json_object (
|
|
97859
|
+
'schemaItemType', 'StructClass',
|
|
97860
|
+
'name', [class].[Name],
|
|
97861
|
+
'label', [class].[DisplayLabel],
|
|
97862
|
+
'description', [class].[Description],
|
|
97863
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97864
|
+
'baseClass', (
|
|
97865
|
+
${selectBaseClasses}
|
|
97866
|
+
),
|
|
97867
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
97868
|
+
'properties', (
|
|
97869
|
+
${selectProperties}
|
|
97870
|
+
)
|
|
97871
|
+
) AS item
|
|
97872
|
+
FROM [meta].[ECClassDef] [class]
|
|
97873
|
+
JOIN
|
|
97874
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97875
|
+
WHERE [class].[Type] = 2 AND
|
|
97876
|
+
[sd].[Name] = :schemaName
|
|
97877
97877
|
`;
|
|
97878
97878
|
/**
|
|
97879
97879
|
* StructClass query used to when querying for StructClass data only. Not used
|
|
97880
97880
|
* for full Schema load via single query.
|
|
97881
97881
|
*/
|
|
97882
|
-
const structQuery = `
|
|
97883
|
-
WITH
|
|
97884
|
-
${withClassProperties}
|
|
97885
|
-
${baseStructQuery}
|
|
97882
|
+
const structQuery = `
|
|
97883
|
+
WITH
|
|
97884
|
+
${withClassProperties}
|
|
97885
|
+
${baseStructQuery}
|
|
97886
97886
|
`;
|
|
97887
97887
|
/**
|
|
97888
97888
|
* Query that provides CustomAttributeClass data and is shared by two cases:
|
|
@@ -97890,141 +97890,141 @@ ${baseStructQuery}
|
|
|
97890
97890
|
* 2. When querying a full schema with multiple schema item queries or
|
|
97891
97891
|
* when just querying for CustomAttribute classes.
|
|
97892
97892
|
*/
|
|
97893
|
-
const baseCustomAttributeQuery = `
|
|
97894
|
-
SELECT
|
|
97895
|
-
[sd].Name as schema,
|
|
97896
|
-
json_object (
|
|
97897
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
97898
|
-
'name', [class].[Name],
|
|
97899
|
-
'label', [class].[DisplayLabel],
|
|
97900
|
-
'description', [class].[Description],
|
|
97901
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
97902
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97903
|
-
'baseClass', (
|
|
97904
|
-
${selectBaseClasses}
|
|
97905
|
-
),
|
|
97906
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
97907
|
-
'properties', (
|
|
97908
|
-
${selectProperties}
|
|
97909
|
-
)
|
|
97910
|
-
) AS [item]
|
|
97911
|
-
FROM [meta].[ECClassDef] [class]
|
|
97912
|
-
JOIN
|
|
97913
|
-
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97914
|
-
WHERE [class].[Type] = 3 AND
|
|
97915
|
-
[sd].[Name] = :schemaName
|
|
97893
|
+
const baseCustomAttributeQuery = `
|
|
97894
|
+
SELECT
|
|
97895
|
+
[sd].Name as schema,
|
|
97896
|
+
json_object (
|
|
97897
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
97898
|
+
'name', [class].[Name],
|
|
97899
|
+
'label', [class].[DisplayLabel],
|
|
97900
|
+
'description', [class].[Description],
|
|
97901
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
97902
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
97903
|
+
'baseClass', (
|
|
97904
|
+
${selectBaseClasses}
|
|
97905
|
+
),
|
|
97906
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
97907
|
+
'properties', (
|
|
97908
|
+
${selectProperties}
|
|
97909
|
+
)
|
|
97910
|
+
) AS [item]
|
|
97911
|
+
FROM [meta].[ECClassDef] [class]
|
|
97912
|
+
JOIN
|
|
97913
|
+
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
97914
|
+
WHERE [class].[Type] = 3 AND
|
|
97915
|
+
[sd].[Name] = :schemaName
|
|
97916
97916
|
`;
|
|
97917
97917
|
/**
|
|
97918
97918
|
* CustomAttributeClass query used to when querying for CustomAttributeClass data only. Not used
|
|
97919
97919
|
* for full Schema load via single query.
|
|
97920
97920
|
*/
|
|
97921
|
-
const customAttributeQuery = `
|
|
97922
|
-
WITH
|
|
97923
|
-
${withClassProperties}
|
|
97924
|
-
${baseCustomAttributeQuery}
|
|
97921
|
+
const customAttributeQuery = `
|
|
97922
|
+
WITH
|
|
97923
|
+
${withClassProperties}
|
|
97924
|
+
${baseCustomAttributeQuery}
|
|
97925
97925
|
`;
|
|
97926
97926
|
/**
|
|
97927
97927
|
* Used by full schema load query via single query. Allows
|
|
97928
97928
|
* all SchemaItemTypes to be queried at once.
|
|
97929
97929
|
*/
|
|
97930
|
-
const withSchemaItems = `
|
|
97931
|
-
SchemaItems AS (
|
|
97932
|
-
${baseEntityQuery}
|
|
97933
|
-
UNION ALL
|
|
97934
|
-
${baseRelationshipClassQuery}
|
|
97935
|
-
UNION ALL
|
|
97936
|
-
${baseStructQuery}
|
|
97937
|
-
UNION ALL
|
|
97938
|
-
${baseMixinQuery}
|
|
97939
|
-
UNION ALL
|
|
97940
|
-
${baseCustomAttributeQuery}
|
|
97941
|
-
UNION ALL
|
|
97942
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
97943
|
-
UNION ALL
|
|
97944
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
97945
|
-
UNION ALL
|
|
97946
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
97947
|
-
UNION ALL
|
|
97948
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
97949
|
-
UNION ALL
|
|
97950
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
97951
|
-
UNION ALL
|
|
97952
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
97953
|
-
UNION ALL
|
|
97954
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
97955
|
-
UNION ALL
|
|
97956
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
97957
|
-
UNION ALL
|
|
97958
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
97959
|
-
)
|
|
97930
|
+
const withSchemaItems = `
|
|
97931
|
+
SchemaItems AS (
|
|
97932
|
+
${baseEntityQuery}
|
|
97933
|
+
UNION ALL
|
|
97934
|
+
${baseRelationshipClassQuery}
|
|
97935
|
+
UNION ALL
|
|
97936
|
+
${baseStructQuery}
|
|
97937
|
+
UNION ALL
|
|
97938
|
+
${baseMixinQuery}
|
|
97939
|
+
UNION ALL
|
|
97940
|
+
${baseCustomAttributeQuery}
|
|
97941
|
+
UNION ALL
|
|
97942
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
97943
|
+
UNION ALL
|
|
97944
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
97945
|
+
UNION ALL
|
|
97946
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
97947
|
+
UNION ALL
|
|
97948
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
97949
|
+
UNION ALL
|
|
97950
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
97951
|
+
UNION ALL
|
|
97952
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
97953
|
+
UNION ALL
|
|
97954
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
97955
|
+
UNION ALL
|
|
97956
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
97957
|
+
UNION ALL
|
|
97958
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
97959
|
+
)
|
|
97960
97960
|
`;
|
|
97961
97961
|
/**
|
|
97962
97962
|
* Query for Schema data without SchemaItems
|
|
97963
97963
|
*/
|
|
97964
|
-
const schemaNoItemsQuery = `
|
|
97965
|
-
WITH
|
|
97966
|
-
${withSchemaReferences}
|
|
97967
|
-
SELECT
|
|
97968
|
-
json_object (
|
|
97969
|
-
'name', [schemaDef].[Name],
|
|
97970
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
97971
|
-
'alias', [schemaDef].[Alias],
|
|
97972
|
-
'label', [schemaDef].[DisplayLabel],
|
|
97973
|
-
'description', [schemaDef].[Description],
|
|
97974
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
97975
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
97976
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
97977
|
-
'references', (
|
|
97978
|
-
SELECT
|
|
97979
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
97980
|
-
FROM
|
|
97981
|
-
[SchemaReferences] [schemaReferences]
|
|
97982
|
-
WHERE
|
|
97983
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
97984
|
-
)
|
|
97985
|
-
) as [schema]
|
|
97986
|
-
FROM
|
|
97987
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
97964
|
+
const schemaNoItemsQuery = `
|
|
97965
|
+
WITH
|
|
97966
|
+
${withSchemaReferences}
|
|
97967
|
+
SELECT
|
|
97968
|
+
json_object (
|
|
97969
|
+
'name', [schemaDef].[Name],
|
|
97970
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
97971
|
+
'alias', [schemaDef].[Alias],
|
|
97972
|
+
'label', [schemaDef].[DisplayLabel],
|
|
97973
|
+
'description', [schemaDef].[Description],
|
|
97974
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
97975
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
97976
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
97977
|
+
'references', (
|
|
97978
|
+
SELECT
|
|
97979
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
97980
|
+
FROM
|
|
97981
|
+
[SchemaReferences] [schemaReferences]
|
|
97982
|
+
WHERE
|
|
97983
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
97984
|
+
)
|
|
97985
|
+
) as [schema]
|
|
97986
|
+
FROM
|
|
97987
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
97988
97988
|
`;
|
|
97989
97989
|
/**
|
|
97990
97990
|
* Query to load a full Schema via a single query.
|
|
97991
97991
|
*/
|
|
97992
|
-
const schemaQuery = `
|
|
97993
|
-
WITH
|
|
97994
|
-
${withAppliesTo},
|
|
97995
|
-
${withSchemaReferences},
|
|
97996
|
-
${withClassProperties},
|
|
97997
|
-
${withRelationshipConstraints},
|
|
97998
|
-
${withSchemaItems}
|
|
97999
|
-
SELECT
|
|
98000
|
-
json_object (
|
|
98001
|
-
'name', [schemaDef].[Name],
|
|
98002
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
98003
|
-
'alias', [schemaDef].[Alias],
|
|
98004
|
-
'label', [schemaDef].[DisplayLabel],
|
|
98005
|
-
'description', [schemaDef].[Description],
|
|
98006
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
98007
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
98008
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
98009
|
-
'references', (
|
|
98010
|
-
SELECT
|
|
98011
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
98012
|
-
FROM
|
|
98013
|
-
[SchemaReferences] [schemaReferences]
|
|
98014
|
-
WHERE
|
|
98015
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
98016
|
-
),
|
|
98017
|
-
'items', (
|
|
98018
|
-
SELECT
|
|
98019
|
-
json_group_array(json(json_object(
|
|
98020
|
-
'item', json([items].[item])
|
|
98021
|
-
)))
|
|
98022
|
-
FROM
|
|
98023
|
-
[SchemaItems] [items]
|
|
98024
|
-
)
|
|
98025
|
-
) as [schema]
|
|
98026
|
-
FROM
|
|
98027
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
97992
|
+
const schemaQuery = `
|
|
97993
|
+
WITH
|
|
97994
|
+
${withAppliesTo},
|
|
97995
|
+
${withSchemaReferences},
|
|
97996
|
+
${withClassProperties},
|
|
97997
|
+
${withRelationshipConstraints},
|
|
97998
|
+
${withSchemaItems}
|
|
97999
|
+
SELECT
|
|
98000
|
+
json_object (
|
|
98001
|
+
'name', [schemaDef].[Name],
|
|
98002
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
98003
|
+
'alias', [schemaDef].[Alias],
|
|
98004
|
+
'label', [schemaDef].[DisplayLabel],
|
|
98005
|
+
'description', [schemaDef].[Description],
|
|
98006
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
98007
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
98008
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
98009
|
+
'references', (
|
|
98010
|
+
SELECT
|
|
98011
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
98012
|
+
FROM
|
|
98013
|
+
[SchemaReferences] [schemaReferences]
|
|
98014
|
+
WHERE
|
|
98015
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
98016
|
+
),
|
|
98017
|
+
'items', (
|
|
98018
|
+
SELECT
|
|
98019
|
+
json_group_array(json(json_object(
|
|
98020
|
+
'item', json([items].[item])
|
|
98021
|
+
)))
|
|
98022
|
+
FROM
|
|
98023
|
+
[SchemaItems] [items]
|
|
98024
|
+
)
|
|
98025
|
+
) as [schema]
|
|
98026
|
+
FROM
|
|
98027
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
98028
98028
|
`;
|
|
98029
98029
|
/**
|
|
98030
98030
|
* Queries for loading full Schema JSON.
|
|
@@ -98530,281 +98530,281 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98530
98530
|
* Query for SchemaItemType KindOfQuantity data.
|
|
98531
98531
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98532
98532
|
*/
|
|
98533
|
-
const kindOfQuantity = (singleSchema) => `
|
|
98534
|
-
SELECT
|
|
98535
|
-
[koq].[Schema].[Id] AS [SchemaId],
|
|
98536
|
-
json_object (
|
|
98537
|
-
'schemaItemType', 'KindOfQuantity',
|
|
98538
|
-
'name', [koq].[Name],
|
|
98539
|
-
'label', [koq].[DisplayLabel],
|
|
98540
|
-
'description', [koq].[Description],
|
|
98541
|
-
'relativeError', [koq].[RelativeError],
|
|
98542
|
-
'persistenceUnit', [koq].[PersistenceUnit]
|
|
98543
|
-
${singleSchema ? `
|
|
98544
|
-
,'presentationUnits', (
|
|
98545
|
-
SELECT json_group_array(js."value")
|
|
98546
|
-
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
98547
|
-
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
98548
|
-
) ` : ""}
|
|
98549
|
-
) as [item]
|
|
98550
|
-
FROM
|
|
98551
|
-
[meta].[KindOfQuantityDef] [koq]
|
|
98552
|
-
${singleSchema ? `
|
|
98553
|
-
JOIN
|
|
98554
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
98555
|
-
WHERE [schema].[Name] = :schemaName
|
|
98556
|
-
` : ""}
|
|
98533
|
+
const kindOfQuantity = (singleSchema) => `
|
|
98534
|
+
SELECT
|
|
98535
|
+
[koq].[Schema].[Id] AS [SchemaId],
|
|
98536
|
+
json_object (
|
|
98537
|
+
'schemaItemType', 'KindOfQuantity',
|
|
98538
|
+
'name', [koq].[Name],
|
|
98539
|
+
'label', [koq].[DisplayLabel],
|
|
98540
|
+
'description', [koq].[Description],
|
|
98541
|
+
'relativeError', [koq].[RelativeError],
|
|
98542
|
+
'persistenceUnit', [koq].[PersistenceUnit]
|
|
98543
|
+
${singleSchema ? `
|
|
98544
|
+
,'presentationUnits', (
|
|
98545
|
+
SELECT json_group_array(js."value")
|
|
98546
|
+
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
98547
|
+
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
98548
|
+
) ` : ""}
|
|
98549
|
+
) as [item]
|
|
98550
|
+
FROM
|
|
98551
|
+
[meta].[KindOfQuantityDef] [koq]
|
|
98552
|
+
${singleSchema ? `
|
|
98553
|
+
JOIN
|
|
98554
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
98555
|
+
WHERE [schema].[Name] = :schemaName
|
|
98556
|
+
` : ""}
|
|
98557
98557
|
`;
|
|
98558
98558
|
/**
|
|
98559
98559
|
* Query for SchemaItemType PropertyCategory data.
|
|
98560
98560
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98561
98561
|
*/
|
|
98562
|
-
const propertyCategory = (singleSchema) => `
|
|
98563
|
-
SELECT
|
|
98564
|
-
[pc].[Schema].[Id] AS [SchemaId],
|
|
98565
|
-
json_object (
|
|
98566
|
-
'schemaItemType', 'PropertyCategory',
|
|
98567
|
-
'name', [pc].[Name],
|
|
98568
|
-
'label', [pc].[DisplayLabel],
|
|
98569
|
-
'description', [pc].[Description],
|
|
98570
|
-
'priority', [pc].[Priority]
|
|
98571
|
-
) as [item]
|
|
98572
|
-
FROM
|
|
98573
|
-
[meta].[PropertyCategoryDef] [pc]
|
|
98574
|
-
${singleSchema ? `
|
|
98575
|
-
JOIN
|
|
98576
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
98577
|
-
WHERE [schema].[Name] = :schemaName
|
|
98578
|
-
` : ""}
|
|
98562
|
+
const propertyCategory = (singleSchema) => `
|
|
98563
|
+
SELECT
|
|
98564
|
+
[pc].[Schema].[Id] AS [SchemaId],
|
|
98565
|
+
json_object (
|
|
98566
|
+
'schemaItemType', 'PropertyCategory',
|
|
98567
|
+
'name', [pc].[Name],
|
|
98568
|
+
'label', [pc].[DisplayLabel],
|
|
98569
|
+
'description', [pc].[Description],
|
|
98570
|
+
'priority', [pc].[Priority]
|
|
98571
|
+
) as [item]
|
|
98572
|
+
FROM
|
|
98573
|
+
[meta].[PropertyCategoryDef] [pc]
|
|
98574
|
+
${singleSchema ? `
|
|
98575
|
+
JOIN
|
|
98576
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
98577
|
+
WHERE [schema].[Name] = :schemaName
|
|
98578
|
+
` : ""}
|
|
98579
98579
|
`;
|
|
98580
98580
|
/**
|
|
98581
98581
|
* Query for SchemaItemType Enumeration data.
|
|
98582
98582
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98583
98583
|
*/
|
|
98584
|
-
const enumeration = (singleSchema) => `
|
|
98585
|
-
SELECT
|
|
98586
|
-
[ed].[Schema].[Id] AS [SchemaId],
|
|
98587
|
-
json_object (
|
|
98588
|
-
'schemaItemType', 'Enumeration',
|
|
98589
|
-
'name', [ed].[Name],
|
|
98590
|
-
'label', [ed].[DisplayLabel],
|
|
98591
|
-
'description', [ed].[Description],
|
|
98592
|
-
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
98593
|
-
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
98594
|
-
'enumerators', (
|
|
98595
|
-
SELECT json_group_array(json(json_object(
|
|
98596
|
-
'name', json_extract(js."value", '$.Name'),
|
|
98597
|
-
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
98598
|
-
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
98599
|
-
'description', json_extract(js."value", '$.Description')
|
|
98600
|
-
)))
|
|
98601
|
-
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
98602
|
-
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
98603
|
-
)
|
|
98604
|
-
) as [item]
|
|
98605
|
-
FROM
|
|
98606
|
-
[meta].[ECEnumerationDef] [ed]
|
|
98607
|
-
${singleSchema ? `
|
|
98608
|
-
JOIN
|
|
98609
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
98610
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98584
|
+
const enumeration = (singleSchema) => `
|
|
98585
|
+
SELECT
|
|
98586
|
+
[ed].[Schema].[Id] AS [SchemaId],
|
|
98587
|
+
json_object (
|
|
98588
|
+
'schemaItemType', 'Enumeration',
|
|
98589
|
+
'name', [ed].[Name],
|
|
98590
|
+
'label', [ed].[DisplayLabel],
|
|
98591
|
+
'description', [ed].[Description],
|
|
98592
|
+
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
98593
|
+
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
98594
|
+
'enumerators', (
|
|
98595
|
+
SELECT json_group_array(json(json_object(
|
|
98596
|
+
'name', json_extract(js."value", '$.Name'),
|
|
98597
|
+
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
98598
|
+
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
98599
|
+
'description', json_extract(js."value", '$.Description')
|
|
98600
|
+
)))
|
|
98601
|
+
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
98602
|
+
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
98603
|
+
)
|
|
98604
|
+
) as [item]
|
|
98605
|
+
FROM
|
|
98606
|
+
[meta].[ECEnumerationDef] [ed]
|
|
98607
|
+
${singleSchema ? `
|
|
98608
|
+
JOIN
|
|
98609
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
98610
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98611
98611
|
`;
|
|
98612
98612
|
/**
|
|
98613
98613
|
* Query for SchemaItemType Unit data.
|
|
98614
98614
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98615
98615
|
*/
|
|
98616
|
-
const unit = (singleSchema) => `
|
|
98617
|
-
SELECT
|
|
98618
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
98619
|
-
json_object (
|
|
98620
|
-
'schemaItemType', 'Unit',
|
|
98621
|
-
'name', [ud].[Name],
|
|
98622
|
-
'label', [ud].[DisplayLabel],
|
|
98623
|
-
'description', [ud].[Description],
|
|
98624
|
-
'definition', [ud].[Definition],
|
|
98625
|
-
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
98626
|
-
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
98627
|
-
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
98628
|
-
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
98629
|
-
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
98630
|
-
) as item
|
|
98631
|
-
FROM
|
|
98632
|
-
[meta].[UnitDef] [ud]
|
|
98633
|
-
${singleSchema ? `
|
|
98634
|
-
JOIN
|
|
98635
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
98636
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
98637
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
98638
|
-
JOIN [meta].[ECSchemaDef] [uss]
|
|
98639
|
-
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
98640
|
-
JOIN [meta].[PhenomenonDef] [pd]
|
|
98641
|
-
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
98642
|
-
JOIN [meta].[ECSchemaDef] [ps]
|
|
98643
|
-
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
98644
|
-
WHERE
|
|
98645
|
-
${singleSchema ? `
|
|
98646
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
98647
|
-
[ud].[IsConstant] = 0 AND
|
|
98648
|
-
[ud].[InvertingUnit] IS NULL
|
|
98616
|
+
const unit = (singleSchema) => `
|
|
98617
|
+
SELECT
|
|
98618
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
98619
|
+
json_object (
|
|
98620
|
+
'schemaItemType', 'Unit',
|
|
98621
|
+
'name', [ud].[Name],
|
|
98622
|
+
'label', [ud].[DisplayLabel],
|
|
98623
|
+
'description', [ud].[Description],
|
|
98624
|
+
'definition', [ud].[Definition],
|
|
98625
|
+
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
98626
|
+
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
98627
|
+
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
98628
|
+
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
98629
|
+
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
98630
|
+
) as item
|
|
98631
|
+
FROM
|
|
98632
|
+
[meta].[UnitDef] [ud]
|
|
98633
|
+
${singleSchema ? `
|
|
98634
|
+
JOIN
|
|
98635
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
98636
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
98637
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
98638
|
+
JOIN [meta].[ECSchemaDef] [uss]
|
|
98639
|
+
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
98640
|
+
JOIN [meta].[PhenomenonDef] [pd]
|
|
98641
|
+
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
98642
|
+
JOIN [meta].[ECSchemaDef] [ps]
|
|
98643
|
+
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
98644
|
+
WHERE
|
|
98645
|
+
${singleSchema ? `
|
|
98646
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
98647
|
+
[ud].[IsConstant] = 0 AND
|
|
98648
|
+
[ud].[InvertingUnit] IS NULL
|
|
98649
98649
|
`;
|
|
98650
98650
|
/**
|
|
98651
98651
|
* Query for SchemaItemType InvertedUnit data.
|
|
98652
98652
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98653
98653
|
*/
|
|
98654
|
-
const invertedUnit = (singleSchema) => `
|
|
98655
|
-
SELECT
|
|
98656
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
98657
|
-
json_object (
|
|
98658
|
-
'schemaItemType', 'InvertedUnit',
|
|
98659
|
-
'name', [ud].[Name],
|
|
98660
|
-
'label', [ud].[DisplayLabel],
|
|
98661
|
-
'description', [ud].[Description],
|
|
98662
|
-
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
98663
|
-
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
98664
|
-
) as [item]
|
|
98665
|
-
FROM
|
|
98666
|
-
[meta].[UnitDef] [ud]
|
|
98667
|
-
${singleSchema ? `
|
|
98668
|
-
JOIN
|
|
98669
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
98670
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
98671
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
98672
|
-
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
98673
|
-
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
98674
|
-
LEFT JOIN [meta].[UnitDef] [iud]
|
|
98675
|
-
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
98676
|
-
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
98677
|
-
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
98678
|
-
WHERE
|
|
98679
|
-
${singleSchema ? `
|
|
98680
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
98681
|
-
[ud].[IsConstant] = 0 AND
|
|
98682
|
-
[ud].[InvertingUnit] IS NOT NULL
|
|
98654
|
+
const invertedUnit = (singleSchema) => `
|
|
98655
|
+
SELECT
|
|
98656
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
98657
|
+
json_object (
|
|
98658
|
+
'schemaItemType', 'InvertedUnit',
|
|
98659
|
+
'name', [ud].[Name],
|
|
98660
|
+
'label', [ud].[DisplayLabel],
|
|
98661
|
+
'description', [ud].[Description],
|
|
98662
|
+
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
98663
|
+
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
98664
|
+
) as [item]
|
|
98665
|
+
FROM
|
|
98666
|
+
[meta].[UnitDef] [ud]
|
|
98667
|
+
${singleSchema ? `
|
|
98668
|
+
JOIN
|
|
98669
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
98670
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
98671
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
98672
|
+
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
98673
|
+
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
98674
|
+
LEFT JOIN [meta].[UnitDef] [iud]
|
|
98675
|
+
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
98676
|
+
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
98677
|
+
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
98678
|
+
WHERE
|
|
98679
|
+
${singleSchema ? `
|
|
98680
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
98681
|
+
[ud].[IsConstant] = 0 AND
|
|
98682
|
+
[ud].[InvertingUnit] IS NOT NULL
|
|
98683
98683
|
`;
|
|
98684
98684
|
/**
|
|
98685
98685
|
* Query for SchemaItemType Constant data.
|
|
98686
98686
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98687
98687
|
*/
|
|
98688
|
-
const constant = (singleSchema) => `
|
|
98689
|
-
SELECT
|
|
98690
|
-
[cd].[Schema].[Id] AS [SchemaId],
|
|
98691
|
-
json_object(
|
|
98692
|
-
'schemaItemType', 'Constant',
|
|
98693
|
-
'name', [cd].[Name],
|
|
98694
|
-
'label', [cd].[DisplayLabel],
|
|
98695
|
-
'description', [cd].[Description],
|
|
98696
|
-
'definition', [cd].[Definition],
|
|
98697
|
-
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
98698
|
-
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
98699
|
-
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
98700
|
-
) as item
|
|
98701
|
-
FROM
|
|
98702
|
-
[meta].[UnitDef] [cd]
|
|
98703
|
-
${singleSchema ? `
|
|
98704
|
-
JOIN
|
|
98705
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
98706
|
-
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
98707
|
-
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
98708
|
-
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
98709
|
-
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
98710
|
-
WHERE
|
|
98711
|
-
${singleSchema ? `
|
|
98712
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
98713
|
-
[cd].[IsConstant] = 1
|
|
98688
|
+
const constant = (singleSchema) => `
|
|
98689
|
+
SELECT
|
|
98690
|
+
[cd].[Schema].[Id] AS [SchemaId],
|
|
98691
|
+
json_object(
|
|
98692
|
+
'schemaItemType', 'Constant',
|
|
98693
|
+
'name', [cd].[Name],
|
|
98694
|
+
'label', [cd].[DisplayLabel],
|
|
98695
|
+
'description', [cd].[Description],
|
|
98696
|
+
'definition', [cd].[Definition],
|
|
98697
|
+
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
98698
|
+
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
98699
|
+
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
98700
|
+
) as item
|
|
98701
|
+
FROM
|
|
98702
|
+
[meta].[UnitDef] [cd]
|
|
98703
|
+
${singleSchema ? `
|
|
98704
|
+
JOIN
|
|
98705
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
98706
|
+
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
98707
|
+
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
98708
|
+
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
98709
|
+
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
98710
|
+
WHERE
|
|
98711
|
+
${singleSchema ? `
|
|
98712
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
98713
|
+
[cd].[IsConstant] = 1
|
|
98714
98714
|
`;
|
|
98715
98715
|
/**
|
|
98716
98716
|
* Query for SchemaItemType UnitSystem data.
|
|
98717
98717
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98718
98718
|
*/
|
|
98719
|
-
const unitSystem = (singleSchema) => `
|
|
98720
|
-
SELECT
|
|
98721
|
-
[us].[Schema].[Id] AS [SchemaId],
|
|
98722
|
-
json_object (
|
|
98723
|
-
'schemaItemType', 'UnitSystem',
|
|
98724
|
-
'name', [us].[Name],
|
|
98725
|
-
'label', [us].[DisplayLabel],
|
|
98726
|
-
'description', [us].[Description]
|
|
98727
|
-
) as [item]
|
|
98728
|
-
FROM
|
|
98729
|
-
[meta].[UnitSystemDef] [us]
|
|
98730
|
-
${singleSchema ? `
|
|
98731
|
-
JOIN
|
|
98732
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
98733
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98719
|
+
const unitSystem = (singleSchema) => `
|
|
98720
|
+
SELECT
|
|
98721
|
+
[us].[Schema].[Id] AS [SchemaId],
|
|
98722
|
+
json_object (
|
|
98723
|
+
'schemaItemType', 'UnitSystem',
|
|
98724
|
+
'name', [us].[Name],
|
|
98725
|
+
'label', [us].[DisplayLabel],
|
|
98726
|
+
'description', [us].[Description]
|
|
98727
|
+
) as [item]
|
|
98728
|
+
FROM
|
|
98729
|
+
[meta].[UnitSystemDef] [us]
|
|
98730
|
+
${singleSchema ? `
|
|
98731
|
+
JOIN
|
|
98732
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
98733
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98734
98734
|
`;
|
|
98735
98735
|
/**
|
|
98736
98736
|
* Query for SchemaItemType Phenomenon data.
|
|
98737
98737
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98738
98738
|
*/
|
|
98739
|
-
const phenomenon = (singleSchema) => `
|
|
98740
|
-
SELECT
|
|
98741
|
-
[pd].[Schema].[Id] AS [SchemaId],
|
|
98742
|
-
json_object(
|
|
98743
|
-
'schemaItemType', 'Phenomenon',
|
|
98744
|
-
'name', [pd].[Name],
|
|
98745
|
-
'label', [pd].[DisplayLabel],
|
|
98746
|
-
'description', [pd].[Description],
|
|
98747
|
-
'definition', [pd].[Definition]
|
|
98748
|
-
) as [item]
|
|
98749
|
-
FROM
|
|
98750
|
-
[meta].[PhenomenonDef] [pd]
|
|
98751
|
-
${singleSchema ? `
|
|
98752
|
-
JOIN
|
|
98753
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
98754
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98739
|
+
const phenomenon = (singleSchema) => `
|
|
98740
|
+
SELECT
|
|
98741
|
+
[pd].[Schema].[Id] AS [SchemaId],
|
|
98742
|
+
json_object(
|
|
98743
|
+
'schemaItemType', 'Phenomenon',
|
|
98744
|
+
'name', [pd].[Name],
|
|
98745
|
+
'label', [pd].[DisplayLabel],
|
|
98746
|
+
'description', [pd].[Description],
|
|
98747
|
+
'definition', [pd].[Definition]
|
|
98748
|
+
) as [item]
|
|
98749
|
+
FROM
|
|
98750
|
+
[meta].[PhenomenonDef] [pd]
|
|
98751
|
+
${singleSchema ? `
|
|
98752
|
+
JOIN
|
|
98753
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
98754
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98755
98755
|
`;
|
|
98756
98756
|
/**
|
|
98757
98757
|
* Query for SchemaItemType Format data.
|
|
98758
98758
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
98759
98759
|
*/
|
|
98760
|
-
const format = (singleSchema) => `
|
|
98761
|
-
SELECT
|
|
98762
|
-
[fd].[Schema].[Id] AS [SchemaId],
|
|
98763
|
-
json_object(
|
|
98764
|
-
'schemaItemType', 'Format',
|
|
98765
|
-
'name', [fd].[Name],
|
|
98766
|
-
'label', [fd].[DisplayLabel],
|
|
98767
|
-
'description', [fd].[Description],
|
|
98768
|
-
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
98769
|
-
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
98770
|
-
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
98771
|
-
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
98772
|
-
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
98773
|
-
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
98774
|
-
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
98775
|
-
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
98776
|
-
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
98777
|
-
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
98778
|
-
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
98779
|
-
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
98780
|
-
${singleSchema ? `
|
|
98781
|
-
,'composite', (
|
|
98782
|
-
SELECT
|
|
98783
|
-
json_object(
|
|
98784
|
-
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
98785
|
-
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
98786
|
-
'units', (
|
|
98787
|
-
SELECT json_group_array(json(json_object(
|
|
98788
|
-
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
98789
|
-
'label', [fud].[Label]
|
|
98790
|
-
)))
|
|
98791
|
-
FROM [meta].[FormatDef] [fd2]
|
|
98792
|
-
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
98793
|
-
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
98794
|
-
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
98795
|
-
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
98796
|
-
)
|
|
98797
|
-
)
|
|
98798
|
-
FROM [meta].[FormatDef] [fd1]
|
|
98799
|
-
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
98800
|
-
)` : ""}
|
|
98801
|
-
) AS item
|
|
98802
|
-
FROM
|
|
98803
|
-
[meta].[FormatDef] [fd]
|
|
98804
|
-
${singleSchema ? `
|
|
98805
|
-
JOIN
|
|
98806
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
98807
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98760
|
+
const format = (singleSchema) => `
|
|
98761
|
+
SELECT
|
|
98762
|
+
[fd].[Schema].[Id] AS [SchemaId],
|
|
98763
|
+
json_object(
|
|
98764
|
+
'schemaItemType', 'Format',
|
|
98765
|
+
'name', [fd].[Name],
|
|
98766
|
+
'label', [fd].[DisplayLabel],
|
|
98767
|
+
'description', [fd].[Description],
|
|
98768
|
+
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
98769
|
+
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
98770
|
+
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
98771
|
+
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
98772
|
+
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
98773
|
+
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
98774
|
+
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
98775
|
+
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
98776
|
+
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
98777
|
+
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
98778
|
+
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
98779
|
+
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
98780
|
+
${singleSchema ? `
|
|
98781
|
+
,'composite', (
|
|
98782
|
+
SELECT
|
|
98783
|
+
json_object(
|
|
98784
|
+
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
98785
|
+
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
98786
|
+
'units', (
|
|
98787
|
+
SELECT json_group_array(json(json_object(
|
|
98788
|
+
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
98789
|
+
'label', [fud].[Label]
|
|
98790
|
+
)))
|
|
98791
|
+
FROM [meta].[FormatDef] [fd2]
|
|
98792
|
+
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
98793
|
+
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
98794
|
+
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
98795
|
+
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
98796
|
+
)
|
|
98797
|
+
)
|
|
98798
|
+
FROM [meta].[FormatDef] [fd1]
|
|
98799
|
+
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
98800
|
+
)` : ""}
|
|
98801
|
+
) AS item
|
|
98802
|
+
FROM
|
|
98803
|
+
[meta].[FormatDef] [fd]
|
|
98804
|
+
${singleSchema ? `
|
|
98805
|
+
JOIN
|
|
98806
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
98807
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
98808
98808
|
`;
|
|
98809
98809
|
/**
|
|
98810
98810
|
* Queries for each SchemaItemType
|
|
@@ -98970,332 +98970,332 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98970
98970
|
*--------------------------------------------------------------------------------------------*/
|
|
98971
98971
|
|
|
98972
98972
|
const modifier = (alias) => {
|
|
98973
|
-
return `
|
|
98974
|
-
CASE
|
|
98975
|
-
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
98976
|
-
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
98977
|
-
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
98978
|
-
ELSE NULL
|
|
98979
|
-
END
|
|
98973
|
+
return `
|
|
98974
|
+
CASE
|
|
98975
|
+
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
98976
|
+
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
98977
|
+
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
98978
|
+
ELSE NULL
|
|
98979
|
+
END
|
|
98980
98980
|
`;
|
|
98981
98981
|
};
|
|
98982
98982
|
const strength = (alias) => {
|
|
98983
|
-
return `
|
|
98984
|
-
CASE
|
|
98985
|
-
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
98986
|
-
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
98987
|
-
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
98988
|
-
ELSE NULL
|
|
98989
|
-
END
|
|
98983
|
+
return `
|
|
98984
|
+
CASE
|
|
98985
|
+
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
98986
|
+
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
98987
|
+
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
98988
|
+
ELSE NULL
|
|
98989
|
+
END
|
|
98990
98990
|
`;
|
|
98991
98991
|
};
|
|
98992
98992
|
const strengthDirection = (alias) => {
|
|
98993
|
-
return `
|
|
98994
|
-
CASE
|
|
98995
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
98996
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
98997
|
-
ELSE NULL
|
|
98998
|
-
END
|
|
98993
|
+
return `
|
|
98994
|
+
CASE
|
|
98995
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
98996
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
98997
|
+
ELSE NULL
|
|
98998
|
+
END
|
|
98999
98999
|
`;
|
|
99000
99000
|
};
|
|
99001
|
-
const withAppliesTo = `
|
|
99002
|
-
AppliesToCTE AS (
|
|
99003
|
-
SELECT
|
|
99004
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
99005
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
99006
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
99007
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
99008
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
99009
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
99010
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
99011
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
99012
|
-
WHERE [ca].[ContainerType] = 30
|
|
99013
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
99014
|
-
)
|
|
99001
|
+
const withAppliesTo = `
|
|
99002
|
+
AppliesToCTE AS (
|
|
99003
|
+
SELECT
|
|
99004
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
99005
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
99006
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
99007
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
99008
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
99009
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
99010
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
99011
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
99012
|
+
WHERE [ca].[ContainerType] = 30
|
|
99013
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
99014
|
+
)
|
|
99015
99015
|
`;
|
|
99016
|
-
const withSchemaReferences = `
|
|
99017
|
-
SchemaReferences AS (
|
|
99018
|
-
SELECT
|
|
99019
|
-
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
99020
|
-
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
99021
|
-
FROM
|
|
99022
|
-
[meta].[ECSchemaDef] AS [refSchema]
|
|
99023
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
99024
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
99025
|
-
)
|
|
99016
|
+
const withSchemaReferences = `
|
|
99017
|
+
SchemaReferences AS (
|
|
99018
|
+
SELECT
|
|
99019
|
+
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
99020
|
+
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
99021
|
+
FROM
|
|
99022
|
+
[meta].[ECSchemaDef] AS [refSchema]
|
|
99023
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
99024
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
99025
|
+
)
|
|
99026
99026
|
`;
|
|
99027
|
-
const customAttributeQuery = `
|
|
99028
|
-
SELECT
|
|
99029
|
-
[Schema].[Id] AS [SchemaId],
|
|
99030
|
-
json_object(
|
|
99031
|
-
'name', [class].[Name],
|
|
99032
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
99033
|
-
'modifier', ${modifier("class")},
|
|
99034
|
-
'label', [class].[DisplayLabel],
|
|
99035
|
-
'description', [class].[Description],
|
|
99036
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
99037
|
-
'baseClasses', (
|
|
99038
|
-
SELECT
|
|
99039
|
-
json_group_array(json(json_object(
|
|
99040
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99041
|
-
'name', [baseClass].[Name],
|
|
99042
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
99043
|
-
'modifier', ${modifier("baseClass")},
|
|
99044
|
-
'label', [baseClass].[DisplayLabel],
|
|
99045
|
-
'description', [baseClass].[Description],
|
|
99046
|
-
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
99047
|
-
)))
|
|
99048
|
-
FROM
|
|
99049
|
-
[meta].[ECClassDef] [baseClass]
|
|
99050
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99051
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99052
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99053
|
-
)
|
|
99054
|
-
) AS [item]
|
|
99055
|
-
FROM [meta].[ECClassDef] [class]
|
|
99056
|
-
WHERE [class].[Type] = 3
|
|
99027
|
+
const customAttributeQuery = `
|
|
99028
|
+
SELECT
|
|
99029
|
+
[Schema].[Id] AS [SchemaId],
|
|
99030
|
+
json_object(
|
|
99031
|
+
'name', [class].[Name],
|
|
99032
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
99033
|
+
'modifier', ${modifier("class")},
|
|
99034
|
+
'label', [class].[DisplayLabel],
|
|
99035
|
+
'description', [class].[Description],
|
|
99036
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
99037
|
+
'baseClasses', (
|
|
99038
|
+
SELECT
|
|
99039
|
+
json_group_array(json(json_object(
|
|
99040
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99041
|
+
'name', [baseClass].[Name],
|
|
99042
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
99043
|
+
'modifier', ${modifier("baseClass")},
|
|
99044
|
+
'label', [baseClass].[DisplayLabel],
|
|
99045
|
+
'description', [baseClass].[Description],
|
|
99046
|
+
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
99047
|
+
)))
|
|
99048
|
+
FROM
|
|
99049
|
+
[meta].[ECClassDef] [baseClass]
|
|
99050
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99051
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99052
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99053
|
+
)
|
|
99054
|
+
) AS [item]
|
|
99055
|
+
FROM [meta].[ECClassDef] [class]
|
|
99056
|
+
WHERE [class].[Type] = 3
|
|
99057
99057
|
`;
|
|
99058
|
-
const structQuery = `
|
|
99059
|
-
SELECT
|
|
99060
|
-
[Schema].[Id] AS [SchemaId],
|
|
99061
|
-
json_object(
|
|
99062
|
-
'name', [class].[Name],
|
|
99063
|
-
'schemaItemType', 'StructClass',
|
|
99064
|
-
'modifier', ${modifier("class")},
|
|
99065
|
-
'label', [class].[DisplayLabel],
|
|
99066
|
-
'description', [class].[Description],
|
|
99067
|
-
'baseClasses', (
|
|
99068
|
-
SELECT
|
|
99069
|
-
json_group_array(json(json_object(
|
|
99070
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99071
|
-
'name', [baseClass].[Name],
|
|
99072
|
-
'schemaItemType', 'StructClass',
|
|
99073
|
-
'modifier', ${modifier("baseClass")},
|
|
99074
|
-
'label', [baseClass].[DisplayLabel],
|
|
99075
|
-
'description', [baseClass].[Description]
|
|
99076
|
-
)))
|
|
99077
|
-
FROM
|
|
99078
|
-
[meta].[ECClassDef] [baseClass]
|
|
99079
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99080
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99081
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99082
|
-
)
|
|
99083
|
-
) AS [item]
|
|
99084
|
-
FROM [meta].[ECClassDef] [class]
|
|
99085
|
-
WHERE [class].[Type] = 2
|
|
99058
|
+
const structQuery = `
|
|
99059
|
+
SELECT
|
|
99060
|
+
[Schema].[Id] AS [SchemaId],
|
|
99061
|
+
json_object(
|
|
99062
|
+
'name', [class].[Name],
|
|
99063
|
+
'schemaItemType', 'StructClass',
|
|
99064
|
+
'modifier', ${modifier("class")},
|
|
99065
|
+
'label', [class].[DisplayLabel],
|
|
99066
|
+
'description', [class].[Description],
|
|
99067
|
+
'baseClasses', (
|
|
99068
|
+
SELECT
|
|
99069
|
+
json_group_array(json(json_object(
|
|
99070
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99071
|
+
'name', [baseClass].[Name],
|
|
99072
|
+
'schemaItemType', 'StructClass',
|
|
99073
|
+
'modifier', ${modifier("baseClass")},
|
|
99074
|
+
'label', [baseClass].[DisplayLabel],
|
|
99075
|
+
'description', [baseClass].[Description]
|
|
99076
|
+
)))
|
|
99077
|
+
FROM
|
|
99078
|
+
[meta].[ECClassDef] [baseClass]
|
|
99079
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99080
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99081
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99082
|
+
)
|
|
99083
|
+
) AS [item]
|
|
99084
|
+
FROM [meta].[ECClassDef] [class]
|
|
99085
|
+
WHERE [class].[Type] = 2
|
|
99086
99086
|
`;
|
|
99087
|
-
const relationshipQuery = `
|
|
99088
|
-
SELECT
|
|
99089
|
-
[Schema].[Id] AS [SchemaId],
|
|
99090
|
-
json_object(
|
|
99091
|
-
'name', [class].[Name],
|
|
99092
|
-
'schemaItemType', 'RelationshipClass',
|
|
99093
|
-
'modifier', ${modifier("class")},
|
|
99094
|
-
'label', [class].[DisplayLabel],
|
|
99095
|
-
'description', [class].[Description],
|
|
99096
|
-
'strength', ${strength("class")},
|
|
99097
|
-
'strengthDirection', ${strengthDirection("class")},
|
|
99098
|
-
'baseClasses', (
|
|
99099
|
-
SELECT
|
|
99100
|
-
json_group_array(json(json_object(
|
|
99101
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99102
|
-
'name', [baseClass].[Name],
|
|
99103
|
-
'schemaItemType', 'RelationshipClass',
|
|
99104
|
-
'modifier', ${modifier("baseClass")},
|
|
99105
|
-
'label', [baseClass].[DisplayLabel],
|
|
99106
|
-
'description', [baseClass].[Description],
|
|
99107
|
-
'strength', ${strength("baseClass")},
|
|
99108
|
-
'strengthDirection', ${strengthDirection("baseClass")}
|
|
99109
|
-
)))
|
|
99110
|
-
FROM
|
|
99111
|
-
[meta].[ECClassDef] [baseClass]
|
|
99112
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99113
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99114
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99115
|
-
)
|
|
99116
|
-
) AS [item]
|
|
99117
|
-
FROM [meta].[ECClassDef] [class]
|
|
99118
|
-
WHERE [class].[Type] = 1
|
|
99087
|
+
const relationshipQuery = `
|
|
99088
|
+
SELECT
|
|
99089
|
+
[Schema].[Id] AS [SchemaId],
|
|
99090
|
+
json_object(
|
|
99091
|
+
'name', [class].[Name],
|
|
99092
|
+
'schemaItemType', 'RelationshipClass',
|
|
99093
|
+
'modifier', ${modifier("class")},
|
|
99094
|
+
'label', [class].[DisplayLabel],
|
|
99095
|
+
'description', [class].[Description],
|
|
99096
|
+
'strength', ${strength("class")},
|
|
99097
|
+
'strengthDirection', ${strengthDirection("class")},
|
|
99098
|
+
'baseClasses', (
|
|
99099
|
+
SELECT
|
|
99100
|
+
json_group_array(json(json_object(
|
|
99101
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99102
|
+
'name', [baseClass].[Name],
|
|
99103
|
+
'schemaItemType', 'RelationshipClass',
|
|
99104
|
+
'modifier', ${modifier("baseClass")},
|
|
99105
|
+
'label', [baseClass].[DisplayLabel],
|
|
99106
|
+
'description', [baseClass].[Description],
|
|
99107
|
+
'strength', ${strength("baseClass")},
|
|
99108
|
+
'strengthDirection', ${strengthDirection("baseClass")}
|
|
99109
|
+
)))
|
|
99110
|
+
FROM
|
|
99111
|
+
[meta].[ECClassDef] [baseClass]
|
|
99112
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99113
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99114
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99115
|
+
)
|
|
99116
|
+
) AS [item]
|
|
99117
|
+
FROM [meta].[ECClassDef] [class]
|
|
99118
|
+
WHERE [class].[Type] = 1
|
|
99119
99119
|
`;
|
|
99120
|
-
const entityQuery = `
|
|
99121
|
-
SELECT
|
|
99122
|
-
[Schema].[Id] AS [SchemaId],
|
|
99123
|
-
json_object(
|
|
99124
|
-
'name', [class].[Name],
|
|
99125
|
-
'schemaItemType', 'EntityClass',
|
|
99126
|
-
'modifier', ${modifier("class")},
|
|
99127
|
-
'label', [class].[DisplayLabel],
|
|
99128
|
-
'description', [class].[Description],
|
|
99129
|
-
'baseClasses', (
|
|
99130
|
-
SELECT
|
|
99131
|
-
json_group_array(json(json_object(
|
|
99132
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99133
|
-
'name', [baseClass].[Name],
|
|
99134
|
-
'schemaItemType', 'EntityClass',
|
|
99135
|
-
'modifier', ${modifier("baseClass")},
|
|
99136
|
-
'label', [baseClass].[DisplayLabel],
|
|
99137
|
-
'description', [baseClass].[Description]
|
|
99138
|
-
)))
|
|
99139
|
-
FROM
|
|
99140
|
-
[meta].[ECClassDef] [baseClass]
|
|
99141
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99142
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99143
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99144
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
99145
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99146
|
-
),
|
|
99147
|
-
'mixins', (
|
|
99148
|
-
SELECT
|
|
99149
|
-
json_group_array(json(json_object(
|
|
99150
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99151
|
-
'name', [baseClass].[Name],
|
|
99152
|
-
'schemaItemType', 'Mixin',
|
|
99153
|
-
'modifier', ${modifier("baseClass")},
|
|
99154
|
-
'label', [baseClass].[DisplayLabel],
|
|
99155
|
-
'description', [baseClass].[Description],
|
|
99156
|
-
'appliesTo', (
|
|
99157
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99158
|
-
FROM [AppliesToCTE] [atCTE]
|
|
99159
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
99160
|
-
),
|
|
99161
|
-
'baseClasses', (
|
|
99162
|
-
SELECT
|
|
99163
|
-
json_group_array(json(json_object(
|
|
99164
|
-
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
99165
|
-
'name', [mixinBaseClass].[Name],
|
|
99166
|
-
'schemaItemType', 'Mixin',
|
|
99167
|
-
'modifier', ${modifier("mixinBaseClass")},
|
|
99168
|
-
'label', [mixinBaseClass].[DisplayLabel],
|
|
99169
|
-
'description', [mixinBaseClass].[Description],
|
|
99170
|
-
'appliesTo', (
|
|
99171
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99172
|
-
FROM [AppliesToCTE] [atCTE]
|
|
99173
|
-
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
99174
|
-
)
|
|
99175
|
-
)))
|
|
99176
|
-
FROM
|
|
99177
|
-
[meta].[ECClassDef] [mixinBaseClass]
|
|
99178
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
99179
|
-
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
99180
|
-
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
99181
|
-
)
|
|
99182
|
-
)))
|
|
99183
|
-
FROM
|
|
99184
|
-
[meta].[ECClassDef] [baseClass]
|
|
99185
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
99186
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99187
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99188
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
99189
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99190
|
-
)
|
|
99191
|
-
) AS [item]
|
|
99192
|
-
FROM [meta].[ECClassDef] [class]
|
|
99193
|
-
WHERE [class].[Type] = 0
|
|
99194
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
99195
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99120
|
+
const entityQuery = `
|
|
99121
|
+
SELECT
|
|
99122
|
+
[Schema].[Id] AS [SchemaId],
|
|
99123
|
+
json_object(
|
|
99124
|
+
'name', [class].[Name],
|
|
99125
|
+
'schemaItemType', 'EntityClass',
|
|
99126
|
+
'modifier', ${modifier("class")},
|
|
99127
|
+
'label', [class].[DisplayLabel],
|
|
99128
|
+
'description', [class].[Description],
|
|
99129
|
+
'baseClasses', (
|
|
99130
|
+
SELECT
|
|
99131
|
+
json_group_array(json(json_object(
|
|
99132
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99133
|
+
'name', [baseClass].[Name],
|
|
99134
|
+
'schemaItemType', 'EntityClass',
|
|
99135
|
+
'modifier', ${modifier("baseClass")},
|
|
99136
|
+
'label', [baseClass].[DisplayLabel],
|
|
99137
|
+
'description', [baseClass].[Description]
|
|
99138
|
+
)))
|
|
99139
|
+
FROM
|
|
99140
|
+
[meta].[ECClassDef] [baseClass]
|
|
99141
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99142
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99143
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99144
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
99145
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99146
|
+
),
|
|
99147
|
+
'mixins', (
|
|
99148
|
+
SELECT
|
|
99149
|
+
json_group_array(json(json_object(
|
|
99150
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99151
|
+
'name', [baseClass].[Name],
|
|
99152
|
+
'schemaItemType', 'Mixin',
|
|
99153
|
+
'modifier', ${modifier("baseClass")},
|
|
99154
|
+
'label', [baseClass].[DisplayLabel],
|
|
99155
|
+
'description', [baseClass].[Description],
|
|
99156
|
+
'appliesTo', (
|
|
99157
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99158
|
+
FROM [AppliesToCTE] [atCTE]
|
|
99159
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
99160
|
+
),
|
|
99161
|
+
'baseClasses', (
|
|
99162
|
+
SELECT
|
|
99163
|
+
json_group_array(json(json_object(
|
|
99164
|
+
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
99165
|
+
'name', [mixinBaseClass].[Name],
|
|
99166
|
+
'schemaItemType', 'Mixin',
|
|
99167
|
+
'modifier', ${modifier("mixinBaseClass")},
|
|
99168
|
+
'label', [mixinBaseClass].[DisplayLabel],
|
|
99169
|
+
'description', [mixinBaseClass].[Description],
|
|
99170
|
+
'appliesTo', (
|
|
99171
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99172
|
+
FROM [AppliesToCTE] [atCTE]
|
|
99173
|
+
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
99174
|
+
)
|
|
99175
|
+
)))
|
|
99176
|
+
FROM
|
|
99177
|
+
[meta].[ECClassDef] [mixinBaseClass]
|
|
99178
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
99179
|
+
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
99180
|
+
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
99181
|
+
)
|
|
99182
|
+
)))
|
|
99183
|
+
FROM
|
|
99184
|
+
[meta].[ECClassDef] [baseClass]
|
|
99185
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
99186
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99187
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99188
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
99189
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99190
|
+
)
|
|
99191
|
+
) AS [item]
|
|
99192
|
+
FROM [meta].[ECClassDef] [class]
|
|
99193
|
+
WHERE [class].[Type] = 0
|
|
99194
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
99195
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99196
99196
|
`;
|
|
99197
|
-
const mixinQuery = `
|
|
99198
|
-
SELECT
|
|
99199
|
-
[Schema].[Id] AS [SchemaId],
|
|
99200
|
-
json_object(
|
|
99201
|
-
'name', [class].[Name],
|
|
99202
|
-
'schemaItemType', 'Mixin',
|
|
99203
|
-
'modifier', ${modifier("class")},
|
|
99204
|
-
'label', [class].[DisplayLabel],
|
|
99205
|
-
'description', [class].[Description],
|
|
99206
|
-
'appliesTo', (
|
|
99207
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99208
|
-
FROM [AppliesToCTE] [atCTE]
|
|
99209
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
99210
|
-
),
|
|
99211
|
-
'baseClasses', (
|
|
99212
|
-
SELECT
|
|
99213
|
-
json_group_array(json(json_object(
|
|
99214
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99215
|
-
'name', [baseClass].[Name],
|
|
99216
|
-
'schemaItemType', 'Mixin',
|
|
99217
|
-
'modifier', ${modifier("baseClass")},
|
|
99218
|
-
'label', [baseClass].[DisplayLabel],
|
|
99219
|
-
'description', [baseClass].[Description],
|
|
99220
|
-
'appliesTo', (
|
|
99221
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99222
|
-
FROM [AppliesToCTE] [atCTE]
|
|
99223
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
99224
|
-
)
|
|
99225
|
-
)))
|
|
99226
|
-
FROM
|
|
99227
|
-
[meta].[ECClassDef] [baseClass]
|
|
99228
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99229
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99230
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99231
|
-
)
|
|
99232
|
-
) AS [item]
|
|
99233
|
-
FROM [meta].[ECClassDef] [class]
|
|
99234
|
-
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
99235
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99197
|
+
const mixinQuery = `
|
|
99198
|
+
SELECT
|
|
99199
|
+
[Schema].[Id] AS [SchemaId],
|
|
99200
|
+
json_object(
|
|
99201
|
+
'name', [class].[Name],
|
|
99202
|
+
'schemaItemType', 'Mixin',
|
|
99203
|
+
'modifier', ${modifier("class")},
|
|
99204
|
+
'label', [class].[DisplayLabel],
|
|
99205
|
+
'description', [class].[Description],
|
|
99206
|
+
'appliesTo', (
|
|
99207
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99208
|
+
FROM [AppliesToCTE] [atCTE]
|
|
99209
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
99210
|
+
),
|
|
99211
|
+
'baseClasses', (
|
|
99212
|
+
SELECT
|
|
99213
|
+
json_group_array(json(json_object(
|
|
99214
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
99215
|
+
'name', [baseClass].[Name],
|
|
99216
|
+
'schemaItemType', 'Mixin',
|
|
99217
|
+
'modifier', ${modifier("baseClass")},
|
|
99218
|
+
'label', [baseClass].[DisplayLabel],
|
|
99219
|
+
'description', [baseClass].[Description],
|
|
99220
|
+
'appliesTo', (
|
|
99221
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
99222
|
+
FROM [AppliesToCTE] [atCTE]
|
|
99223
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
99224
|
+
)
|
|
99225
|
+
)))
|
|
99226
|
+
FROM
|
|
99227
|
+
[meta].[ECClassDef] [baseClass]
|
|
99228
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
99229
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
99230
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
99231
|
+
)
|
|
99232
|
+
) AS [item]
|
|
99233
|
+
FROM [meta].[ECClassDef] [class]
|
|
99234
|
+
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
99235
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
99236
99236
|
`;
|
|
99237
|
-
const withSchemaItems = `
|
|
99238
|
-
SchemaItems AS (
|
|
99239
|
-
${customAttributeQuery}
|
|
99240
|
-
UNION ALL
|
|
99241
|
-
${structQuery}
|
|
99242
|
-
UNION ALL
|
|
99243
|
-
${relationshipQuery}
|
|
99244
|
-
UNION ALL
|
|
99245
|
-
${entityQuery}
|
|
99246
|
-
UNION ALL
|
|
99247
|
-
${mixinQuery}
|
|
99248
|
-
UNION ALL
|
|
99249
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
99250
|
-
UNION ALL
|
|
99251
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
99252
|
-
UNION ALL
|
|
99253
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
99254
|
-
UNION ALL
|
|
99255
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
99256
|
-
UNION ALL
|
|
99257
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
99258
|
-
UNION ALL
|
|
99259
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
99260
|
-
UNION ALL
|
|
99261
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
99262
|
-
UNION ALL
|
|
99263
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
99264
|
-
UNION ALL
|
|
99265
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
99266
|
-
)
|
|
99237
|
+
const withSchemaItems = `
|
|
99238
|
+
SchemaItems AS (
|
|
99239
|
+
${customAttributeQuery}
|
|
99240
|
+
UNION ALL
|
|
99241
|
+
${structQuery}
|
|
99242
|
+
UNION ALL
|
|
99243
|
+
${relationshipQuery}
|
|
99244
|
+
UNION ALL
|
|
99245
|
+
${entityQuery}
|
|
99246
|
+
UNION ALL
|
|
99247
|
+
${mixinQuery}
|
|
99248
|
+
UNION ALL
|
|
99249
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
99250
|
+
UNION ALL
|
|
99251
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
99252
|
+
UNION ALL
|
|
99253
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
99254
|
+
UNION ALL
|
|
99255
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
99256
|
+
UNION ALL
|
|
99257
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
99258
|
+
UNION ALL
|
|
99259
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
99260
|
+
UNION ALL
|
|
99261
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
99262
|
+
UNION ALL
|
|
99263
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
99264
|
+
UNION ALL
|
|
99265
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
99266
|
+
)
|
|
99267
99267
|
`;
|
|
99268
|
-
const schemaStubQuery = `
|
|
99269
|
-
WITH
|
|
99270
|
-
${withAppliesTo},
|
|
99271
|
-
${withSchemaItems}
|
|
99272
|
-
SELECT
|
|
99273
|
-
[items].[item]
|
|
99274
|
-
FROM
|
|
99275
|
-
[SchemaItems] [items]
|
|
99276
|
-
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
99277
|
-
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
99278
|
-
WHERE [schemaDef].[Name] = :schemaName
|
|
99268
|
+
const schemaStubQuery = `
|
|
99269
|
+
WITH
|
|
99270
|
+
${withAppliesTo},
|
|
99271
|
+
${withSchemaItems}
|
|
99272
|
+
SELECT
|
|
99273
|
+
[items].[item]
|
|
99274
|
+
FROM
|
|
99275
|
+
[SchemaItems] [items]
|
|
99276
|
+
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
99277
|
+
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
99278
|
+
WHERE [schemaDef].[Name] = :schemaName
|
|
99279
99279
|
`;
|
|
99280
|
-
const schemaInfoQuery = `
|
|
99281
|
-
WITH
|
|
99282
|
-
${withSchemaReferences}
|
|
99283
|
-
SELECT
|
|
99284
|
-
[Name] as [name],
|
|
99285
|
-
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
99286
|
-
[Alias] as [alias],
|
|
99287
|
-
[DisplayLabel] as [label],
|
|
99288
|
-
[Description] as [description],
|
|
99289
|
-
(
|
|
99290
|
-
SELECT
|
|
99291
|
-
json_group_array([schemaReferences].[fullName])
|
|
99292
|
-
FROM
|
|
99293
|
-
[SchemaReferences] [schemaReferences]
|
|
99294
|
-
WHERE
|
|
99295
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
99296
|
-
) AS [references]
|
|
99297
|
-
FROM
|
|
99298
|
-
[meta].[ECSchemaDef] [schemaDef]
|
|
99280
|
+
const schemaInfoQuery = `
|
|
99281
|
+
WITH
|
|
99282
|
+
${withSchemaReferences}
|
|
99283
|
+
SELECT
|
|
99284
|
+
[Name] as [name],
|
|
99285
|
+
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
99286
|
+
[Alias] as [alias],
|
|
99287
|
+
[DisplayLabel] as [label],
|
|
99288
|
+
[Description] as [description],
|
|
99289
|
+
(
|
|
99290
|
+
SELECT
|
|
99291
|
+
json_group_array([schemaReferences].[fullName])
|
|
99292
|
+
FROM
|
|
99293
|
+
[SchemaReferences] [schemaReferences]
|
|
99294
|
+
WHERE
|
|
99295
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
99296
|
+
) AS [references]
|
|
99297
|
+
FROM
|
|
99298
|
+
[meta].[ECSchemaDef] [schemaDef]
|
|
99299
99299
|
`;
|
|
99300
99300
|
/**
|
|
99301
99301
|
* Partial Schema queries.
|
|
@@ -115730,6 +115730,26 @@ class CategorySelectorState extends _EntityState__WEBPACK_IMPORTED_MODULE_1__.El
|
|
|
115730
115730
|
}
|
|
115731
115731
|
|
|
115732
115732
|
|
|
115733
|
+
/***/ }),
|
|
115734
|
+
|
|
115735
|
+
/***/ "../../core/frontend/lib/esm/CesiumAccessClient.js":
|
|
115736
|
+
/*!*********************************************************!*\
|
|
115737
|
+
!*** ../../core/frontend/lib/esm/CesiumAccessClient.js ***!
|
|
115738
|
+
\*********************************************************/
|
|
115739
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
115740
|
+
|
|
115741
|
+
"use strict";
|
|
115742
|
+
__webpack_require__.r(__webpack_exports__);
|
|
115743
|
+
/*---------------------------------------------------------------------------------------------
|
|
115744
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
115745
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
115746
|
+
*--------------------------------------------------------------------------------------------*/
|
|
115747
|
+
/** @packageDocumentation
|
|
115748
|
+
* @module Tiles
|
|
115749
|
+
*/
|
|
115750
|
+
|
|
115751
|
+
|
|
115752
|
+
|
|
115733
115753
|
/***/ }),
|
|
115734
115754
|
|
|
115735
115755
|
/***/ "../../core/frontend/lib/esm/ChangeFlags.js":
|
|
@@ -116714,7 +116734,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
116714
116734
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
116715
116735
|
if (undefined === url)
|
|
116716
116736
|
return undefined;
|
|
116717
|
-
return this.contextRealityModelStates.find((x) => x.url
|
|
116737
|
+
return this.contextRealityModelStates.find((x) => x.url?.startsWith(url));
|
|
116718
116738
|
}
|
|
116719
116739
|
/** Set the display of the OpenStreetMap worldwide building layer in this display style by attaching or detaching the reality model displaying the buildings.
|
|
116720
116740
|
* The OSM buildings are displayed from a reality model aggregated and served from Cesium ion.<(https://cesium.com/content/cesium-osm-buildings/>
|
|
@@ -116726,7 +116746,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
116726
116746
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
116727
116747
|
if (undefined === url)
|
|
116728
116748
|
return false;
|
|
116729
|
-
let model = this.settings.contextRealityModels.models.find((x) => x.url
|
|
116749
|
+
let model = this.settings.contextRealityModels.models.find((x) => x.url?.startsWith(url));
|
|
116730
116750
|
if (options.onOff === false) {
|
|
116731
116751
|
const turnedOff = undefined !== model && this.settings.contextRealityModels.delete(model);
|
|
116732
116752
|
if (turnedOff)
|
|
@@ -125881,7 +125901,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
125881
125901
|
|
|
125882
125902
|
|
|
125883
125903
|
/** This class provides access to the reality data provider services.
|
|
125884
|
-
* It encapsulates access to a reality data
|
|
125904
|
+
* It encapsulates access to a reality data whether it be from local access, http or ProjectWise Context Share.
|
|
125885
125905
|
* The key provided at the creation determines if this is ProjectWise Context Share reference.
|
|
125886
125906
|
* If not then it is considered local (ex: C:\temp\TileRoot.json) or plain http access (http://someserver.com/data/TileRoot.json)
|
|
125887
125907
|
* There is a one to one relationship between a reality data and the instances of present class.
|
|
@@ -125972,10 +125992,28 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
125972
125992
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
125973
125993
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
125974
125994
|
if (cesiumAsset) {
|
|
125975
|
-
|
|
125976
|
-
|
|
125977
|
-
|
|
125978
|
-
|
|
125995
|
+
let resolvedToken;
|
|
125996
|
+
let resolvedUrl;
|
|
125997
|
+
if (cesiumAsset.key) {
|
|
125998
|
+
// Legacy key-bearing URL (e.g. persisted saved view) - authenticate directly with the embedded Ion key.
|
|
125999
|
+
// Such URLs are intentionally exempt from the cesiumAccess-over-cesiumIonKey precedence rule and are not
|
|
126000
|
+
// routed through a registered CesiumAccessClient; see [[CesiumAccessClient]].
|
|
126001
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
126002
|
+
resolvedToken = tokenAndUrl.token;
|
|
126003
|
+
resolvedUrl = tokenAndUrl.url;
|
|
126004
|
+
}
|
|
126005
|
+
else {
|
|
126006
|
+
// delegate to the registered CesiumAccessClient
|
|
126007
|
+
const client = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessClient)();
|
|
126008
|
+
const endpoint = await client.getAssetEndpoint(`${cesiumAsset.id}`, iTwinId);
|
|
126009
|
+
if (endpoint) {
|
|
126010
|
+
resolvedToken = endpoint.accessToken;
|
|
126011
|
+
resolvedUrl = endpoint.url;
|
|
126012
|
+
}
|
|
126013
|
+
}
|
|
126014
|
+
if (resolvedUrl && resolvedToken) {
|
|
126015
|
+
url = resolvedUrl;
|
|
126016
|
+
this._requestAuthorization = `Bearer ${resolvedToken}`;
|
|
125979
126017
|
}
|
|
125980
126018
|
}
|
|
125981
126019
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
@@ -144555,455 +144593,455 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
144555
144593
|
/* harmony export */ ACSDisplayOptions: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions),
|
|
144556
144594
|
/* harmony export */ ACSType: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSType),
|
|
144557
144595
|
/* harmony export */ AccuDraw: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDraw),
|
|
144558
|
-
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */
|
|
144596
|
+
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawChangeModeTool),
|
|
144559
144597
|
/* harmony export */ AccuDrawFlags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawFlags),
|
|
144560
144598
|
/* harmony export */ AccuDrawHintBuilder: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawHintBuilder),
|
|
144561
|
-
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */
|
|
144562
|
-
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */
|
|
144563
|
-
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */
|
|
144564
|
-
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */
|
|
144565
|
-
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */
|
|
144566
|
-
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */
|
|
144567
|
-
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */
|
|
144568
|
-
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */
|
|
144569
|
-
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */
|
|
144570
|
-
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */
|
|
144571
|
-
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */
|
|
144572
|
-
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */
|
|
144573
|
-
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */
|
|
144574
|
-
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */
|
|
144575
|
-
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */
|
|
144576
|
-
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */
|
|
144577
|
-
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */
|
|
144578
|
-
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */
|
|
144579
|
-
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */
|
|
144580
|
-
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */
|
|
144581
|
-
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */
|
|
144582
|
-
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */
|
|
144599
|
+
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutXTool),
|
|
144600
|
+
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutYTool),
|
|
144601
|
+
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutZTool),
|
|
144602
|
+
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateAxesTool),
|
|
144603
|
+
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateCycleTool),
|
|
144604
|
+
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateElementTool),
|
|
144605
|
+
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateFrontTool),
|
|
144606
|
+
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateSideTool),
|
|
144607
|
+
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateTopTool),
|
|
144608
|
+
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateViewTool),
|
|
144609
|
+
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSessionToggleTool),
|
|
144610
|
+
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockAngleTool),
|
|
144611
|
+
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockDistanceTool),
|
|
144612
|
+
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockIndexTool),
|
|
144613
|
+
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockSmartTool),
|
|
144614
|
+
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockXTool),
|
|
144615
|
+
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockYTool),
|
|
144616
|
+
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockZTool),
|
|
144617
|
+
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetOriginTool),
|
|
144618
|
+
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawShortcuts),
|
|
144619
|
+
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSuspendToggleTool),
|
|
144620
|
+
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */ _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__.AccuDrawViewportUI),
|
|
144583
144621
|
/* harmony export */ AccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.AccuSnap),
|
|
144584
144622
|
/* harmony export */ AccudrawData: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccudrawData),
|
|
144585
|
-
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */
|
|
144586
|
-
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */
|
|
144587
|
-
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */
|
|
144588
|
-
/* harmony export */ AngleDescription: () => (/* reexport safe */
|
|
144589
|
-
/* harmony export */ AnimationNodeId: () => (/* reexport safe */
|
|
144590
|
-
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */
|
|
144591
|
-
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */
|
|
144592
|
-
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */
|
|
144593
|
-
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */
|
|
144623
|
+
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageDetails),
|
|
144624
|
+
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageEndReason),
|
|
144625
|
+
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.AlternateUnitLabelsRegistry),
|
|
144626
|
+
/* harmony export */ AngleDescription: () => (/* reexport safe */ _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__.AngleDescription),
|
|
144627
|
+
/* harmony export */ AnimationNodeId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.AnimationNodeId),
|
|
144628
|
+
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGISImageryProvider),
|
|
144629
|
+
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisErrorCode),
|
|
144630
|
+
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisGeometryReaderJSON),
|
|
144631
|
+
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisUtilities),
|
|
144594
144632
|
/* harmony export */ AuxCoordSystem2dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState),
|
|
144595
144633
|
/* harmony export */ AuxCoordSystem3dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem3dState),
|
|
144596
144634
|
/* harmony export */ AuxCoordSystemSpatialState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemSpatialState),
|
|
144597
144635
|
/* harmony export */ AuxCoordSystemState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState),
|
|
144598
|
-
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */
|
|
144599
|
-
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */
|
|
144600
|
-
/* harmony export */ BeButton: () => (/* reexport safe */
|
|
144601
|
-
/* harmony export */ BeButtonEvent: () => (/* reexport safe */
|
|
144602
|
-
/* harmony export */ BeButtonState: () => (/* reexport safe */
|
|
144603
|
-
/* harmony export */ BeModifierKeys: () => (/* reexport safe */
|
|
144604
|
-
/* harmony export */ BeTouchEvent: () => (/* reexport safe */
|
|
144605
|
-
/* harmony export */ BeWheelEvent: () => (/* reexport safe */
|
|
144606
|
-
/* harmony export */ BingElevationProvider: () => (/* reexport safe */
|
|
144636
|
+
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.BackgroundMapGeometry),
|
|
144637
|
+
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */ _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__.BaseUnitFormattingSettingsProvider),
|
|
144638
|
+
/* harmony export */ BeButton: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButton),
|
|
144639
|
+
/* harmony export */ BeButtonEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonEvent),
|
|
144640
|
+
/* harmony export */ BeButtonState: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonState),
|
|
144641
|
+
/* harmony export */ BeModifierKeys: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeModifierKeys),
|
|
144642
|
+
/* harmony export */ BeTouchEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeTouchEvent),
|
|
144643
|
+
/* harmony export */ BeWheelEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeWheelEvent),
|
|
144644
|
+
/* harmony export */ BingElevationProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.BingElevationProvider),
|
|
144607
144645
|
/* harmony export */ BingLocationProvider: () => (/* reexport safe */ _BingLocation__WEBPACK_IMPORTED_MODULE_3__.BingLocationProvider),
|
|
144608
|
-
/* harmony export */ BlankConnection: () => (/* reexport safe */
|
|
144646
|
+
/* harmony export */ BlankConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.BlankConnection),
|
|
144609
144647
|
/* harmony export */ BriefcaseConnection: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseConnection),
|
|
144610
144648
|
/* harmony export */ BriefcaseEditorToolSettings: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseEditorToolSettings),
|
|
144611
144649
|
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseNotificationHandler),
|
|
144612
144650
|
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseTxns),
|
|
144613
144651
|
/* harmony export */ CatalogConnection: () => (/* reexport safe */ _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__.CatalogConnection),
|
|
144614
144652
|
/* harmony export */ CategorySelectorState: () => (/* reexport safe */ _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__.CategorySelectorState),
|
|
144615
|
-
/* harmony export */ ChangeFlag: () => (/* reexport safe */
|
|
144616
|
-
/* harmony export */ ChangeFlags: () => (/* reexport safe */
|
|
144617
|
-
/* harmony export */ CheckpointConnection: () => (/* reexport safe */
|
|
144618
|
-
/* harmony export */ ClipEventType: () => (/* reexport safe */
|
|
144619
|
-
/* harmony export */ Cluster: () => (/* reexport safe */
|
|
144653
|
+
/* harmony export */ ChangeFlag: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlag),
|
|
144654
|
+
/* harmony export */ ChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlags),
|
|
144655
|
+
/* harmony export */ CheckpointConnection: () => (/* reexport safe */ _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__.CheckpointConnection),
|
|
144656
|
+
/* harmony export */ ClipEventType: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ClipEventType),
|
|
144657
|
+
/* harmony export */ Cluster: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Cluster),
|
|
144620
144658
|
/* harmony export */ CompassMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CompassMode),
|
|
144621
144659
|
/* harmony export */ ContextMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextMode),
|
|
144622
|
-
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */
|
|
144660
|
+
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */ _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__.ContextRealityModelState),
|
|
144623
144661
|
/* harmony export */ ContextRotationId: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextRotationId),
|
|
144624
|
-
/* harmony export */ CoordSource: () => (/* reexport safe */
|
|
144625
|
-
/* harmony export */ CoordSystem: () => (/* reexport safe */
|
|
144626
|
-
/* harmony export */ CoordinateConverter: () => (/* reexport safe */
|
|
144627
|
-
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */
|
|
144628
|
-
/* harmony export */ CoreTools: () => (/* reexport safe */
|
|
144629
|
-
/* harmony export */ CurrentInputState: () => (/* reexport safe */
|
|
144662
|
+
/* harmony export */ CoordSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordSource),
|
|
144663
|
+
/* harmony export */ CoordSystem: () => (/* reexport safe */ _CoordSystem__WEBPACK_IMPORTED_MODULE_14__.CoordSystem),
|
|
144664
|
+
/* harmony export */ CoordinateConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.CoordinateConverter),
|
|
144665
|
+
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordinateLockOverrides),
|
|
144666
|
+
/* harmony export */ CoreTools: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoreTools),
|
|
144667
|
+
/* harmony export */ CurrentInputState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.CurrentInputState),
|
|
144630
144668
|
/* harmony export */ CurrentState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CurrentState),
|
|
144631
|
-
/* harmony export */ DebugShaderFile: () => (/* reexport safe */
|
|
144632
|
-
/* harmony export */ DecorateContext: () => (/* reexport safe */
|
|
144633
|
-
/* harmony export */ Decorations: () => (/* reexport safe */
|
|
144634
|
-
/* harmony export */ DecorationsCache: () => (/* reexport safe */
|
|
144635
|
-
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */
|
|
144636
|
-
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */
|
|
144637
|
-
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */
|
|
144638
|
-
/* harmony export */ DepthPointSource: () => (/* reexport safe */
|
|
144639
|
-
/* harmony export */ DevTools: () => (/* reexport safe */
|
|
144640
|
-
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */
|
|
144641
|
-
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */
|
|
144642
|
-
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */
|
|
144643
|
-
/* harmony export */ DisplayStyleState: () => (/* reexport safe */
|
|
144644
|
-
/* harmony export */ DrawingModelState: () => (/* reexport safe */
|
|
144645
|
-
/* harmony export */ DrawingViewState: () => (/* reexport safe */
|
|
144646
|
-
/* harmony export */ DynamicsContext: () => (/* reexport safe */
|
|
144647
|
-
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */
|
|
144648
|
-
/* harmony export */ EditManipulator: () => (/* reexport safe */
|
|
144649
|
-
/* harmony export */ ElementAgenda: () => (/* reexport safe */
|
|
144650
|
-
/* harmony export */ ElementLocateManager: () => (/* reexport safe */
|
|
144651
|
-
/* harmony export */ ElementPicker: () => (/* reexport safe */
|
|
144652
|
-
/* harmony export */ ElementSetTool: () => (/* reexport safe */
|
|
144653
|
-
/* harmony export */ ElementState: () => (/* reexport safe */
|
|
144654
|
-
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */
|
|
144655
|
-
/* harmony export */ EmphasizeElements: () => (/* reexport safe */
|
|
144656
|
-
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */
|
|
144657
|
-
/* harmony export */ EntityState: () => (/* reexport safe */
|
|
144658
|
-
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */
|
|
144659
|
-
/* harmony export */ EventController: () => (/* reexport safe */
|
|
144660
|
-
/* harmony export */ EventHandled: () => (/* reexport safe */
|
|
144661
|
-
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */
|
|
144662
|
-
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */
|
|
144663
|
-
/* harmony export */ FeatureSymbology: () => (/* reexport safe */
|
|
144664
|
-
/* harmony export */ FitViewTool: () => (/* reexport safe */
|
|
144669
|
+
/* harmony export */ DebugShaderFile: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.DebugShaderFile),
|
|
144670
|
+
/* harmony export */ DecorateContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DecorateContext),
|
|
144671
|
+
/* harmony export */ Decorations: () => (/* reexport safe */ _render_Decorations__WEBPACK_IMPORTED_MODULE_81__.Decorations),
|
|
144672
|
+
/* harmony export */ DecorationsCache: () => (/* reexport safe */ _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__.DecorationsCache),
|
|
144673
|
+
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.DefaultViewTouchTool),
|
|
144674
|
+
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByElementTool),
|
|
144675
|
+
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByPointsTool),
|
|
144676
|
+
/* harmony export */ DepthPointSource: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.DepthPointSource),
|
|
144677
|
+
/* harmony export */ DevTools: () => (/* reexport safe */ _DevTools__WEBPACK_IMPORTED_MODULE_16__.DevTools),
|
|
144678
|
+
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.DisclosedTileTreeSet),
|
|
144679
|
+
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle2dState),
|
|
144680
|
+
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle3dState),
|
|
144681
|
+
/* harmony export */ DisplayStyleState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyleState),
|
|
144682
|
+
/* harmony export */ DrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.DrawingModelState),
|
|
144683
|
+
/* harmony export */ DrawingViewState: () => (/* reexport safe */ _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__.DrawingViewState),
|
|
144684
|
+
/* harmony export */ DynamicsContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DynamicsContext),
|
|
144685
|
+
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ELEMENT_MARKED_FOR_REMOVAL),
|
|
144686
|
+
/* harmony export */ EditManipulator: () => (/* reexport safe */ _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__.EditManipulator),
|
|
144687
|
+
/* harmony export */ ElementAgenda: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementAgenda),
|
|
144688
|
+
/* harmony export */ ElementLocateManager: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementLocateManager),
|
|
144689
|
+
/* harmony export */ ElementPicker: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementPicker),
|
|
144690
|
+
/* harmony export */ ElementSetTool: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementSetTool),
|
|
144691
|
+
/* harmony export */ ElementState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.ElementState),
|
|
144692
|
+
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.EllipsoidTerrainProvider),
|
|
144693
|
+
/* harmony export */ EmphasizeElements: () => (/* reexport safe */ _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__.EmphasizeElements),
|
|
144694
|
+
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.EngineeringLengthDescription),
|
|
144695
|
+
/* harmony export */ EntityState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.EntityState),
|
|
144696
|
+
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */ _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__.EnvironmentDecorations),
|
|
144697
|
+
/* harmony export */ EventController: () => (/* reexport safe */ _tools_EventController__WEBPACK_IMPORTED_MODULE_107__.EventController),
|
|
144698
|
+
/* harmony export */ EventHandled: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.EventHandled),
|
|
144699
|
+
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGeometryBaseRenderer),
|
|
144700
|
+
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGraphicsRenderer),
|
|
144701
|
+
/* harmony export */ FeatureSymbology: () => (/* reexport safe */ _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__.FeatureSymbology),
|
|
144702
|
+
/* harmony export */ FitViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FitViewTool),
|
|
144665
144703
|
/* harmony export */ Flags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.Flags),
|
|
144666
|
-
/* harmony export */ FlashMode: () => (/* reexport safe */
|
|
144667
|
-
/* harmony export */ FlashSettings: () => (/* reexport safe */
|
|
144668
|
-
/* harmony export */ FlyViewTool: () => (/* reexport safe */
|
|
144669
|
-
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */
|
|
144670
|
-
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */
|
|
144671
|
-
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */
|
|
144672
|
-
/* harmony export */ Frustum2d: () => (/* reexport safe */
|
|
144673
|
-
/* harmony export */ FrustumAnimator: () => (/* reexport safe */
|
|
144674
|
-
/* harmony export */ FuzzySearch: () => (/* reexport safe */
|
|
144675
|
-
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */
|
|
144676
|
-
/* harmony export */ GeoConverter: () => (/* reexport safe */
|
|
144677
|
-
/* harmony export */ GeoServices: () => (/* reexport safe */
|
|
144678
|
-
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */
|
|
144679
|
-
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */
|
|
144680
|
-
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */
|
|
144681
|
-
/* harmony export */ GeometricModelState: () => (/* reexport safe */
|
|
144682
|
-
/* harmony export */ GlobeAnimator: () => (/* reexport safe */
|
|
144683
|
-
/* harmony export */ GltfDataType: () => (/* reexport safe */
|
|
144684
|
-
/* harmony export */ GltfReader: () => (/* reexport safe */
|
|
144685
|
-
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */
|
|
144686
|
-
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */
|
|
144687
|
-
/* harmony export */ GraphicAssembler: () => (/* reexport safe */
|
|
144688
|
-
/* harmony export */ GraphicBranch: () => (/* reexport safe */
|
|
144689
|
-
/* harmony export */ GraphicBuilder: () => (/* reexport safe */
|
|
144690
|
-
/* harmony export */ GraphicDescription: () => (/* reexport safe */
|
|
144691
|
-
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */
|
|
144692
|
-
/* harmony export */ GraphicType: () => (/* reexport safe */
|
|
144693
|
-
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */
|
|
144694
|
-
/* harmony export */ HiliteSet: () => (/* reexport safe */
|
|
144695
|
-
/* harmony export */ HitDetail: () => (/* reexport safe */
|
|
144696
|
-
/* harmony export */ HitDetailType: () => (/* reexport safe */
|
|
144697
|
-
/* harmony export */ HitGeomType: () => (/* reexport safe */
|
|
144698
|
-
/* harmony export */ HitList: () => (/* reexport safe */
|
|
144699
|
-
/* harmony export */ HitParentGeomType: () => (/* reexport safe */
|
|
144700
|
-
/* harmony export */ HitPriority: () => (/* reexport safe */
|
|
144701
|
-
/* harmony export */ HitSource: () => (/* reexport safe */
|
|
144702
|
-
/* harmony export */ IModelApp: () => (/* reexport safe */
|
|
144703
|
-
/* harmony export */ IModelConnection: () => (/* reexport safe */
|
|
144704
|
-
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */
|
|
144705
|
-
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */
|
|
144706
|
-
/* harmony export */ IModelTileTree: () => (/* reexport safe */
|
|
144707
|
-
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */
|
|
144708
|
-
/* harmony export */ IconSprites: () => (/* reexport safe */
|
|
144709
|
-
/* harmony export */ IdleTool: () => (/* reexport safe */
|
|
144710
|
-
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */
|
|
144711
|
-
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */
|
|
144712
|
-
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */
|
|
144713
|
-
/* harmony export */ ImdlReader: () => (/* reexport safe */
|
|
144714
|
-
/* harmony export */ InputCollector: () => (/* reexport safe */
|
|
144715
|
-
/* harmony export */ InputSource: () => (/* reexport safe */
|
|
144716
|
-
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */
|
|
144717
|
-
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */
|
|
144718
|
-
/* harmony export */ InteractiveTool: () => (/* reexport safe */
|
|
144719
|
-
/* harmony export */ IntersectDetail: () => (/* reexport safe */
|
|
144720
|
-
/* harmony export */ IpcApp: () => (/* reexport safe */
|
|
144704
|
+
/* harmony export */ FlashMode: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashMode),
|
|
144705
|
+
/* harmony export */ FlashSettings: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashSettings),
|
|
144706
|
+
/* harmony export */ FlyViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FlyViewTool),
|
|
144707
|
+
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.FormatsProviderManager),
|
|
144708
|
+
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.FormattedQuantityDescription),
|
|
144709
|
+
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.FrontendLoggerCategory),
|
|
144710
|
+
/* harmony export */ Frustum2d: () => (/* reexport safe */ _Frustum2d__WEBPACK_IMPORTED_MODULE_26__.Frustum2d),
|
|
144711
|
+
/* harmony export */ FrustumAnimator: () => (/* reexport safe */ _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__.FrustumAnimator),
|
|
144712
|
+
/* harmony export */ FuzzySearch: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearch),
|
|
144713
|
+
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearchResults),
|
|
144714
|
+
/* harmony export */ GeoConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoConverter),
|
|
144715
|
+
/* harmony export */ GeoServices: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoServices),
|
|
144716
|
+
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.GeographicTilingScheme),
|
|
144717
|
+
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel2dState),
|
|
144718
|
+
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel3dState),
|
|
144719
|
+
/* harmony export */ GeometricModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModelState),
|
|
144720
|
+
/* harmony export */ GlobeAnimator: () => (/* reexport safe */ _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__.GlobeAnimator),
|
|
144721
|
+
/* harmony export */ GltfDataType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfDataType),
|
|
144722
|
+
/* harmony export */ GltfReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfReader),
|
|
144723
|
+
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.Google3dTilesProvider),
|
|
144724
|
+
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GoogleMapsDecorator),
|
|
144725
|
+
/* harmony export */ GraphicAssembler: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicAssembler),
|
|
144726
|
+
/* harmony export */ GraphicBranch: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__.GraphicBranch),
|
|
144727
|
+
/* harmony export */ GraphicBuilder: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__.GraphicBuilder),
|
|
144728
|
+
/* harmony export */ GraphicDescription: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescription),
|
|
144729
|
+
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescriptionBuilder),
|
|
144730
|
+
/* harmony export */ GraphicType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicType),
|
|
144731
|
+
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */ _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__.GraphicalEditingScope),
|
|
144732
|
+
/* harmony export */ HiliteSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.HiliteSet),
|
|
144733
|
+
/* harmony export */ HitDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetail),
|
|
144734
|
+
/* harmony export */ HitDetailType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetailType),
|
|
144735
|
+
/* harmony export */ HitGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitGeomType),
|
|
144736
|
+
/* harmony export */ HitList: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitList),
|
|
144737
|
+
/* harmony export */ HitParentGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitParentGeomType),
|
|
144738
|
+
/* harmony export */ HitPriority: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitPriority),
|
|
144739
|
+
/* harmony export */ HitSource: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitSource),
|
|
144740
|
+
/* harmony export */ IModelApp: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.IModelApp),
|
|
144741
|
+
/* harmony export */ IModelConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.IModelConnection),
|
|
144742
|
+
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */ _internal_render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_100__.IModelFrameLifecycle),
|
|
144743
|
+
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */ _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__.IModelRoutingContext),
|
|
144744
|
+
/* harmony export */ IModelTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.IModelTileTree),
|
|
144745
|
+
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.ITWINJS_CORE_VERSION),
|
|
144746
|
+
/* harmony export */ IconSprites: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.IconSprites),
|
|
144747
|
+
/* harmony export */ IdleTool: () => (/* reexport safe */ _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__.IdleTool),
|
|
144748
|
+
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerFormat),
|
|
144749
|
+
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerTreeReference),
|
|
144750
|
+
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImageryMapTileTree),
|
|
144751
|
+
/* harmony export */ ImdlReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImdlReader),
|
|
144752
|
+
/* harmony export */ InputCollector: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputCollector),
|
|
144753
|
+
/* harmony export */ InputSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputSource),
|
|
144754
|
+
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicParams),
|
|
144755
|
+
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicProps),
|
|
144756
|
+
/* harmony export */ InteractiveTool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InteractiveTool),
|
|
144757
|
+
/* harmony export */ IntersectDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.IntersectDetail),
|
|
144758
|
+
/* harmony export */ IpcApp: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.IpcApp),
|
|
144721
144759
|
/* harmony export */ ItemField: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ItemField),
|
|
144722
|
-
/* harmony export */ KeyinParseError: () => (/* reexport safe */
|
|
144760
|
+
/* harmony export */ KeyinParseError: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.KeyinParseError),
|
|
144723
144761
|
/* harmony export */ KeyinStatus: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.KeyinStatus),
|
|
144724
|
-
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */
|
|
144725
|
-
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */
|
|
144726
|
-
/* harmony export */ LengthDescription: () => (/* reexport safe */
|
|
144727
|
-
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */
|
|
144728
|
-
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */
|
|
144729
|
-
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */
|
|
144730
|
-
/* harmony export */ LocateAction: () => (/* reexport safe */
|
|
144731
|
-
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */
|
|
144732
|
-
/* harmony export */ LocateOptions: () => (/* reexport safe */
|
|
144733
|
-
/* harmony export */ LocateResponse: () => (/* reexport safe */
|
|
144762
|
+
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeHandler),
|
|
144763
|
+
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeReferenceHandler),
|
|
144764
|
+
/* harmony export */ LengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.LengthDescription),
|
|
144765
|
+
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */ _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__.LocalExtensionProvider),
|
|
144766
|
+
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */ _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__.LocalUnitFormatProvider),
|
|
144767
|
+
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */ _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__.LocalhostIpcApp),
|
|
144768
|
+
/* harmony export */ LocateAction: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateAction),
|
|
144769
|
+
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateFilterStatus),
|
|
144770
|
+
/* harmony export */ LocateOptions: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateOptions),
|
|
144771
|
+
/* harmony export */ LocateResponse: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateResponse),
|
|
144734
144772
|
/* harmony export */ LockedStates: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.LockedStates),
|
|
144735
|
-
/* harmony export */ LogoDecoration: () => (/* reexport safe */
|
|
144736
|
-
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */
|
|
144737
|
-
/* harmony export */ LookViewTool: () => (/* reexport safe */
|
|
144738
|
-
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */
|
|
144739
|
-
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */
|
|
144740
|
-
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */
|
|
144741
|
-
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */
|
|
144742
|
-
/* harmony export */ MapLayerFormat: () => (/* reexport safe */
|
|
144743
|
-
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */
|
|
144744
|
-
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */
|
|
144745
|
-
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */
|
|
144746
|
-
/* harmony export */ MapLayerSource: () => (/* reexport safe */
|
|
144747
|
-
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */
|
|
144748
|
-
/* harmony export */ MapLayerSources: () => (/* reexport safe */
|
|
144749
|
-
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */
|
|
144750
|
-
/* harmony export */ MapTile: () => (/* reexport safe */
|
|
144751
|
-
/* harmony export */ MapTileProjection: () => (/* reexport safe */
|
|
144752
|
-
/* harmony export */ MapTileTree: () => (/* reexport safe */
|
|
144753
|
-
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */
|
|
144754
|
-
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */
|
|
144755
|
-
/* harmony export */ MapTilingScheme: () => (/* reexport safe */
|
|
144756
|
-
/* harmony export */ MarginPercent: () => (/* reexport safe */
|
|
144757
|
-
/* harmony export */ Marker: () => (/* reexport safe */
|
|
144758
|
-
/* harmony export */ MarkerSet: () => (/* reexport safe */
|
|
144759
|
-
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */
|
|
144760
|
-
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */
|
|
144761
|
-
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */
|
|
144762
|
-
/* harmony export */ MeasureElementTool: () => (/* reexport safe */
|
|
144763
|
-
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */
|
|
144764
|
-
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */
|
|
144765
|
-
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */
|
|
144766
|
-
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */
|
|
144767
|
-
/* harmony export */ MessageBoxType: () => (/* reexport safe */
|
|
144768
|
-
/* harmony export */ MessageBoxValue: () => (/* reexport safe */
|
|
144769
|
-
/* harmony export */ ModelSelectorState: () => (/* reexport safe */
|
|
144770
|
-
/* harmony export */ ModelState: () => (/* reexport safe */
|
|
144771
|
-
/* harmony export */ ModifyElementSource: () => (/* reexport safe */
|
|
144772
|
-
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */
|
|
144773
|
-
/* harmony export */ NativeApp: () => (/* reexport safe */
|
|
144774
|
-
/* harmony export */ NativeAppLogger: () => (/* reexport safe */
|
|
144775
|
-
/* harmony export */ NoRenderApp: () => (/* reexport safe */
|
|
144776
|
-
/* harmony export */ NotificationHandler: () => (/* reexport safe */
|
|
144777
|
-
/* harmony export */ NotificationManager: () => (/* reexport safe */
|
|
144778
|
-
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */
|
|
144779
|
-
/* harmony export */ NullRenderSystem: () => (/* reexport safe */
|
|
144780
|
-
/* harmony export */ NullTarget: () => (/* reexport safe */
|
|
144781
|
-
/* harmony export */ OffScreenViewport: () => (/* reexport safe */
|
|
144782
|
-
/* harmony export */ OnScreenTarget: () => (/* reexport safe */
|
|
144783
|
-
/* harmony export */ OrthographicViewState: () => (/* reexport safe */
|
|
144784
|
-
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */
|
|
144785
|
-
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */
|
|
144786
|
-
/* harmony export */ OutputMessageType: () => (/* reexport safe */
|
|
144787
|
-
/* harmony export */ PanViewTool: () => (/* reexport safe */
|
|
144788
|
-
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */
|
|
144789
|
-
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */
|
|
144790
|
-
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */
|
|
144791
|
-
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */
|
|
144792
|
-
/* harmony export */ PhysicalModelState: () => (/* reexport safe */
|
|
144793
|
-
/* harmony export */ Pixel: () => (/* reexport safe */
|
|
144794
|
-
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */
|
|
144795
|
-
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */
|
|
144796
|
-
/* harmony export */ PrimitiveTool: () => (/* reexport safe */
|
|
144797
|
-
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */
|
|
144798
|
-
/* harmony export */ QuadId: () => (/* reexport safe */
|
|
144799
|
-
/* harmony export */ QuantityFormatter: () => (/* reexport safe */
|
|
144800
|
-
/* harmony export */ QuantityType: () => (/* reexport safe */
|
|
144801
|
-
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */
|
|
144802
|
-
/* harmony export */ RealityDataError: () => (/* reexport safe */
|
|
144803
|
-
/* harmony export */ RealityDataSource: () => (/* reexport safe */
|
|
144804
|
-
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */
|
|
144805
|
-
/* harmony export */ RealityMeshParams: () => (/* reexport safe */
|
|
144806
|
-
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */
|
|
144807
|
-
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */
|
|
144808
|
-
/* harmony export */ RealityTile: () => (/* reexport safe */
|
|
144809
|
-
/* harmony export */ RealityTileLoader: () => (/* reexport safe */
|
|
144810
|
-
/* harmony export */ RealityTileTree: () => (/* reexport safe */
|
|
144811
|
-
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */
|
|
144812
|
-
/* harmony export */ RenderClipVolume: () => (/* reexport safe */
|
|
144813
|
-
/* harmony export */ RenderContext: () => (/* reexport safe */
|
|
144814
|
-
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */
|
|
144815
|
-
/* harmony export */ RenderGraphic: () => (/* reexport safe */
|
|
144816
|
-
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */
|
|
144817
|
-
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */
|
|
144818
|
-
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */
|
|
144819
|
-
/* harmony export */ RenderMemory: () => (/* reexport safe */
|
|
144820
|
-
/* harmony export */ RenderSystem: () => (/* reexport safe */
|
|
144821
|
-
/* harmony export */ RenderTarget: () => (/* reexport safe */
|
|
144822
|
-
/* harmony export */ RotateViewTool: () => (/* reexport safe */
|
|
144773
|
+
/* harmony export */ LogoDecoration: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LogoDecoration),
|
|
144774
|
+
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookAndMoveTool),
|
|
144775
|
+
/* harmony export */ LookViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookViewTool),
|
|
144776
|
+
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ManipulatorToolEvent),
|
|
144777
|
+
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapCartoRectangle),
|
|
144778
|
+
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapFeatureInfoRecord),
|
|
144779
|
+
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFeatureRecord),
|
|
144780
|
+
/* harmony export */ MapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormat),
|
|
144781
|
+
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormatRegistry),
|
|
144782
|
+
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProvider),
|
|
144783
|
+
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProviderStatus),
|
|
144784
|
+
/* harmony export */ MapLayerSource: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSource),
|
|
144785
|
+
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSourceStatus),
|
|
144786
|
+
/* harmony export */ MapLayerSources: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSources),
|
|
144787
|
+
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerTileTreeReference),
|
|
144788
|
+
/* harmony export */ MapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTile),
|
|
144789
|
+
/* harmony export */ MapTileProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileProjection),
|
|
144790
|
+
/* harmony export */ MapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTree),
|
|
144791
|
+
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.MapTileTreeReference),
|
|
144792
|
+
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTreeScaleRangeVisibility),
|
|
144793
|
+
/* harmony export */ MapTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTilingScheme),
|
|
144794
|
+
/* harmony export */ MarginPercent: () => (/* reexport safe */ _MarginPercent__WEBPACK_IMPORTED_MODULE_38__.MarginPercent),
|
|
144795
|
+
/* harmony export */ Marker: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Marker),
|
|
144796
|
+
/* harmony export */ MarkerSet: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.MarkerSet),
|
|
144797
|
+
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaByPointsTool),
|
|
144798
|
+
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaTool),
|
|
144799
|
+
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureDistanceTool),
|
|
144800
|
+
/* harmony export */ MeasureElementTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureElementTool),
|
|
144801
|
+
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLengthTool),
|
|
144802
|
+
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLocationTool),
|
|
144803
|
+
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureVolumeTool),
|
|
144804
|
+
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxIconType),
|
|
144805
|
+
/* harmony export */ MessageBoxType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxType),
|
|
144806
|
+
/* harmony export */ MessageBoxValue: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxValue),
|
|
144807
|
+
/* harmony export */ ModelSelectorState: () => (/* reexport safe */ _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__.ModelSelectorState),
|
|
144808
|
+
/* harmony export */ ModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.ModelState),
|
|
144809
|
+
/* harmony export */ ModifyElementSource: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ModifyElementSource),
|
|
144810
|
+
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.MutableChangeFlags),
|
|
144811
|
+
/* harmony export */ NativeApp: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.NativeApp),
|
|
144812
|
+
/* harmony export */ NativeAppLogger: () => (/* reexport safe */ _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__.NativeAppLogger),
|
|
144813
|
+
/* harmony export */ NoRenderApp: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NoRenderApp),
|
|
144814
|
+
/* harmony export */ NotificationHandler: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.NotificationHandler),
|
|
144815
|
+
/* harmony export */ NotificationManager: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotificationManager),
|
|
144816
|
+
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotifyMessageDetails),
|
|
144817
|
+
/* harmony export */ NullRenderSystem: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullRenderSystem),
|
|
144818
|
+
/* harmony export */ NullTarget: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullTarget),
|
|
144819
|
+
/* harmony export */ OffScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.OffScreenViewport),
|
|
144820
|
+
/* harmony export */ OnScreenTarget: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.OnScreenTarget),
|
|
144821
|
+
/* harmony export */ OrthographicViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.OrthographicViewState),
|
|
144822
|
+
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageAlert),
|
|
144823
|
+
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessagePriority),
|
|
144824
|
+
/* harmony export */ OutputMessageType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageType),
|
|
144825
|
+
/* harmony export */ PanViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.PanViewTool),
|
|
144826
|
+
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ParseAndRunResult),
|
|
144827
|
+
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */ _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__.ParticleCollectionBuilder),
|
|
144828
|
+
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */ _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__.PerModelCategoryVisibility),
|
|
144829
|
+
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PerformanceMetrics),
|
|
144830
|
+
/* harmony export */ PhysicalModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.PhysicalModelState),
|
|
144831
|
+
/* harmony export */ Pixel: () => (/* reexport safe */ _render_Pixel__WEBPACK_IMPORTED_MODULE_89__.Pixel),
|
|
144832
|
+
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */ _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__.PlanarClipMaskState),
|
|
144833
|
+
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.PlanarGridTransparency),
|
|
144834
|
+
/* harmony export */ PrimitiveTool: () => (/* reexport safe */ _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__.PrimitiveTool),
|
|
144835
|
+
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PrimitiveVisibility),
|
|
144836
|
+
/* harmony export */ QuadId: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.QuadId),
|
|
144837
|
+
/* harmony export */ QuantityFormatter: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityFormatter),
|
|
144838
|
+
/* harmony export */ QuantityType: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityType),
|
|
144839
|
+
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityTypeFormatsProvider),
|
|
144840
|
+
/* harmony export */ RealityDataError: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataError),
|
|
144841
|
+
/* harmony export */ RealityDataSource: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSource),
|
|
144842
|
+
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSourceProviderRegistry),
|
|
144843
|
+
/* harmony export */ RealityMeshParams: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParams),
|
|
144844
|
+
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParamsBuilder),
|
|
144845
|
+
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityModelTileUtils),
|
|
144846
|
+
/* harmony export */ RealityTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTile),
|
|
144847
|
+
/* harmony export */ RealityTileLoader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityTileLoader),
|
|
144848
|
+
/* harmony export */ RealityTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTileTree),
|
|
144849
|
+
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */ _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__.RemoteExtensionProvider),
|
|
144850
|
+
/* harmony export */ RenderClipVolume: () => (/* reexport safe */ _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__.RenderClipVolume),
|
|
144851
|
+
/* harmony export */ RenderContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.RenderContext),
|
|
144852
|
+
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RenderDiagnostics),
|
|
144853
|
+
/* harmony export */ RenderGraphic: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphic),
|
|
144854
|
+
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphicOwner),
|
|
144855
|
+
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParams),
|
|
144856
|
+
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParamsBuilder),
|
|
144857
|
+
/* harmony export */ RenderMemory: () => (/* reexport safe */ _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__.RenderMemory),
|
|
144858
|
+
/* harmony export */ RenderSystem: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.RenderSystem),
|
|
144859
|
+
/* harmony export */ RenderTarget: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__.RenderTarget),
|
|
144860
|
+
/* harmony export */ RotateViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.RotateViewTool),
|
|
144823
144861
|
/* harmony export */ RotationMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RotationMode),
|
|
144824
144862
|
/* harmony export */ RoundOff: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RoundOff),
|
|
144825
144863
|
/* harmony export */ SavedState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.SavedState),
|
|
144826
|
-
/* harmony export */ Scene: () => (/* reexport safe */
|
|
144827
|
-
/* harmony export */ SceneContext: () => (/* reexport safe */
|
|
144828
|
-
/* harmony export */ ScreenViewport: () => (/* reexport safe */
|
|
144829
|
-
/* harmony export */ ScrollViewTool: () => (/* reexport safe */
|
|
144830
|
-
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */
|
|
144831
|
-
/* harmony export */ SelectionMethod: () => (/* reexport safe */
|
|
144832
|
-
/* harmony export */ SelectionMode: () => (/* reexport safe */
|
|
144833
|
-
/* harmony export */ SelectionProcessing: () => (/* reexport safe */
|
|
144834
|
-
/* harmony export */ SelectionSet: () => (/* reexport safe */
|
|
144835
|
-
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */
|
|
144836
|
-
/* harmony export */ SelectionTool: () => (/* reexport safe */
|
|
144837
|
-
/* harmony export */ SetupCameraTool: () => (/* reexport safe */
|
|
144838
|
-
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */
|
|
144839
|
-
/* harmony export */ SheetModelState: () => (/* reexport safe */
|
|
144840
|
-
/* harmony export */ SheetViewState: () => (/* reexport safe */
|
|
144841
|
-
/* harmony export */ SnapDetail: () => (/* reexport safe */
|
|
144842
|
-
/* harmony export */ SnapHeat: () => (/* reexport safe */
|
|
144843
|
-
/* harmony export */ SnapMode: () => (/* reexport safe */
|
|
144844
|
-
/* harmony export */ SnapStatus: () => (/* reexport safe */
|
|
144845
|
-
/* harmony export */ SnapshotConnection: () => (/* reexport safe */
|
|
144846
|
-
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */
|
|
144847
|
-
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */
|
|
144848
|
-
/* harmony export */ SpatialModelState: () => (/* reexport safe */
|
|
144849
|
-
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */
|
|
144850
|
-
/* harmony export */ SpatialViewState: () => (/* reexport safe */
|
|
144851
|
-
/* harmony export */ Sprite: () => (/* reexport safe */
|
|
144852
|
-
/* harmony export */ SpriteLocation: () => (/* reexport safe */
|
|
144853
|
-
/* harmony export */ StandardView: () => (/* reexport safe */
|
|
144854
|
-
/* harmony export */ StandardViewId: () => (/* reexport safe */
|
|
144855
|
-
/* harmony export */ StandardViewTool: () => (/* reexport safe */
|
|
144856
|
-
/* harmony export */ StartOrResume: () => (/* reexport safe */
|
|
144857
|
-
/* harmony export */ Storage: () => (/* reexport safe */
|
|
144858
|
-
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */
|
|
144859
|
-
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */
|
|
144860
|
-
/* harmony export */ SuspendedToolState: () => (/* reexport safe */
|
|
144861
|
-
/* harmony export */ Target: () => (/* reexport safe */
|
|
144864
|
+
/* harmony export */ Scene: () => (/* reexport safe */ _render_Scene__WEBPACK_IMPORTED_MODULE_97__.Scene),
|
|
144865
|
+
/* harmony export */ SceneContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.SceneContext),
|
|
144866
|
+
/* harmony export */ ScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ScreenViewport),
|
|
144867
|
+
/* harmony export */ ScrollViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ScrollViewTool),
|
|
144868
|
+
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SectionDrawingModelState),
|
|
144869
|
+
/* harmony export */ SelectionMethod: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMethod),
|
|
144870
|
+
/* harmony export */ SelectionMode: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMode),
|
|
144871
|
+
/* harmony export */ SelectionProcessing: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionProcessing),
|
|
144872
|
+
/* harmony export */ SelectionSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSet),
|
|
144873
|
+
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSetEventType),
|
|
144874
|
+
/* harmony export */ SelectionTool: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionTool),
|
|
144875
|
+
/* harmony export */ SetupCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupCameraTool),
|
|
144876
|
+
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupWalkCameraTool),
|
|
144877
|
+
/* harmony export */ SheetModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SheetModelState),
|
|
144878
|
+
/* harmony export */ SheetViewState: () => (/* reexport safe */ _SheetViewState__WEBPACK_IMPORTED_MODULE_49__.SheetViewState),
|
|
144879
|
+
/* harmony export */ SnapDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapDetail),
|
|
144880
|
+
/* harmony export */ SnapHeat: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapHeat),
|
|
144881
|
+
/* harmony export */ SnapMode: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapMode),
|
|
144882
|
+
/* harmony export */ SnapStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.SnapStatus),
|
|
144883
|
+
/* harmony export */ SnapshotConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.SnapshotConnection),
|
|
144884
|
+
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */ _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__.SpatialClassifiersState),
|
|
144885
|
+
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialLocationModelState),
|
|
144886
|
+
/* harmony export */ SpatialModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialModelState),
|
|
144887
|
+
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.SpatialTileTreeReferences),
|
|
144888
|
+
/* harmony export */ SpatialViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.SpatialViewState),
|
|
144889
|
+
/* harmony export */ Sprite: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.Sprite),
|
|
144890
|
+
/* harmony export */ SpriteLocation: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.SpriteLocation),
|
|
144891
|
+
/* harmony export */ StandardView: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardView),
|
|
144892
|
+
/* harmony export */ StandardViewId: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardViewId),
|
|
144893
|
+
/* harmony export */ StandardViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.StandardViewTool),
|
|
144894
|
+
/* harmony export */ StartOrResume: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.StartOrResume),
|
|
144895
|
+
/* harmony export */ Storage: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.Storage),
|
|
144896
|
+
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */ _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__.SubCategoriesCache),
|
|
144897
|
+
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.SurveyLengthDescription),
|
|
144898
|
+
/* harmony export */ SuspendedToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.SuspendedToolState),
|
|
144899
|
+
/* harmony export */ Target: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.Target),
|
|
144862
144900
|
/* harmony export */ TentativeOrAccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TentativeOrAccuSnap),
|
|
144863
|
-
/* harmony export */ TentativePoint: () => (/* reexport safe */
|
|
144864
|
-
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */
|
|
144865
|
-
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */
|
|
144866
|
-
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */
|
|
144901
|
+
/* harmony export */ TentativePoint: () => (/* reexport safe */ _TentativePoint__WEBPACK_IMPORTED_MODULE_55__.TentativePoint),
|
|
144902
|
+
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.TerrainDisplayOverrides),
|
|
144903
|
+
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainMeshProvider),
|
|
144904
|
+
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainProviderRegistry),
|
|
144867
144905
|
/* harmony export */ ThreeAxes: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ThreeAxes),
|
|
144868
|
-
/* harmony export */ Tile: () => (/* reexport safe */
|
|
144869
|
-
/* harmony export */ TileAdmin: () => (/* reexport safe */
|
|
144870
|
-
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */
|
|
144871
|
-
/* harmony export */ TileDrawArgs: () => (/* reexport safe */
|
|
144872
|
-
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */
|
|
144873
|
-
/* harmony export */ TileGraphicType: () => (/* reexport safe */
|
|
144874
|
-
/* harmony export */ TileLoadPriority: () => (/* reexport safe */
|
|
144875
|
-
/* harmony export */ TileLoadStatus: () => (/* reexport safe */
|
|
144876
|
-
/* harmony export */ TileRequest: () => (/* reexport safe */
|
|
144877
|
-
/* harmony export */ TileRequestChannel: () => (/* reexport safe */
|
|
144878
|
-
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */
|
|
144879
|
-
/* harmony export */ TileRequestChannels: () => (/* reexport safe */
|
|
144880
|
-
/* harmony export */ TileTree: () => (/* reexport safe */
|
|
144881
|
-
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */
|
|
144882
|
-
/* harmony export */ TileTreeReference: () => (/* reexport safe */
|
|
144883
|
-
/* harmony export */ TileUsageMarker: () => (/* reexport safe */
|
|
144884
|
-
/* harmony export */ TileUser: () => (/* reexport safe */
|
|
144885
|
-
/* harmony export */ TileVisibility: () => (/* reexport safe */
|
|
144886
|
-
/* harmony export */ Tiles: () => (/* reexport safe */
|
|
144887
|
-
/* harmony export */ Tool: () => (/* reexport safe */
|
|
144888
|
-
/* harmony export */ ToolAdmin: () => (/* reexport safe */
|
|
144889
|
-
/* harmony export */ ToolAssistance: () => (/* reexport safe */
|
|
144890
|
-
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */
|
|
144891
|
-
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */
|
|
144892
|
-
/* harmony export */ ToolRegistry: () => (/* reexport safe */
|
|
144893
|
-
/* harmony export */ ToolSettings: () => (/* reexport safe */
|
|
144894
|
-
/* harmony export */ ToolSettingsState: () => (/* reexport safe */
|
|
144895
|
-
/* harmony export */ ToolState: () => (/* reexport safe */
|
|
144906
|
+
/* harmony export */ Tile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.Tile),
|
|
144907
|
+
/* harmony export */ TileAdmin: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileAdmin),
|
|
144908
|
+
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileBoundingBoxes),
|
|
144909
|
+
/* harmony export */ TileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileDrawArgs),
|
|
144910
|
+
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGeometryCollector),
|
|
144911
|
+
/* harmony export */ TileGraphicType: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGraphicType),
|
|
144912
|
+
/* harmony export */ TileLoadPriority: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadPriority),
|
|
144913
|
+
/* harmony export */ TileLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadStatus),
|
|
144914
|
+
/* harmony export */ TileRequest: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequest),
|
|
144915
|
+
/* harmony export */ TileRequestChannel: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannel),
|
|
144916
|
+
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannelStatistics),
|
|
144917
|
+
/* harmony export */ TileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannels),
|
|
144918
|
+
/* harmony export */ TileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTree),
|
|
144919
|
+
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeLoadStatus),
|
|
144920
|
+
/* harmony export */ TileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeReference),
|
|
144921
|
+
/* harmony export */ TileUsageMarker: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUsageMarker),
|
|
144922
|
+
/* harmony export */ TileUser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUser),
|
|
144923
|
+
/* harmony export */ TileVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileVisibility),
|
|
144924
|
+
/* harmony export */ Tiles: () => (/* reexport safe */ _Tiles__WEBPACK_IMPORTED_MODULE_56__.Tiles),
|
|
144925
|
+
/* harmony export */ Tool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.Tool),
|
|
144926
|
+
/* harmony export */ ToolAdmin: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolAdmin),
|
|
144927
|
+
/* harmony export */ ToolAssistance: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistance),
|
|
144928
|
+
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceImage),
|
|
144929
|
+
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceInputMethod),
|
|
144930
|
+
/* harmony export */ ToolRegistry: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ToolRegistry),
|
|
144931
|
+
/* harmony export */ ToolSettings: () => (/* reexport safe */ _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__.ToolSettings),
|
|
144932
|
+
/* harmony export */ ToolSettingsState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolSettingsState),
|
|
144933
|
+
/* harmony export */ ToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolState),
|
|
144896
144934
|
/* harmony export */ TouchCursor: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TouchCursor),
|
|
144897
|
-
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */
|
|
144898
|
-
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */
|
|
144899
|
-
/* harmony export */ UniformType: () => (/* reexport safe */
|
|
144900
|
-
/* harmony export */ VaryingType: () => (/* reexport safe */
|
|
144901
|
-
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */
|
|
144902
|
-
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */
|
|
144903
|
-
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */
|
|
144904
|
-
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */
|
|
144905
|
-
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */
|
|
144906
|
-
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */
|
|
144907
|
-
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */
|
|
144908
|
-
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */
|
|
144909
|
-
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */
|
|
144910
|
-
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */
|
|
144911
|
-
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */
|
|
144912
|
-
/* harmony export */ ViewClipTool: () => (/* reexport safe */
|
|
144913
|
-
/* harmony export */ ViewCreator2d: () => (/* reexport safe */
|
|
144914
|
-
/* harmony export */ ViewCreator3d: () => (/* reexport safe */
|
|
144915
|
-
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */
|
|
144916
|
-
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */
|
|
144917
|
-
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */
|
|
144918
|
-
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */
|
|
144919
|
-
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */
|
|
144920
|
-
/* harmony export */ ViewHandleArray: () => (/* reexport safe */
|
|
144921
|
-
/* harmony export */ ViewHandleType: () => (/* reexport safe */
|
|
144922
|
-
/* harmony export */ ViewManager: () => (/* reexport safe */
|
|
144923
|
-
/* harmony export */ ViewManip: () => (/* reexport safe */
|
|
144924
|
-
/* harmony export */ ViewPose: () => (/* reexport safe */
|
|
144925
|
-
/* harmony export */ ViewPose2d: () => (/* reexport safe */
|
|
144926
|
-
/* harmony export */ ViewPose3d: () => (/* reexport safe */
|
|
144927
|
-
/* harmony export */ ViewRect: () => (/* reexport safe */
|
|
144928
|
-
/* harmony export */ ViewRedoTool: () => (/* reexport safe */
|
|
144929
|
-
/* harmony export */ ViewState: () => (/* reexport safe */
|
|
144930
|
-
/* harmony export */ ViewState2d: () => (/* reexport safe */
|
|
144931
|
-
/* harmony export */ ViewState3d: () => (/* reexport safe */
|
|
144932
|
-
/* harmony export */ ViewStatus: () => (/* reexport safe */
|
|
144933
|
-
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */
|
|
144934
|
-
/* harmony export */ ViewTool: () => (/* reexport safe */
|
|
144935
|
-
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */
|
|
144936
|
-
/* harmony export */ ViewUndoTool: () => (/* reexport safe */
|
|
144937
|
-
/* harmony export */ ViewingSpace: () => (/* reexport safe */
|
|
144938
|
-
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */
|
|
144939
|
-
/* harmony export */ Viewport: () => (/* reexport safe */
|
|
144940
|
-
/* harmony export */ WalkViewTool: () => (/* reexport safe */
|
|
144941
|
-
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */
|
|
144942
|
-
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */
|
|
144943
|
-
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */
|
|
144944
|
-
/* harmony export */ WindowAreaTool: () => (/* reexport safe */
|
|
144945
|
-
/* harmony export */ WmsUtilities: () => (/* reexport safe */
|
|
144946
|
-
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */
|
|
144947
|
-
/* harmony export */ ZoomViewTool: () => (/* reexport safe */
|
|
144948
|
-
/* harmony export */ _callIpcChannel: () => (/* reexport safe */
|
|
144949
|
-
/* harmony export */ _implementationProhibited: () => (/* reexport safe */
|
|
144950
|
-
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */
|
|
144951
|
-
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */
|
|
144952
|
-
/* harmony export */ appendQueryParams: () => (/* reexport safe */
|
|
144953
|
-
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */
|
|
144954
|
-
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */
|
|
144955
|
-
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */
|
|
144956
|
-
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */
|
|
144957
|
-
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */
|
|
144958
|
-
/* harmony export */ collectMaskRefs: () => (/* reexport safe */
|
|
144959
|
-
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */
|
|
144960
|
-
/* harmony export */ connectViewportViews: () => (/* reexport safe */
|
|
144961
|
-
/* harmony export */ connectViewports: () => (/* reexport safe */
|
|
144962
|
-
/* harmony export */ createQuantityDescription: () => (/* reexport safe */
|
|
144963
|
-
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */
|
|
144964
|
-
/* harmony export */ createWorkerProxy: () => (/* reexport safe */
|
|
144965
|
-
/* harmony export */ deflateCoordinates: () => (/* reexport safe */
|
|
144966
|
-
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */
|
|
144967
|
-
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */
|
|
144968
|
-
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */
|
|
144969
|
-
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */
|
|
144970
|
-
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */
|
|
144971
|
-
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */
|
|
144972
|
-
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */
|
|
144973
|
-
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */
|
|
144974
|
-
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */
|
|
144935
|
+
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportFrustumSync),
|
|
144936
|
+
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportSync),
|
|
144937
|
+
/* harmony export */ UniformType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.UniformType),
|
|
144938
|
+
/* harmony export */ VaryingType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.VaryingType),
|
|
144939
|
+
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByElementTool),
|
|
144940
|
+
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByPlaneTool),
|
|
144941
|
+
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByRangeTool),
|
|
144942
|
+
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByShapeTool),
|
|
144943
|
+
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipClearTool),
|
|
144944
|
+
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipControlArrow),
|
|
144945
|
+
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecoration),
|
|
144946
|
+
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecorationProvider),
|
|
144947
|
+
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipModifyTool),
|
|
144948
|
+
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipPlanesModifyTool),
|
|
144949
|
+
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipShapeModifyTool),
|
|
144950
|
+
/* harmony export */ ViewClipTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipTool),
|
|
144951
|
+
/* harmony export */ ViewCreator2d: () => (/* reexport safe */ _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__.ViewCreator2d),
|
|
144952
|
+
/* harmony export */ ViewCreator3d: () => (/* reexport safe */ _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__.ViewCreator3d),
|
|
144953
|
+
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.ViewGlobalLocationConstants),
|
|
144954
|
+
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeBirdTool),
|
|
144955
|
+
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeIModelTool),
|
|
144956
|
+
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeLocationTool),
|
|
144957
|
+
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeSatelliteTool),
|
|
144958
|
+
/* harmony export */ ViewHandleArray: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleArray),
|
|
144959
|
+
/* harmony export */ ViewHandleType: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleType),
|
|
144960
|
+
/* harmony export */ ViewManager: () => (/* reexport safe */ _ViewManager__WEBPACK_IMPORTED_MODULE_62__.ViewManager),
|
|
144961
|
+
/* harmony export */ ViewManip: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewManip),
|
|
144962
|
+
/* harmony export */ ViewPose: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose),
|
|
144963
|
+
/* harmony export */ ViewPose2d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose2d),
|
|
144964
|
+
/* harmony export */ ViewPose3d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose3d),
|
|
144965
|
+
/* harmony export */ ViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.ViewRect),
|
|
144966
|
+
/* harmony export */ ViewRedoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewRedoTool),
|
|
144967
|
+
/* harmony export */ ViewState: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState),
|
|
144968
|
+
/* harmony export */ ViewState2d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState2d),
|
|
144969
|
+
/* harmony export */ ViewState3d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState3d),
|
|
144970
|
+
/* harmony export */ ViewStatus: () => (/* reexport safe */ _ViewStatus__WEBPACK_IMPORTED_MODULE_67__.ViewStatus),
|
|
144971
|
+
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewToggleCameraTool),
|
|
144972
|
+
/* harmony export */ ViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewTool),
|
|
144973
|
+
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ViewUndoEvent),
|
|
144974
|
+
/* harmony export */ ViewUndoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewUndoTool),
|
|
144975
|
+
/* harmony export */ ViewingSpace: () => (/* reexport safe */ _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__.ViewingSpace),
|
|
144976
|
+
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewingToolHandle),
|
|
144977
|
+
/* harmony export */ Viewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.Viewport),
|
|
144978
|
+
/* harmony export */ WalkViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WalkViewTool),
|
|
144979
|
+
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorProjection),
|
|
144980
|
+
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorTilingScheme),
|
|
144981
|
+
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.WheelEventProcessor),
|
|
144982
|
+
/* harmony export */ WindowAreaTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WindowAreaTool),
|
|
144983
|
+
/* harmony export */ WmsUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.WmsUtilities),
|
|
144984
|
+
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.WorkerGraphicDescriptionContext),
|
|
144985
|
+
/* harmony export */ ZoomViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ZoomViewTool),
|
|
144986
|
+
/* harmony export */ _callIpcChannel: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._callIpcChannel),
|
|
144987
|
+
/* harmony export */ _implementationProhibited: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._implementationProhibited),
|
|
144988
|
+
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._scheduleScriptReference),
|
|
144989
|
+
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.acquireImdlDecoder),
|
|
144990
|
+
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.appendQueryParams),
|
|
144991
|
+
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeight),
|
|
144992
|
+
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeightFromGcs),
|
|
144993
|
+
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.calculateEcefToDbTransformAtLocation),
|
|
144994
|
+
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToImageBuffer),
|
|
144995
|
+
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToResizedCanvasWithBars),
|
|
144996
|
+
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.collectMaskRefs),
|
|
144997
|
+
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportFrusta),
|
|
144998
|
+
/* harmony export */ connectViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportViews),
|
|
144999
|
+
/* harmony export */ connectViewports: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewports),
|
|
145000
|
+
/* harmony export */ createQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.createQuantityDescription),
|
|
145001
|
+
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.createSpatialTileTreeReferences),
|
|
145002
|
+
/* harmony export */ createWorkerProxy: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.createWorkerProxy),
|
|
145003
|
+
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.deflateCoordinates),
|
|
145004
|
+
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.extractImageSourceDimensions),
|
|
145005
|
+
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobe),
|
|
145006
|
+
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobeFromGcs),
|
|
145007
|
+
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.formatAnimationBranchId),
|
|
145008
|
+
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCenteredViewRect),
|
|
145009
|
+
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.getCesiumAssetUrl),
|
|
145010
|
+
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCompressedJpegFromCanvas),
|
|
145011
|
+
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.getFrustumPlaneIntersectionDepthRange),
|
|
145012
|
+
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.getGoogle3dTilesUrl),
|
|
144975
145013
|
/* harmony export */ getHeightAverage: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightAverage),
|
|
144976
145014
|
/* harmony export */ getHeightRange: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightRange),
|
|
144977
|
-
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */
|
|
144978
|
-
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */
|
|
144979
|
-
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */
|
|
144980
|
-
/* harmony export */ headersIncludeAuthMethod: () => (/* reexport safe */
|
|
144981
|
-
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */
|
|
144982
|
-
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */
|
|
144983
|
-
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */
|
|
144984
|
-
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */
|
|
144985
|
-
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */
|
|
144986
|
-
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */
|
|
144987
|
-
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */
|
|
144988
|
-
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */
|
|
144989
|
-
/* harmony export */ isTextInputFormatPropEditorSpec: () => (/* reexport safe */
|
|
144990
|
-
/* harmony export */ isTextSelectFormatPropEditorSpec: () => (/* reexport safe */
|
|
144991
|
-
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */
|
|
144992
|
-
/* harmony export */ metersToRange: () => (/* reexport safe */
|
|
144993
|
-
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */
|
|
144994
|
-
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */
|
|
144995
|
-
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */
|
|
144996
|
-
/* harmony export */ readElementGraphics: () => (/* reexport safe */
|
|
144997
|
-
/* harmony export */ readGltf: () => (/* reexport safe */
|
|
144998
|
-
/* harmony export */ readGltfGraphics: () => (/* reexport safe */
|
|
144999
|
-
/* harmony export */ readGltfTemplate: () => (/* reexport safe */
|
|
145000
|
-
/* harmony export */ registerWorker: () => (/* reexport safe */
|
|
145001
|
-
/* harmony export */ setBasicAuthorization: () => (/* reexport safe */
|
|
145002
|
-
/* harmony export */ setRequestTimeout: () => (/* reexport safe */
|
|
145003
|
-
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */
|
|
145004
|
-
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */
|
|
145005
|
-
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */
|
|
145006
|
-
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */
|
|
145015
|
+
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceFormatForMimeType),
|
|
145016
|
+
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceMimeType),
|
|
145017
|
+
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.getQuantityTypeKey),
|
|
145018
|
+
/* harmony export */ headersIncludeAuthMethod: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.headersIncludeAuthMethod),
|
|
145019
|
+
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBitmapFromImageSource),
|
|
145020
|
+
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToBase64EncodedPng),
|
|
145021
|
+
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToCanvas),
|
|
145022
|
+
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToPngDataUrl),
|
|
145023
|
+
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromImageSource),
|
|
145024
|
+
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromUrl),
|
|
145025
|
+
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isCheckboxFormatPropEditorSpec),
|
|
145026
|
+
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.isCustomQuantityTypeDefinition),
|
|
145027
|
+
/* harmony export */ isTextInputFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextInputFormatPropEditorSpec),
|
|
145028
|
+
/* harmony export */ isTextSelectFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextSelectFormatPropEditorSpec),
|
|
145029
|
+
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */ _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__.linePlaneIntersect),
|
|
145030
|
+
/* harmony export */ metersToRange: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.metersToRange),
|
|
145031
|
+
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.openImageDataUrlInNewWindow),
|
|
145032
|
+
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.queryTerrainElevationOffset),
|
|
145033
|
+
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.rangeToCartographicArea),
|
|
145034
|
+
/* harmony export */ readElementGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readElementGraphics),
|
|
145035
|
+
/* harmony export */ readGltf: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltf),
|
|
145036
|
+
/* harmony export */ readGltfGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfGraphics),
|
|
145037
|
+
/* harmony export */ readGltfTemplate: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfTemplate),
|
|
145038
|
+
/* harmony export */ registerWorker: () => (/* reexport safe */ _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__.registerWorker),
|
|
145039
|
+
/* harmony export */ setBasicAuthorization: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setBasicAuthorization),
|
|
145040
|
+
/* harmony export */ setRequestTimeout: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setRequestTimeout),
|
|
145041
|
+
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportFrusta),
|
|
145042
|
+
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportViews),
|
|
145043
|
+
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.tryImageElementFromUrl),
|
|
145044
|
+
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.viewGlobalLocation)
|
|
145007
145045
|
/* harmony export */ });
|
|
145008
145046
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
145009
145047
|
/* harmony import */ var _AccuSnap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AccuSnap */ "../../core/frontend/lib/esm/AccuSnap.js");
|
|
@@ -145014,122 +145052,123 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
145014
145052
|
/* harmony import */ var _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BriefcaseTxns */ "../../core/frontend/lib/esm/BriefcaseTxns.js");
|
|
145015
145053
|
/* harmony import */ var _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CatalogConnection */ "../../core/frontend/lib/esm/CatalogConnection.js");
|
|
145016
145054
|
/* harmony import */ var _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CategorySelectorState */ "../../core/frontend/lib/esm/CategorySelectorState.js");
|
|
145017
|
-
/* harmony import */ var
|
|
145018
|
-
/* harmony import */ var
|
|
145019
|
-
/* harmony import */ var
|
|
145020
|
-
/* harmony import */ var
|
|
145021
|
-
/* harmony import */ var
|
|
145022
|
-
/* harmony import */ var
|
|
145023
|
-
/* harmony import */ var
|
|
145024
|
-
/* harmony import */ var
|
|
145025
|
-
/* harmony import */ var
|
|
145026
|
-
/* harmony import */ var
|
|
145027
|
-
/* harmony import */ var
|
|
145028
|
-
/* harmony import */ var
|
|
145029
|
-
/* harmony import */ var
|
|
145030
|
-
/* harmony import */ var
|
|
145031
|
-
/* harmony import */ var
|
|
145032
|
-
/* harmony import */ var
|
|
145033
|
-
/* harmony import */ var
|
|
145034
|
-
/* harmony import */ var
|
|
145035
|
-
/* harmony import */ var
|
|
145036
|
-
/* harmony import */ var
|
|
145037
|
-
/* harmony import */ var
|
|
145038
|
-
/* harmony import */ var
|
|
145039
|
-
/* harmony import */ var
|
|
145040
|
-
/* harmony import */ var
|
|
145041
|
-
/* harmony import */ var
|
|
145042
|
-
/* harmony import */ var
|
|
145043
|
-
/* harmony import */ var
|
|
145044
|
-
/* harmony import */ var
|
|
145045
|
-
/* harmony import */ var
|
|
145046
|
-
/* harmony import */ var
|
|
145047
|
-
/* harmony import */ var
|
|
145048
|
-
/* harmony import */ var
|
|
145049
|
-
/* harmony import */ var
|
|
145050
|
-
/* harmony import */ var
|
|
145051
|
-
/* harmony import */ var
|
|
145052
|
-
/* harmony import */ var
|
|
145053
|
-
/* harmony import */ var
|
|
145054
|
-
/* harmony import */ var
|
|
145055
|
-
/* harmony import */ var
|
|
145056
|
-
/* harmony import */ var
|
|
145057
|
-
/* harmony import */ var
|
|
145058
|
-
/* harmony import */ var
|
|
145059
|
-
/* harmony import */ var
|
|
145060
|
-
/* harmony import */ var
|
|
145061
|
-
/* harmony import */ var
|
|
145062
|
-
/* harmony import */ var
|
|
145063
|
-
/* harmony import */ var
|
|
145064
|
-
/* harmony import */ var
|
|
145065
|
-
/* harmony import */ var
|
|
145066
|
-
/* harmony import */ var
|
|
145067
|
-
/* harmony import */ var
|
|
145068
|
-
/* harmony import */ var
|
|
145069
|
-
/* harmony import */ var
|
|
145070
|
-
/* harmony import */ var
|
|
145071
|
-
/* harmony import */ var
|
|
145072
|
-
/* harmony import */ var
|
|
145073
|
-
/* harmony import */ var
|
|
145074
|
-
/* harmony import */ var
|
|
145075
|
-
/* harmony import */ var
|
|
145076
|
-
/* harmony import */ var
|
|
145077
|
-
/* harmony import */ var
|
|
145078
|
-
/* harmony import */ var
|
|
145079
|
-
/* harmony import */ var
|
|
145080
|
-
/* harmony import */ var
|
|
145081
|
-
/* harmony import */ var
|
|
145082
|
-
/* harmony import */ var
|
|
145083
|
-
/* harmony import */ var
|
|
145084
|
-
/* harmony import */ var
|
|
145085
|
-
/* harmony import */ var
|
|
145086
|
-
/* harmony import */ var
|
|
145087
|
-
/* harmony import */ var
|
|
145088
|
-
/* harmony import */ var
|
|
145089
|
-
/* harmony import */ var
|
|
145090
|
-
/* harmony import */ var
|
|
145091
|
-
/* harmony import */ var
|
|
145092
|
-
/* harmony import */ var
|
|
145093
|
-
/* harmony import */ var
|
|
145094
|
-
/* harmony import */ var
|
|
145095
|
-
/* harmony import */ var
|
|
145096
|
-
/* harmony import */ var
|
|
145097
|
-
/* harmony import */ var
|
|
145098
|
-
/* harmony import */ var
|
|
145099
|
-
/* harmony import */ var
|
|
145100
|
-
/* harmony import */ var
|
|
145101
|
-
/* harmony import */ var
|
|
145102
|
-
/* harmony import */ var
|
|
145103
|
-
/* harmony import */ var
|
|
145104
|
-
/* harmony import */ var
|
|
145105
|
-
/* harmony import */ var
|
|
145106
|
-
/* harmony import */ var
|
|
145107
|
-
/* harmony import */ var
|
|
145108
|
-
/* harmony import */ var
|
|
145109
|
-
/* harmony import */ var
|
|
145110
|
-
/* harmony import */ var
|
|
145111
|
-
/* harmony import */ var
|
|
145112
|
-
/* harmony import */ var
|
|
145113
|
-
/* harmony import */ var
|
|
145114
|
-
/* harmony import */ var
|
|
145115
|
-
/* harmony import */ var
|
|
145116
|
-
/* harmony import */ var
|
|
145117
|
-
/* harmony import */ var
|
|
145118
|
-
/* harmony import */ var
|
|
145119
|
-
/* harmony import */ var
|
|
145120
|
-
/* harmony import */ var
|
|
145121
|
-
/* harmony import */ var
|
|
145122
|
-
/* harmony import */ var
|
|
145123
|
-
/* harmony import */ var
|
|
145124
|
-
/* harmony import */ var
|
|
145125
|
-
/* harmony import */ var
|
|
145126
|
-
/* harmony import */ var
|
|
145127
|
-
/* harmony import */ var
|
|
145128
|
-
/* harmony import */ var
|
|
145129
|
-
/* harmony import */ var
|
|
145130
|
-
/* harmony import */ var
|
|
145131
|
-
/* harmony import */ var
|
|
145132
|
-
/* harmony import */ var
|
|
145055
|
+
/* harmony import */ var _CesiumAccessClient__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CesiumAccessClient */ "../../core/frontend/lib/esm/CesiumAccessClient.js");
|
|
145056
|
+
/* harmony import */ var _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ChangeFlags */ "../../core/frontend/lib/esm/ChangeFlags.js");
|
|
145057
|
+
/* harmony import */ var _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CheckpointConnection */ "../../core/frontend/lib/esm/CheckpointConnection.js");
|
|
145058
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./common */ "../../core/frontend/lib/esm/common.js");
|
|
145059
|
+
/* harmony import */ var _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ContextRealityModelState */ "../../core/frontend/lib/esm/ContextRealityModelState.js");
|
|
145060
|
+
/* harmony import */ var _CoordSystem__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./CoordSystem */ "../../core/frontend/lib/esm/CoordSystem.js");
|
|
145061
|
+
/* harmony import */ var _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./DecorationsCache */ "../../core/frontend/lib/esm/DecorationsCache.js");
|
|
145062
|
+
/* harmony import */ var _DevTools__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./DevTools */ "../../core/frontend/lib/esm/DevTools.js");
|
|
145063
|
+
/* harmony import */ var _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DisplayStyleState */ "../../core/frontend/lib/esm/DisplayStyleState.js");
|
|
145064
|
+
/* harmony import */ var _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./DrawingViewState */ "../../core/frontend/lib/esm/DrawingViewState.js");
|
|
145065
|
+
/* harmony import */ var _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ElementLocateManager */ "../../core/frontend/lib/esm/ElementLocateManager.js");
|
|
145066
|
+
/* harmony import */ var _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./EmphasizeElements */ "../../core/frontend/lib/esm/EmphasizeElements.js");
|
|
145067
|
+
/* harmony import */ var _EntityState__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./EntityState */ "../../core/frontend/lib/esm/EntityState.js");
|
|
145068
|
+
/* harmony import */ var _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./EnvironmentDecorations */ "../../core/frontend/lib/esm/EnvironmentDecorations.js");
|
|
145069
|
+
/* harmony import */ var _FeatureOverrideProvider__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./FeatureOverrideProvider */ "../../core/frontend/lib/esm/FeatureOverrideProvider.js");
|
|
145070
|
+
/* harmony import */ var _FlashSettings__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./FlashSettings */ "../../core/frontend/lib/esm/FlashSettings.js");
|
|
145071
|
+
/* harmony import */ var _FrontendHubAccess__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./FrontendHubAccess */ "../../core/frontend/lib/esm/FrontendHubAccess.js");
|
|
145072
|
+
/* harmony import */ var _Frustum2d__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./Frustum2d */ "../../core/frontend/lib/esm/Frustum2d.js");
|
|
145073
|
+
/* harmony import */ var _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./FrustumAnimator */ "../../core/frontend/lib/esm/FrustumAnimator.js");
|
|
145074
|
+
/* harmony import */ var _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FuzzySearch */ "../../core/frontend/lib/esm/FuzzySearch.js");
|
|
145075
|
+
/* harmony import */ var _GeoServices__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./GeoServices */ "../../core/frontend/lib/esm/GeoServices.js");
|
|
145076
|
+
/* harmony import */ var _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./GlobeAnimator */ "../../core/frontend/lib/esm/GlobeAnimator.js");
|
|
145077
|
+
/* harmony import */ var _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GraphicalEditingScope */ "../../core/frontend/lib/esm/GraphicalEditingScope.js");
|
|
145078
|
+
/* harmony import */ var _HitDetail__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./HitDetail */ "../../core/frontend/lib/esm/HitDetail.js");
|
|
145079
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
145080
|
+
/* harmony import */ var _IModelConnection__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./IModelConnection */ "../../core/frontend/lib/esm/IModelConnection.js");
|
|
145081
|
+
/* harmony import */ var _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./IModelRoutingContext */ "../../core/frontend/lib/esm/IModelRoutingContext.js");
|
|
145082
|
+
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
145083
|
+
/* harmony import */ var _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./LinePlaneIntersect */ "../../core/frontend/lib/esm/LinePlaneIntersect.js");
|
|
145084
|
+
/* harmony import */ var _MarginPercent__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./MarginPercent */ "../../core/frontend/lib/esm/MarginPercent.js");
|
|
145085
|
+
/* harmony import */ var _Marker__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Marker */ "../../core/frontend/lib/esm/Marker.js");
|
|
145086
|
+
/* harmony import */ var _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ModelSelectorState */ "../../core/frontend/lib/esm/ModelSelectorState.js");
|
|
145087
|
+
/* harmony import */ var _ModelState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ModelState */ "../../core/frontend/lib/esm/ModelState.js");
|
|
145088
|
+
/* harmony import */ var _NativeApp__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./NativeApp */ "../../core/frontend/lib/esm/NativeApp.js");
|
|
145089
|
+
/* harmony import */ var _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./NativeAppLogger */ "../../core/frontend/lib/esm/NativeAppLogger.js");
|
|
145090
|
+
/* harmony import */ var _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./NoRenderApp */ "../../core/frontend/lib/esm/NoRenderApp.js");
|
|
145091
|
+
/* harmony import */ var _NotificationManager__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./NotificationManager */ "../../core/frontend/lib/esm/NotificationManager.js");
|
|
145092
|
+
/* harmony import */ var _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./PerModelCategoryVisibility */ "../../core/frontend/lib/esm/PerModelCategoryVisibility.js");
|
|
145093
|
+
/* harmony import */ var _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./PlanarClipMaskState */ "../../core/frontend/lib/esm/PlanarClipMaskState.js");
|
|
145094
|
+
/* harmony import */ var _SelectionSet__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SelectionSet */ "../../core/frontend/lib/esm/SelectionSet.js");
|
|
145095
|
+
/* harmony import */ var _SheetViewState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SheetViewState */ "../../core/frontend/lib/esm/SheetViewState.js");
|
|
145096
|
+
/* harmony import */ var _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SpatialClassifiersState */ "../../core/frontend/lib/esm/SpatialClassifiersState.js");
|
|
145097
|
+
/* harmony import */ var _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SpatialViewState */ "../../core/frontend/lib/esm/SpatialViewState.js");
|
|
145098
|
+
/* harmony import */ var _Sprites__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Sprites */ "../../core/frontend/lib/esm/Sprites.js");
|
|
145099
|
+
/* harmony import */ var _StandardView__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./StandardView */ "../../core/frontend/lib/esm/StandardView.js");
|
|
145100
|
+
/* harmony import */ var _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SubCategoriesCache */ "../../core/frontend/lib/esm/SubCategoriesCache.js");
|
|
145101
|
+
/* harmony import */ var _TentativePoint__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./TentativePoint */ "../../core/frontend/lib/esm/TentativePoint.js");
|
|
145102
|
+
/* harmony import */ var _Tiles__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Tiles */ "../../core/frontend/lib/esm/Tiles.js");
|
|
145103
|
+
/* harmony import */ var _UserPreferences__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./UserPreferences */ "../../core/frontend/lib/esm/UserPreferences.js");
|
|
145104
|
+
/* harmony import */ var _ViewAnimation__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ViewAnimation */ "../../core/frontend/lib/esm/ViewAnimation.js");
|
|
145105
|
+
/* harmony import */ var _ViewContext__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./ViewContext */ "../../core/frontend/lib/esm/ViewContext.js");
|
|
145106
|
+
/* harmony import */ var _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ViewGlobalLocation */ "../../core/frontend/lib/esm/ViewGlobalLocation.js");
|
|
145107
|
+
/* harmony import */ var _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ViewingSpace */ "../../core/frontend/lib/esm/ViewingSpace.js");
|
|
145108
|
+
/* harmony import */ var _ViewManager__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ViewManager */ "../../core/frontend/lib/esm/ViewManager.js");
|
|
145109
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
145110
|
+
/* harmony import */ var _ViewportSync__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ViewportSync */ "../../core/frontend/lib/esm/ViewportSync.js");
|
|
145111
|
+
/* harmony import */ var _ViewPose__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ViewPose */ "../../core/frontend/lib/esm/ViewPose.js");
|
|
145112
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
145113
|
+
/* harmony import */ var _ViewStatus__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ViewStatus */ "../../core/frontend/lib/esm/ViewStatus.js");
|
|
145114
|
+
/* harmony import */ var _extension_Extension__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./extension/Extension */ "../../core/frontend/lib/esm/extension/Extension.js");
|
|
145115
|
+
/* harmony import */ var _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./extension/providers/LocalExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/LocalExtensionProvider.js");
|
|
145116
|
+
/* harmony import */ var _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./extension/providers/RemoteExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/RemoteExtensionProvider.js");
|
|
145117
|
+
/* harmony import */ var _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./properties/AngleDescription */ "../../core/frontend/lib/esm/properties/AngleDescription.js");
|
|
145118
|
+
/* harmony import */ var _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./properties/FormattedQuantityDescription */ "../../core/frontend/lib/esm/properties/FormattedQuantityDescription.js");
|
|
145119
|
+
/* harmony import */ var _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./properties/LengthDescription */ "../../core/frontend/lib/esm/properties/LengthDescription.js");
|
|
145120
|
+
/* harmony import */ var _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./quantity-formatting/QuantityFormatter */ "../../core/frontend/lib/esm/quantity-formatting/QuantityFormatter.js");
|
|
145121
|
+
/* harmony import */ var _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./quantity-formatting/BaseUnitFormattingSettingsProvider */ "../../core/frontend/lib/esm/quantity-formatting/BaseUnitFormattingSettingsProvider.js");
|
|
145122
|
+
/* harmony import */ var _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./quantity-formatting/LocalUnitFormatProvider */ "../../core/frontend/lib/esm/quantity-formatting/LocalUnitFormatProvider.js");
|
|
145123
|
+
/* harmony import */ var _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./quantity-formatting/QuantityTypesEditorSpecs */ "../../core/frontend/lib/esm/quantity-formatting/QuantityTypesEditorSpecs.js");
|
|
145124
|
+
/* harmony import */ var _render_CanvasDecoration__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./render/CanvasDecoration */ "../../core/frontend/lib/esm/render/CanvasDecoration.js");
|
|
145125
|
+
/* harmony import */ var _render_CreateRenderMaterialArgs__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./render/CreateRenderMaterialArgs */ "../../core/frontend/lib/esm/render/CreateRenderMaterialArgs.js");
|
|
145126
|
+
/* harmony import */ var _render_CreateTextureArgs__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./render/CreateTextureArgs */ "../../core/frontend/lib/esm/render/CreateTextureArgs.js");
|
|
145127
|
+
/* harmony import */ var _render_Decorations__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./render/Decorations */ "../../core/frontend/lib/esm/render/Decorations.js");
|
|
145128
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
145129
|
+
/* harmony import */ var _render_FrameStats__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./render/FrameStats */ "../../core/frontend/lib/esm/render/FrameStats.js");
|
|
145130
|
+
/* harmony import */ var _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./render/GraphicBranch */ "../../core/frontend/lib/esm/render/GraphicBranch.js");
|
|
145131
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
145132
|
+
/* harmony import */ var _render_GraphicTemplate__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./render/GraphicTemplate */ "../../core/frontend/lib/esm/render/GraphicTemplate.js");
|
|
145133
|
+
/* harmony import */ var _render_MeshArgs__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./render/MeshArgs */ "../../core/frontend/lib/esm/render/MeshArgs.js");
|
|
145134
|
+
/* harmony import */ var _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./render/ParticleCollectionBuilder */ "../../core/frontend/lib/esm/render/ParticleCollectionBuilder.js");
|
|
145135
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
145136
|
+
/* harmony import */ var _render_PolylineArgs__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./render/PolylineArgs */ "../../core/frontend/lib/esm/render/PolylineArgs.js");
|
|
145137
|
+
/* harmony import */ var _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./render/RealityMeshParams */ "../../core/frontend/lib/esm/render/RealityMeshParams.js");
|
|
145138
|
+
/* harmony import */ var _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./render/RenderClipVolume */ "../../core/frontend/lib/esm/render/RenderClipVolume.js");
|
|
145139
|
+
/* harmony import */ var _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./render/RenderGraphic */ "../../core/frontend/lib/esm/render/RenderGraphic.js");
|
|
145140
|
+
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
145141
|
+
/* harmony import */ var _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./render/RenderSystem */ "../../core/frontend/lib/esm/render/RenderSystem.js");
|
|
145142
|
+
/* harmony import */ var _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./render/RenderTarget */ "../../core/frontend/lib/esm/render/RenderTarget.js");
|
|
145143
|
+
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
145144
|
+
/* harmony import */ var _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./render/ScreenSpaceEffectBuilder */ "../../core/frontend/lib/esm/render/ScreenSpaceEffectBuilder.js");
|
|
145145
|
+
/* harmony import */ var _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./render/VisibleFeature */ "../../core/frontend/lib/esm/render/VisibleFeature.js");
|
|
145146
|
+
/* harmony import */ var _internal_render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./internal/render/webgl/IModelFrameLifecycle */ "../../core/frontend/lib/esm/internal/render/webgl/IModelFrameLifecycle.js");
|
|
145147
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
145148
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
145149
|
+
/* harmony import */ var _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./tools/AccuDrawViewportUI */ "../../core/frontend/lib/esm/tools/AccuDrawViewportUI.js");
|
|
145150
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
145151
|
+
/* harmony import */ var _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./tools/EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
145152
|
+
/* harmony import */ var _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./tools/ElementSetTool */ "../../core/frontend/lib/esm/tools/ElementSetTool.js");
|
|
145153
|
+
/* harmony import */ var _tools_EventController__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./tools/EventController */ "../../core/frontend/lib/esm/tools/EventController.js");
|
|
145154
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
145155
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
145156
|
+
/* harmony import */ var _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./tools/PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
145157
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
145158
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
145159
|
+
/* harmony import */ var _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./tools/ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
145160
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
145161
|
+
/* harmony import */ var _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./tools/ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
145162
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
145163
|
+
/* harmony import */ var _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./workers/RegisterWorker */ "../../core/frontend/lib/esm/workers/RegisterWorker.js");
|
|
145164
|
+
/* harmony import */ var _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./BackgroundMapGeometry */ "../../core/frontend/lib/esm/BackgroundMapGeometry.js");
|
|
145165
|
+
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
145166
|
+
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
145167
|
+
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
145168
|
+
/* harmony import */ var _request_utils__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./request/utils */ "../../core/frontend/lib/esm/request/utils.js");
|
|
145169
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
145170
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/frontend/lib/esm/internal/cross-package.js");
|
|
145171
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
145133
145172
|
/*---------------------------------------------------------------------------------------------
|
|
145134
145173
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
145135
145174
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -145256,6 +145295,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
145256
145295
|
|
|
145257
145296
|
|
|
145258
145297
|
|
|
145298
|
+
|
|
145259
145299
|
|
|
145260
145300
|
|
|
145261
145301
|
// TODO/FIX: "./extension/ExtensionRuntime" import has to be last to avoid circular dependency errors.
|
|
@@ -198598,8 +198638,16 @@ class TileAdmin {
|
|
|
198598
198638
|
contextPreloadParentDepth;
|
|
198599
198639
|
/** @internal */
|
|
198600
198640
|
contextPreloadParentSkip;
|
|
198601
|
-
/**
|
|
198641
|
+
/** The Cesium Ion API key supplied via [[TileAdmin.Props.cesiumIonKey]], used by the built-in client to
|
|
198642
|
+
* authenticate directly with Cesium Ion. See [[canAccessCesium]] to test whether any Cesium access is configured.
|
|
198643
|
+
* @beta
|
|
198644
|
+
*/
|
|
198602
198645
|
cesiumIonKey;
|
|
198646
|
+
/** The custom [[CesiumAccessClient]] registered via [[TileAdmin.Props.cesiumAccess]], used to resolve Cesium
|
|
198647
|
+
* asset endpoints. When defined, it takes precedence over [[cesiumIonKey]].
|
|
198648
|
+
* @beta
|
|
198649
|
+
*/
|
|
198650
|
+
cesiumAccess;
|
|
198603
198651
|
_removeIModelConnectionOnCloseListener;
|
|
198604
198652
|
_totalElided = 0;
|
|
198605
198653
|
_rpcInitialized = false;
|
|
@@ -198639,6 +198687,13 @@ class TileAdmin {
|
|
|
198639
198687
|
numPendingTileTreePropsRequests: this._tileTreePropsRequests.length - numActiveTileTreePropsRequests,
|
|
198640
198688
|
};
|
|
198641
198689
|
}
|
|
198690
|
+
/** Returns `true` if any Cesium access is configured — that is, if a custom [[CesiumAccessClient]] has been
|
|
198691
|
+
* registered via [[TileAdmin.Props.cesiumAccess]], or if [[cesiumIonKey]] is set.
|
|
198692
|
+
* @beta
|
|
198693
|
+
*/
|
|
198694
|
+
get canAccessCesium() {
|
|
198695
|
+
return this.cesiumAccess !== undefined || this.cesiumIonKey !== undefined;
|
|
198696
|
+
}
|
|
198642
198697
|
/** Resets the cumulative (per-session) statistics like totalCompletedRequests, totalEmptyTiles, etc. */
|
|
198643
198698
|
resetStatistics() {
|
|
198644
198699
|
this.channels.resetStatistics();
|
|
@@ -198677,6 +198732,7 @@ class TileAdmin {
|
|
|
198677
198732
|
this.useLargerTiles = options.useLargerTiles ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.defaultTileOptions.useLargerTiles;
|
|
198678
198733
|
this.mobileRealityTileMinToleranceRatio = Math.max(options.mobileRealityTileMinToleranceRatio ?? 3.0, 1.0);
|
|
198679
198734
|
this.cesiumIonKey = options.cesiumIonKey;
|
|
198735
|
+
this.cesiumAccess = options.cesiumAccess;
|
|
198680
198736
|
this._cloudStorage = options.tileStorage;
|
|
198681
198737
|
const gpuMemoryLimits = options.gpuMemoryLimits;
|
|
198682
198738
|
let gpuMemoryLimit;
|
|
@@ -201454,6 +201510,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
201454
201510
|
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_tile_map_UrlUtils__WEBPACK_IMPORTED_MODULE_48__.appendQueryParams),
|
|
201455
201511
|
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.collectMaskRefs),
|
|
201456
201512
|
/* harmony export */ compareMapLayer: () => (/* reexport safe */ _internal_render_webgl_MapLayerParams__WEBPACK_IMPORTED_MODULE_94__.compareMapLayer),
|
|
201513
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.computeCesiumTokenTimeoutInterval),
|
|
201457
201514
|
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */ _internal_tile_ClassifierTileTree__WEBPACK_IMPORTED_MODULE_83__.createClassifierTileTreeReference),
|
|
201458
201515
|
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */ _internal_tile_ViewFlagOverrides__WEBPACK_IMPORTED_MODULE_0__.createDefaultViewFlagOverrides),
|
|
201459
201516
|
/* harmony export */ createGraphicFromDescription: () => (/* reexport safe */ _internal_tile_ImdlGraphicsCreator__WEBPACK_IMPORTED_MODULE_37__.createGraphicFromDescription),
|
|
@@ -201470,6 +201527,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
201470
201527
|
/* harmony export */ decodeMeshoptBuffer: () => (/* reexport safe */ _internal_tile_MeshoptCompression__WEBPACK_IMPORTED_MODULE_93__.decodeMeshoptBuffer),
|
|
201471
201528
|
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_tile_map_ImageryProviders_CoordinatesUtils__WEBPACK_IMPORTED_MODULE_47__.deflateCoordinates),
|
|
201472
201529
|
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.disposeTileTreesForGeometricModels),
|
|
201530
|
+
/* harmony export */ getCesiumAccessClient: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessClient),
|
|
201473
201531
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessTokenAndEndpointUrl),
|
|
201474
201532
|
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAssetUrl),
|
|
201475
201533
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumOSMBuildingsUrl),
|
|
@@ -201862,6 +201920,8 @@ class BingElevationProvider {
|
|
|
201862
201920
|
"use strict";
|
|
201863
201921
|
__webpack_require__.r(__webpack_exports__);
|
|
201864
201922
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
201923
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* binding */ computeCesiumTokenTimeoutInterval),
|
|
201924
|
+
/* harmony export */ getCesiumAccessClient: () => (/* binding */ getCesiumAccessClient),
|
|
201865
201925
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* binding */ getCesiumAccessTokenAndEndpointUrl),
|
|
201866
201926
|
/* harmony export */ getCesiumAssetUrl: () => (/* binding */ getCesiumAssetUrl),
|
|
201867
201927
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* binding */ getCesiumOSMBuildingsUrl),
|
|
@@ -201899,7 +201959,7 @@ var QuantizedMeshExtensionIds;
|
|
|
201899
201959
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["WaterMask"] = 2] = "WaterMask";
|
|
201900
201960
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["Metadata"] = 4] = "Metadata";
|
|
201901
201961
|
})(QuantizedMeshExtensionIds || (QuantizedMeshExtensionIds = {}));
|
|
201902
|
-
/** Return the URL for a Cesium
|
|
201962
|
+
/** Return the URL for a Cesium Ion asset from its asset ID and request Key.
|
|
201903
201963
|
* @public
|
|
201904
201964
|
*/
|
|
201905
201965
|
function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
@@ -201907,10 +201967,30 @@ function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
|
201907
201967
|
}
|
|
201908
201968
|
/** @internal */
|
|
201909
201969
|
function getCesiumOSMBuildingsUrl() {
|
|
201910
|
-
|
|
201911
|
-
if (undefined === key)
|
|
201970
|
+
if (!_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.canAccessCesium)
|
|
201912
201971
|
return undefined;
|
|
201913
|
-
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings,
|
|
201972
|
+
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings, "");
|
|
201973
|
+
}
|
|
201974
|
+
/** Returns the registered [[CesiumAccessClient]], or a default [[CesiumIonClient]] if none is registered.
|
|
201975
|
+
* @internal
|
|
201976
|
+
*/
|
|
201977
|
+
function getCesiumAccessClient() {
|
|
201978
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumAccess ?? new CesiumIonClient();
|
|
201979
|
+
}
|
|
201980
|
+
const cesiumTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
201981
|
+
const cesiumMinTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60); // ...but never re-resolve more often than once per minute.
|
|
201982
|
+
/** Compute when to next re-resolve a Cesium access token. Honors the endpoint's `expiresAt` when it is a valid
|
|
201983
|
+
* future time, but guards against an invalid (NaN) date - which would otherwise disable refresh entirely - and
|
|
201984
|
+
* against a past/imminent expiry that would re-resolve the endpoint on essentially every tile read.
|
|
201985
|
+
* @internal
|
|
201986
|
+
*/
|
|
201987
|
+
function computeCesiumTokenTimeoutInterval(expiresAt) {
|
|
201988
|
+
if (undefined === expiresAt)
|
|
201989
|
+
return cesiumTokenTimeoutInterval;
|
|
201990
|
+
const remainingMs = expiresAt.getTime() - Date.now();
|
|
201991
|
+
if (!Number.isFinite(remainingMs))
|
|
201992
|
+
return cesiumTokenTimeoutInterval;
|
|
201993
|
+
return _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromMilliseconds(Math.max(remainingMs, cesiumMinTokenTimeoutInterval.milliseconds));
|
|
201914
201994
|
}
|
|
201915
201995
|
/** @internal */
|
|
201916
201996
|
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
@@ -201944,15 +202024,19 @@ function notifyTerrainError(detailedDescription) {
|
|
|
201944
202024
|
}
|
|
201945
202025
|
/** @internal */
|
|
201946
202026
|
async function getCesiumTerrainProvider(opts) {
|
|
201947
|
-
const
|
|
201948
|
-
|
|
202027
|
+
const assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
202028
|
+
const client = getCesiumAccessClient();
|
|
202029
|
+
const endpoint = await client.getAssetEndpoint(assetId, opts.iTwinId);
|
|
202030
|
+
if (!endpoint) {
|
|
201949
202031
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
201950
202032
|
return undefined;
|
|
201951
202033
|
}
|
|
202034
|
+
// Resource paths (layer.json, tiles) are appended directly to the base URL, so ensure it ends with a slash.
|
|
202035
|
+
const baseUrl = endpoint.url.endsWith("/") ? endpoint.url : `${endpoint.url}/`;
|
|
201952
202036
|
let layers;
|
|
201953
202037
|
try {
|
|
201954
|
-
const layerRequestOptions = { headers: { authorization: `Bearer ${
|
|
201955
|
-
const layerUrl = `${
|
|
202038
|
+
const layerRequestOptions = { headers: { authorization: `Bearer ${endpoint.accessToken}` } };
|
|
202039
|
+
const layerUrl = `${baseUrl}layer.json`;
|
|
201956
202040
|
layers = await (0,_request_Request__WEBPACK_IMPORTED_MODULE_4__.request)(layerUrl, "json", layerRequestOptions);
|
|
201957
202041
|
}
|
|
201958
202042
|
catch {
|
|
@@ -201981,12 +202065,12 @@ async function getCesiumTerrainProvider(opts) {
|
|
|
201981
202065
|
}
|
|
201982
202066
|
}
|
|
201983
202067
|
}
|
|
201984
|
-
let tileUrlTemplate =
|
|
202068
|
+
let tileUrlTemplate = baseUrl + layers.tiles[0].replace("{version}", layers.version);
|
|
201985
202069
|
if (opts.wantNormals)
|
|
201986
202070
|
tileUrlTemplate = tileUrlTemplate.replace("?", "?extensions=octvertexnormals-watermask-metadata&");
|
|
201987
202071
|
const maxDepth = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asInt(layers.maxzoom, 19);
|
|
201988
202072
|
// TBD -- When we have an API extract the heights for the project from the terrain tiles - for use temporary Bing elevation.
|
|
201989
|
-
return new CesiumTerrainProvider(opts,
|
|
202073
|
+
return new CesiumTerrainProvider(opts, endpoint.accessToken, endpoint.expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, layers.metadataAvailability);
|
|
201990
202074
|
}
|
|
201991
202075
|
function zigZagDecode(value) {
|
|
201992
202076
|
return (value >> 1) ^ (-(value & 1));
|
|
@@ -202021,19 +202105,19 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
202021
202105
|
_metaDataAvailableLevel;
|
|
202022
202106
|
_exaggeration;
|
|
202023
202107
|
_assetId;
|
|
202108
|
+
_iTwinId;
|
|
202024
202109
|
static _scratchQPoint2d = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2d.fromScalars(0, 0);
|
|
202025
202110
|
static _scratchPoint2d = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point2d.createZero();
|
|
202026
202111
|
static _scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.createZero();
|
|
202027
202112
|
static _scratchNormal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createZero();
|
|
202028
202113
|
static _scratchHeightRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range1d.createNull();
|
|
202029
|
-
static _tokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
202030
202114
|
_tokenTimeOut;
|
|
202031
202115
|
forceTileLoad(tile) {
|
|
202032
202116
|
// Force loading of the metadata availability tiles as these are required for determining the availability of descendants.
|
|
202033
202117
|
const mapTile = tile;
|
|
202034
202118
|
return undefined !== this._metaDataAvailableLevel && mapTile.quadId.level === this._metaDataAvailableLevel && !mapTile.everLoaded;
|
|
202035
202119
|
}
|
|
202036
|
-
constructor(opts, accessToken, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
202120
|
+
constructor(opts, accessToken, expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
202037
202121
|
super();
|
|
202038
202122
|
this._wantSkirts = opts.wantSkirts;
|
|
202039
202123
|
this._exaggeration = opts.exaggeration;
|
|
@@ -202044,7 +202128,8 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
202044
202128
|
this._tileAvailability = tileAvailability;
|
|
202045
202129
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
202046
202130
|
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
202047
|
-
this.
|
|
202131
|
+
this._iTwinId = opts.iTwinId;
|
|
202132
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(expiresAt));
|
|
202048
202133
|
}
|
|
202049
202134
|
/** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
|
|
202050
202135
|
addLogoCards(cards) {
|
|
@@ -202090,11 +202175,12 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
202090
202175
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
202091
202176
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
202092
202177
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
202093
|
-
const
|
|
202094
|
-
|
|
202178
|
+
const client = getCesiumAccessClient();
|
|
202179
|
+
const endpoint = await client.getAssetEndpoint(this._assetId, this._iTwinId);
|
|
202180
|
+
if (!endpoint || args.isCanceled())
|
|
202095
202181
|
return undefined;
|
|
202096
|
-
this._accessToken =
|
|
202097
|
-
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(
|
|
202182
|
+
this._accessToken = endpoint.accessToken;
|
|
202183
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(endpoint.expiresAt));
|
|
202098
202184
|
}
|
|
202099
202185
|
const { data, tile } = args;
|
|
202100
202186
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(data instanceof Uint8Array);
|
|
@@ -202281,6 +202367,18 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
202281
202367
|
return undefined === heightRange ? parentRange : heightRange;
|
|
202282
202368
|
}
|
|
202283
202369
|
}
|
|
202370
|
+
/** Default [[CesiumAccessClient]] that authenticates directly with Cesium Ion using [[TileAdmin.cesiumIonKey]].
|
|
202371
|
+
* This is used when no custom [[CesiumAccessClient]] is registered via [[TileAdmin.Props.cesiumAccess]].
|
|
202372
|
+
* @internal
|
|
202373
|
+
*/
|
|
202374
|
+
class CesiumIonClient {
|
|
202375
|
+
async getAssetEndpoint(assetId, _iTwinId) {
|
|
202376
|
+
const result = await getCesiumAccessTokenAndEndpointUrl(assetId);
|
|
202377
|
+
if (!result.token || !result.url)
|
|
202378
|
+
return undefined;
|
|
202379
|
+
return { accessToken: result.token, url: result.url };
|
|
202380
|
+
}
|
|
202381
|
+
}
|
|
202284
202382
|
|
|
202285
202383
|
|
|
202286
202384
|
/***/ }),
|
|
@@ -205748,6 +205846,7 @@ class MapTreeSupplier {
|
|
|
205748
205846
|
wantNormals: id.wantNormals,
|
|
205749
205847
|
dataSource: id.terrainDataSource,
|
|
205750
205848
|
produceGeometry: id.produceGeometry,
|
|
205849
|
+
iTwinId: iModel.iTwinId,
|
|
205751
205850
|
};
|
|
205752
205851
|
if (id.applyTerrain) {
|
|
205753
205852
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
@@ -239193,7 +239292,7 @@ class CurveFactory {
|
|
|
239193
239292
|
return undefined;
|
|
239194
239293
|
}
|
|
239195
239294
|
/**
|
|
239196
|
-
* Construct a sequence of alternating lines and arcs with
|
|
239295
|
+
* Construct a sequence of alternating lines and arcs with each arc creating a smooth transition between consecutive edges.
|
|
239197
239296
|
* * If the radius parameter is a number, that radius is used throughout.
|
|
239198
239297
|
* * If the radius parameter is an array of numbers, `radius[i]` is applied at `point[i]`.
|
|
239199
239298
|
* * A zero radius for any point indicates to leave the as a simple corner.
|
|
@@ -239206,20 +239305,18 @@ class CurveFactory {
|
|
|
239206
239305
|
return this.createFilletsInLineString(new _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_4__.Point3dArrayCarrier(points), radius, allowCuspOrOptions);
|
|
239207
239306
|
if (points instanceof _LineString3d__WEBPACK_IMPORTED_MODULE_5__.LineString3d)
|
|
239208
239307
|
return this.createFilletsInLineString(points.packedPoints, radius, allowCuspOrOptions);
|
|
239209
|
-
|
|
239210
|
-
|
|
239211
|
-
|
|
239212
|
-
|
|
239213
|
-
|
|
239214
|
-
|
|
239215
|
-
allowCusp = allowCuspOrOptions.allowCusp ?? true;
|
|
239216
|
-
filletClosure = allowCuspOrOptions.filletClosure ?? false;
|
|
239217
|
-
}
|
|
239308
|
+
const haveBoolean = typeof allowCuspOrOptions === "boolean";
|
|
239309
|
+
const allowCusp = haveBoolean ? allowCuspOrOptions : allowCuspOrOptions.allowCusp ?? true;
|
|
239310
|
+
const filletClosure = haveBoolean ? false : allowCuspOrOptions.filletClosure ?? false;
|
|
239311
|
+
const closureTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.closureTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
239312
|
+
const cuspTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.cuspTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
239313
|
+
const cuspSegments = haveBoolean ? true : allowCuspOrOptions.cuspSegments ?? true;
|
|
239218
239314
|
let n = points.length;
|
|
239219
|
-
if (filletClosure && points.almostEqualIndexIndex(0, n - 1))
|
|
239315
|
+
if (filletClosure && points.almostEqualIndexIndex(0, n - 1, closureTolerance))
|
|
239220
239316
|
n--; // ignore closure point
|
|
239221
239317
|
if (n <= 1)
|
|
239222
239318
|
return undefined;
|
|
239319
|
+
// create blend data at each vertex
|
|
239223
239320
|
const pointA = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
239224
239321
|
const pointB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
239225
239322
|
const pointC = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
@@ -239240,17 +239337,41 @@ class CurveFactory {
|
|
|
239240
239337
|
}
|
|
239241
239338
|
}
|
|
239242
239339
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(blendArray.length === n);
|
|
239243
|
-
|
|
239244
|
-
|
|
239245
|
-
|
|
239246
|
-
|
|
239247
|
-
|
|
239248
|
-
|
|
239249
|
-
|
|
239250
|
-
|
|
239251
|
-
|
|
239252
|
-
|
|
239253
|
-
|
|
239340
|
+
// For each edge, look at its 0|1|2 fillets to determine whether/which to suppress.
|
|
239341
|
+
// When a cusp is generated by 2 fillets, use this HEURISTIC:
|
|
239342
|
+
// * Prefer to keep the fillet that results in the smaller allowable cusp segment.
|
|
239343
|
+
// * If by itself, each fillet results in a cusp segment of equal allowable length (possibly zero), keep the first.
|
|
239344
|
+
const edgeHasCusp = (fillet0, fillet1) => fillet0.fraction12 + fillet1.fraction10 > 1;
|
|
239345
|
+
const cuspSegmentLength = (checkedEdgeIndex, fillet0, fillet1) => points.distanceUncheckedIndexIndex(checkedEdgeIndex, points.cyclicIndex(checkedEdgeIndex + 1)) * (fillet0.fraction12 + fillet1.fraction10 - 1);
|
|
239346
|
+
const filletOvershootsEdge = (fillet, filletIndex) => filletIndex === 0 ? fillet.fraction12 > 1 : fillet.fraction10 > 1;
|
|
239347
|
+
const cuspNeedsRemoval = (checkedEdgeIndex, fillet0, fillet1) => edgeHasCusp(fillet0, fillet1) && (!allowCusp || cuspSegmentLength(checkedEdgeIndex, fillet0, fillet1) > cuspTolerance);
|
|
239348
|
+
const removeFillet = (fillet) => { fillet.fraction10 = fillet.fraction12 = 0; fillet.arc = undefined; };
|
|
239349
|
+
for (let iEdge = 0; iEdge < (filletClosure ? n : n - 1); iEdge++) {
|
|
239350
|
+
const fillet0 = blendArray[iEdge];
|
|
239351
|
+
const fillet1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(iEdge + 1, n)];
|
|
239352
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
239353
|
+
const fillet0OvershootsEdge = filletOvershootsEdge(fillet0, 0);
|
|
239354
|
+
const fillet1OvershootsEdge = filletOvershootsEdge(fillet1, 1);
|
|
239355
|
+
// prefer to remove just one fillet
|
|
239356
|
+
if (fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
239357
|
+
removeFillet(fillet0);
|
|
239358
|
+
}
|
|
239359
|
+
else if (!fillet0OvershootsEdge && fillet1OvershootsEdge) {
|
|
239360
|
+
removeFillet(fillet1);
|
|
239361
|
+
}
|
|
239362
|
+
else if (!fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
239363
|
+
removeFillet(fillet1); // fillets intersect (arbitrary choice)
|
|
239364
|
+
}
|
|
239365
|
+
else if (fillet1.fraction10 < fillet0.fraction12) {
|
|
239366
|
+
removeFillet(fillet0); // fillet1 yields smaller cusp segment
|
|
239367
|
+
}
|
|
239368
|
+
else {
|
|
239369
|
+
removeFillet(fillet1); // fillet0 yields smaller cusp segment, or they are equal (arbitrary choice)
|
|
239370
|
+
}
|
|
239371
|
+
// re-evaluate the edge after removal of a fillet; if a disallowed cusp persists, remove the other fillet
|
|
239372
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
239373
|
+
removeFillet(fillet0);
|
|
239374
|
+
removeFillet(fillet1);
|
|
239254
239375
|
}
|
|
239255
239376
|
}
|
|
239256
239377
|
}
|
|
@@ -239260,7 +239381,7 @@ class CurveFactory {
|
|
|
239260
239381
|
path.tryAddChild(b0.arc);
|
|
239261
239382
|
if (i + 1 < n || filletClosure) {
|
|
239262
239383
|
const b1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i + 1, n)];
|
|
239263
|
-
this.addPartialSegment(path,
|
|
239384
|
+
this.addPartialSegment(path, cuspSegments, b0.point, b1.point, b0.fraction12, 1 - b1.fraction10);
|
|
239264
239385
|
}
|
|
239265
239386
|
}
|
|
239266
239387
|
return path;
|
|
@@ -247494,13 +247615,13 @@ class RegionOps {
|
|
|
247494
247615
|
}
|
|
247495
247616
|
/**
|
|
247496
247617
|
* Look for and simplify:
|
|
247497
|
-
* * Contiguous
|
|
247618
|
+
* * Contiguous [[LineSegment3d]] and [[LineString3d]] objects:
|
|
247498
247619
|
* * collect all points
|
|
247499
247620
|
* * eliminate duplicated points
|
|
247500
247621
|
* * eliminate points colinear with surrounding points
|
|
247501
|
-
*
|
|
247622
|
+
* * Contiguous concentric circular or elliptic [[Arc3d]] objects:
|
|
247502
247623
|
* * combine angular ranges
|
|
247503
|
-
* * This function can be used to compress adjacent
|
|
247624
|
+
* * This function can be used to compress adjacent [[LineSegment3d]]s into a [[LineString3d]].
|
|
247504
247625
|
* @param curves Path or loop (or larger collection containing paths and loops) to be simplified
|
|
247505
247626
|
* @param options options for tolerance and selective simplification.
|
|
247506
247627
|
*/
|
|
@@ -267789,7 +267910,7 @@ class IndexedXYZCollection {
|
|
|
267789
267910
|
}
|
|
267790
267911
|
/** Adjust index into range by modulo with the length. */
|
|
267791
267912
|
cyclicIndex(i) {
|
|
267792
|
-
return (i
|
|
267913
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i, this.length);
|
|
267793
267914
|
}
|
|
267794
267915
|
/** Return the range of the points. */
|
|
267795
267916
|
getRange(transform, result) {
|
|
@@ -348386,7 +348507,7 @@ class TestContext {
|
|
|
348386
348507
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
348387
348508
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
348388
348509
|
await core_frontend_1.NoRenderApp.startup({
|
|
348389
|
-
applicationVersion: "5.11.0-dev.
|
|
348510
|
+
applicationVersion: "5.11.0-dev.14",
|
|
348390
348511
|
applicationId: this.settings.gprid,
|
|
348391
348512
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
348392
348513
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -375337,7 +375458,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
375337
375458
|
/***/ ((module) => {
|
|
375338
375459
|
|
|
375339
375460
|
"use strict";
|
|
375340
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.
|
|
375461
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.14","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/node":"~20.17.0","@types/sinon":"^17.0.2","@vitest/browser-playwright":"^4.1.8","@vitest/coverage-v8":"^4.1.8","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^4.1.8","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
375341
375462
|
|
|
375342
375463
|
/***/ }),
|
|
375343
375464
|
|