@itwin/ecschema-rpcinterface-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/backend/BackendInit.js.map +1 -1
- package/lib/common/Settings.js +4 -4
- package/lib/common/Settings.js.map +1 -1
- package/lib/common/SideChannels.js.map +1 -1
- package/lib/dist/bundled-tests.js +1722 -1601
- 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/lib/frontend/SchemaRpcInterface.test.js.map +1 -1
- package/lib/frontend/setup/IModelSession.js.map +1 -1
- package/lib/frontend/setup/TestContext.js.map +1 -1
- package/package.json +15 -15
|
@@ -67417,213 +67417,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67417
67417
|
* WITH clauses are broken down into individual variables.
|
|
67418
67418
|
*/
|
|
67419
67419
|
const propertyType = (alias) => {
|
|
67420
|
-
return `
|
|
67421
|
-
CASE
|
|
67422
|
-
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
67423
|
-
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
67424
|
-
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
67425
|
-
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
67426
|
-
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
67427
|
-
ELSE NULL
|
|
67428
|
-
END
|
|
67420
|
+
return `
|
|
67421
|
+
CASE
|
|
67422
|
+
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
67423
|
+
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
67424
|
+
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
67425
|
+
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
67426
|
+
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
67427
|
+
ELSE NULL
|
|
67428
|
+
END
|
|
67429
67429
|
`;
|
|
67430
67430
|
};
|
|
67431
67431
|
const navigationDirection = (alias) => {
|
|
67432
|
-
return `
|
|
67433
|
-
CASE
|
|
67434
|
-
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
67435
|
-
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
67436
|
-
ELSE NULL
|
|
67437
|
-
END
|
|
67432
|
+
return `
|
|
67433
|
+
CASE
|
|
67434
|
+
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
67435
|
+
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
67436
|
+
ELSE NULL
|
|
67437
|
+
END
|
|
67438
67438
|
`;
|
|
67439
67439
|
};
|
|
67440
67440
|
const schemaCustomAttribute = (alias) => {
|
|
67441
|
-
return `
|
|
67442
|
-
SELECT
|
|
67443
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67444
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67445
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
67446
|
-
ORDER BY [ca].[Ordinal]
|
|
67441
|
+
return `
|
|
67442
|
+
SELECT
|
|
67443
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67444
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67445
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
67446
|
+
ORDER BY [ca].[Ordinal]
|
|
67447
67447
|
`;
|
|
67448
67448
|
};
|
|
67449
67449
|
/**
|
|
67450
67450
|
* Selects customAttribute data for each class type.
|
|
67451
67451
|
*/
|
|
67452
67452
|
const classCustomAttribute = (alias) => {
|
|
67453
|
-
return `
|
|
67454
|
-
SELECT
|
|
67455
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67456
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67457
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
67458
|
-
ORDER BY [ca].[Ordinal]
|
|
67453
|
+
return `
|
|
67454
|
+
SELECT
|
|
67455
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67456
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67457
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
67458
|
+
ORDER BY [ca].[Ordinal]
|
|
67459
67459
|
`;
|
|
67460
67460
|
};
|
|
67461
67461
|
const propertyCustomAttribute = (alias) => {
|
|
67462
|
-
return `
|
|
67463
|
-
SELECT
|
|
67464
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67465
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67466
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
67467
|
-
ORDER BY [ca].[Ordinal]
|
|
67462
|
+
return `
|
|
67463
|
+
SELECT
|
|
67464
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67465
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67466
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
67467
|
+
ORDER BY [ca].[Ordinal]
|
|
67468
67468
|
`;
|
|
67469
67469
|
};
|
|
67470
67470
|
/**
|
|
67471
67471
|
* Selects base class data for each class type.
|
|
67472
67472
|
*/
|
|
67473
|
-
const selectBaseClasses = `
|
|
67474
|
-
SELECT
|
|
67475
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
67476
|
-
FROM
|
|
67477
|
-
[meta].[ECClassDef] [baseClass]
|
|
67478
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67479
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
67480
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67481
|
-
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
67482
|
-
LIMIT 1
|
|
67473
|
+
const selectBaseClasses = `
|
|
67474
|
+
SELECT
|
|
67475
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
67476
|
+
FROM
|
|
67477
|
+
[meta].[ECClassDef] [baseClass]
|
|
67478
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67479
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
67480
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67481
|
+
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
67482
|
+
LIMIT 1
|
|
67483
67483
|
`;
|
|
67484
67484
|
/**
|
|
67485
67485
|
* Selects class property data for each class type. ClassProperties
|
|
67486
67486
|
* is a common table expression (CTE or WITH clause) defined below.
|
|
67487
67487
|
*/
|
|
67488
|
-
const selectProperties = `
|
|
67489
|
-
SELECT
|
|
67490
|
-
json_group_array(json([classProperties].[property]))
|
|
67491
|
-
FROM
|
|
67492
|
-
[ClassProperties] [classProperties]
|
|
67493
|
-
WHERE
|
|
67494
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
67488
|
+
const selectProperties = `
|
|
67489
|
+
SELECT
|
|
67490
|
+
json_group_array(json([classProperties].[property]))
|
|
67491
|
+
FROM
|
|
67492
|
+
[ClassProperties] [classProperties]
|
|
67493
|
+
WHERE
|
|
67494
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
67495
67495
|
`;
|
|
67496
67496
|
/**
|
|
67497
67497
|
* A CTE used to select AppliesTo from IsMixin CustomAttributes for a given Mixin.
|
|
67498
67498
|
*/
|
|
67499
|
-
const withAppliesTo = `
|
|
67500
|
-
AppliesToCTE AS (
|
|
67501
|
-
SELECT
|
|
67502
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
67503
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
67504
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
67505
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67506
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
67507
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
67508
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
67509
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
67510
|
-
WHERE [ca].[ContainerType] = 30
|
|
67511
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
67512
|
-
)
|
|
67499
|
+
const withAppliesTo = `
|
|
67500
|
+
AppliesToCTE AS (
|
|
67501
|
+
SELECT
|
|
67502
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
67503
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
67504
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
67505
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67506
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
67507
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
67508
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
67509
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
67510
|
+
WHERE [ca].[ContainerType] = 30
|
|
67511
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
67512
|
+
)
|
|
67513
67513
|
`;
|
|
67514
67514
|
/**
|
|
67515
67515
|
* A CTE used to select Schema reference data for a given Schema.
|
|
67516
67516
|
*/
|
|
67517
|
-
const withSchemaReferences = `
|
|
67518
|
-
SchemaReferences as (
|
|
67519
|
-
SELECT
|
|
67520
|
-
[ref].[SourceECInstanceId] as [SchemaId],
|
|
67521
|
-
json_object(
|
|
67522
|
-
'name', [Name],
|
|
67523
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
67524
|
-
) as [reference]
|
|
67525
|
-
FROM
|
|
67526
|
-
[meta].[ECSchemaDef] as [refSchema]
|
|
67527
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
67528
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
67529
|
-
)
|
|
67517
|
+
const withSchemaReferences = `
|
|
67518
|
+
SchemaReferences as (
|
|
67519
|
+
SELECT
|
|
67520
|
+
[ref].[SourceECInstanceId] as [SchemaId],
|
|
67521
|
+
json_object(
|
|
67522
|
+
'name', [Name],
|
|
67523
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
67524
|
+
) as [reference]
|
|
67525
|
+
FROM
|
|
67526
|
+
[meta].[ECSchemaDef] as [refSchema]
|
|
67527
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
67528
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
67529
|
+
)
|
|
67530
67530
|
`;
|
|
67531
67531
|
/**
|
|
67532
67532
|
* A CTE used to select Relationship constraints for a given RelationshipClass.
|
|
67533
67533
|
*/
|
|
67534
|
-
const withRelationshipConstraints = `
|
|
67535
|
-
ClassRelationshipConstraints as (
|
|
67536
|
-
SELECT
|
|
67537
|
-
[rhc].[SourceECInstanceId] as [ClassId],
|
|
67538
|
-
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
67539
|
-
[RelationshipEnd],
|
|
67540
|
-
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
67541
|
-
[IsPolyMorphic],
|
|
67542
|
-
[RoleLabel],
|
|
67543
|
-
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
67544
|
-
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
67545
|
-
FROM
|
|
67546
|
-
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
67547
|
-
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
67548
|
-
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
67549
|
-
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
67550
|
-
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
67551
|
-
GROUP BY [constraintDef].[ECInstanceId]
|
|
67552
|
-
)
|
|
67534
|
+
const withRelationshipConstraints = `
|
|
67535
|
+
ClassRelationshipConstraints as (
|
|
67536
|
+
SELECT
|
|
67537
|
+
[rhc].[SourceECInstanceId] as [ClassId],
|
|
67538
|
+
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
67539
|
+
[RelationshipEnd],
|
|
67540
|
+
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
67541
|
+
[IsPolyMorphic],
|
|
67542
|
+
[RoleLabel],
|
|
67543
|
+
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
67544
|
+
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
67545
|
+
FROM
|
|
67546
|
+
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
67547
|
+
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
67548
|
+
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
67549
|
+
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
67550
|
+
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
67551
|
+
GROUP BY [constraintDef].[ECInstanceId]
|
|
67552
|
+
)
|
|
67553
67553
|
`;
|
|
67554
67554
|
/**
|
|
67555
67555
|
* A CTE used to select Class property data for a given Class.
|
|
67556
67556
|
*/
|
|
67557
|
-
const withClassProperties = `
|
|
67558
|
-
ClassProperties as (
|
|
67559
|
-
SELECT
|
|
67560
|
-
[cop].[SourceECInstanceId] as [ClassId],
|
|
67561
|
-
json_object(
|
|
67562
|
-
'name', [pd].[Name],
|
|
67563
|
-
'label', [pd].[DisplayLabel],
|
|
67564
|
-
'description', [pd].[Description],
|
|
67565
|
-
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
67566
|
-
'priority', [pd].[Priority],
|
|
67567
|
-
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
67568
|
-
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
67569
|
-
'typeName',
|
|
67570
|
-
CASE
|
|
67571
|
-
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
67572
|
-
CASE
|
|
67573
|
-
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
67574
|
-
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
67575
|
-
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
67576
|
-
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
67577
|
-
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
67578
|
-
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
67579
|
-
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
67580
|
-
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
67581
|
-
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
67582
|
-
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
67583
|
-
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
67584
|
-
ELSE null
|
|
67585
|
-
END
|
|
67586
|
-
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
67587
|
-
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
67588
|
-
ELSE null
|
|
67589
|
-
END,
|
|
67590
|
-
'type', ${propertyType("pd")},
|
|
67591
|
-
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
67592
|
-
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
67593
|
-
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
67594
|
-
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
67595
|
-
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
67596
|
-
'minOccurs', [pd].[ArrayMinOccurs],
|
|
67597
|
-
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
67598
|
-
'direction', ${navigationDirection("pd")},
|
|
67599
|
-
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
67600
|
-
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
67601
|
-
) as [property]
|
|
67602
|
-
FROM
|
|
67603
|
-
[meta].[ECPropertyDef] as [pd]
|
|
67604
|
-
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
67605
|
-
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
67606
|
-
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
67607
|
-
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
67608
|
-
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
67609
|
-
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
67610
|
-
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
67611
|
-
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
67612
|
-
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
67613
|
-
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
67614
|
-
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
67615
|
-
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
67616
|
-
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
67617
|
-
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
67618
|
-
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
67619
|
-
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
67620
|
-
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
67621
|
-
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
67622
|
-
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
67623
|
-
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
67624
|
-
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
67625
|
-
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
67626
|
-
)
|
|
67557
|
+
const withClassProperties = `
|
|
67558
|
+
ClassProperties as (
|
|
67559
|
+
SELECT
|
|
67560
|
+
[cop].[SourceECInstanceId] as [ClassId],
|
|
67561
|
+
json_object(
|
|
67562
|
+
'name', [pd].[Name],
|
|
67563
|
+
'label', [pd].[DisplayLabel],
|
|
67564
|
+
'description', [pd].[Description],
|
|
67565
|
+
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
67566
|
+
'priority', [pd].[Priority],
|
|
67567
|
+
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
67568
|
+
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
67569
|
+
'typeName',
|
|
67570
|
+
CASE
|
|
67571
|
+
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
67572
|
+
CASE
|
|
67573
|
+
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
67574
|
+
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
67575
|
+
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
67576
|
+
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
67577
|
+
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
67578
|
+
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
67579
|
+
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
67580
|
+
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
67581
|
+
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
67582
|
+
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
67583
|
+
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
67584
|
+
ELSE null
|
|
67585
|
+
END
|
|
67586
|
+
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
67587
|
+
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
67588
|
+
ELSE null
|
|
67589
|
+
END,
|
|
67590
|
+
'type', ${propertyType("pd")},
|
|
67591
|
+
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
67592
|
+
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
67593
|
+
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
67594
|
+
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
67595
|
+
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
67596
|
+
'minOccurs', [pd].[ArrayMinOccurs],
|
|
67597
|
+
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
67598
|
+
'direction', ${navigationDirection("pd")},
|
|
67599
|
+
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
67600
|
+
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
67601
|
+
) as [property]
|
|
67602
|
+
FROM
|
|
67603
|
+
[meta].[ECPropertyDef] as [pd]
|
|
67604
|
+
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
67605
|
+
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
67606
|
+
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
67607
|
+
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
67608
|
+
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
67609
|
+
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
67610
|
+
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
67611
|
+
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
67612
|
+
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
67613
|
+
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
67614
|
+
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
67615
|
+
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
67616
|
+
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
67617
|
+
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
67618
|
+
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
67619
|
+
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
67620
|
+
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
67621
|
+
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
67622
|
+
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
67623
|
+
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
67624
|
+
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
67625
|
+
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
67626
|
+
)
|
|
67627
67627
|
`;
|
|
67628
67628
|
/**
|
|
67629
67629
|
* Query that provides EntityClass data and is shared by two cases:
|
|
@@ -67631,52 +67631,52 @@ LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
|
67631
67631
|
* 2. When querying a full schema with multiple schema item queries or
|
|
67632
67632
|
* when just querying for Entity classes.
|
|
67633
67633
|
*/
|
|
67634
|
-
const baseEntityQuery = `
|
|
67635
|
-
SELECT
|
|
67636
|
-
[sd].[Name] as [schema],
|
|
67637
|
-
json_object (
|
|
67638
|
-
'schemaItemType', 'EntityClass',
|
|
67639
|
-
'name', [class].[Name],
|
|
67640
|
-
'label', [class].[DisplayLabel],
|
|
67641
|
-
'description', [class].[Description],
|
|
67642
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67643
|
-
'baseClass', (
|
|
67644
|
-
${selectBaseClasses}
|
|
67645
|
-
),
|
|
67646
|
-
'mixins', (
|
|
67647
|
-
SELECT
|
|
67648
|
-
json_group_array(
|
|
67649
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
67650
|
-
)
|
|
67651
|
-
FROM
|
|
67652
|
-
[meta].[ECClassDef] [baseClass]
|
|
67653
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67654
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
67655
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67656
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67657
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67658
|
-
),
|
|
67659
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
67660
|
-
'properties', (
|
|
67661
|
-
${selectProperties}
|
|
67662
|
-
)
|
|
67663
|
-
) AS [item]
|
|
67664
|
-
FROM [meta].[ECClassDef] [class]
|
|
67665
|
-
JOIN
|
|
67666
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67667
|
-
WHERE [class].[Type] = 0 AND
|
|
67668
|
-
[sd].[Name] = :schemaName
|
|
67669
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67670
|
-
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
67634
|
+
const baseEntityQuery = `
|
|
67635
|
+
SELECT
|
|
67636
|
+
[sd].[Name] as [schema],
|
|
67637
|
+
json_object (
|
|
67638
|
+
'schemaItemType', 'EntityClass',
|
|
67639
|
+
'name', [class].[Name],
|
|
67640
|
+
'label', [class].[DisplayLabel],
|
|
67641
|
+
'description', [class].[Description],
|
|
67642
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67643
|
+
'baseClass', (
|
|
67644
|
+
${selectBaseClasses}
|
|
67645
|
+
),
|
|
67646
|
+
'mixins', (
|
|
67647
|
+
SELECT
|
|
67648
|
+
json_group_array(
|
|
67649
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
67650
|
+
)
|
|
67651
|
+
FROM
|
|
67652
|
+
[meta].[ECClassDef] [baseClass]
|
|
67653
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67654
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
67655
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67656
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67657
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67658
|
+
),
|
|
67659
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
67660
|
+
'properties', (
|
|
67661
|
+
${selectProperties}
|
|
67662
|
+
)
|
|
67663
|
+
) AS [item]
|
|
67664
|
+
FROM [meta].[ECClassDef] [class]
|
|
67665
|
+
JOIN
|
|
67666
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67667
|
+
WHERE [class].[Type] = 0 AND
|
|
67668
|
+
[sd].[Name] = :schemaName
|
|
67669
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67670
|
+
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
67671
67671
|
`;
|
|
67672
67672
|
/**
|
|
67673
67673
|
* EntityClass query used to when querying for EntityClass data only. Not used
|
|
67674
67674
|
* for full Schema load via single query.
|
|
67675
67675
|
*/
|
|
67676
|
-
const entityQuery = `
|
|
67677
|
-
WITH
|
|
67678
|
-
${withClassProperties}
|
|
67679
|
-
${baseEntityQuery}
|
|
67676
|
+
const entityQuery = `
|
|
67677
|
+
WITH
|
|
67678
|
+
${withClassProperties}
|
|
67679
|
+
${baseEntityQuery}
|
|
67680
67680
|
`;
|
|
67681
67681
|
/**
|
|
67682
67682
|
* Query that provides Mixin data and is shared by two cases:
|
|
@@ -67684,56 +67684,56 @@ const entityQuery = `
|
|
|
67684
67684
|
* 2. When querying a full schema with multiple schema item queries or
|
|
67685
67685
|
* when just querying for Mixin classes.
|
|
67686
67686
|
*/
|
|
67687
|
-
const baseMixinQuery = `
|
|
67688
|
-
SELECT
|
|
67689
|
-
[sd].[Name] as [schema],
|
|
67690
|
-
json_object (
|
|
67691
|
-
'schemaItemType', 'Mixin',
|
|
67692
|
-
'name', [class].[Name],
|
|
67693
|
-
'label', [class].[DisplayLabel],
|
|
67694
|
-
'description', [class].[Description],
|
|
67695
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67696
|
-
'baseClass', (
|
|
67697
|
-
${selectBaseClasses}
|
|
67698
|
-
),
|
|
67699
|
-
'appliesTo', (
|
|
67700
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67701
|
-
FROM [AppliesToCTE] [atCTE]
|
|
67702
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
67703
|
-
),
|
|
67704
|
-
'customAttributes', (
|
|
67705
|
-
SELECT
|
|
67706
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67707
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67708
|
-
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
67709
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
67710
|
-
),
|
|
67711
|
-
'properties', (
|
|
67712
|
-
SELECT
|
|
67713
|
-
json_group_array(json([classProperties].[property]))
|
|
67714
|
-
FROM
|
|
67715
|
-
[ClassProperties] [classProperties]
|
|
67716
|
-
WHERE
|
|
67717
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
67718
|
-
)
|
|
67719
|
-
) AS [item]
|
|
67720
|
-
FROM [meta].[ECClassDef] [class]
|
|
67721
|
-
JOIN
|
|
67722
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67723
|
-
WHERE [class].[Type] = 0 AND
|
|
67724
|
-
[sd].[Name] = :schemaName
|
|
67725
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67726
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67687
|
+
const baseMixinQuery = `
|
|
67688
|
+
SELECT
|
|
67689
|
+
[sd].[Name] as [schema],
|
|
67690
|
+
json_object (
|
|
67691
|
+
'schemaItemType', 'Mixin',
|
|
67692
|
+
'name', [class].[Name],
|
|
67693
|
+
'label', [class].[DisplayLabel],
|
|
67694
|
+
'description', [class].[Description],
|
|
67695
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67696
|
+
'baseClass', (
|
|
67697
|
+
${selectBaseClasses}
|
|
67698
|
+
),
|
|
67699
|
+
'appliesTo', (
|
|
67700
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67701
|
+
FROM [AppliesToCTE] [atCTE]
|
|
67702
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
67703
|
+
),
|
|
67704
|
+
'customAttributes', (
|
|
67705
|
+
SELECT
|
|
67706
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67707
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67708
|
+
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
67709
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
67710
|
+
),
|
|
67711
|
+
'properties', (
|
|
67712
|
+
SELECT
|
|
67713
|
+
json_group_array(json([classProperties].[property]))
|
|
67714
|
+
FROM
|
|
67715
|
+
[ClassProperties] [classProperties]
|
|
67716
|
+
WHERE
|
|
67717
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
67718
|
+
)
|
|
67719
|
+
) AS [item]
|
|
67720
|
+
FROM [meta].[ECClassDef] [class]
|
|
67721
|
+
JOIN
|
|
67722
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67723
|
+
WHERE [class].[Type] = 0 AND
|
|
67724
|
+
[sd].[Name] = :schemaName
|
|
67725
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67726
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67727
67727
|
`;
|
|
67728
67728
|
/**
|
|
67729
67729
|
* Mixin query used to when querying for Mixin data only. Not used
|
|
67730
67730
|
* for full Schema load via single query.
|
|
67731
67731
|
*/
|
|
67732
|
-
const mixinQuery = `
|
|
67733
|
-
WITH
|
|
67734
|
-
${withAppliesTo},
|
|
67735
|
-
${withClassProperties}
|
|
67736
|
-
${baseMixinQuery}
|
|
67732
|
+
const mixinQuery = `
|
|
67733
|
+
WITH
|
|
67734
|
+
${withAppliesTo},
|
|
67735
|
+
${withClassProperties}
|
|
67736
|
+
${baseMixinQuery}
|
|
67737
67737
|
`;
|
|
67738
67738
|
/**
|
|
67739
67739
|
* Query that provides RelationshipClass data and is shared by two cases:
|
|
@@ -67741,82 +67741,82 @@ ${baseMixinQuery}
|
|
|
67741
67741
|
* 2. When querying a full schema with multiple schema item queries or
|
|
67742
67742
|
* when just querying for Relationship classes.
|
|
67743
67743
|
*/
|
|
67744
|
-
const baseRelationshipClassQuery = `
|
|
67745
|
-
SELECT
|
|
67746
|
-
[sd].Name as schema,
|
|
67747
|
-
json_object (
|
|
67748
|
-
'schemaItemType', 'RelationshipClass',
|
|
67749
|
-
'name', [class].[Name],
|
|
67750
|
-
'label', [class].[DisplayLabel],
|
|
67751
|
-
'description', [class].[Description],
|
|
67752
|
-
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
67753
|
-
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
67754
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67755
|
-
'baseClass', (
|
|
67756
|
-
${selectBaseClasses}
|
|
67757
|
-
),
|
|
67758
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
67759
|
-
'properties', (
|
|
67760
|
-
${selectProperties}
|
|
67761
|
-
),
|
|
67762
|
-
'source', (
|
|
67763
|
-
SELECT
|
|
67764
|
-
json_object (
|
|
67765
|
-
'multiplicity', [sourceConst].[Multiplicity],
|
|
67766
|
-
'roleLabel', [sourceConst].[RoleLabel],
|
|
67767
|
-
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
67768
|
-
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
67769
|
-
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
67770
|
-
'customAttributes', (
|
|
67771
|
-
SELECT
|
|
67772
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67773
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67774
|
-
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
67775
|
-
ORDER BY [ca].[Ordinal]
|
|
67776
|
-
)
|
|
67777
|
-
)
|
|
67778
|
-
FROM
|
|
67779
|
-
[ClassRelationshipConstraints] [sourceConst]
|
|
67780
|
-
WHERE [sourceConst].[relationshipEnd] = 0
|
|
67781
|
-
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
67782
|
-
),
|
|
67783
|
-
'target', (
|
|
67784
|
-
SELECT
|
|
67785
|
-
json_object (
|
|
67786
|
-
'multiplicity', [targetConst].[Multiplicity],
|
|
67787
|
-
'roleLabel', [targetConst].[RoleLabel],
|
|
67788
|
-
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
67789
|
-
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
67790
|
-
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
67791
|
-
'customAttributes', (
|
|
67792
|
-
SELECT
|
|
67793
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67794
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67795
|
-
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
67796
|
-
ORDER BY [ca].[Ordinal]
|
|
67797
|
-
)
|
|
67798
|
-
)
|
|
67799
|
-
FROM
|
|
67800
|
-
[ClassRelationshipConstraints] [targetConst]
|
|
67801
|
-
WHERE [targetConst].[relationshipEnd] = 1
|
|
67802
|
-
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
67803
|
-
)
|
|
67804
|
-
) AS [item]
|
|
67805
|
-
FROM [meta].[ECClassDef] [class]
|
|
67806
|
-
JOIN
|
|
67807
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67808
|
-
WHERE [class].[Type] = 1 AND
|
|
67809
|
-
[sd].[Name] = :schemaName
|
|
67744
|
+
const baseRelationshipClassQuery = `
|
|
67745
|
+
SELECT
|
|
67746
|
+
[sd].Name as schema,
|
|
67747
|
+
json_object (
|
|
67748
|
+
'schemaItemType', 'RelationshipClass',
|
|
67749
|
+
'name', [class].[Name],
|
|
67750
|
+
'label', [class].[DisplayLabel],
|
|
67751
|
+
'description', [class].[Description],
|
|
67752
|
+
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
67753
|
+
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
67754
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67755
|
+
'baseClass', (
|
|
67756
|
+
${selectBaseClasses}
|
|
67757
|
+
),
|
|
67758
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
67759
|
+
'properties', (
|
|
67760
|
+
${selectProperties}
|
|
67761
|
+
),
|
|
67762
|
+
'source', (
|
|
67763
|
+
SELECT
|
|
67764
|
+
json_object (
|
|
67765
|
+
'multiplicity', [sourceConst].[Multiplicity],
|
|
67766
|
+
'roleLabel', [sourceConst].[RoleLabel],
|
|
67767
|
+
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
67768
|
+
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
67769
|
+
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
67770
|
+
'customAttributes', (
|
|
67771
|
+
SELECT
|
|
67772
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67773
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67774
|
+
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
67775
|
+
ORDER BY [ca].[Ordinal]
|
|
67776
|
+
)
|
|
67777
|
+
)
|
|
67778
|
+
FROM
|
|
67779
|
+
[ClassRelationshipConstraints] [sourceConst]
|
|
67780
|
+
WHERE [sourceConst].[relationshipEnd] = 0
|
|
67781
|
+
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
67782
|
+
),
|
|
67783
|
+
'target', (
|
|
67784
|
+
SELECT
|
|
67785
|
+
json_object (
|
|
67786
|
+
'multiplicity', [targetConst].[Multiplicity],
|
|
67787
|
+
'roleLabel', [targetConst].[RoleLabel],
|
|
67788
|
+
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
67789
|
+
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
67790
|
+
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
67791
|
+
'customAttributes', (
|
|
67792
|
+
SELECT
|
|
67793
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
67794
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67795
|
+
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
67796
|
+
ORDER BY [ca].[Ordinal]
|
|
67797
|
+
)
|
|
67798
|
+
)
|
|
67799
|
+
FROM
|
|
67800
|
+
[ClassRelationshipConstraints] [targetConst]
|
|
67801
|
+
WHERE [targetConst].[relationshipEnd] = 1
|
|
67802
|
+
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
67803
|
+
)
|
|
67804
|
+
) AS [item]
|
|
67805
|
+
FROM [meta].[ECClassDef] [class]
|
|
67806
|
+
JOIN
|
|
67807
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67808
|
+
WHERE [class].[Type] = 1 AND
|
|
67809
|
+
[sd].[Name] = :schemaName
|
|
67810
67810
|
`;
|
|
67811
67811
|
/**
|
|
67812
67812
|
* RelationshipClass query used to when querying for RelationshipClass data only. Not used
|
|
67813
67813
|
* for full Schema load via single query.
|
|
67814
67814
|
*/
|
|
67815
|
-
const relationshipClassQuery = `
|
|
67816
|
-
WITH
|
|
67817
|
-
${withClassProperties},
|
|
67818
|
-
${withRelationshipConstraints}
|
|
67819
|
-
${baseRelationshipClassQuery}
|
|
67815
|
+
const relationshipClassQuery = `
|
|
67816
|
+
WITH
|
|
67817
|
+
${withClassProperties},
|
|
67818
|
+
${withRelationshipConstraints}
|
|
67819
|
+
${baseRelationshipClassQuery}
|
|
67820
67820
|
`;
|
|
67821
67821
|
/**
|
|
67822
67822
|
* Query that provides StructClass data and is shared by two cases:
|
|
@@ -67824,37 +67824,37 @@ ${baseRelationshipClassQuery}
|
|
|
67824
67824
|
* 2. When querying a full schema with multiple schema item queries or
|
|
67825
67825
|
* when just querying for Struct classes.
|
|
67826
67826
|
*/
|
|
67827
|
-
const baseStructQuery = `
|
|
67828
|
-
SELECT
|
|
67829
|
-
[sd].Name as schema,
|
|
67830
|
-
json_object (
|
|
67831
|
-
'schemaItemType', 'StructClass',
|
|
67832
|
-
'name', [class].[Name],
|
|
67833
|
-
'label', [class].[DisplayLabel],
|
|
67834
|
-
'description', [class].[Description],
|
|
67835
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67836
|
-
'baseClass', (
|
|
67837
|
-
${selectBaseClasses}
|
|
67838
|
-
),
|
|
67839
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
67840
|
-
'properties', (
|
|
67841
|
-
${selectProperties}
|
|
67842
|
-
)
|
|
67843
|
-
) AS item
|
|
67844
|
-
FROM [meta].[ECClassDef] [class]
|
|
67845
|
-
JOIN
|
|
67846
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67847
|
-
WHERE [class].[Type] = 2 AND
|
|
67848
|
-
[sd].[Name] = :schemaName
|
|
67827
|
+
const baseStructQuery = `
|
|
67828
|
+
SELECT
|
|
67829
|
+
[sd].Name as schema,
|
|
67830
|
+
json_object (
|
|
67831
|
+
'schemaItemType', 'StructClass',
|
|
67832
|
+
'name', [class].[Name],
|
|
67833
|
+
'label', [class].[DisplayLabel],
|
|
67834
|
+
'description', [class].[Description],
|
|
67835
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67836
|
+
'baseClass', (
|
|
67837
|
+
${selectBaseClasses}
|
|
67838
|
+
),
|
|
67839
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
67840
|
+
'properties', (
|
|
67841
|
+
${selectProperties}
|
|
67842
|
+
)
|
|
67843
|
+
) AS item
|
|
67844
|
+
FROM [meta].[ECClassDef] [class]
|
|
67845
|
+
JOIN
|
|
67846
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67847
|
+
WHERE [class].[Type] = 2 AND
|
|
67848
|
+
[sd].[Name] = :schemaName
|
|
67849
67849
|
`;
|
|
67850
67850
|
/**
|
|
67851
67851
|
* StructClass query used to when querying for StructClass data only. Not used
|
|
67852
67852
|
* for full Schema load via single query.
|
|
67853
67853
|
*/
|
|
67854
|
-
const structQuery = `
|
|
67855
|
-
WITH
|
|
67856
|
-
${withClassProperties}
|
|
67857
|
-
${baseStructQuery}
|
|
67854
|
+
const structQuery = `
|
|
67855
|
+
WITH
|
|
67856
|
+
${withClassProperties}
|
|
67857
|
+
${baseStructQuery}
|
|
67858
67858
|
`;
|
|
67859
67859
|
/**
|
|
67860
67860
|
* Query that provides CustomAttributeClass data and is shared by two cases:
|
|
@@ -67862,141 +67862,141 @@ ${baseStructQuery}
|
|
|
67862
67862
|
* 2. When querying a full schema with multiple schema item queries or
|
|
67863
67863
|
* when just querying for CustomAttribute classes.
|
|
67864
67864
|
*/
|
|
67865
|
-
const baseCustomAttributeQuery = `
|
|
67866
|
-
SELECT
|
|
67867
|
-
[sd].Name as schema,
|
|
67868
|
-
json_object (
|
|
67869
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
67870
|
-
'name', [class].[Name],
|
|
67871
|
-
'label', [class].[DisplayLabel],
|
|
67872
|
-
'description', [class].[Description],
|
|
67873
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
67874
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67875
|
-
'baseClass', (
|
|
67876
|
-
${selectBaseClasses}
|
|
67877
|
-
),
|
|
67878
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
67879
|
-
'properties', (
|
|
67880
|
-
${selectProperties}
|
|
67881
|
-
)
|
|
67882
|
-
) AS [item]
|
|
67883
|
-
FROM [meta].[ECClassDef] [class]
|
|
67884
|
-
JOIN
|
|
67885
|
-
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67886
|
-
WHERE [class].[Type] = 3 AND
|
|
67887
|
-
[sd].[Name] = :schemaName
|
|
67865
|
+
const baseCustomAttributeQuery = `
|
|
67866
|
+
SELECT
|
|
67867
|
+
[sd].Name as schema,
|
|
67868
|
+
json_object (
|
|
67869
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
67870
|
+
'name', [class].[Name],
|
|
67871
|
+
'label', [class].[DisplayLabel],
|
|
67872
|
+
'description', [class].[Description],
|
|
67873
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
67874
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
67875
|
+
'baseClass', (
|
|
67876
|
+
${selectBaseClasses}
|
|
67877
|
+
),
|
|
67878
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
67879
|
+
'properties', (
|
|
67880
|
+
${selectProperties}
|
|
67881
|
+
)
|
|
67882
|
+
) AS [item]
|
|
67883
|
+
FROM [meta].[ECClassDef] [class]
|
|
67884
|
+
JOIN
|
|
67885
|
+
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
67886
|
+
WHERE [class].[Type] = 3 AND
|
|
67887
|
+
[sd].[Name] = :schemaName
|
|
67888
67888
|
`;
|
|
67889
67889
|
/**
|
|
67890
67890
|
* CustomAttributeClass query used to when querying for CustomAttributeClass data only. Not used
|
|
67891
67891
|
* for full Schema load via single query.
|
|
67892
67892
|
*/
|
|
67893
|
-
const customAttributeQuery = `
|
|
67894
|
-
WITH
|
|
67895
|
-
${withClassProperties}
|
|
67896
|
-
${baseCustomAttributeQuery}
|
|
67893
|
+
const customAttributeQuery = `
|
|
67894
|
+
WITH
|
|
67895
|
+
${withClassProperties}
|
|
67896
|
+
${baseCustomAttributeQuery}
|
|
67897
67897
|
`;
|
|
67898
67898
|
/**
|
|
67899
67899
|
* Used by full schema load query via single query. Allows
|
|
67900
67900
|
* all SchemaItemTypes to be queried at once.
|
|
67901
67901
|
*/
|
|
67902
|
-
const withSchemaItems = `
|
|
67903
|
-
SchemaItems AS (
|
|
67904
|
-
${baseEntityQuery}
|
|
67905
|
-
UNION ALL
|
|
67906
|
-
${baseRelationshipClassQuery}
|
|
67907
|
-
UNION ALL
|
|
67908
|
-
${baseStructQuery}
|
|
67909
|
-
UNION ALL
|
|
67910
|
-
${baseMixinQuery}
|
|
67911
|
-
UNION ALL
|
|
67912
|
-
${baseCustomAttributeQuery}
|
|
67913
|
-
UNION ALL
|
|
67914
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
67915
|
-
UNION ALL
|
|
67916
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
67917
|
-
UNION ALL
|
|
67918
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
67919
|
-
UNION ALL
|
|
67920
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
67921
|
-
UNION ALL
|
|
67922
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
67923
|
-
UNION ALL
|
|
67924
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
67925
|
-
UNION ALL
|
|
67926
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
67927
|
-
UNION ALL
|
|
67928
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
67929
|
-
UNION ALL
|
|
67930
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
67931
|
-
)
|
|
67902
|
+
const withSchemaItems = `
|
|
67903
|
+
SchemaItems AS (
|
|
67904
|
+
${baseEntityQuery}
|
|
67905
|
+
UNION ALL
|
|
67906
|
+
${baseRelationshipClassQuery}
|
|
67907
|
+
UNION ALL
|
|
67908
|
+
${baseStructQuery}
|
|
67909
|
+
UNION ALL
|
|
67910
|
+
${baseMixinQuery}
|
|
67911
|
+
UNION ALL
|
|
67912
|
+
${baseCustomAttributeQuery}
|
|
67913
|
+
UNION ALL
|
|
67914
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
67915
|
+
UNION ALL
|
|
67916
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
67917
|
+
UNION ALL
|
|
67918
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
67919
|
+
UNION ALL
|
|
67920
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
67921
|
+
UNION ALL
|
|
67922
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
67923
|
+
UNION ALL
|
|
67924
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
67925
|
+
UNION ALL
|
|
67926
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
67927
|
+
UNION ALL
|
|
67928
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
67929
|
+
UNION ALL
|
|
67930
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
67931
|
+
)
|
|
67932
67932
|
`;
|
|
67933
67933
|
/**
|
|
67934
67934
|
* Query for Schema data without SchemaItems
|
|
67935
67935
|
*/
|
|
67936
|
-
const schemaNoItemsQuery = `
|
|
67937
|
-
WITH
|
|
67938
|
-
${withSchemaReferences}
|
|
67939
|
-
SELECT
|
|
67940
|
-
json_object (
|
|
67941
|
-
'name', [schemaDef].[Name],
|
|
67942
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
67943
|
-
'alias', [schemaDef].[Alias],
|
|
67944
|
-
'label', [schemaDef].[DisplayLabel],
|
|
67945
|
-
'description', [schemaDef].[Description],
|
|
67946
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
67947
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
67948
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
67949
|
-
'references', (
|
|
67950
|
-
SELECT
|
|
67951
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
67952
|
-
FROM
|
|
67953
|
-
[SchemaReferences] [schemaReferences]
|
|
67954
|
-
WHERE
|
|
67955
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67956
|
-
)
|
|
67957
|
-
) as [schema]
|
|
67958
|
-
FROM
|
|
67959
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
67936
|
+
const schemaNoItemsQuery = `
|
|
67937
|
+
WITH
|
|
67938
|
+
${withSchemaReferences}
|
|
67939
|
+
SELECT
|
|
67940
|
+
json_object (
|
|
67941
|
+
'name', [schemaDef].[Name],
|
|
67942
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
67943
|
+
'alias', [schemaDef].[Alias],
|
|
67944
|
+
'label', [schemaDef].[DisplayLabel],
|
|
67945
|
+
'description', [schemaDef].[Description],
|
|
67946
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
67947
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
67948
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
67949
|
+
'references', (
|
|
67950
|
+
SELECT
|
|
67951
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
67952
|
+
FROM
|
|
67953
|
+
[SchemaReferences] [schemaReferences]
|
|
67954
|
+
WHERE
|
|
67955
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67956
|
+
)
|
|
67957
|
+
) as [schema]
|
|
67958
|
+
FROM
|
|
67959
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
67960
67960
|
`;
|
|
67961
67961
|
/**
|
|
67962
67962
|
* Query to load a full Schema via a single query.
|
|
67963
67963
|
*/
|
|
67964
|
-
const schemaQuery = `
|
|
67965
|
-
WITH
|
|
67966
|
-
${withAppliesTo},
|
|
67967
|
-
${withSchemaReferences},
|
|
67968
|
-
${withClassProperties},
|
|
67969
|
-
${withRelationshipConstraints},
|
|
67970
|
-
${withSchemaItems}
|
|
67971
|
-
SELECT
|
|
67972
|
-
json_object (
|
|
67973
|
-
'name', [schemaDef].[Name],
|
|
67974
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
67975
|
-
'alias', [schemaDef].[Alias],
|
|
67976
|
-
'label', [schemaDef].[DisplayLabel],
|
|
67977
|
-
'description', [schemaDef].[Description],
|
|
67978
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
67979
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
67980
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
67981
|
-
'references', (
|
|
67982
|
-
SELECT
|
|
67983
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
67984
|
-
FROM
|
|
67985
|
-
[SchemaReferences] [schemaReferences]
|
|
67986
|
-
WHERE
|
|
67987
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67988
|
-
),
|
|
67989
|
-
'items', (
|
|
67990
|
-
SELECT
|
|
67991
|
-
json_group_array(json(json_object(
|
|
67992
|
-
'item', json([items].[item])
|
|
67993
|
-
)))
|
|
67994
|
-
FROM
|
|
67995
|
-
[SchemaItems] [items]
|
|
67996
|
-
)
|
|
67997
|
-
) as [schema]
|
|
67998
|
-
FROM
|
|
67999
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
67964
|
+
const schemaQuery = `
|
|
67965
|
+
WITH
|
|
67966
|
+
${withAppliesTo},
|
|
67967
|
+
${withSchemaReferences},
|
|
67968
|
+
${withClassProperties},
|
|
67969
|
+
${withRelationshipConstraints},
|
|
67970
|
+
${withSchemaItems}
|
|
67971
|
+
SELECT
|
|
67972
|
+
json_object (
|
|
67973
|
+
'name', [schemaDef].[Name],
|
|
67974
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
67975
|
+
'alias', [schemaDef].[Alias],
|
|
67976
|
+
'label', [schemaDef].[DisplayLabel],
|
|
67977
|
+
'description', [schemaDef].[Description],
|
|
67978
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
67979
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
67980
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
67981
|
+
'references', (
|
|
67982
|
+
SELECT
|
|
67983
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
67984
|
+
FROM
|
|
67985
|
+
[SchemaReferences] [schemaReferences]
|
|
67986
|
+
WHERE
|
|
67987
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67988
|
+
),
|
|
67989
|
+
'items', (
|
|
67990
|
+
SELECT
|
|
67991
|
+
json_group_array(json(json_object(
|
|
67992
|
+
'item', json([items].[item])
|
|
67993
|
+
)))
|
|
67994
|
+
FROM
|
|
67995
|
+
[SchemaItems] [items]
|
|
67996
|
+
)
|
|
67997
|
+
) as [schema]
|
|
67998
|
+
FROM
|
|
67999
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
68000
68000
|
`;
|
|
68001
68001
|
/**
|
|
68002
68002
|
* Queries for loading full Schema JSON.
|
|
@@ -68502,281 +68502,281 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
68502
68502
|
* Query for SchemaItemType KindOfQuantity data.
|
|
68503
68503
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68504
68504
|
*/
|
|
68505
|
-
const kindOfQuantity = (singleSchema) => `
|
|
68506
|
-
SELECT
|
|
68507
|
-
[koq].[Schema].[Id] AS [SchemaId],
|
|
68508
|
-
json_object (
|
|
68509
|
-
'schemaItemType', 'KindOfQuantity',
|
|
68510
|
-
'name', [koq].[Name],
|
|
68511
|
-
'label', [koq].[DisplayLabel],
|
|
68512
|
-
'description', [koq].[Description],
|
|
68513
|
-
'relativeError', [koq].[RelativeError],
|
|
68514
|
-
'persistenceUnit', [koq].[PersistenceUnit]
|
|
68515
|
-
${singleSchema ? `
|
|
68516
|
-
,'presentationUnits', (
|
|
68517
|
-
SELECT json_group_array(js."value")
|
|
68518
|
-
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
68519
|
-
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
68520
|
-
) ` : ""}
|
|
68521
|
-
) as [item]
|
|
68522
|
-
FROM
|
|
68523
|
-
[meta].[KindOfQuantityDef] [koq]
|
|
68524
|
-
${singleSchema ? `
|
|
68525
|
-
JOIN
|
|
68526
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
68527
|
-
WHERE [schema].[Name] = :schemaName
|
|
68528
|
-
` : ""}
|
|
68505
|
+
const kindOfQuantity = (singleSchema) => `
|
|
68506
|
+
SELECT
|
|
68507
|
+
[koq].[Schema].[Id] AS [SchemaId],
|
|
68508
|
+
json_object (
|
|
68509
|
+
'schemaItemType', 'KindOfQuantity',
|
|
68510
|
+
'name', [koq].[Name],
|
|
68511
|
+
'label', [koq].[DisplayLabel],
|
|
68512
|
+
'description', [koq].[Description],
|
|
68513
|
+
'relativeError', [koq].[RelativeError],
|
|
68514
|
+
'persistenceUnit', [koq].[PersistenceUnit]
|
|
68515
|
+
${singleSchema ? `
|
|
68516
|
+
,'presentationUnits', (
|
|
68517
|
+
SELECT json_group_array(js."value")
|
|
68518
|
+
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
68519
|
+
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
68520
|
+
) ` : ""}
|
|
68521
|
+
) as [item]
|
|
68522
|
+
FROM
|
|
68523
|
+
[meta].[KindOfQuantityDef] [koq]
|
|
68524
|
+
${singleSchema ? `
|
|
68525
|
+
JOIN
|
|
68526
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
68527
|
+
WHERE [schema].[Name] = :schemaName
|
|
68528
|
+
` : ""}
|
|
68529
68529
|
`;
|
|
68530
68530
|
/**
|
|
68531
68531
|
* Query for SchemaItemType PropertyCategory data.
|
|
68532
68532
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68533
68533
|
*/
|
|
68534
|
-
const propertyCategory = (singleSchema) => `
|
|
68535
|
-
SELECT
|
|
68536
|
-
[pc].[Schema].[Id] AS [SchemaId],
|
|
68537
|
-
json_object (
|
|
68538
|
-
'schemaItemType', 'PropertyCategory',
|
|
68539
|
-
'name', [pc].[Name],
|
|
68540
|
-
'label', [pc].[DisplayLabel],
|
|
68541
|
-
'description', [pc].[Description],
|
|
68542
|
-
'priority', [pc].[Priority]
|
|
68543
|
-
) as [item]
|
|
68544
|
-
FROM
|
|
68545
|
-
[meta].[PropertyCategoryDef] [pc]
|
|
68546
|
-
${singleSchema ? `
|
|
68547
|
-
JOIN
|
|
68548
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
68549
|
-
WHERE [schema].[Name] = :schemaName
|
|
68550
|
-
` : ""}
|
|
68534
|
+
const propertyCategory = (singleSchema) => `
|
|
68535
|
+
SELECT
|
|
68536
|
+
[pc].[Schema].[Id] AS [SchemaId],
|
|
68537
|
+
json_object (
|
|
68538
|
+
'schemaItemType', 'PropertyCategory',
|
|
68539
|
+
'name', [pc].[Name],
|
|
68540
|
+
'label', [pc].[DisplayLabel],
|
|
68541
|
+
'description', [pc].[Description],
|
|
68542
|
+
'priority', [pc].[Priority]
|
|
68543
|
+
) as [item]
|
|
68544
|
+
FROM
|
|
68545
|
+
[meta].[PropertyCategoryDef] [pc]
|
|
68546
|
+
${singleSchema ? `
|
|
68547
|
+
JOIN
|
|
68548
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
68549
|
+
WHERE [schema].[Name] = :schemaName
|
|
68550
|
+
` : ""}
|
|
68551
68551
|
`;
|
|
68552
68552
|
/**
|
|
68553
68553
|
* Query for SchemaItemType Enumeration data.
|
|
68554
68554
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68555
68555
|
*/
|
|
68556
|
-
const enumeration = (singleSchema) => `
|
|
68557
|
-
SELECT
|
|
68558
|
-
[ed].[Schema].[Id] AS [SchemaId],
|
|
68559
|
-
json_object (
|
|
68560
|
-
'schemaItemType', 'Enumeration',
|
|
68561
|
-
'name', [ed].[Name],
|
|
68562
|
-
'label', [ed].[DisplayLabel],
|
|
68563
|
-
'description', [ed].[Description],
|
|
68564
|
-
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
68565
|
-
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
68566
|
-
'enumerators', (
|
|
68567
|
-
SELECT json_group_array(json(json_object(
|
|
68568
|
-
'name', json_extract(js."value", '$.Name'),
|
|
68569
|
-
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
68570
|
-
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
68571
|
-
'description', json_extract(js."value", '$.Description')
|
|
68572
|
-
)))
|
|
68573
|
-
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
68574
|
-
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
68575
|
-
)
|
|
68576
|
-
) as [item]
|
|
68577
|
-
FROM
|
|
68578
|
-
[meta].[ECEnumerationDef] [ed]
|
|
68579
|
-
${singleSchema ? `
|
|
68580
|
-
JOIN
|
|
68581
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
68582
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68556
|
+
const enumeration = (singleSchema) => `
|
|
68557
|
+
SELECT
|
|
68558
|
+
[ed].[Schema].[Id] AS [SchemaId],
|
|
68559
|
+
json_object (
|
|
68560
|
+
'schemaItemType', 'Enumeration',
|
|
68561
|
+
'name', [ed].[Name],
|
|
68562
|
+
'label', [ed].[DisplayLabel],
|
|
68563
|
+
'description', [ed].[Description],
|
|
68564
|
+
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
68565
|
+
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
68566
|
+
'enumerators', (
|
|
68567
|
+
SELECT json_group_array(json(json_object(
|
|
68568
|
+
'name', json_extract(js."value", '$.Name'),
|
|
68569
|
+
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
68570
|
+
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
68571
|
+
'description', json_extract(js."value", '$.Description')
|
|
68572
|
+
)))
|
|
68573
|
+
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
68574
|
+
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
68575
|
+
)
|
|
68576
|
+
) as [item]
|
|
68577
|
+
FROM
|
|
68578
|
+
[meta].[ECEnumerationDef] [ed]
|
|
68579
|
+
${singleSchema ? `
|
|
68580
|
+
JOIN
|
|
68581
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
68582
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68583
68583
|
`;
|
|
68584
68584
|
/**
|
|
68585
68585
|
* Query for SchemaItemType Unit data.
|
|
68586
68586
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68587
68587
|
*/
|
|
68588
|
-
const unit = (singleSchema) => `
|
|
68589
|
-
SELECT
|
|
68590
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
68591
|
-
json_object (
|
|
68592
|
-
'schemaItemType', 'Unit',
|
|
68593
|
-
'name', [ud].[Name],
|
|
68594
|
-
'label', [ud].[DisplayLabel],
|
|
68595
|
-
'description', [ud].[Description],
|
|
68596
|
-
'definition', [ud].[Definition],
|
|
68597
|
-
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
68598
|
-
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
68599
|
-
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
68600
|
-
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
68601
|
-
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
68602
|
-
) as item
|
|
68603
|
-
FROM
|
|
68604
|
-
[meta].[UnitDef] [ud]
|
|
68605
|
-
${singleSchema ? `
|
|
68606
|
-
JOIN
|
|
68607
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
68608
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
68609
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
68610
|
-
JOIN [meta].[ECSchemaDef] [uss]
|
|
68611
|
-
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
68612
|
-
JOIN [meta].[PhenomenonDef] [pd]
|
|
68613
|
-
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
68614
|
-
JOIN [meta].[ECSchemaDef] [ps]
|
|
68615
|
-
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
68616
|
-
WHERE
|
|
68617
|
-
${singleSchema ? `
|
|
68618
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
68619
|
-
[ud].[IsConstant] = 0 AND
|
|
68620
|
-
[ud].[InvertingUnit] IS NULL
|
|
68588
|
+
const unit = (singleSchema) => `
|
|
68589
|
+
SELECT
|
|
68590
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
68591
|
+
json_object (
|
|
68592
|
+
'schemaItemType', 'Unit',
|
|
68593
|
+
'name', [ud].[Name],
|
|
68594
|
+
'label', [ud].[DisplayLabel],
|
|
68595
|
+
'description', [ud].[Description],
|
|
68596
|
+
'definition', [ud].[Definition],
|
|
68597
|
+
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
68598
|
+
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
68599
|
+
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
68600
|
+
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
68601
|
+
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
68602
|
+
) as item
|
|
68603
|
+
FROM
|
|
68604
|
+
[meta].[UnitDef] [ud]
|
|
68605
|
+
${singleSchema ? `
|
|
68606
|
+
JOIN
|
|
68607
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
68608
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
68609
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
68610
|
+
JOIN [meta].[ECSchemaDef] [uss]
|
|
68611
|
+
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
68612
|
+
JOIN [meta].[PhenomenonDef] [pd]
|
|
68613
|
+
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
68614
|
+
JOIN [meta].[ECSchemaDef] [ps]
|
|
68615
|
+
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
68616
|
+
WHERE
|
|
68617
|
+
${singleSchema ? `
|
|
68618
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
68619
|
+
[ud].[IsConstant] = 0 AND
|
|
68620
|
+
[ud].[InvertingUnit] IS NULL
|
|
68621
68621
|
`;
|
|
68622
68622
|
/**
|
|
68623
68623
|
* Query for SchemaItemType InvertedUnit data.
|
|
68624
68624
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68625
68625
|
*/
|
|
68626
|
-
const invertedUnit = (singleSchema) => `
|
|
68627
|
-
SELECT
|
|
68628
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
68629
|
-
json_object (
|
|
68630
|
-
'schemaItemType', 'InvertedUnit',
|
|
68631
|
-
'name', [ud].[Name],
|
|
68632
|
-
'label', [ud].[DisplayLabel],
|
|
68633
|
-
'description', [ud].[Description],
|
|
68634
|
-
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
68635
|
-
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
68636
|
-
) as [item]
|
|
68637
|
-
FROM
|
|
68638
|
-
[meta].[UnitDef] [ud]
|
|
68639
|
-
${singleSchema ? `
|
|
68640
|
-
JOIN
|
|
68641
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
68642
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
68643
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
68644
|
-
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
68645
|
-
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
68646
|
-
LEFT JOIN [meta].[UnitDef] [iud]
|
|
68647
|
-
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
68648
|
-
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
68649
|
-
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
68650
|
-
WHERE
|
|
68651
|
-
${singleSchema ? `
|
|
68652
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
68653
|
-
[ud].[IsConstant] = 0 AND
|
|
68654
|
-
[ud].[InvertingUnit] IS NOT NULL
|
|
68626
|
+
const invertedUnit = (singleSchema) => `
|
|
68627
|
+
SELECT
|
|
68628
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
68629
|
+
json_object (
|
|
68630
|
+
'schemaItemType', 'InvertedUnit',
|
|
68631
|
+
'name', [ud].[Name],
|
|
68632
|
+
'label', [ud].[DisplayLabel],
|
|
68633
|
+
'description', [ud].[Description],
|
|
68634
|
+
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
68635
|
+
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
68636
|
+
) as [item]
|
|
68637
|
+
FROM
|
|
68638
|
+
[meta].[UnitDef] [ud]
|
|
68639
|
+
${singleSchema ? `
|
|
68640
|
+
JOIN
|
|
68641
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
68642
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
68643
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
68644
|
+
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
68645
|
+
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
68646
|
+
LEFT JOIN [meta].[UnitDef] [iud]
|
|
68647
|
+
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
68648
|
+
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
68649
|
+
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
68650
|
+
WHERE
|
|
68651
|
+
${singleSchema ? `
|
|
68652
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
68653
|
+
[ud].[IsConstant] = 0 AND
|
|
68654
|
+
[ud].[InvertingUnit] IS NOT NULL
|
|
68655
68655
|
`;
|
|
68656
68656
|
/**
|
|
68657
68657
|
* Query for SchemaItemType Constant data.
|
|
68658
68658
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68659
68659
|
*/
|
|
68660
|
-
const constant = (singleSchema) => `
|
|
68661
|
-
SELECT
|
|
68662
|
-
[cd].[Schema].[Id] AS [SchemaId],
|
|
68663
|
-
json_object(
|
|
68664
|
-
'schemaItemType', 'Constant',
|
|
68665
|
-
'name', [cd].[Name],
|
|
68666
|
-
'label', [cd].[DisplayLabel],
|
|
68667
|
-
'description', [cd].[Description],
|
|
68668
|
-
'definition', [cd].[Definition],
|
|
68669
|
-
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
68670
|
-
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
68671
|
-
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
68672
|
-
) as item
|
|
68673
|
-
FROM
|
|
68674
|
-
[meta].[UnitDef] [cd]
|
|
68675
|
-
${singleSchema ? `
|
|
68676
|
-
JOIN
|
|
68677
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
68678
|
-
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
68679
|
-
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
68680
|
-
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
68681
|
-
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
68682
|
-
WHERE
|
|
68683
|
-
${singleSchema ? `
|
|
68684
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
68685
|
-
[cd].[IsConstant] = 1
|
|
68660
|
+
const constant = (singleSchema) => `
|
|
68661
|
+
SELECT
|
|
68662
|
+
[cd].[Schema].[Id] AS [SchemaId],
|
|
68663
|
+
json_object(
|
|
68664
|
+
'schemaItemType', 'Constant',
|
|
68665
|
+
'name', [cd].[Name],
|
|
68666
|
+
'label', [cd].[DisplayLabel],
|
|
68667
|
+
'description', [cd].[Description],
|
|
68668
|
+
'definition', [cd].[Definition],
|
|
68669
|
+
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
68670
|
+
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
68671
|
+
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
68672
|
+
) as item
|
|
68673
|
+
FROM
|
|
68674
|
+
[meta].[UnitDef] [cd]
|
|
68675
|
+
${singleSchema ? `
|
|
68676
|
+
JOIN
|
|
68677
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
68678
|
+
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
68679
|
+
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
68680
|
+
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
68681
|
+
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
68682
|
+
WHERE
|
|
68683
|
+
${singleSchema ? `
|
|
68684
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
68685
|
+
[cd].[IsConstant] = 1
|
|
68686
68686
|
`;
|
|
68687
68687
|
/**
|
|
68688
68688
|
* Query for SchemaItemType UnitSystem data.
|
|
68689
68689
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68690
68690
|
*/
|
|
68691
|
-
const unitSystem = (singleSchema) => `
|
|
68692
|
-
SELECT
|
|
68693
|
-
[us].[Schema].[Id] AS [SchemaId],
|
|
68694
|
-
json_object (
|
|
68695
|
-
'schemaItemType', 'UnitSystem',
|
|
68696
|
-
'name', [us].[Name],
|
|
68697
|
-
'label', [us].[DisplayLabel],
|
|
68698
|
-
'description', [us].[Description]
|
|
68699
|
-
) as [item]
|
|
68700
|
-
FROM
|
|
68701
|
-
[meta].[UnitSystemDef] [us]
|
|
68702
|
-
${singleSchema ? `
|
|
68703
|
-
JOIN
|
|
68704
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
68705
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68691
|
+
const unitSystem = (singleSchema) => `
|
|
68692
|
+
SELECT
|
|
68693
|
+
[us].[Schema].[Id] AS [SchemaId],
|
|
68694
|
+
json_object (
|
|
68695
|
+
'schemaItemType', 'UnitSystem',
|
|
68696
|
+
'name', [us].[Name],
|
|
68697
|
+
'label', [us].[DisplayLabel],
|
|
68698
|
+
'description', [us].[Description]
|
|
68699
|
+
) as [item]
|
|
68700
|
+
FROM
|
|
68701
|
+
[meta].[UnitSystemDef] [us]
|
|
68702
|
+
${singleSchema ? `
|
|
68703
|
+
JOIN
|
|
68704
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
68705
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68706
68706
|
`;
|
|
68707
68707
|
/**
|
|
68708
68708
|
* Query for SchemaItemType Phenomenon data.
|
|
68709
68709
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68710
68710
|
*/
|
|
68711
|
-
const phenomenon = (singleSchema) => `
|
|
68712
|
-
SELECT
|
|
68713
|
-
[pd].[Schema].[Id] AS [SchemaId],
|
|
68714
|
-
json_object(
|
|
68715
|
-
'schemaItemType', 'Phenomenon',
|
|
68716
|
-
'name', [pd].[Name],
|
|
68717
|
-
'label', [pd].[DisplayLabel],
|
|
68718
|
-
'description', [pd].[Description],
|
|
68719
|
-
'definition', [pd].[Definition]
|
|
68720
|
-
) as [item]
|
|
68721
|
-
FROM
|
|
68722
|
-
[meta].[PhenomenonDef] [pd]
|
|
68723
|
-
${singleSchema ? `
|
|
68724
|
-
JOIN
|
|
68725
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
68726
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68711
|
+
const phenomenon = (singleSchema) => `
|
|
68712
|
+
SELECT
|
|
68713
|
+
[pd].[Schema].[Id] AS [SchemaId],
|
|
68714
|
+
json_object(
|
|
68715
|
+
'schemaItemType', 'Phenomenon',
|
|
68716
|
+
'name', [pd].[Name],
|
|
68717
|
+
'label', [pd].[DisplayLabel],
|
|
68718
|
+
'description', [pd].[Description],
|
|
68719
|
+
'definition', [pd].[Definition]
|
|
68720
|
+
) as [item]
|
|
68721
|
+
FROM
|
|
68722
|
+
[meta].[PhenomenonDef] [pd]
|
|
68723
|
+
${singleSchema ? `
|
|
68724
|
+
JOIN
|
|
68725
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
68726
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68727
68727
|
`;
|
|
68728
68728
|
/**
|
|
68729
68729
|
* Query for SchemaItemType Format data.
|
|
68730
68730
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
68731
68731
|
*/
|
|
68732
|
-
const format = (singleSchema) => `
|
|
68733
|
-
SELECT
|
|
68734
|
-
[fd].[Schema].[Id] AS [SchemaId],
|
|
68735
|
-
json_object(
|
|
68736
|
-
'schemaItemType', 'Format',
|
|
68737
|
-
'name', [fd].[Name],
|
|
68738
|
-
'label', [fd].[DisplayLabel],
|
|
68739
|
-
'description', [fd].[Description],
|
|
68740
|
-
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
68741
|
-
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
68742
|
-
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
68743
|
-
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
68744
|
-
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
68745
|
-
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
68746
|
-
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
68747
|
-
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
68748
|
-
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
68749
|
-
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
68750
|
-
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
68751
|
-
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
68752
|
-
${singleSchema ? `
|
|
68753
|
-
,'composite', (
|
|
68754
|
-
SELECT
|
|
68755
|
-
json_object(
|
|
68756
|
-
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
68757
|
-
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
68758
|
-
'units', (
|
|
68759
|
-
SELECT json_group_array(json(json_object(
|
|
68760
|
-
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
68761
|
-
'label', [fud].[Label]
|
|
68762
|
-
)))
|
|
68763
|
-
FROM [meta].[FormatDef] [fd2]
|
|
68764
|
-
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
68765
|
-
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
68766
|
-
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
68767
|
-
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
68768
|
-
)
|
|
68769
|
-
)
|
|
68770
|
-
FROM [meta].[FormatDef] [fd1]
|
|
68771
|
-
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
68772
|
-
)` : ""}
|
|
68773
|
-
) AS item
|
|
68774
|
-
FROM
|
|
68775
|
-
[meta].[FormatDef] [fd]
|
|
68776
|
-
${singleSchema ? `
|
|
68777
|
-
JOIN
|
|
68778
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
68779
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68732
|
+
const format = (singleSchema) => `
|
|
68733
|
+
SELECT
|
|
68734
|
+
[fd].[Schema].[Id] AS [SchemaId],
|
|
68735
|
+
json_object(
|
|
68736
|
+
'schemaItemType', 'Format',
|
|
68737
|
+
'name', [fd].[Name],
|
|
68738
|
+
'label', [fd].[DisplayLabel],
|
|
68739
|
+
'description', [fd].[Description],
|
|
68740
|
+
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
68741
|
+
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
68742
|
+
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
68743
|
+
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
68744
|
+
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
68745
|
+
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
68746
|
+
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
68747
|
+
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
68748
|
+
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
68749
|
+
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
68750
|
+
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
68751
|
+
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
68752
|
+
${singleSchema ? `
|
|
68753
|
+
,'composite', (
|
|
68754
|
+
SELECT
|
|
68755
|
+
json_object(
|
|
68756
|
+
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
68757
|
+
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
68758
|
+
'units', (
|
|
68759
|
+
SELECT json_group_array(json(json_object(
|
|
68760
|
+
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
68761
|
+
'label', [fud].[Label]
|
|
68762
|
+
)))
|
|
68763
|
+
FROM [meta].[FormatDef] [fd2]
|
|
68764
|
+
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
68765
|
+
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
68766
|
+
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
68767
|
+
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
68768
|
+
)
|
|
68769
|
+
)
|
|
68770
|
+
FROM [meta].[FormatDef] [fd1]
|
|
68771
|
+
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
68772
|
+
)` : ""}
|
|
68773
|
+
) AS item
|
|
68774
|
+
FROM
|
|
68775
|
+
[meta].[FormatDef] [fd]
|
|
68776
|
+
${singleSchema ? `
|
|
68777
|
+
JOIN
|
|
68778
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
68779
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
68780
68780
|
`;
|
|
68781
68781
|
/**
|
|
68782
68782
|
* Queries for each SchemaItemType
|
|
@@ -68942,332 +68942,332 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
68942
68942
|
*--------------------------------------------------------------------------------------------*/
|
|
68943
68943
|
|
|
68944
68944
|
const modifier = (alias) => {
|
|
68945
|
-
return `
|
|
68946
|
-
CASE
|
|
68947
|
-
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
68948
|
-
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
68949
|
-
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
68950
|
-
ELSE NULL
|
|
68951
|
-
END
|
|
68945
|
+
return `
|
|
68946
|
+
CASE
|
|
68947
|
+
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
68948
|
+
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
68949
|
+
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
68950
|
+
ELSE NULL
|
|
68951
|
+
END
|
|
68952
68952
|
`;
|
|
68953
68953
|
};
|
|
68954
68954
|
const strength = (alias) => {
|
|
68955
|
-
return `
|
|
68956
|
-
CASE
|
|
68957
|
-
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
68958
|
-
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
68959
|
-
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
68960
|
-
ELSE NULL
|
|
68961
|
-
END
|
|
68955
|
+
return `
|
|
68956
|
+
CASE
|
|
68957
|
+
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
68958
|
+
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
68959
|
+
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
68960
|
+
ELSE NULL
|
|
68961
|
+
END
|
|
68962
68962
|
`;
|
|
68963
68963
|
};
|
|
68964
68964
|
const strengthDirection = (alias) => {
|
|
68965
|
-
return `
|
|
68966
|
-
CASE
|
|
68967
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
68968
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
68969
|
-
ELSE NULL
|
|
68970
|
-
END
|
|
68965
|
+
return `
|
|
68966
|
+
CASE
|
|
68967
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
68968
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
68969
|
+
ELSE NULL
|
|
68970
|
+
END
|
|
68971
68971
|
`;
|
|
68972
68972
|
};
|
|
68973
|
-
const withAppliesTo = `
|
|
68974
|
-
AppliesToCTE AS (
|
|
68975
|
-
SELECT
|
|
68976
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
68977
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
68978
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
68979
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
68980
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
68981
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
68982
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
68983
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
68984
|
-
WHERE [ca].[ContainerType] = 30
|
|
68985
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
68986
|
-
)
|
|
68973
|
+
const withAppliesTo = `
|
|
68974
|
+
AppliesToCTE AS (
|
|
68975
|
+
SELECT
|
|
68976
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
68977
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
68978
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
68979
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
68980
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
68981
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
68982
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
68983
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
68984
|
+
WHERE [ca].[ContainerType] = 30
|
|
68985
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
68986
|
+
)
|
|
68987
68987
|
`;
|
|
68988
|
-
const withSchemaReferences = `
|
|
68989
|
-
SchemaReferences AS (
|
|
68990
|
-
SELECT
|
|
68991
|
-
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
68992
|
-
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
68993
|
-
FROM
|
|
68994
|
-
[meta].[ECSchemaDef] AS [refSchema]
|
|
68995
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
68996
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
68997
|
-
)
|
|
68988
|
+
const withSchemaReferences = `
|
|
68989
|
+
SchemaReferences AS (
|
|
68990
|
+
SELECT
|
|
68991
|
+
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
68992
|
+
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
68993
|
+
FROM
|
|
68994
|
+
[meta].[ECSchemaDef] AS [refSchema]
|
|
68995
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
68996
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
68997
|
+
)
|
|
68998
68998
|
`;
|
|
68999
|
-
const customAttributeQuery = `
|
|
69000
|
-
SELECT
|
|
69001
|
-
[Schema].[Id] AS [SchemaId],
|
|
69002
|
-
json_object(
|
|
69003
|
-
'name', [class].[Name],
|
|
69004
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
69005
|
-
'modifier', ${modifier("class")},
|
|
69006
|
-
'label', [class].[DisplayLabel],
|
|
69007
|
-
'description', [class].[Description],
|
|
69008
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
69009
|
-
'baseClasses', (
|
|
69010
|
-
SELECT
|
|
69011
|
-
json_group_array(json(json_object(
|
|
69012
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69013
|
-
'name', [baseClass].[Name],
|
|
69014
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
69015
|
-
'modifier', ${modifier("baseClass")},
|
|
69016
|
-
'label', [baseClass].[DisplayLabel],
|
|
69017
|
-
'description', [baseClass].[Description],
|
|
69018
|
-
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
69019
|
-
)))
|
|
69020
|
-
FROM
|
|
69021
|
-
[meta].[ECClassDef] [baseClass]
|
|
69022
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69023
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69024
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69025
|
-
)
|
|
69026
|
-
) AS [item]
|
|
69027
|
-
FROM [meta].[ECClassDef] [class]
|
|
69028
|
-
WHERE [class].[Type] = 3
|
|
68999
|
+
const customAttributeQuery = `
|
|
69000
|
+
SELECT
|
|
69001
|
+
[Schema].[Id] AS [SchemaId],
|
|
69002
|
+
json_object(
|
|
69003
|
+
'name', [class].[Name],
|
|
69004
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
69005
|
+
'modifier', ${modifier("class")},
|
|
69006
|
+
'label', [class].[DisplayLabel],
|
|
69007
|
+
'description', [class].[Description],
|
|
69008
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
69009
|
+
'baseClasses', (
|
|
69010
|
+
SELECT
|
|
69011
|
+
json_group_array(json(json_object(
|
|
69012
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69013
|
+
'name', [baseClass].[Name],
|
|
69014
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
69015
|
+
'modifier', ${modifier("baseClass")},
|
|
69016
|
+
'label', [baseClass].[DisplayLabel],
|
|
69017
|
+
'description', [baseClass].[Description],
|
|
69018
|
+
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
69019
|
+
)))
|
|
69020
|
+
FROM
|
|
69021
|
+
[meta].[ECClassDef] [baseClass]
|
|
69022
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69023
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69024
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69025
|
+
)
|
|
69026
|
+
) AS [item]
|
|
69027
|
+
FROM [meta].[ECClassDef] [class]
|
|
69028
|
+
WHERE [class].[Type] = 3
|
|
69029
69029
|
`;
|
|
69030
|
-
const structQuery = `
|
|
69031
|
-
SELECT
|
|
69032
|
-
[Schema].[Id] AS [SchemaId],
|
|
69033
|
-
json_object(
|
|
69034
|
-
'name', [class].[Name],
|
|
69035
|
-
'schemaItemType', 'StructClass',
|
|
69036
|
-
'modifier', ${modifier("class")},
|
|
69037
|
-
'label', [class].[DisplayLabel],
|
|
69038
|
-
'description', [class].[Description],
|
|
69039
|
-
'baseClasses', (
|
|
69040
|
-
SELECT
|
|
69041
|
-
json_group_array(json(json_object(
|
|
69042
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69043
|
-
'name', [baseClass].[Name],
|
|
69044
|
-
'schemaItemType', 'StructClass',
|
|
69045
|
-
'modifier', ${modifier("baseClass")},
|
|
69046
|
-
'label', [baseClass].[DisplayLabel],
|
|
69047
|
-
'description', [baseClass].[Description]
|
|
69048
|
-
)))
|
|
69049
|
-
FROM
|
|
69050
|
-
[meta].[ECClassDef] [baseClass]
|
|
69051
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69052
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69053
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69054
|
-
)
|
|
69055
|
-
) AS [item]
|
|
69056
|
-
FROM [meta].[ECClassDef] [class]
|
|
69057
|
-
WHERE [class].[Type] = 2
|
|
69030
|
+
const structQuery = `
|
|
69031
|
+
SELECT
|
|
69032
|
+
[Schema].[Id] AS [SchemaId],
|
|
69033
|
+
json_object(
|
|
69034
|
+
'name', [class].[Name],
|
|
69035
|
+
'schemaItemType', 'StructClass',
|
|
69036
|
+
'modifier', ${modifier("class")},
|
|
69037
|
+
'label', [class].[DisplayLabel],
|
|
69038
|
+
'description', [class].[Description],
|
|
69039
|
+
'baseClasses', (
|
|
69040
|
+
SELECT
|
|
69041
|
+
json_group_array(json(json_object(
|
|
69042
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69043
|
+
'name', [baseClass].[Name],
|
|
69044
|
+
'schemaItemType', 'StructClass',
|
|
69045
|
+
'modifier', ${modifier("baseClass")},
|
|
69046
|
+
'label', [baseClass].[DisplayLabel],
|
|
69047
|
+
'description', [baseClass].[Description]
|
|
69048
|
+
)))
|
|
69049
|
+
FROM
|
|
69050
|
+
[meta].[ECClassDef] [baseClass]
|
|
69051
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69052
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69053
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69054
|
+
)
|
|
69055
|
+
) AS [item]
|
|
69056
|
+
FROM [meta].[ECClassDef] [class]
|
|
69057
|
+
WHERE [class].[Type] = 2
|
|
69058
69058
|
`;
|
|
69059
|
-
const relationshipQuery = `
|
|
69060
|
-
SELECT
|
|
69061
|
-
[Schema].[Id] AS [SchemaId],
|
|
69062
|
-
json_object(
|
|
69063
|
-
'name', [class].[Name],
|
|
69064
|
-
'schemaItemType', 'RelationshipClass',
|
|
69065
|
-
'modifier', ${modifier("class")},
|
|
69066
|
-
'label', [class].[DisplayLabel],
|
|
69067
|
-
'description', [class].[Description],
|
|
69068
|
-
'strength', ${strength("class")},
|
|
69069
|
-
'strengthDirection', ${strengthDirection("class")},
|
|
69070
|
-
'baseClasses', (
|
|
69071
|
-
SELECT
|
|
69072
|
-
json_group_array(json(json_object(
|
|
69073
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69074
|
-
'name', [baseClass].[Name],
|
|
69075
|
-
'schemaItemType', 'RelationshipClass',
|
|
69076
|
-
'modifier', ${modifier("baseClass")},
|
|
69077
|
-
'label', [baseClass].[DisplayLabel],
|
|
69078
|
-
'description', [baseClass].[Description],
|
|
69079
|
-
'strength', ${strength("baseClass")},
|
|
69080
|
-
'strengthDirection', ${strengthDirection("baseClass")}
|
|
69081
|
-
)))
|
|
69082
|
-
FROM
|
|
69083
|
-
[meta].[ECClassDef] [baseClass]
|
|
69084
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69085
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69086
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69087
|
-
)
|
|
69088
|
-
) AS [item]
|
|
69089
|
-
FROM [meta].[ECClassDef] [class]
|
|
69090
|
-
WHERE [class].[Type] = 1
|
|
69059
|
+
const relationshipQuery = `
|
|
69060
|
+
SELECT
|
|
69061
|
+
[Schema].[Id] AS [SchemaId],
|
|
69062
|
+
json_object(
|
|
69063
|
+
'name', [class].[Name],
|
|
69064
|
+
'schemaItemType', 'RelationshipClass',
|
|
69065
|
+
'modifier', ${modifier("class")},
|
|
69066
|
+
'label', [class].[DisplayLabel],
|
|
69067
|
+
'description', [class].[Description],
|
|
69068
|
+
'strength', ${strength("class")},
|
|
69069
|
+
'strengthDirection', ${strengthDirection("class")},
|
|
69070
|
+
'baseClasses', (
|
|
69071
|
+
SELECT
|
|
69072
|
+
json_group_array(json(json_object(
|
|
69073
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69074
|
+
'name', [baseClass].[Name],
|
|
69075
|
+
'schemaItemType', 'RelationshipClass',
|
|
69076
|
+
'modifier', ${modifier("baseClass")},
|
|
69077
|
+
'label', [baseClass].[DisplayLabel],
|
|
69078
|
+
'description', [baseClass].[Description],
|
|
69079
|
+
'strength', ${strength("baseClass")},
|
|
69080
|
+
'strengthDirection', ${strengthDirection("baseClass")}
|
|
69081
|
+
)))
|
|
69082
|
+
FROM
|
|
69083
|
+
[meta].[ECClassDef] [baseClass]
|
|
69084
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69085
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69086
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69087
|
+
)
|
|
69088
|
+
) AS [item]
|
|
69089
|
+
FROM [meta].[ECClassDef] [class]
|
|
69090
|
+
WHERE [class].[Type] = 1
|
|
69091
69091
|
`;
|
|
69092
|
-
const entityQuery = `
|
|
69093
|
-
SELECT
|
|
69094
|
-
[Schema].[Id] AS [SchemaId],
|
|
69095
|
-
json_object(
|
|
69096
|
-
'name', [class].[Name],
|
|
69097
|
-
'schemaItemType', 'EntityClass',
|
|
69098
|
-
'modifier', ${modifier("class")},
|
|
69099
|
-
'label', [class].[DisplayLabel],
|
|
69100
|
-
'description', [class].[Description],
|
|
69101
|
-
'baseClasses', (
|
|
69102
|
-
SELECT
|
|
69103
|
-
json_group_array(json(json_object(
|
|
69104
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69105
|
-
'name', [baseClass].[Name],
|
|
69106
|
-
'schemaItemType', 'EntityClass',
|
|
69107
|
-
'modifier', ${modifier("baseClass")},
|
|
69108
|
-
'label', [baseClass].[DisplayLabel],
|
|
69109
|
-
'description', [baseClass].[Description]
|
|
69110
|
-
)))
|
|
69111
|
-
FROM
|
|
69112
|
-
[meta].[ECClassDef] [baseClass]
|
|
69113
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69114
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69115
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69116
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
69117
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69118
|
-
),
|
|
69119
|
-
'mixins', (
|
|
69120
|
-
SELECT
|
|
69121
|
-
json_group_array(json(json_object(
|
|
69122
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69123
|
-
'name', [baseClass].[Name],
|
|
69124
|
-
'schemaItemType', 'Mixin',
|
|
69125
|
-
'modifier', ${modifier("baseClass")},
|
|
69126
|
-
'label', [baseClass].[DisplayLabel],
|
|
69127
|
-
'description', [baseClass].[Description],
|
|
69128
|
-
'appliesTo', (
|
|
69129
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69130
|
-
FROM [AppliesToCTE] [atCTE]
|
|
69131
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
69132
|
-
),
|
|
69133
|
-
'baseClasses', (
|
|
69134
|
-
SELECT
|
|
69135
|
-
json_group_array(json(json_object(
|
|
69136
|
-
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
69137
|
-
'name', [mixinBaseClass].[Name],
|
|
69138
|
-
'schemaItemType', 'Mixin',
|
|
69139
|
-
'modifier', ${modifier("mixinBaseClass")},
|
|
69140
|
-
'label', [mixinBaseClass].[DisplayLabel],
|
|
69141
|
-
'description', [mixinBaseClass].[Description],
|
|
69142
|
-
'appliesTo', (
|
|
69143
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69144
|
-
FROM [AppliesToCTE] [atCTE]
|
|
69145
|
-
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
69146
|
-
)
|
|
69147
|
-
)))
|
|
69148
|
-
FROM
|
|
69149
|
-
[meta].[ECClassDef] [mixinBaseClass]
|
|
69150
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
69151
|
-
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
69152
|
-
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
69153
|
-
)
|
|
69154
|
-
)))
|
|
69155
|
-
FROM
|
|
69156
|
-
[meta].[ECClassDef] [baseClass]
|
|
69157
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
69158
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69159
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69160
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
69161
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69162
|
-
)
|
|
69163
|
-
) AS [item]
|
|
69164
|
-
FROM [meta].[ECClassDef] [class]
|
|
69165
|
-
WHERE [class].[Type] = 0
|
|
69166
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
69167
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69092
|
+
const entityQuery = `
|
|
69093
|
+
SELECT
|
|
69094
|
+
[Schema].[Id] AS [SchemaId],
|
|
69095
|
+
json_object(
|
|
69096
|
+
'name', [class].[Name],
|
|
69097
|
+
'schemaItemType', 'EntityClass',
|
|
69098
|
+
'modifier', ${modifier("class")},
|
|
69099
|
+
'label', [class].[DisplayLabel],
|
|
69100
|
+
'description', [class].[Description],
|
|
69101
|
+
'baseClasses', (
|
|
69102
|
+
SELECT
|
|
69103
|
+
json_group_array(json(json_object(
|
|
69104
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69105
|
+
'name', [baseClass].[Name],
|
|
69106
|
+
'schemaItemType', 'EntityClass',
|
|
69107
|
+
'modifier', ${modifier("baseClass")},
|
|
69108
|
+
'label', [baseClass].[DisplayLabel],
|
|
69109
|
+
'description', [baseClass].[Description]
|
|
69110
|
+
)))
|
|
69111
|
+
FROM
|
|
69112
|
+
[meta].[ECClassDef] [baseClass]
|
|
69113
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69114
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69115
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69116
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
69117
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69118
|
+
),
|
|
69119
|
+
'mixins', (
|
|
69120
|
+
SELECT
|
|
69121
|
+
json_group_array(json(json_object(
|
|
69122
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69123
|
+
'name', [baseClass].[Name],
|
|
69124
|
+
'schemaItemType', 'Mixin',
|
|
69125
|
+
'modifier', ${modifier("baseClass")},
|
|
69126
|
+
'label', [baseClass].[DisplayLabel],
|
|
69127
|
+
'description', [baseClass].[Description],
|
|
69128
|
+
'appliesTo', (
|
|
69129
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69130
|
+
FROM [AppliesToCTE] [atCTE]
|
|
69131
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
69132
|
+
),
|
|
69133
|
+
'baseClasses', (
|
|
69134
|
+
SELECT
|
|
69135
|
+
json_group_array(json(json_object(
|
|
69136
|
+
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
69137
|
+
'name', [mixinBaseClass].[Name],
|
|
69138
|
+
'schemaItemType', 'Mixin',
|
|
69139
|
+
'modifier', ${modifier("mixinBaseClass")},
|
|
69140
|
+
'label', [mixinBaseClass].[DisplayLabel],
|
|
69141
|
+
'description', [mixinBaseClass].[Description],
|
|
69142
|
+
'appliesTo', (
|
|
69143
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69144
|
+
FROM [AppliesToCTE] [atCTE]
|
|
69145
|
+
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
69146
|
+
)
|
|
69147
|
+
)))
|
|
69148
|
+
FROM
|
|
69149
|
+
[meta].[ECClassDef] [mixinBaseClass]
|
|
69150
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
69151
|
+
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
69152
|
+
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
69153
|
+
)
|
|
69154
|
+
)))
|
|
69155
|
+
FROM
|
|
69156
|
+
[meta].[ECClassDef] [baseClass]
|
|
69157
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
69158
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69159
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69160
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
69161
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69162
|
+
)
|
|
69163
|
+
) AS [item]
|
|
69164
|
+
FROM [meta].[ECClassDef] [class]
|
|
69165
|
+
WHERE [class].[Type] = 0
|
|
69166
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
69167
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69168
69168
|
`;
|
|
69169
|
-
const mixinQuery = `
|
|
69170
|
-
SELECT
|
|
69171
|
-
[Schema].[Id] AS [SchemaId],
|
|
69172
|
-
json_object(
|
|
69173
|
-
'name', [class].[Name],
|
|
69174
|
-
'schemaItemType', 'Mixin',
|
|
69175
|
-
'modifier', ${modifier("class")},
|
|
69176
|
-
'label', [class].[DisplayLabel],
|
|
69177
|
-
'description', [class].[Description],
|
|
69178
|
-
'appliesTo', (
|
|
69179
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69180
|
-
FROM [AppliesToCTE] [atCTE]
|
|
69181
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
69182
|
-
),
|
|
69183
|
-
'baseClasses', (
|
|
69184
|
-
SELECT
|
|
69185
|
-
json_group_array(json(json_object(
|
|
69186
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69187
|
-
'name', [baseClass].[Name],
|
|
69188
|
-
'schemaItemType', 'Mixin',
|
|
69189
|
-
'modifier', ${modifier("baseClass")},
|
|
69190
|
-
'label', [baseClass].[DisplayLabel],
|
|
69191
|
-
'description', [baseClass].[Description],
|
|
69192
|
-
'appliesTo', (
|
|
69193
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69194
|
-
FROM [AppliesToCTE] [atCTE]
|
|
69195
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
69196
|
-
)
|
|
69197
|
-
)))
|
|
69198
|
-
FROM
|
|
69199
|
-
[meta].[ECClassDef] [baseClass]
|
|
69200
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69201
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69202
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69203
|
-
)
|
|
69204
|
-
) AS [item]
|
|
69205
|
-
FROM [meta].[ECClassDef] [class]
|
|
69206
|
-
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
69207
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69169
|
+
const mixinQuery = `
|
|
69170
|
+
SELECT
|
|
69171
|
+
[Schema].[Id] AS [SchemaId],
|
|
69172
|
+
json_object(
|
|
69173
|
+
'name', [class].[Name],
|
|
69174
|
+
'schemaItemType', 'Mixin',
|
|
69175
|
+
'modifier', ${modifier("class")},
|
|
69176
|
+
'label', [class].[DisplayLabel],
|
|
69177
|
+
'description', [class].[Description],
|
|
69178
|
+
'appliesTo', (
|
|
69179
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69180
|
+
FROM [AppliesToCTE] [atCTE]
|
|
69181
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
69182
|
+
),
|
|
69183
|
+
'baseClasses', (
|
|
69184
|
+
SELECT
|
|
69185
|
+
json_group_array(json(json_object(
|
|
69186
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
69187
|
+
'name', [baseClass].[Name],
|
|
69188
|
+
'schemaItemType', 'Mixin',
|
|
69189
|
+
'modifier', ${modifier("baseClass")},
|
|
69190
|
+
'label', [baseClass].[DisplayLabel],
|
|
69191
|
+
'description', [baseClass].[Description],
|
|
69192
|
+
'appliesTo', (
|
|
69193
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
69194
|
+
FROM [AppliesToCTE] [atCTE]
|
|
69195
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
69196
|
+
)
|
|
69197
|
+
)))
|
|
69198
|
+
FROM
|
|
69199
|
+
[meta].[ECClassDef] [baseClass]
|
|
69200
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
69201
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
69202
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
69203
|
+
)
|
|
69204
|
+
) AS [item]
|
|
69205
|
+
FROM [meta].[ECClassDef] [class]
|
|
69206
|
+
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
69207
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
69208
69208
|
`;
|
|
69209
|
-
const withSchemaItems = `
|
|
69210
|
-
SchemaItems AS (
|
|
69211
|
-
${customAttributeQuery}
|
|
69212
|
-
UNION ALL
|
|
69213
|
-
${structQuery}
|
|
69214
|
-
UNION ALL
|
|
69215
|
-
${relationshipQuery}
|
|
69216
|
-
UNION ALL
|
|
69217
|
-
${entityQuery}
|
|
69218
|
-
UNION ALL
|
|
69219
|
-
${mixinQuery}
|
|
69220
|
-
UNION ALL
|
|
69221
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
69222
|
-
UNION ALL
|
|
69223
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
69224
|
-
UNION ALL
|
|
69225
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
69226
|
-
UNION ALL
|
|
69227
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
69228
|
-
UNION ALL
|
|
69229
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
69230
|
-
UNION ALL
|
|
69231
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
69232
|
-
UNION ALL
|
|
69233
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
69234
|
-
UNION ALL
|
|
69235
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
69236
|
-
UNION ALL
|
|
69237
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
69238
|
-
)
|
|
69209
|
+
const withSchemaItems = `
|
|
69210
|
+
SchemaItems AS (
|
|
69211
|
+
${customAttributeQuery}
|
|
69212
|
+
UNION ALL
|
|
69213
|
+
${structQuery}
|
|
69214
|
+
UNION ALL
|
|
69215
|
+
${relationshipQuery}
|
|
69216
|
+
UNION ALL
|
|
69217
|
+
${entityQuery}
|
|
69218
|
+
UNION ALL
|
|
69219
|
+
${mixinQuery}
|
|
69220
|
+
UNION ALL
|
|
69221
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
69222
|
+
UNION ALL
|
|
69223
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
69224
|
+
UNION ALL
|
|
69225
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
69226
|
+
UNION ALL
|
|
69227
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
69228
|
+
UNION ALL
|
|
69229
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
69230
|
+
UNION ALL
|
|
69231
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
69232
|
+
UNION ALL
|
|
69233
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
69234
|
+
UNION ALL
|
|
69235
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
69236
|
+
UNION ALL
|
|
69237
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
69238
|
+
)
|
|
69239
69239
|
`;
|
|
69240
|
-
const schemaStubQuery = `
|
|
69241
|
-
WITH
|
|
69242
|
-
${withAppliesTo},
|
|
69243
|
-
${withSchemaItems}
|
|
69244
|
-
SELECT
|
|
69245
|
-
[items].[item]
|
|
69246
|
-
FROM
|
|
69247
|
-
[SchemaItems] [items]
|
|
69248
|
-
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
69249
|
-
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
69250
|
-
WHERE [schemaDef].[Name] = :schemaName
|
|
69240
|
+
const schemaStubQuery = `
|
|
69241
|
+
WITH
|
|
69242
|
+
${withAppliesTo},
|
|
69243
|
+
${withSchemaItems}
|
|
69244
|
+
SELECT
|
|
69245
|
+
[items].[item]
|
|
69246
|
+
FROM
|
|
69247
|
+
[SchemaItems] [items]
|
|
69248
|
+
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
69249
|
+
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
69250
|
+
WHERE [schemaDef].[Name] = :schemaName
|
|
69251
69251
|
`;
|
|
69252
|
-
const schemaInfoQuery = `
|
|
69253
|
-
WITH
|
|
69254
|
-
${withSchemaReferences}
|
|
69255
|
-
SELECT
|
|
69256
|
-
[Name] as [name],
|
|
69257
|
-
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
69258
|
-
[Alias] as [alias],
|
|
69259
|
-
[DisplayLabel] as [label],
|
|
69260
|
-
[Description] as [description],
|
|
69261
|
-
(
|
|
69262
|
-
SELECT
|
|
69263
|
-
json_group_array([schemaReferences].[fullName])
|
|
69264
|
-
FROM
|
|
69265
|
-
[SchemaReferences] [schemaReferences]
|
|
69266
|
-
WHERE
|
|
69267
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
69268
|
-
) AS [references]
|
|
69269
|
-
FROM
|
|
69270
|
-
[meta].[ECSchemaDef] [schemaDef]
|
|
69252
|
+
const schemaInfoQuery = `
|
|
69253
|
+
WITH
|
|
69254
|
+
${withSchemaReferences}
|
|
69255
|
+
SELECT
|
|
69256
|
+
[Name] as [name],
|
|
69257
|
+
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
69258
|
+
[Alias] as [alias],
|
|
69259
|
+
[DisplayLabel] as [label],
|
|
69260
|
+
[Description] as [description],
|
|
69261
|
+
(
|
|
69262
|
+
SELECT
|
|
69263
|
+
json_group_array([schemaReferences].[fullName])
|
|
69264
|
+
FROM
|
|
69265
|
+
[SchemaReferences] [schemaReferences]
|
|
69266
|
+
WHERE
|
|
69267
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
69268
|
+
) AS [references]
|
|
69269
|
+
FROM
|
|
69270
|
+
[meta].[ECSchemaDef] [schemaDef]
|
|
69271
69271
|
`;
|
|
69272
69272
|
/**
|
|
69273
69273
|
* Partial Schema queries.
|
|
@@ -85702,6 +85702,26 @@ class CategorySelectorState extends _EntityState__WEBPACK_IMPORTED_MODULE_1__.El
|
|
|
85702
85702
|
}
|
|
85703
85703
|
|
|
85704
85704
|
|
|
85705
|
+
/***/ }),
|
|
85706
|
+
|
|
85707
|
+
/***/ "../../core/frontend/lib/esm/CesiumAccessClient.js":
|
|
85708
|
+
/*!*********************************************************!*\
|
|
85709
|
+
!*** ../../core/frontend/lib/esm/CesiumAccessClient.js ***!
|
|
85710
|
+
\*********************************************************/
|
|
85711
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
85712
|
+
|
|
85713
|
+
"use strict";
|
|
85714
|
+
__webpack_require__.r(__webpack_exports__);
|
|
85715
|
+
/*---------------------------------------------------------------------------------------------
|
|
85716
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
85717
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
85718
|
+
*--------------------------------------------------------------------------------------------*/
|
|
85719
|
+
/** @packageDocumentation
|
|
85720
|
+
* @module Tiles
|
|
85721
|
+
*/
|
|
85722
|
+
|
|
85723
|
+
|
|
85724
|
+
|
|
85705
85725
|
/***/ }),
|
|
85706
85726
|
|
|
85707
85727
|
/***/ "../../core/frontend/lib/esm/ChangeFlags.js":
|
|
@@ -86686,7 +86706,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
86686
86706
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
86687
86707
|
if (undefined === url)
|
|
86688
86708
|
return undefined;
|
|
86689
|
-
return this.contextRealityModelStates.find((x) => x.url
|
|
86709
|
+
return this.contextRealityModelStates.find((x) => x.url?.startsWith(url));
|
|
86690
86710
|
}
|
|
86691
86711
|
/** Set the display of the OpenStreetMap worldwide building layer in this display style by attaching or detaching the reality model displaying the buildings.
|
|
86692
86712
|
* The OSM buildings are displayed from a reality model aggregated and served from Cesium ion.<(https://cesium.com/content/cesium-osm-buildings/>
|
|
@@ -86698,7 +86718,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
86698
86718
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
86699
86719
|
if (undefined === url)
|
|
86700
86720
|
return false;
|
|
86701
|
-
let model = this.settings.contextRealityModels.models.find((x) => x.url
|
|
86721
|
+
let model = this.settings.contextRealityModels.models.find((x) => x.url?.startsWith(url));
|
|
86702
86722
|
if (options.onOff === false) {
|
|
86703
86723
|
const turnedOff = undefined !== model && this.settings.contextRealityModels.delete(model);
|
|
86704
86724
|
if (turnedOff)
|
|
@@ -95853,7 +95873,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95853
95873
|
|
|
95854
95874
|
|
|
95855
95875
|
/** This class provides access to the reality data provider services.
|
|
95856
|
-
* It encapsulates access to a reality data
|
|
95876
|
+
* It encapsulates access to a reality data whether it be from local access, http or ProjectWise Context Share.
|
|
95857
95877
|
* The key provided at the creation determines if this is ProjectWise Context Share reference.
|
|
95858
95878
|
* If not then it is considered local (ex: C:\temp\TileRoot.json) or plain http access (http://someserver.com/data/TileRoot.json)
|
|
95859
95879
|
* There is a one to one relationship between a reality data and the instances of present class.
|
|
@@ -95944,10 +95964,28 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
95944
95964
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
95945
95965
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
95946
95966
|
if (cesiumAsset) {
|
|
95947
|
-
|
|
95948
|
-
|
|
95949
|
-
|
|
95950
|
-
|
|
95967
|
+
let resolvedToken;
|
|
95968
|
+
let resolvedUrl;
|
|
95969
|
+
if (cesiumAsset.key) {
|
|
95970
|
+
// Legacy key-bearing URL (e.g. persisted saved view) - authenticate directly with the embedded Ion key.
|
|
95971
|
+
// Such URLs are intentionally exempt from the cesiumAccess-over-cesiumIonKey precedence rule and are not
|
|
95972
|
+
// routed through a registered CesiumAccessClient; see [[CesiumAccessClient]].
|
|
95973
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
95974
|
+
resolvedToken = tokenAndUrl.token;
|
|
95975
|
+
resolvedUrl = tokenAndUrl.url;
|
|
95976
|
+
}
|
|
95977
|
+
else {
|
|
95978
|
+
// delegate to the registered CesiumAccessClient
|
|
95979
|
+
const client = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessClient)();
|
|
95980
|
+
const endpoint = await client.getAssetEndpoint(`${cesiumAsset.id}`, iTwinId);
|
|
95981
|
+
if (endpoint) {
|
|
95982
|
+
resolvedToken = endpoint.accessToken;
|
|
95983
|
+
resolvedUrl = endpoint.url;
|
|
95984
|
+
}
|
|
95985
|
+
}
|
|
95986
|
+
if (resolvedUrl && resolvedToken) {
|
|
95987
|
+
url = resolvedUrl;
|
|
95988
|
+
this._requestAuthorization = `Bearer ${resolvedToken}`;
|
|
95951
95989
|
}
|
|
95952
95990
|
}
|
|
95953
95991
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
@@ -114527,455 +114565,455 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
114527
114565
|
/* harmony export */ ACSDisplayOptions: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions),
|
|
114528
114566
|
/* harmony export */ ACSType: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSType),
|
|
114529
114567
|
/* harmony export */ AccuDraw: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDraw),
|
|
114530
|
-
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */
|
|
114568
|
+
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawChangeModeTool),
|
|
114531
114569
|
/* harmony export */ AccuDrawFlags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawFlags),
|
|
114532
114570
|
/* harmony export */ AccuDrawHintBuilder: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawHintBuilder),
|
|
114533
|
-
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */
|
|
114534
|
-
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */
|
|
114535
|
-
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */
|
|
114536
|
-
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */
|
|
114537
|
-
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */
|
|
114538
|
-
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */
|
|
114539
|
-
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */
|
|
114540
|
-
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */
|
|
114541
|
-
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */
|
|
114542
|
-
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */
|
|
114543
|
-
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */
|
|
114544
|
-
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */
|
|
114545
|
-
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */
|
|
114546
|
-
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */
|
|
114547
|
-
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */
|
|
114548
|
-
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */
|
|
114549
|
-
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */
|
|
114550
|
-
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */
|
|
114551
|
-
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */
|
|
114552
|
-
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */
|
|
114553
|
-
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */
|
|
114554
|
-
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */
|
|
114571
|
+
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutXTool),
|
|
114572
|
+
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutYTool),
|
|
114573
|
+
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutZTool),
|
|
114574
|
+
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateAxesTool),
|
|
114575
|
+
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateCycleTool),
|
|
114576
|
+
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateElementTool),
|
|
114577
|
+
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateFrontTool),
|
|
114578
|
+
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateSideTool),
|
|
114579
|
+
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateTopTool),
|
|
114580
|
+
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateViewTool),
|
|
114581
|
+
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSessionToggleTool),
|
|
114582
|
+
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockAngleTool),
|
|
114583
|
+
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockDistanceTool),
|
|
114584
|
+
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockIndexTool),
|
|
114585
|
+
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockSmartTool),
|
|
114586
|
+
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockXTool),
|
|
114587
|
+
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockYTool),
|
|
114588
|
+
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockZTool),
|
|
114589
|
+
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetOriginTool),
|
|
114590
|
+
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawShortcuts),
|
|
114591
|
+
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSuspendToggleTool),
|
|
114592
|
+
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */ _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__.AccuDrawViewportUI),
|
|
114555
114593
|
/* harmony export */ AccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.AccuSnap),
|
|
114556
114594
|
/* harmony export */ AccudrawData: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccudrawData),
|
|
114557
|
-
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */
|
|
114558
|
-
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */
|
|
114559
|
-
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */
|
|
114560
|
-
/* harmony export */ AngleDescription: () => (/* reexport safe */
|
|
114561
|
-
/* harmony export */ AnimationNodeId: () => (/* reexport safe */
|
|
114562
|
-
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */
|
|
114563
|
-
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */
|
|
114564
|
-
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */
|
|
114565
|
-
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */
|
|
114595
|
+
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageDetails),
|
|
114596
|
+
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageEndReason),
|
|
114597
|
+
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.AlternateUnitLabelsRegistry),
|
|
114598
|
+
/* harmony export */ AngleDescription: () => (/* reexport safe */ _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__.AngleDescription),
|
|
114599
|
+
/* harmony export */ AnimationNodeId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.AnimationNodeId),
|
|
114600
|
+
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGISImageryProvider),
|
|
114601
|
+
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisErrorCode),
|
|
114602
|
+
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisGeometryReaderJSON),
|
|
114603
|
+
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisUtilities),
|
|
114566
114604
|
/* harmony export */ AuxCoordSystem2dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState),
|
|
114567
114605
|
/* harmony export */ AuxCoordSystem3dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem3dState),
|
|
114568
114606
|
/* harmony export */ AuxCoordSystemSpatialState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemSpatialState),
|
|
114569
114607
|
/* harmony export */ AuxCoordSystemState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState),
|
|
114570
|
-
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */
|
|
114571
|
-
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */
|
|
114572
|
-
/* harmony export */ BeButton: () => (/* reexport safe */
|
|
114573
|
-
/* harmony export */ BeButtonEvent: () => (/* reexport safe */
|
|
114574
|
-
/* harmony export */ BeButtonState: () => (/* reexport safe */
|
|
114575
|
-
/* harmony export */ BeModifierKeys: () => (/* reexport safe */
|
|
114576
|
-
/* harmony export */ BeTouchEvent: () => (/* reexport safe */
|
|
114577
|
-
/* harmony export */ BeWheelEvent: () => (/* reexport safe */
|
|
114578
|
-
/* harmony export */ BingElevationProvider: () => (/* reexport safe */
|
|
114608
|
+
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.BackgroundMapGeometry),
|
|
114609
|
+
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */ _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__.BaseUnitFormattingSettingsProvider),
|
|
114610
|
+
/* harmony export */ BeButton: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButton),
|
|
114611
|
+
/* harmony export */ BeButtonEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonEvent),
|
|
114612
|
+
/* harmony export */ BeButtonState: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonState),
|
|
114613
|
+
/* harmony export */ BeModifierKeys: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeModifierKeys),
|
|
114614
|
+
/* harmony export */ BeTouchEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeTouchEvent),
|
|
114615
|
+
/* harmony export */ BeWheelEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeWheelEvent),
|
|
114616
|
+
/* harmony export */ BingElevationProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.BingElevationProvider),
|
|
114579
114617
|
/* harmony export */ BingLocationProvider: () => (/* reexport safe */ _BingLocation__WEBPACK_IMPORTED_MODULE_3__.BingLocationProvider),
|
|
114580
|
-
/* harmony export */ BlankConnection: () => (/* reexport safe */
|
|
114618
|
+
/* harmony export */ BlankConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.BlankConnection),
|
|
114581
114619
|
/* harmony export */ BriefcaseConnection: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseConnection),
|
|
114582
114620
|
/* harmony export */ BriefcaseEditorToolSettings: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseEditorToolSettings),
|
|
114583
114621
|
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseNotificationHandler),
|
|
114584
114622
|
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseTxns),
|
|
114585
114623
|
/* harmony export */ CatalogConnection: () => (/* reexport safe */ _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__.CatalogConnection),
|
|
114586
114624
|
/* harmony export */ CategorySelectorState: () => (/* reexport safe */ _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__.CategorySelectorState),
|
|
114587
|
-
/* harmony export */ ChangeFlag: () => (/* reexport safe */
|
|
114588
|
-
/* harmony export */ ChangeFlags: () => (/* reexport safe */
|
|
114589
|
-
/* harmony export */ CheckpointConnection: () => (/* reexport safe */
|
|
114590
|
-
/* harmony export */ ClipEventType: () => (/* reexport safe */
|
|
114591
|
-
/* harmony export */ Cluster: () => (/* reexport safe */
|
|
114625
|
+
/* harmony export */ ChangeFlag: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlag),
|
|
114626
|
+
/* harmony export */ ChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlags),
|
|
114627
|
+
/* harmony export */ CheckpointConnection: () => (/* reexport safe */ _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__.CheckpointConnection),
|
|
114628
|
+
/* harmony export */ ClipEventType: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ClipEventType),
|
|
114629
|
+
/* harmony export */ Cluster: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Cluster),
|
|
114592
114630
|
/* harmony export */ CompassMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CompassMode),
|
|
114593
114631
|
/* harmony export */ ContextMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextMode),
|
|
114594
|
-
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */
|
|
114632
|
+
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */ _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__.ContextRealityModelState),
|
|
114595
114633
|
/* harmony export */ ContextRotationId: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextRotationId),
|
|
114596
|
-
/* harmony export */ CoordSource: () => (/* reexport safe */
|
|
114597
|
-
/* harmony export */ CoordSystem: () => (/* reexport safe */
|
|
114598
|
-
/* harmony export */ CoordinateConverter: () => (/* reexport safe */
|
|
114599
|
-
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */
|
|
114600
|
-
/* harmony export */ CoreTools: () => (/* reexport safe */
|
|
114601
|
-
/* harmony export */ CurrentInputState: () => (/* reexport safe */
|
|
114634
|
+
/* harmony export */ CoordSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordSource),
|
|
114635
|
+
/* harmony export */ CoordSystem: () => (/* reexport safe */ _CoordSystem__WEBPACK_IMPORTED_MODULE_14__.CoordSystem),
|
|
114636
|
+
/* harmony export */ CoordinateConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.CoordinateConverter),
|
|
114637
|
+
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordinateLockOverrides),
|
|
114638
|
+
/* harmony export */ CoreTools: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoreTools),
|
|
114639
|
+
/* harmony export */ CurrentInputState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.CurrentInputState),
|
|
114602
114640
|
/* harmony export */ CurrentState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CurrentState),
|
|
114603
|
-
/* harmony export */ DebugShaderFile: () => (/* reexport safe */
|
|
114604
|
-
/* harmony export */ DecorateContext: () => (/* reexport safe */
|
|
114605
|
-
/* harmony export */ Decorations: () => (/* reexport safe */
|
|
114606
|
-
/* harmony export */ DecorationsCache: () => (/* reexport safe */
|
|
114607
|
-
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */
|
|
114608
|
-
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */
|
|
114609
|
-
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */
|
|
114610
|
-
/* harmony export */ DepthPointSource: () => (/* reexport safe */
|
|
114611
|
-
/* harmony export */ DevTools: () => (/* reexport safe */
|
|
114612
|
-
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */
|
|
114613
|
-
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */
|
|
114614
|
-
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */
|
|
114615
|
-
/* harmony export */ DisplayStyleState: () => (/* reexport safe */
|
|
114616
|
-
/* harmony export */ DrawingModelState: () => (/* reexport safe */
|
|
114617
|
-
/* harmony export */ DrawingViewState: () => (/* reexport safe */
|
|
114618
|
-
/* harmony export */ DynamicsContext: () => (/* reexport safe */
|
|
114619
|
-
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */
|
|
114620
|
-
/* harmony export */ EditManipulator: () => (/* reexport safe */
|
|
114621
|
-
/* harmony export */ ElementAgenda: () => (/* reexport safe */
|
|
114622
|
-
/* harmony export */ ElementLocateManager: () => (/* reexport safe */
|
|
114623
|
-
/* harmony export */ ElementPicker: () => (/* reexport safe */
|
|
114624
|
-
/* harmony export */ ElementSetTool: () => (/* reexport safe */
|
|
114625
|
-
/* harmony export */ ElementState: () => (/* reexport safe */
|
|
114626
|
-
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */
|
|
114627
|
-
/* harmony export */ EmphasizeElements: () => (/* reexport safe */
|
|
114628
|
-
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */
|
|
114629
|
-
/* harmony export */ EntityState: () => (/* reexport safe */
|
|
114630
|
-
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */
|
|
114631
|
-
/* harmony export */ EventController: () => (/* reexport safe */
|
|
114632
|
-
/* harmony export */ EventHandled: () => (/* reexport safe */
|
|
114633
|
-
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */
|
|
114634
|
-
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */
|
|
114635
|
-
/* harmony export */ FeatureSymbology: () => (/* reexport safe */
|
|
114636
|
-
/* harmony export */ FitViewTool: () => (/* reexport safe */
|
|
114641
|
+
/* harmony export */ DebugShaderFile: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.DebugShaderFile),
|
|
114642
|
+
/* harmony export */ DecorateContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DecorateContext),
|
|
114643
|
+
/* harmony export */ Decorations: () => (/* reexport safe */ _render_Decorations__WEBPACK_IMPORTED_MODULE_81__.Decorations),
|
|
114644
|
+
/* harmony export */ DecorationsCache: () => (/* reexport safe */ _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__.DecorationsCache),
|
|
114645
|
+
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.DefaultViewTouchTool),
|
|
114646
|
+
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByElementTool),
|
|
114647
|
+
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByPointsTool),
|
|
114648
|
+
/* harmony export */ DepthPointSource: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.DepthPointSource),
|
|
114649
|
+
/* harmony export */ DevTools: () => (/* reexport safe */ _DevTools__WEBPACK_IMPORTED_MODULE_16__.DevTools),
|
|
114650
|
+
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.DisclosedTileTreeSet),
|
|
114651
|
+
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle2dState),
|
|
114652
|
+
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle3dState),
|
|
114653
|
+
/* harmony export */ DisplayStyleState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyleState),
|
|
114654
|
+
/* harmony export */ DrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.DrawingModelState),
|
|
114655
|
+
/* harmony export */ DrawingViewState: () => (/* reexport safe */ _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__.DrawingViewState),
|
|
114656
|
+
/* harmony export */ DynamicsContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DynamicsContext),
|
|
114657
|
+
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ELEMENT_MARKED_FOR_REMOVAL),
|
|
114658
|
+
/* harmony export */ EditManipulator: () => (/* reexport safe */ _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__.EditManipulator),
|
|
114659
|
+
/* harmony export */ ElementAgenda: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementAgenda),
|
|
114660
|
+
/* harmony export */ ElementLocateManager: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementLocateManager),
|
|
114661
|
+
/* harmony export */ ElementPicker: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementPicker),
|
|
114662
|
+
/* harmony export */ ElementSetTool: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementSetTool),
|
|
114663
|
+
/* harmony export */ ElementState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.ElementState),
|
|
114664
|
+
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.EllipsoidTerrainProvider),
|
|
114665
|
+
/* harmony export */ EmphasizeElements: () => (/* reexport safe */ _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__.EmphasizeElements),
|
|
114666
|
+
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.EngineeringLengthDescription),
|
|
114667
|
+
/* harmony export */ EntityState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.EntityState),
|
|
114668
|
+
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */ _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__.EnvironmentDecorations),
|
|
114669
|
+
/* harmony export */ EventController: () => (/* reexport safe */ _tools_EventController__WEBPACK_IMPORTED_MODULE_107__.EventController),
|
|
114670
|
+
/* harmony export */ EventHandled: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.EventHandled),
|
|
114671
|
+
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGeometryBaseRenderer),
|
|
114672
|
+
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGraphicsRenderer),
|
|
114673
|
+
/* harmony export */ FeatureSymbology: () => (/* reexport safe */ _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__.FeatureSymbology),
|
|
114674
|
+
/* harmony export */ FitViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FitViewTool),
|
|
114637
114675
|
/* harmony export */ Flags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.Flags),
|
|
114638
|
-
/* harmony export */ FlashMode: () => (/* reexport safe */
|
|
114639
|
-
/* harmony export */ FlashSettings: () => (/* reexport safe */
|
|
114640
|
-
/* harmony export */ FlyViewTool: () => (/* reexport safe */
|
|
114641
|
-
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */
|
|
114642
|
-
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */
|
|
114643
|
-
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */
|
|
114644
|
-
/* harmony export */ Frustum2d: () => (/* reexport safe */
|
|
114645
|
-
/* harmony export */ FrustumAnimator: () => (/* reexport safe */
|
|
114646
|
-
/* harmony export */ FuzzySearch: () => (/* reexport safe */
|
|
114647
|
-
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */
|
|
114648
|
-
/* harmony export */ GeoConverter: () => (/* reexport safe */
|
|
114649
|
-
/* harmony export */ GeoServices: () => (/* reexport safe */
|
|
114650
|
-
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */
|
|
114651
|
-
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */
|
|
114652
|
-
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */
|
|
114653
|
-
/* harmony export */ GeometricModelState: () => (/* reexport safe */
|
|
114654
|
-
/* harmony export */ GlobeAnimator: () => (/* reexport safe */
|
|
114655
|
-
/* harmony export */ GltfDataType: () => (/* reexport safe */
|
|
114656
|
-
/* harmony export */ GltfReader: () => (/* reexport safe */
|
|
114657
|
-
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */
|
|
114658
|
-
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */
|
|
114659
|
-
/* harmony export */ GraphicAssembler: () => (/* reexport safe */
|
|
114660
|
-
/* harmony export */ GraphicBranch: () => (/* reexport safe */
|
|
114661
|
-
/* harmony export */ GraphicBuilder: () => (/* reexport safe */
|
|
114662
|
-
/* harmony export */ GraphicDescription: () => (/* reexport safe */
|
|
114663
|
-
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */
|
|
114664
|
-
/* harmony export */ GraphicType: () => (/* reexport safe */
|
|
114665
|
-
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */
|
|
114666
|
-
/* harmony export */ HiliteSet: () => (/* reexport safe */
|
|
114667
|
-
/* harmony export */ HitDetail: () => (/* reexport safe */
|
|
114668
|
-
/* harmony export */ HitDetailType: () => (/* reexport safe */
|
|
114669
|
-
/* harmony export */ HitGeomType: () => (/* reexport safe */
|
|
114670
|
-
/* harmony export */ HitList: () => (/* reexport safe */
|
|
114671
|
-
/* harmony export */ HitParentGeomType: () => (/* reexport safe */
|
|
114672
|
-
/* harmony export */ HitPriority: () => (/* reexport safe */
|
|
114673
|
-
/* harmony export */ HitSource: () => (/* reexport safe */
|
|
114674
|
-
/* harmony export */ IModelApp: () => (/* reexport safe */
|
|
114675
|
-
/* harmony export */ IModelConnection: () => (/* reexport safe */
|
|
114676
|
-
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */
|
|
114677
|
-
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */
|
|
114678
|
-
/* harmony export */ IModelTileTree: () => (/* reexport safe */
|
|
114679
|
-
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */
|
|
114680
|
-
/* harmony export */ IconSprites: () => (/* reexport safe */
|
|
114681
|
-
/* harmony export */ IdleTool: () => (/* reexport safe */
|
|
114682
|
-
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */
|
|
114683
|
-
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */
|
|
114684
|
-
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */
|
|
114685
|
-
/* harmony export */ ImdlReader: () => (/* reexport safe */
|
|
114686
|
-
/* harmony export */ InputCollector: () => (/* reexport safe */
|
|
114687
|
-
/* harmony export */ InputSource: () => (/* reexport safe */
|
|
114688
|
-
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */
|
|
114689
|
-
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */
|
|
114690
|
-
/* harmony export */ InteractiveTool: () => (/* reexport safe */
|
|
114691
|
-
/* harmony export */ IntersectDetail: () => (/* reexport safe */
|
|
114692
|
-
/* harmony export */ IpcApp: () => (/* reexport safe */
|
|
114676
|
+
/* harmony export */ FlashMode: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashMode),
|
|
114677
|
+
/* harmony export */ FlashSettings: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashSettings),
|
|
114678
|
+
/* harmony export */ FlyViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FlyViewTool),
|
|
114679
|
+
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.FormatsProviderManager),
|
|
114680
|
+
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.FormattedQuantityDescription),
|
|
114681
|
+
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.FrontendLoggerCategory),
|
|
114682
|
+
/* harmony export */ Frustum2d: () => (/* reexport safe */ _Frustum2d__WEBPACK_IMPORTED_MODULE_26__.Frustum2d),
|
|
114683
|
+
/* harmony export */ FrustumAnimator: () => (/* reexport safe */ _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__.FrustumAnimator),
|
|
114684
|
+
/* harmony export */ FuzzySearch: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearch),
|
|
114685
|
+
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearchResults),
|
|
114686
|
+
/* harmony export */ GeoConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoConverter),
|
|
114687
|
+
/* harmony export */ GeoServices: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoServices),
|
|
114688
|
+
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.GeographicTilingScheme),
|
|
114689
|
+
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel2dState),
|
|
114690
|
+
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel3dState),
|
|
114691
|
+
/* harmony export */ GeometricModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModelState),
|
|
114692
|
+
/* harmony export */ GlobeAnimator: () => (/* reexport safe */ _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__.GlobeAnimator),
|
|
114693
|
+
/* harmony export */ GltfDataType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfDataType),
|
|
114694
|
+
/* harmony export */ GltfReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfReader),
|
|
114695
|
+
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.Google3dTilesProvider),
|
|
114696
|
+
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GoogleMapsDecorator),
|
|
114697
|
+
/* harmony export */ GraphicAssembler: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicAssembler),
|
|
114698
|
+
/* harmony export */ GraphicBranch: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__.GraphicBranch),
|
|
114699
|
+
/* harmony export */ GraphicBuilder: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__.GraphicBuilder),
|
|
114700
|
+
/* harmony export */ GraphicDescription: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescription),
|
|
114701
|
+
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescriptionBuilder),
|
|
114702
|
+
/* harmony export */ GraphicType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicType),
|
|
114703
|
+
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */ _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__.GraphicalEditingScope),
|
|
114704
|
+
/* harmony export */ HiliteSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.HiliteSet),
|
|
114705
|
+
/* harmony export */ HitDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetail),
|
|
114706
|
+
/* harmony export */ HitDetailType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetailType),
|
|
114707
|
+
/* harmony export */ HitGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitGeomType),
|
|
114708
|
+
/* harmony export */ HitList: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitList),
|
|
114709
|
+
/* harmony export */ HitParentGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitParentGeomType),
|
|
114710
|
+
/* harmony export */ HitPriority: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitPriority),
|
|
114711
|
+
/* harmony export */ HitSource: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitSource),
|
|
114712
|
+
/* harmony export */ IModelApp: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.IModelApp),
|
|
114713
|
+
/* harmony export */ IModelConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.IModelConnection),
|
|
114714
|
+
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */ _internal_render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_100__.IModelFrameLifecycle),
|
|
114715
|
+
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */ _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__.IModelRoutingContext),
|
|
114716
|
+
/* harmony export */ IModelTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.IModelTileTree),
|
|
114717
|
+
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.ITWINJS_CORE_VERSION),
|
|
114718
|
+
/* harmony export */ IconSprites: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.IconSprites),
|
|
114719
|
+
/* harmony export */ IdleTool: () => (/* reexport safe */ _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__.IdleTool),
|
|
114720
|
+
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerFormat),
|
|
114721
|
+
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerTreeReference),
|
|
114722
|
+
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImageryMapTileTree),
|
|
114723
|
+
/* harmony export */ ImdlReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImdlReader),
|
|
114724
|
+
/* harmony export */ InputCollector: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputCollector),
|
|
114725
|
+
/* harmony export */ InputSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputSource),
|
|
114726
|
+
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicParams),
|
|
114727
|
+
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicProps),
|
|
114728
|
+
/* harmony export */ InteractiveTool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InteractiveTool),
|
|
114729
|
+
/* harmony export */ IntersectDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.IntersectDetail),
|
|
114730
|
+
/* harmony export */ IpcApp: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.IpcApp),
|
|
114693
114731
|
/* harmony export */ ItemField: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ItemField),
|
|
114694
|
-
/* harmony export */ KeyinParseError: () => (/* reexport safe */
|
|
114732
|
+
/* harmony export */ KeyinParseError: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.KeyinParseError),
|
|
114695
114733
|
/* harmony export */ KeyinStatus: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.KeyinStatus),
|
|
114696
|
-
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */
|
|
114697
|
-
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */
|
|
114698
|
-
/* harmony export */ LengthDescription: () => (/* reexport safe */
|
|
114699
|
-
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */
|
|
114700
|
-
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */
|
|
114701
|
-
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */
|
|
114702
|
-
/* harmony export */ LocateAction: () => (/* reexport safe */
|
|
114703
|
-
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */
|
|
114704
|
-
/* harmony export */ LocateOptions: () => (/* reexport safe */
|
|
114705
|
-
/* harmony export */ LocateResponse: () => (/* reexport safe */
|
|
114734
|
+
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeHandler),
|
|
114735
|
+
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeReferenceHandler),
|
|
114736
|
+
/* harmony export */ LengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.LengthDescription),
|
|
114737
|
+
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */ _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__.LocalExtensionProvider),
|
|
114738
|
+
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */ _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__.LocalUnitFormatProvider),
|
|
114739
|
+
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */ _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__.LocalhostIpcApp),
|
|
114740
|
+
/* harmony export */ LocateAction: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateAction),
|
|
114741
|
+
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateFilterStatus),
|
|
114742
|
+
/* harmony export */ LocateOptions: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateOptions),
|
|
114743
|
+
/* harmony export */ LocateResponse: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateResponse),
|
|
114706
114744
|
/* harmony export */ LockedStates: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.LockedStates),
|
|
114707
|
-
/* harmony export */ LogoDecoration: () => (/* reexport safe */
|
|
114708
|
-
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */
|
|
114709
|
-
/* harmony export */ LookViewTool: () => (/* reexport safe */
|
|
114710
|
-
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */
|
|
114711
|
-
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */
|
|
114712
|
-
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */
|
|
114713
|
-
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */
|
|
114714
|
-
/* harmony export */ MapLayerFormat: () => (/* reexport safe */
|
|
114715
|
-
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */
|
|
114716
|
-
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */
|
|
114717
|
-
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */
|
|
114718
|
-
/* harmony export */ MapLayerSource: () => (/* reexport safe */
|
|
114719
|
-
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */
|
|
114720
|
-
/* harmony export */ MapLayerSources: () => (/* reexport safe */
|
|
114721
|
-
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */
|
|
114722
|
-
/* harmony export */ MapTile: () => (/* reexport safe */
|
|
114723
|
-
/* harmony export */ MapTileProjection: () => (/* reexport safe */
|
|
114724
|
-
/* harmony export */ MapTileTree: () => (/* reexport safe */
|
|
114725
|
-
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */
|
|
114726
|
-
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */
|
|
114727
|
-
/* harmony export */ MapTilingScheme: () => (/* reexport safe */
|
|
114728
|
-
/* harmony export */ MarginPercent: () => (/* reexport safe */
|
|
114729
|
-
/* harmony export */ Marker: () => (/* reexport safe */
|
|
114730
|
-
/* harmony export */ MarkerSet: () => (/* reexport safe */
|
|
114731
|
-
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */
|
|
114732
|
-
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */
|
|
114733
|
-
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */
|
|
114734
|
-
/* harmony export */ MeasureElementTool: () => (/* reexport safe */
|
|
114735
|
-
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */
|
|
114736
|
-
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */
|
|
114737
|
-
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */
|
|
114738
|
-
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */
|
|
114739
|
-
/* harmony export */ MessageBoxType: () => (/* reexport safe */
|
|
114740
|
-
/* harmony export */ MessageBoxValue: () => (/* reexport safe */
|
|
114741
|
-
/* harmony export */ ModelSelectorState: () => (/* reexport safe */
|
|
114742
|
-
/* harmony export */ ModelState: () => (/* reexport safe */
|
|
114743
|
-
/* harmony export */ ModifyElementSource: () => (/* reexport safe */
|
|
114744
|
-
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */
|
|
114745
|
-
/* harmony export */ NativeApp: () => (/* reexport safe */
|
|
114746
|
-
/* harmony export */ NativeAppLogger: () => (/* reexport safe */
|
|
114747
|
-
/* harmony export */ NoRenderApp: () => (/* reexport safe */
|
|
114748
|
-
/* harmony export */ NotificationHandler: () => (/* reexport safe */
|
|
114749
|
-
/* harmony export */ NotificationManager: () => (/* reexport safe */
|
|
114750
|
-
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */
|
|
114751
|
-
/* harmony export */ NullRenderSystem: () => (/* reexport safe */
|
|
114752
|
-
/* harmony export */ NullTarget: () => (/* reexport safe */
|
|
114753
|
-
/* harmony export */ OffScreenViewport: () => (/* reexport safe */
|
|
114754
|
-
/* harmony export */ OnScreenTarget: () => (/* reexport safe */
|
|
114755
|
-
/* harmony export */ OrthographicViewState: () => (/* reexport safe */
|
|
114756
|
-
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */
|
|
114757
|
-
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */
|
|
114758
|
-
/* harmony export */ OutputMessageType: () => (/* reexport safe */
|
|
114759
|
-
/* harmony export */ PanViewTool: () => (/* reexport safe */
|
|
114760
|
-
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */
|
|
114761
|
-
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */
|
|
114762
|
-
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */
|
|
114763
|
-
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */
|
|
114764
|
-
/* harmony export */ PhysicalModelState: () => (/* reexport safe */
|
|
114765
|
-
/* harmony export */ Pixel: () => (/* reexport safe */
|
|
114766
|
-
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */
|
|
114767
|
-
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */
|
|
114768
|
-
/* harmony export */ PrimitiveTool: () => (/* reexport safe */
|
|
114769
|
-
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */
|
|
114770
|
-
/* harmony export */ QuadId: () => (/* reexport safe */
|
|
114771
|
-
/* harmony export */ QuantityFormatter: () => (/* reexport safe */
|
|
114772
|
-
/* harmony export */ QuantityType: () => (/* reexport safe */
|
|
114773
|
-
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */
|
|
114774
|
-
/* harmony export */ RealityDataError: () => (/* reexport safe */
|
|
114775
|
-
/* harmony export */ RealityDataSource: () => (/* reexport safe */
|
|
114776
|
-
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */
|
|
114777
|
-
/* harmony export */ RealityMeshParams: () => (/* reexport safe */
|
|
114778
|
-
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */
|
|
114779
|
-
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */
|
|
114780
|
-
/* harmony export */ RealityTile: () => (/* reexport safe */
|
|
114781
|
-
/* harmony export */ RealityTileLoader: () => (/* reexport safe */
|
|
114782
|
-
/* harmony export */ RealityTileTree: () => (/* reexport safe */
|
|
114783
|
-
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */
|
|
114784
|
-
/* harmony export */ RenderClipVolume: () => (/* reexport safe */
|
|
114785
|
-
/* harmony export */ RenderContext: () => (/* reexport safe */
|
|
114786
|
-
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */
|
|
114787
|
-
/* harmony export */ RenderGraphic: () => (/* reexport safe */
|
|
114788
|
-
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */
|
|
114789
|
-
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */
|
|
114790
|
-
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */
|
|
114791
|
-
/* harmony export */ RenderMemory: () => (/* reexport safe */
|
|
114792
|
-
/* harmony export */ RenderSystem: () => (/* reexport safe */
|
|
114793
|
-
/* harmony export */ RenderTarget: () => (/* reexport safe */
|
|
114794
|
-
/* harmony export */ RotateViewTool: () => (/* reexport safe */
|
|
114745
|
+
/* harmony export */ LogoDecoration: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LogoDecoration),
|
|
114746
|
+
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookAndMoveTool),
|
|
114747
|
+
/* harmony export */ LookViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookViewTool),
|
|
114748
|
+
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ManipulatorToolEvent),
|
|
114749
|
+
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapCartoRectangle),
|
|
114750
|
+
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapFeatureInfoRecord),
|
|
114751
|
+
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFeatureRecord),
|
|
114752
|
+
/* harmony export */ MapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormat),
|
|
114753
|
+
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormatRegistry),
|
|
114754
|
+
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProvider),
|
|
114755
|
+
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProviderStatus),
|
|
114756
|
+
/* harmony export */ MapLayerSource: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSource),
|
|
114757
|
+
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSourceStatus),
|
|
114758
|
+
/* harmony export */ MapLayerSources: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSources),
|
|
114759
|
+
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerTileTreeReference),
|
|
114760
|
+
/* harmony export */ MapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTile),
|
|
114761
|
+
/* harmony export */ MapTileProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileProjection),
|
|
114762
|
+
/* harmony export */ MapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTree),
|
|
114763
|
+
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.MapTileTreeReference),
|
|
114764
|
+
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTreeScaleRangeVisibility),
|
|
114765
|
+
/* harmony export */ MapTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTilingScheme),
|
|
114766
|
+
/* harmony export */ MarginPercent: () => (/* reexport safe */ _MarginPercent__WEBPACK_IMPORTED_MODULE_38__.MarginPercent),
|
|
114767
|
+
/* harmony export */ Marker: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Marker),
|
|
114768
|
+
/* harmony export */ MarkerSet: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.MarkerSet),
|
|
114769
|
+
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaByPointsTool),
|
|
114770
|
+
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaTool),
|
|
114771
|
+
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureDistanceTool),
|
|
114772
|
+
/* harmony export */ MeasureElementTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureElementTool),
|
|
114773
|
+
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLengthTool),
|
|
114774
|
+
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLocationTool),
|
|
114775
|
+
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureVolumeTool),
|
|
114776
|
+
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxIconType),
|
|
114777
|
+
/* harmony export */ MessageBoxType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxType),
|
|
114778
|
+
/* harmony export */ MessageBoxValue: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxValue),
|
|
114779
|
+
/* harmony export */ ModelSelectorState: () => (/* reexport safe */ _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__.ModelSelectorState),
|
|
114780
|
+
/* harmony export */ ModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.ModelState),
|
|
114781
|
+
/* harmony export */ ModifyElementSource: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ModifyElementSource),
|
|
114782
|
+
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.MutableChangeFlags),
|
|
114783
|
+
/* harmony export */ NativeApp: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.NativeApp),
|
|
114784
|
+
/* harmony export */ NativeAppLogger: () => (/* reexport safe */ _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__.NativeAppLogger),
|
|
114785
|
+
/* harmony export */ NoRenderApp: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NoRenderApp),
|
|
114786
|
+
/* harmony export */ NotificationHandler: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.NotificationHandler),
|
|
114787
|
+
/* harmony export */ NotificationManager: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotificationManager),
|
|
114788
|
+
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotifyMessageDetails),
|
|
114789
|
+
/* harmony export */ NullRenderSystem: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullRenderSystem),
|
|
114790
|
+
/* harmony export */ NullTarget: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullTarget),
|
|
114791
|
+
/* harmony export */ OffScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.OffScreenViewport),
|
|
114792
|
+
/* harmony export */ OnScreenTarget: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.OnScreenTarget),
|
|
114793
|
+
/* harmony export */ OrthographicViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.OrthographicViewState),
|
|
114794
|
+
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageAlert),
|
|
114795
|
+
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessagePriority),
|
|
114796
|
+
/* harmony export */ OutputMessageType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageType),
|
|
114797
|
+
/* harmony export */ PanViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.PanViewTool),
|
|
114798
|
+
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ParseAndRunResult),
|
|
114799
|
+
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */ _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__.ParticleCollectionBuilder),
|
|
114800
|
+
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */ _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__.PerModelCategoryVisibility),
|
|
114801
|
+
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PerformanceMetrics),
|
|
114802
|
+
/* harmony export */ PhysicalModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.PhysicalModelState),
|
|
114803
|
+
/* harmony export */ Pixel: () => (/* reexport safe */ _render_Pixel__WEBPACK_IMPORTED_MODULE_89__.Pixel),
|
|
114804
|
+
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */ _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__.PlanarClipMaskState),
|
|
114805
|
+
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.PlanarGridTransparency),
|
|
114806
|
+
/* harmony export */ PrimitiveTool: () => (/* reexport safe */ _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__.PrimitiveTool),
|
|
114807
|
+
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PrimitiveVisibility),
|
|
114808
|
+
/* harmony export */ QuadId: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.QuadId),
|
|
114809
|
+
/* harmony export */ QuantityFormatter: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityFormatter),
|
|
114810
|
+
/* harmony export */ QuantityType: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityType),
|
|
114811
|
+
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityTypeFormatsProvider),
|
|
114812
|
+
/* harmony export */ RealityDataError: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataError),
|
|
114813
|
+
/* harmony export */ RealityDataSource: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSource),
|
|
114814
|
+
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSourceProviderRegistry),
|
|
114815
|
+
/* harmony export */ RealityMeshParams: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParams),
|
|
114816
|
+
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParamsBuilder),
|
|
114817
|
+
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityModelTileUtils),
|
|
114818
|
+
/* harmony export */ RealityTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTile),
|
|
114819
|
+
/* harmony export */ RealityTileLoader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityTileLoader),
|
|
114820
|
+
/* harmony export */ RealityTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTileTree),
|
|
114821
|
+
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */ _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__.RemoteExtensionProvider),
|
|
114822
|
+
/* harmony export */ RenderClipVolume: () => (/* reexport safe */ _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__.RenderClipVolume),
|
|
114823
|
+
/* harmony export */ RenderContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.RenderContext),
|
|
114824
|
+
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RenderDiagnostics),
|
|
114825
|
+
/* harmony export */ RenderGraphic: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphic),
|
|
114826
|
+
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphicOwner),
|
|
114827
|
+
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParams),
|
|
114828
|
+
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParamsBuilder),
|
|
114829
|
+
/* harmony export */ RenderMemory: () => (/* reexport safe */ _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__.RenderMemory),
|
|
114830
|
+
/* harmony export */ RenderSystem: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.RenderSystem),
|
|
114831
|
+
/* harmony export */ RenderTarget: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__.RenderTarget),
|
|
114832
|
+
/* harmony export */ RotateViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.RotateViewTool),
|
|
114795
114833
|
/* harmony export */ RotationMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RotationMode),
|
|
114796
114834
|
/* harmony export */ RoundOff: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RoundOff),
|
|
114797
114835
|
/* harmony export */ SavedState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.SavedState),
|
|
114798
|
-
/* harmony export */ Scene: () => (/* reexport safe */
|
|
114799
|
-
/* harmony export */ SceneContext: () => (/* reexport safe */
|
|
114800
|
-
/* harmony export */ ScreenViewport: () => (/* reexport safe */
|
|
114801
|
-
/* harmony export */ ScrollViewTool: () => (/* reexport safe */
|
|
114802
|
-
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */
|
|
114803
|
-
/* harmony export */ SelectionMethod: () => (/* reexport safe */
|
|
114804
|
-
/* harmony export */ SelectionMode: () => (/* reexport safe */
|
|
114805
|
-
/* harmony export */ SelectionProcessing: () => (/* reexport safe */
|
|
114806
|
-
/* harmony export */ SelectionSet: () => (/* reexport safe */
|
|
114807
|
-
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */
|
|
114808
|
-
/* harmony export */ SelectionTool: () => (/* reexport safe */
|
|
114809
|
-
/* harmony export */ SetupCameraTool: () => (/* reexport safe */
|
|
114810
|
-
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */
|
|
114811
|
-
/* harmony export */ SheetModelState: () => (/* reexport safe */
|
|
114812
|
-
/* harmony export */ SheetViewState: () => (/* reexport safe */
|
|
114813
|
-
/* harmony export */ SnapDetail: () => (/* reexport safe */
|
|
114814
|
-
/* harmony export */ SnapHeat: () => (/* reexport safe */
|
|
114815
|
-
/* harmony export */ SnapMode: () => (/* reexport safe */
|
|
114816
|
-
/* harmony export */ SnapStatus: () => (/* reexport safe */
|
|
114817
|
-
/* harmony export */ SnapshotConnection: () => (/* reexport safe */
|
|
114818
|
-
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */
|
|
114819
|
-
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */
|
|
114820
|
-
/* harmony export */ SpatialModelState: () => (/* reexport safe */
|
|
114821
|
-
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */
|
|
114822
|
-
/* harmony export */ SpatialViewState: () => (/* reexport safe */
|
|
114823
|
-
/* harmony export */ Sprite: () => (/* reexport safe */
|
|
114824
|
-
/* harmony export */ SpriteLocation: () => (/* reexport safe */
|
|
114825
|
-
/* harmony export */ StandardView: () => (/* reexport safe */
|
|
114826
|
-
/* harmony export */ StandardViewId: () => (/* reexport safe */
|
|
114827
|
-
/* harmony export */ StandardViewTool: () => (/* reexport safe */
|
|
114828
|
-
/* harmony export */ StartOrResume: () => (/* reexport safe */
|
|
114829
|
-
/* harmony export */ Storage: () => (/* reexport safe */
|
|
114830
|
-
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */
|
|
114831
|
-
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */
|
|
114832
|
-
/* harmony export */ SuspendedToolState: () => (/* reexport safe */
|
|
114833
|
-
/* harmony export */ Target: () => (/* reexport safe */
|
|
114836
|
+
/* harmony export */ Scene: () => (/* reexport safe */ _render_Scene__WEBPACK_IMPORTED_MODULE_97__.Scene),
|
|
114837
|
+
/* harmony export */ SceneContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.SceneContext),
|
|
114838
|
+
/* harmony export */ ScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ScreenViewport),
|
|
114839
|
+
/* harmony export */ ScrollViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ScrollViewTool),
|
|
114840
|
+
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SectionDrawingModelState),
|
|
114841
|
+
/* harmony export */ SelectionMethod: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMethod),
|
|
114842
|
+
/* harmony export */ SelectionMode: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMode),
|
|
114843
|
+
/* harmony export */ SelectionProcessing: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionProcessing),
|
|
114844
|
+
/* harmony export */ SelectionSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSet),
|
|
114845
|
+
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSetEventType),
|
|
114846
|
+
/* harmony export */ SelectionTool: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionTool),
|
|
114847
|
+
/* harmony export */ SetupCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupCameraTool),
|
|
114848
|
+
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupWalkCameraTool),
|
|
114849
|
+
/* harmony export */ SheetModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SheetModelState),
|
|
114850
|
+
/* harmony export */ SheetViewState: () => (/* reexport safe */ _SheetViewState__WEBPACK_IMPORTED_MODULE_49__.SheetViewState),
|
|
114851
|
+
/* harmony export */ SnapDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapDetail),
|
|
114852
|
+
/* harmony export */ SnapHeat: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapHeat),
|
|
114853
|
+
/* harmony export */ SnapMode: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapMode),
|
|
114854
|
+
/* harmony export */ SnapStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.SnapStatus),
|
|
114855
|
+
/* harmony export */ SnapshotConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.SnapshotConnection),
|
|
114856
|
+
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */ _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__.SpatialClassifiersState),
|
|
114857
|
+
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialLocationModelState),
|
|
114858
|
+
/* harmony export */ SpatialModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialModelState),
|
|
114859
|
+
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.SpatialTileTreeReferences),
|
|
114860
|
+
/* harmony export */ SpatialViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.SpatialViewState),
|
|
114861
|
+
/* harmony export */ Sprite: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.Sprite),
|
|
114862
|
+
/* harmony export */ SpriteLocation: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.SpriteLocation),
|
|
114863
|
+
/* harmony export */ StandardView: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardView),
|
|
114864
|
+
/* harmony export */ StandardViewId: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardViewId),
|
|
114865
|
+
/* harmony export */ StandardViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.StandardViewTool),
|
|
114866
|
+
/* harmony export */ StartOrResume: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.StartOrResume),
|
|
114867
|
+
/* harmony export */ Storage: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.Storage),
|
|
114868
|
+
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */ _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__.SubCategoriesCache),
|
|
114869
|
+
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.SurveyLengthDescription),
|
|
114870
|
+
/* harmony export */ SuspendedToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.SuspendedToolState),
|
|
114871
|
+
/* harmony export */ Target: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.Target),
|
|
114834
114872
|
/* harmony export */ TentativeOrAccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TentativeOrAccuSnap),
|
|
114835
|
-
/* harmony export */ TentativePoint: () => (/* reexport safe */
|
|
114836
|
-
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */
|
|
114837
|
-
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */
|
|
114838
|
-
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */
|
|
114873
|
+
/* harmony export */ TentativePoint: () => (/* reexport safe */ _TentativePoint__WEBPACK_IMPORTED_MODULE_55__.TentativePoint),
|
|
114874
|
+
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.TerrainDisplayOverrides),
|
|
114875
|
+
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainMeshProvider),
|
|
114876
|
+
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainProviderRegistry),
|
|
114839
114877
|
/* harmony export */ ThreeAxes: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ThreeAxes),
|
|
114840
|
-
/* harmony export */ Tile: () => (/* reexport safe */
|
|
114841
|
-
/* harmony export */ TileAdmin: () => (/* reexport safe */
|
|
114842
|
-
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */
|
|
114843
|
-
/* harmony export */ TileDrawArgs: () => (/* reexport safe */
|
|
114844
|
-
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */
|
|
114845
|
-
/* harmony export */ TileGraphicType: () => (/* reexport safe */
|
|
114846
|
-
/* harmony export */ TileLoadPriority: () => (/* reexport safe */
|
|
114847
|
-
/* harmony export */ TileLoadStatus: () => (/* reexport safe */
|
|
114848
|
-
/* harmony export */ TileRequest: () => (/* reexport safe */
|
|
114849
|
-
/* harmony export */ TileRequestChannel: () => (/* reexport safe */
|
|
114850
|
-
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */
|
|
114851
|
-
/* harmony export */ TileRequestChannels: () => (/* reexport safe */
|
|
114852
|
-
/* harmony export */ TileTree: () => (/* reexport safe */
|
|
114853
|
-
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */
|
|
114854
|
-
/* harmony export */ TileTreeReference: () => (/* reexport safe */
|
|
114855
|
-
/* harmony export */ TileUsageMarker: () => (/* reexport safe */
|
|
114856
|
-
/* harmony export */ TileUser: () => (/* reexport safe */
|
|
114857
|
-
/* harmony export */ TileVisibility: () => (/* reexport safe */
|
|
114858
|
-
/* harmony export */ Tiles: () => (/* reexport safe */
|
|
114859
|
-
/* harmony export */ Tool: () => (/* reexport safe */
|
|
114860
|
-
/* harmony export */ ToolAdmin: () => (/* reexport safe */
|
|
114861
|
-
/* harmony export */ ToolAssistance: () => (/* reexport safe */
|
|
114862
|
-
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */
|
|
114863
|
-
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */
|
|
114864
|
-
/* harmony export */ ToolRegistry: () => (/* reexport safe */
|
|
114865
|
-
/* harmony export */ ToolSettings: () => (/* reexport safe */
|
|
114866
|
-
/* harmony export */ ToolSettingsState: () => (/* reexport safe */
|
|
114867
|
-
/* harmony export */ ToolState: () => (/* reexport safe */
|
|
114878
|
+
/* harmony export */ Tile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.Tile),
|
|
114879
|
+
/* harmony export */ TileAdmin: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileAdmin),
|
|
114880
|
+
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileBoundingBoxes),
|
|
114881
|
+
/* harmony export */ TileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileDrawArgs),
|
|
114882
|
+
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGeometryCollector),
|
|
114883
|
+
/* harmony export */ TileGraphicType: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGraphicType),
|
|
114884
|
+
/* harmony export */ TileLoadPriority: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadPriority),
|
|
114885
|
+
/* harmony export */ TileLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadStatus),
|
|
114886
|
+
/* harmony export */ TileRequest: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequest),
|
|
114887
|
+
/* harmony export */ TileRequestChannel: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannel),
|
|
114888
|
+
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannelStatistics),
|
|
114889
|
+
/* harmony export */ TileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannels),
|
|
114890
|
+
/* harmony export */ TileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTree),
|
|
114891
|
+
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeLoadStatus),
|
|
114892
|
+
/* harmony export */ TileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeReference),
|
|
114893
|
+
/* harmony export */ TileUsageMarker: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUsageMarker),
|
|
114894
|
+
/* harmony export */ TileUser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUser),
|
|
114895
|
+
/* harmony export */ TileVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileVisibility),
|
|
114896
|
+
/* harmony export */ Tiles: () => (/* reexport safe */ _Tiles__WEBPACK_IMPORTED_MODULE_56__.Tiles),
|
|
114897
|
+
/* harmony export */ Tool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.Tool),
|
|
114898
|
+
/* harmony export */ ToolAdmin: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolAdmin),
|
|
114899
|
+
/* harmony export */ ToolAssistance: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistance),
|
|
114900
|
+
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceImage),
|
|
114901
|
+
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceInputMethod),
|
|
114902
|
+
/* harmony export */ ToolRegistry: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ToolRegistry),
|
|
114903
|
+
/* harmony export */ ToolSettings: () => (/* reexport safe */ _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__.ToolSettings),
|
|
114904
|
+
/* harmony export */ ToolSettingsState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolSettingsState),
|
|
114905
|
+
/* harmony export */ ToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolState),
|
|
114868
114906
|
/* harmony export */ TouchCursor: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TouchCursor),
|
|
114869
|
-
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */
|
|
114870
|
-
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */
|
|
114871
|
-
/* harmony export */ UniformType: () => (/* reexport safe */
|
|
114872
|
-
/* harmony export */ VaryingType: () => (/* reexport safe */
|
|
114873
|
-
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */
|
|
114874
|
-
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */
|
|
114875
|
-
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */
|
|
114876
|
-
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */
|
|
114877
|
-
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */
|
|
114878
|
-
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */
|
|
114879
|
-
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */
|
|
114880
|
-
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */
|
|
114881
|
-
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */
|
|
114882
|
-
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */
|
|
114883
|
-
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */
|
|
114884
|
-
/* harmony export */ ViewClipTool: () => (/* reexport safe */
|
|
114885
|
-
/* harmony export */ ViewCreator2d: () => (/* reexport safe */
|
|
114886
|
-
/* harmony export */ ViewCreator3d: () => (/* reexport safe */
|
|
114887
|
-
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */
|
|
114888
|
-
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */
|
|
114889
|
-
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */
|
|
114890
|
-
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */
|
|
114891
|
-
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */
|
|
114892
|
-
/* harmony export */ ViewHandleArray: () => (/* reexport safe */
|
|
114893
|
-
/* harmony export */ ViewHandleType: () => (/* reexport safe */
|
|
114894
|
-
/* harmony export */ ViewManager: () => (/* reexport safe */
|
|
114895
|
-
/* harmony export */ ViewManip: () => (/* reexport safe */
|
|
114896
|
-
/* harmony export */ ViewPose: () => (/* reexport safe */
|
|
114897
|
-
/* harmony export */ ViewPose2d: () => (/* reexport safe */
|
|
114898
|
-
/* harmony export */ ViewPose3d: () => (/* reexport safe */
|
|
114899
|
-
/* harmony export */ ViewRect: () => (/* reexport safe */
|
|
114900
|
-
/* harmony export */ ViewRedoTool: () => (/* reexport safe */
|
|
114901
|
-
/* harmony export */ ViewState: () => (/* reexport safe */
|
|
114902
|
-
/* harmony export */ ViewState2d: () => (/* reexport safe */
|
|
114903
|
-
/* harmony export */ ViewState3d: () => (/* reexport safe */
|
|
114904
|
-
/* harmony export */ ViewStatus: () => (/* reexport safe */
|
|
114905
|
-
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */
|
|
114906
|
-
/* harmony export */ ViewTool: () => (/* reexport safe */
|
|
114907
|
-
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */
|
|
114908
|
-
/* harmony export */ ViewUndoTool: () => (/* reexport safe */
|
|
114909
|
-
/* harmony export */ ViewingSpace: () => (/* reexport safe */
|
|
114910
|
-
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */
|
|
114911
|
-
/* harmony export */ Viewport: () => (/* reexport safe */
|
|
114912
|
-
/* harmony export */ WalkViewTool: () => (/* reexport safe */
|
|
114913
|
-
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */
|
|
114914
|
-
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */
|
|
114915
|
-
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */
|
|
114916
|
-
/* harmony export */ WindowAreaTool: () => (/* reexport safe */
|
|
114917
|
-
/* harmony export */ WmsUtilities: () => (/* reexport safe */
|
|
114918
|
-
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */
|
|
114919
|
-
/* harmony export */ ZoomViewTool: () => (/* reexport safe */
|
|
114920
|
-
/* harmony export */ _callIpcChannel: () => (/* reexport safe */
|
|
114921
|
-
/* harmony export */ _implementationProhibited: () => (/* reexport safe */
|
|
114922
|
-
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */
|
|
114923
|
-
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */
|
|
114924
|
-
/* harmony export */ appendQueryParams: () => (/* reexport safe */
|
|
114925
|
-
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */
|
|
114926
|
-
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */
|
|
114927
|
-
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */
|
|
114928
|
-
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */
|
|
114929
|
-
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */
|
|
114930
|
-
/* harmony export */ collectMaskRefs: () => (/* reexport safe */
|
|
114931
|
-
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */
|
|
114932
|
-
/* harmony export */ connectViewportViews: () => (/* reexport safe */
|
|
114933
|
-
/* harmony export */ connectViewports: () => (/* reexport safe */
|
|
114934
|
-
/* harmony export */ createQuantityDescription: () => (/* reexport safe */
|
|
114935
|
-
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */
|
|
114936
|
-
/* harmony export */ createWorkerProxy: () => (/* reexport safe */
|
|
114937
|
-
/* harmony export */ deflateCoordinates: () => (/* reexport safe */
|
|
114938
|
-
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */
|
|
114939
|
-
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */
|
|
114940
|
-
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */
|
|
114941
|
-
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */
|
|
114942
|
-
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */
|
|
114943
|
-
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */
|
|
114944
|
-
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */
|
|
114945
|
-
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */
|
|
114946
|
-
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */
|
|
114907
|
+
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportFrustumSync),
|
|
114908
|
+
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportSync),
|
|
114909
|
+
/* harmony export */ UniformType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.UniformType),
|
|
114910
|
+
/* harmony export */ VaryingType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.VaryingType),
|
|
114911
|
+
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByElementTool),
|
|
114912
|
+
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByPlaneTool),
|
|
114913
|
+
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByRangeTool),
|
|
114914
|
+
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByShapeTool),
|
|
114915
|
+
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipClearTool),
|
|
114916
|
+
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipControlArrow),
|
|
114917
|
+
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecoration),
|
|
114918
|
+
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecorationProvider),
|
|
114919
|
+
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipModifyTool),
|
|
114920
|
+
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipPlanesModifyTool),
|
|
114921
|
+
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipShapeModifyTool),
|
|
114922
|
+
/* harmony export */ ViewClipTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipTool),
|
|
114923
|
+
/* harmony export */ ViewCreator2d: () => (/* reexport safe */ _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__.ViewCreator2d),
|
|
114924
|
+
/* harmony export */ ViewCreator3d: () => (/* reexport safe */ _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__.ViewCreator3d),
|
|
114925
|
+
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.ViewGlobalLocationConstants),
|
|
114926
|
+
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeBirdTool),
|
|
114927
|
+
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeIModelTool),
|
|
114928
|
+
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeLocationTool),
|
|
114929
|
+
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeSatelliteTool),
|
|
114930
|
+
/* harmony export */ ViewHandleArray: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleArray),
|
|
114931
|
+
/* harmony export */ ViewHandleType: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleType),
|
|
114932
|
+
/* harmony export */ ViewManager: () => (/* reexport safe */ _ViewManager__WEBPACK_IMPORTED_MODULE_62__.ViewManager),
|
|
114933
|
+
/* harmony export */ ViewManip: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewManip),
|
|
114934
|
+
/* harmony export */ ViewPose: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose),
|
|
114935
|
+
/* harmony export */ ViewPose2d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose2d),
|
|
114936
|
+
/* harmony export */ ViewPose3d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose3d),
|
|
114937
|
+
/* harmony export */ ViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.ViewRect),
|
|
114938
|
+
/* harmony export */ ViewRedoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewRedoTool),
|
|
114939
|
+
/* harmony export */ ViewState: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState),
|
|
114940
|
+
/* harmony export */ ViewState2d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState2d),
|
|
114941
|
+
/* harmony export */ ViewState3d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState3d),
|
|
114942
|
+
/* harmony export */ ViewStatus: () => (/* reexport safe */ _ViewStatus__WEBPACK_IMPORTED_MODULE_67__.ViewStatus),
|
|
114943
|
+
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewToggleCameraTool),
|
|
114944
|
+
/* harmony export */ ViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewTool),
|
|
114945
|
+
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ViewUndoEvent),
|
|
114946
|
+
/* harmony export */ ViewUndoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewUndoTool),
|
|
114947
|
+
/* harmony export */ ViewingSpace: () => (/* reexport safe */ _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__.ViewingSpace),
|
|
114948
|
+
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewingToolHandle),
|
|
114949
|
+
/* harmony export */ Viewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.Viewport),
|
|
114950
|
+
/* harmony export */ WalkViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WalkViewTool),
|
|
114951
|
+
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorProjection),
|
|
114952
|
+
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorTilingScheme),
|
|
114953
|
+
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.WheelEventProcessor),
|
|
114954
|
+
/* harmony export */ WindowAreaTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WindowAreaTool),
|
|
114955
|
+
/* harmony export */ WmsUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.WmsUtilities),
|
|
114956
|
+
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.WorkerGraphicDescriptionContext),
|
|
114957
|
+
/* harmony export */ ZoomViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ZoomViewTool),
|
|
114958
|
+
/* harmony export */ _callIpcChannel: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._callIpcChannel),
|
|
114959
|
+
/* harmony export */ _implementationProhibited: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._implementationProhibited),
|
|
114960
|
+
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._scheduleScriptReference),
|
|
114961
|
+
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.acquireImdlDecoder),
|
|
114962
|
+
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.appendQueryParams),
|
|
114963
|
+
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeight),
|
|
114964
|
+
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeightFromGcs),
|
|
114965
|
+
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.calculateEcefToDbTransformAtLocation),
|
|
114966
|
+
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToImageBuffer),
|
|
114967
|
+
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToResizedCanvasWithBars),
|
|
114968
|
+
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.collectMaskRefs),
|
|
114969
|
+
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportFrusta),
|
|
114970
|
+
/* harmony export */ connectViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportViews),
|
|
114971
|
+
/* harmony export */ connectViewports: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewports),
|
|
114972
|
+
/* harmony export */ createQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.createQuantityDescription),
|
|
114973
|
+
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.createSpatialTileTreeReferences),
|
|
114974
|
+
/* harmony export */ createWorkerProxy: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.createWorkerProxy),
|
|
114975
|
+
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.deflateCoordinates),
|
|
114976
|
+
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.extractImageSourceDimensions),
|
|
114977
|
+
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobe),
|
|
114978
|
+
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobeFromGcs),
|
|
114979
|
+
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.formatAnimationBranchId),
|
|
114980
|
+
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCenteredViewRect),
|
|
114981
|
+
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.getCesiumAssetUrl),
|
|
114982
|
+
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCompressedJpegFromCanvas),
|
|
114983
|
+
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.getFrustumPlaneIntersectionDepthRange),
|
|
114984
|
+
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.getGoogle3dTilesUrl),
|
|
114947
114985
|
/* harmony export */ getHeightAverage: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightAverage),
|
|
114948
114986
|
/* harmony export */ getHeightRange: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightRange),
|
|
114949
|
-
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */
|
|
114950
|
-
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */
|
|
114951
|
-
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */
|
|
114952
|
-
/* harmony export */ headersIncludeAuthMethod: () => (/* reexport safe */
|
|
114953
|
-
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */
|
|
114954
|
-
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */
|
|
114955
|
-
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */
|
|
114956
|
-
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */
|
|
114957
|
-
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */
|
|
114958
|
-
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */
|
|
114959
|
-
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */
|
|
114960
|
-
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */
|
|
114961
|
-
/* harmony export */ isTextInputFormatPropEditorSpec: () => (/* reexport safe */
|
|
114962
|
-
/* harmony export */ isTextSelectFormatPropEditorSpec: () => (/* reexport safe */
|
|
114963
|
-
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */
|
|
114964
|
-
/* harmony export */ metersToRange: () => (/* reexport safe */
|
|
114965
|
-
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */
|
|
114966
|
-
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */
|
|
114967
|
-
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */
|
|
114968
|
-
/* harmony export */ readElementGraphics: () => (/* reexport safe */
|
|
114969
|
-
/* harmony export */ readGltf: () => (/* reexport safe */
|
|
114970
|
-
/* harmony export */ readGltfGraphics: () => (/* reexport safe */
|
|
114971
|
-
/* harmony export */ readGltfTemplate: () => (/* reexport safe */
|
|
114972
|
-
/* harmony export */ registerWorker: () => (/* reexport safe */
|
|
114973
|
-
/* harmony export */ setBasicAuthorization: () => (/* reexport safe */
|
|
114974
|
-
/* harmony export */ setRequestTimeout: () => (/* reexport safe */
|
|
114975
|
-
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */
|
|
114976
|
-
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */
|
|
114977
|
-
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */
|
|
114978
|
-
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */
|
|
114987
|
+
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceFormatForMimeType),
|
|
114988
|
+
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceMimeType),
|
|
114989
|
+
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.getQuantityTypeKey),
|
|
114990
|
+
/* harmony export */ headersIncludeAuthMethod: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.headersIncludeAuthMethod),
|
|
114991
|
+
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBitmapFromImageSource),
|
|
114992
|
+
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToBase64EncodedPng),
|
|
114993
|
+
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToCanvas),
|
|
114994
|
+
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToPngDataUrl),
|
|
114995
|
+
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromImageSource),
|
|
114996
|
+
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromUrl),
|
|
114997
|
+
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isCheckboxFormatPropEditorSpec),
|
|
114998
|
+
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.isCustomQuantityTypeDefinition),
|
|
114999
|
+
/* harmony export */ isTextInputFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextInputFormatPropEditorSpec),
|
|
115000
|
+
/* harmony export */ isTextSelectFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextSelectFormatPropEditorSpec),
|
|
115001
|
+
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */ _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__.linePlaneIntersect),
|
|
115002
|
+
/* harmony export */ metersToRange: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.metersToRange),
|
|
115003
|
+
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.openImageDataUrlInNewWindow),
|
|
115004
|
+
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.queryTerrainElevationOffset),
|
|
115005
|
+
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.rangeToCartographicArea),
|
|
115006
|
+
/* harmony export */ readElementGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readElementGraphics),
|
|
115007
|
+
/* harmony export */ readGltf: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltf),
|
|
115008
|
+
/* harmony export */ readGltfGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfGraphics),
|
|
115009
|
+
/* harmony export */ readGltfTemplate: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfTemplate),
|
|
115010
|
+
/* harmony export */ registerWorker: () => (/* reexport safe */ _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__.registerWorker),
|
|
115011
|
+
/* harmony export */ setBasicAuthorization: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setBasicAuthorization),
|
|
115012
|
+
/* harmony export */ setRequestTimeout: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setRequestTimeout),
|
|
115013
|
+
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportFrusta),
|
|
115014
|
+
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportViews),
|
|
115015
|
+
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.tryImageElementFromUrl),
|
|
115016
|
+
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.viewGlobalLocation)
|
|
114979
115017
|
/* harmony export */ });
|
|
114980
115018
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
114981
115019
|
/* harmony import */ var _AccuSnap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AccuSnap */ "../../core/frontend/lib/esm/AccuSnap.js");
|
|
@@ -114986,122 +115024,123 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
114986
115024
|
/* harmony import */ var _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BriefcaseTxns */ "../../core/frontend/lib/esm/BriefcaseTxns.js");
|
|
114987
115025
|
/* harmony import */ var _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CatalogConnection */ "../../core/frontend/lib/esm/CatalogConnection.js");
|
|
114988
115026
|
/* harmony import */ var _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CategorySelectorState */ "../../core/frontend/lib/esm/CategorySelectorState.js");
|
|
114989
|
-
/* harmony import */ var
|
|
114990
|
-
/* harmony import */ var
|
|
114991
|
-
/* harmony import */ var
|
|
114992
|
-
/* harmony import */ var
|
|
114993
|
-
/* harmony import */ var
|
|
114994
|
-
/* harmony import */ var
|
|
114995
|
-
/* harmony import */ var
|
|
114996
|
-
/* harmony import */ var
|
|
114997
|
-
/* harmony import */ var
|
|
114998
|
-
/* harmony import */ var
|
|
114999
|
-
/* harmony import */ var
|
|
115000
|
-
/* harmony import */ var
|
|
115001
|
-
/* harmony import */ var
|
|
115002
|
-
/* harmony import */ var
|
|
115003
|
-
/* harmony import */ var
|
|
115004
|
-
/* harmony import */ var
|
|
115005
|
-
/* harmony import */ var
|
|
115006
|
-
/* harmony import */ var
|
|
115007
|
-
/* harmony import */ var
|
|
115008
|
-
/* harmony import */ var
|
|
115009
|
-
/* harmony import */ var
|
|
115010
|
-
/* harmony import */ var
|
|
115011
|
-
/* harmony import */ var
|
|
115012
|
-
/* harmony import */ var
|
|
115013
|
-
/* harmony import */ var
|
|
115014
|
-
/* harmony import */ var
|
|
115015
|
-
/* harmony import */ var
|
|
115016
|
-
/* harmony import */ var
|
|
115017
|
-
/* harmony import */ var
|
|
115018
|
-
/* harmony import */ var
|
|
115019
|
-
/* harmony import */ var
|
|
115020
|
-
/* harmony import */ var
|
|
115021
|
-
/* harmony import */ var
|
|
115022
|
-
/* harmony import */ var
|
|
115023
|
-
/* harmony import */ var
|
|
115024
|
-
/* harmony import */ var
|
|
115025
|
-
/* harmony import */ var
|
|
115026
|
-
/* harmony import */ var
|
|
115027
|
-
/* harmony import */ var
|
|
115028
|
-
/* harmony import */ var
|
|
115029
|
-
/* harmony import */ var
|
|
115030
|
-
/* harmony import */ var
|
|
115031
|
-
/* harmony import */ var
|
|
115032
|
-
/* harmony import */ var
|
|
115033
|
-
/* harmony import */ var
|
|
115034
|
-
/* harmony import */ var
|
|
115035
|
-
/* harmony import */ var
|
|
115036
|
-
/* harmony import */ var
|
|
115037
|
-
/* harmony import */ var
|
|
115038
|
-
/* harmony import */ var
|
|
115039
|
-
/* harmony import */ var
|
|
115040
|
-
/* harmony import */ var
|
|
115041
|
-
/* harmony import */ var
|
|
115042
|
-
/* harmony import */ var
|
|
115043
|
-
/* harmony import */ var
|
|
115044
|
-
/* harmony import */ var
|
|
115045
|
-
/* harmony import */ var
|
|
115046
|
-
/* harmony import */ var
|
|
115047
|
-
/* harmony import */ var
|
|
115048
|
-
/* harmony import */ var
|
|
115049
|
-
/* harmony import */ var
|
|
115050
|
-
/* harmony import */ var
|
|
115051
|
-
/* harmony import */ var
|
|
115052
|
-
/* harmony import */ var
|
|
115053
|
-
/* harmony import */ var
|
|
115054
|
-
/* harmony import */ var
|
|
115055
|
-
/* harmony import */ var
|
|
115056
|
-
/* harmony import */ var
|
|
115057
|
-
/* harmony import */ var
|
|
115058
|
-
/* harmony import */ var
|
|
115059
|
-
/* harmony import */ var
|
|
115060
|
-
/* harmony import */ var
|
|
115061
|
-
/* harmony import */ var
|
|
115062
|
-
/* harmony import */ var
|
|
115063
|
-
/* harmony import */ var
|
|
115064
|
-
/* harmony import */ var
|
|
115065
|
-
/* harmony import */ var
|
|
115066
|
-
/* harmony import */ var
|
|
115067
|
-
/* harmony import */ var
|
|
115068
|
-
/* harmony import */ var
|
|
115069
|
-
/* harmony import */ var
|
|
115070
|
-
/* harmony import */ var
|
|
115071
|
-
/* harmony import */ var
|
|
115072
|
-
/* harmony import */ var
|
|
115073
|
-
/* harmony import */ var
|
|
115074
|
-
/* harmony import */ var
|
|
115075
|
-
/* harmony import */ var
|
|
115076
|
-
/* harmony import */ var
|
|
115077
|
-
/* harmony import */ var
|
|
115078
|
-
/* harmony import */ var
|
|
115079
|
-
/* harmony import */ var
|
|
115080
|
-
/* harmony import */ var
|
|
115081
|
-
/* harmony import */ var
|
|
115082
|
-
/* harmony import */ var
|
|
115083
|
-
/* harmony import */ var
|
|
115084
|
-
/* harmony import */ var
|
|
115085
|
-
/* harmony import */ var
|
|
115086
|
-
/* harmony import */ var
|
|
115087
|
-
/* harmony import */ var
|
|
115088
|
-
/* harmony import */ var
|
|
115089
|
-
/* harmony import */ var
|
|
115090
|
-
/* harmony import */ var
|
|
115091
|
-
/* harmony import */ var
|
|
115092
|
-
/* harmony import */ var
|
|
115093
|
-
/* harmony import */ var
|
|
115094
|
-
/* harmony import */ var
|
|
115095
|
-
/* harmony import */ var
|
|
115096
|
-
/* harmony import */ var
|
|
115097
|
-
/* harmony import */ var
|
|
115098
|
-
/* harmony import */ var
|
|
115099
|
-
/* harmony import */ var
|
|
115100
|
-
/* harmony import */ var
|
|
115101
|
-
/* harmony import */ var
|
|
115102
|
-
/* harmony import */ var
|
|
115103
|
-
/* harmony import */ var
|
|
115104
|
-
/* harmony import */ var
|
|
115027
|
+
/* harmony import */ var _CesiumAccessClient__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CesiumAccessClient */ "../../core/frontend/lib/esm/CesiumAccessClient.js");
|
|
115028
|
+
/* harmony import */ var _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ChangeFlags */ "../../core/frontend/lib/esm/ChangeFlags.js");
|
|
115029
|
+
/* harmony import */ var _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CheckpointConnection */ "../../core/frontend/lib/esm/CheckpointConnection.js");
|
|
115030
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./common */ "../../core/frontend/lib/esm/common.js");
|
|
115031
|
+
/* harmony import */ var _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ContextRealityModelState */ "../../core/frontend/lib/esm/ContextRealityModelState.js");
|
|
115032
|
+
/* harmony import */ var _CoordSystem__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./CoordSystem */ "../../core/frontend/lib/esm/CoordSystem.js");
|
|
115033
|
+
/* harmony import */ var _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./DecorationsCache */ "../../core/frontend/lib/esm/DecorationsCache.js");
|
|
115034
|
+
/* harmony import */ var _DevTools__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./DevTools */ "../../core/frontend/lib/esm/DevTools.js");
|
|
115035
|
+
/* harmony import */ var _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DisplayStyleState */ "../../core/frontend/lib/esm/DisplayStyleState.js");
|
|
115036
|
+
/* harmony import */ var _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./DrawingViewState */ "../../core/frontend/lib/esm/DrawingViewState.js");
|
|
115037
|
+
/* harmony import */ var _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ElementLocateManager */ "../../core/frontend/lib/esm/ElementLocateManager.js");
|
|
115038
|
+
/* harmony import */ var _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./EmphasizeElements */ "../../core/frontend/lib/esm/EmphasizeElements.js");
|
|
115039
|
+
/* harmony import */ var _EntityState__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./EntityState */ "../../core/frontend/lib/esm/EntityState.js");
|
|
115040
|
+
/* harmony import */ var _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./EnvironmentDecorations */ "../../core/frontend/lib/esm/EnvironmentDecorations.js");
|
|
115041
|
+
/* harmony import */ var _FeatureOverrideProvider__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./FeatureOverrideProvider */ "../../core/frontend/lib/esm/FeatureOverrideProvider.js");
|
|
115042
|
+
/* harmony import */ var _FlashSettings__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./FlashSettings */ "../../core/frontend/lib/esm/FlashSettings.js");
|
|
115043
|
+
/* harmony import */ var _FrontendHubAccess__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./FrontendHubAccess */ "../../core/frontend/lib/esm/FrontendHubAccess.js");
|
|
115044
|
+
/* harmony import */ var _Frustum2d__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./Frustum2d */ "../../core/frontend/lib/esm/Frustum2d.js");
|
|
115045
|
+
/* harmony import */ var _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./FrustumAnimator */ "../../core/frontend/lib/esm/FrustumAnimator.js");
|
|
115046
|
+
/* harmony import */ var _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FuzzySearch */ "../../core/frontend/lib/esm/FuzzySearch.js");
|
|
115047
|
+
/* harmony import */ var _GeoServices__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./GeoServices */ "../../core/frontend/lib/esm/GeoServices.js");
|
|
115048
|
+
/* harmony import */ var _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./GlobeAnimator */ "../../core/frontend/lib/esm/GlobeAnimator.js");
|
|
115049
|
+
/* harmony import */ var _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GraphicalEditingScope */ "../../core/frontend/lib/esm/GraphicalEditingScope.js");
|
|
115050
|
+
/* harmony import */ var _HitDetail__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./HitDetail */ "../../core/frontend/lib/esm/HitDetail.js");
|
|
115051
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
115052
|
+
/* harmony import */ var _IModelConnection__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./IModelConnection */ "../../core/frontend/lib/esm/IModelConnection.js");
|
|
115053
|
+
/* harmony import */ var _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./IModelRoutingContext */ "../../core/frontend/lib/esm/IModelRoutingContext.js");
|
|
115054
|
+
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
115055
|
+
/* harmony import */ var _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./LinePlaneIntersect */ "../../core/frontend/lib/esm/LinePlaneIntersect.js");
|
|
115056
|
+
/* harmony import */ var _MarginPercent__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./MarginPercent */ "../../core/frontend/lib/esm/MarginPercent.js");
|
|
115057
|
+
/* harmony import */ var _Marker__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Marker */ "../../core/frontend/lib/esm/Marker.js");
|
|
115058
|
+
/* harmony import */ var _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ModelSelectorState */ "../../core/frontend/lib/esm/ModelSelectorState.js");
|
|
115059
|
+
/* harmony import */ var _ModelState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ModelState */ "../../core/frontend/lib/esm/ModelState.js");
|
|
115060
|
+
/* harmony import */ var _NativeApp__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./NativeApp */ "../../core/frontend/lib/esm/NativeApp.js");
|
|
115061
|
+
/* harmony import */ var _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./NativeAppLogger */ "../../core/frontend/lib/esm/NativeAppLogger.js");
|
|
115062
|
+
/* harmony import */ var _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./NoRenderApp */ "../../core/frontend/lib/esm/NoRenderApp.js");
|
|
115063
|
+
/* harmony import */ var _NotificationManager__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./NotificationManager */ "../../core/frontend/lib/esm/NotificationManager.js");
|
|
115064
|
+
/* harmony import */ var _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./PerModelCategoryVisibility */ "../../core/frontend/lib/esm/PerModelCategoryVisibility.js");
|
|
115065
|
+
/* harmony import */ var _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./PlanarClipMaskState */ "../../core/frontend/lib/esm/PlanarClipMaskState.js");
|
|
115066
|
+
/* harmony import */ var _SelectionSet__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SelectionSet */ "../../core/frontend/lib/esm/SelectionSet.js");
|
|
115067
|
+
/* harmony import */ var _SheetViewState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SheetViewState */ "../../core/frontend/lib/esm/SheetViewState.js");
|
|
115068
|
+
/* harmony import */ var _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SpatialClassifiersState */ "../../core/frontend/lib/esm/SpatialClassifiersState.js");
|
|
115069
|
+
/* harmony import */ var _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SpatialViewState */ "../../core/frontend/lib/esm/SpatialViewState.js");
|
|
115070
|
+
/* harmony import */ var _Sprites__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Sprites */ "../../core/frontend/lib/esm/Sprites.js");
|
|
115071
|
+
/* harmony import */ var _StandardView__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./StandardView */ "../../core/frontend/lib/esm/StandardView.js");
|
|
115072
|
+
/* harmony import */ var _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SubCategoriesCache */ "../../core/frontend/lib/esm/SubCategoriesCache.js");
|
|
115073
|
+
/* harmony import */ var _TentativePoint__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./TentativePoint */ "../../core/frontend/lib/esm/TentativePoint.js");
|
|
115074
|
+
/* harmony import */ var _Tiles__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Tiles */ "../../core/frontend/lib/esm/Tiles.js");
|
|
115075
|
+
/* harmony import */ var _UserPreferences__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./UserPreferences */ "../../core/frontend/lib/esm/UserPreferences.js");
|
|
115076
|
+
/* harmony import */ var _ViewAnimation__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ViewAnimation */ "../../core/frontend/lib/esm/ViewAnimation.js");
|
|
115077
|
+
/* harmony import */ var _ViewContext__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./ViewContext */ "../../core/frontend/lib/esm/ViewContext.js");
|
|
115078
|
+
/* harmony import */ var _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ViewGlobalLocation */ "../../core/frontend/lib/esm/ViewGlobalLocation.js");
|
|
115079
|
+
/* harmony import */ var _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ViewingSpace */ "../../core/frontend/lib/esm/ViewingSpace.js");
|
|
115080
|
+
/* harmony import */ var _ViewManager__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ViewManager */ "../../core/frontend/lib/esm/ViewManager.js");
|
|
115081
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
115082
|
+
/* harmony import */ var _ViewportSync__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ViewportSync */ "../../core/frontend/lib/esm/ViewportSync.js");
|
|
115083
|
+
/* harmony import */ var _ViewPose__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ViewPose */ "../../core/frontend/lib/esm/ViewPose.js");
|
|
115084
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
115085
|
+
/* harmony import */ var _ViewStatus__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ViewStatus */ "../../core/frontend/lib/esm/ViewStatus.js");
|
|
115086
|
+
/* harmony import */ var _extension_Extension__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./extension/Extension */ "../../core/frontend/lib/esm/extension/Extension.js");
|
|
115087
|
+
/* harmony import */ var _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./extension/providers/LocalExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/LocalExtensionProvider.js");
|
|
115088
|
+
/* harmony import */ var _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./extension/providers/RemoteExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/RemoteExtensionProvider.js");
|
|
115089
|
+
/* harmony import */ var _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./properties/AngleDescription */ "../../core/frontend/lib/esm/properties/AngleDescription.js");
|
|
115090
|
+
/* harmony import */ var _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./properties/FormattedQuantityDescription */ "../../core/frontend/lib/esm/properties/FormattedQuantityDescription.js");
|
|
115091
|
+
/* harmony import */ var _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./properties/LengthDescription */ "../../core/frontend/lib/esm/properties/LengthDescription.js");
|
|
115092
|
+
/* harmony import */ var _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./quantity-formatting/QuantityFormatter */ "../../core/frontend/lib/esm/quantity-formatting/QuantityFormatter.js");
|
|
115093
|
+
/* harmony import */ var _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./quantity-formatting/BaseUnitFormattingSettingsProvider */ "../../core/frontend/lib/esm/quantity-formatting/BaseUnitFormattingSettingsProvider.js");
|
|
115094
|
+
/* harmony import */ var _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./quantity-formatting/LocalUnitFormatProvider */ "../../core/frontend/lib/esm/quantity-formatting/LocalUnitFormatProvider.js");
|
|
115095
|
+
/* harmony import */ var _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./quantity-formatting/QuantityTypesEditorSpecs */ "../../core/frontend/lib/esm/quantity-formatting/QuantityTypesEditorSpecs.js");
|
|
115096
|
+
/* harmony import */ var _render_CanvasDecoration__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./render/CanvasDecoration */ "../../core/frontend/lib/esm/render/CanvasDecoration.js");
|
|
115097
|
+
/* harmony import */ var _render_CreateRenderMaterialArgs__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./render/CreateRenderMaterialArgs */ "../../core/frontend/lib/esm/render/CreateRenderMaterialArgs.js");
|
|
115098
|
+
/* harmony import */ var _render_CreateTextureArgs__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./render/CreateTextureArgs */ "../../core/frontend/lib/esm/render/CreateTextureArgs.js");
|
|
115099
|
+
/* harmony import */ var _render_Decorations__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./render/Decorations */ "../../core/frontend/lib/esm/render/Decorations.js");
|
|
115100
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
115101
|
+
/* harmony import */ var _render_FrameStats__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./render/FrameStats */ "../../core/frontend/lib/esm/render/FrameStats.js");
|
|
115102
|
+
/* harmony import */ var _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./render/GraphicBranch */ "../../core/frontend/lib/esm/render/GraphicBranch.js");
|
|
115103
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
115104
|
+
/* harmony import */ var _render_GraphicTemplate__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./render/GraphicTemplate */ "../../core/frontend/lib/esm/render/GraphicTemplate.js");
|
|
115105
|
+
/* harmony import */ var _render_MeshArgs__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./render/MeshArgs */ "../../core/frontend/lib/esm/render/MeshArgs.js");
|
|
115106
|
+
/* harmony import */ var _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./render/ParticleCollectionBuilder */ "../../core/frontend/lib/esm/render/ParticleCollectionBuilder.js");
|
|
115107
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
115108
|
+
/* harmony import */ var _render_PolylineArgs__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./render/PolylineArgs */ "../../core/frontend/lib/esm/render/PolylineArgs.js");
|
|
115109
|
+
/* harmony import */ var _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./render/RealityMeshParams */ "../../core/frontend/lib/esm/render/RealityMeshParams.js");
|
|
115110
|
+
/* harmony import */ var _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./render/RenderClipVolume */ "../../core/frontend/lib/esm/render/RenderClipVolume.js");
|
|
115111
|
+
/* harmony import */ var _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./render/RenderGraphic */ "../../core/frontend/lib/esm/render/RenderGraphic.js");
|
|
115112
|
+
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
115113
|
+
/* harmony import */ var _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./render/RenderSystem */ "../../core/frontend/lib/esm/render/RenderSystem.js");
|
|
115114
|
+
/* harmony import */ var _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./render/RenderTarget */ "../../core/frontend/lib/esm/render/RenderTarget.js");
|
|
115115
|
+
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
115116
|
+
/* harmony import */ var _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./render/ScreenSpaceEffectBuilder */ "../../core/frontend/lib/esm/render/ScreenSpaceEffectBuilder.js");
|
|
115117
|
+
/* harmony import */ var _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./render/VisibleFeature */ "../../core/frontend/lib/esm/render/VisibleFeature.js");
|
|
115118
|
+
/* 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");
|
|
115119
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
115120
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
115121
|
+
/* harmony import */ var _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./tools/AccuDrawViewportUI */ "../../core/frontend/lib/esm/tools/AccuDrawViewportUI.js");
|
|
115122
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
115123
|
+
/* harmony import */ var _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./tools/EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
115124
|
+
/* harmony import */ var _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./tools/ElementSetTool */ "../../core/frontend/lib/esm/tools/ElementSetTool.js");
|
|
115125
|
+
/* harmony import */ var _tools_EventController__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./tools/EventController */ "../../core/frontend/lib/esm/tools/EventController.js");
|
|
115126
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
115127
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
115128
|
+
/* harmony import */ var _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./tools/PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
115129
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
115130
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
115131
|
+
/* harmony import */ var _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./tools/ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
115132
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
115133
|
+
/* harmony import */ var _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./tools/ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
115134
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
115135
|
+
/* harmony import */ var _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./workers/RegisterWorker */ "../../core/frontend/lib/esm/workers/RegisterWorker.js");
|
|
115136
|
+
/* harmony import */ var _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./BackgroundMapGeometry */ "../../core/frontend/lib/esm/BackgroundMapGeometry.js");
|
|
115137
|
+
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
115138
|
+
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
115139
|
+
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
115140
|
+
/* harmony import */ var _request_utils__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./request/utils */ "../../core/frontend/lib/esm/request/utils.js");
|
|
115141
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
115142
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/frontend/lib/esm/internal/cross-package.js");
|
|
115143
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
115105
115144
|
/*---------------------------------------------------------------------------------------------
|
|
115106
115145
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
115107
115146
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -115228,6 +115267,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
115228
115267
|
|
|
115229
115268
|
|
|
115230
115269
|
|
|
115270
|
+
|
|
115231
115271
|
|
|
115232
115272
|
|
|
115233
115273
|
// TODO/FIX: "./extension/ExtensionRuntime" import has to be last to avoid circular dependency errors.
|
|
@@ -168570,8 +168610,16 @@ class TileAdmin {
|
|
|
168570
168610
|
contextPreloadParentDepth;
|
|
168571
168611
|
/** @internal */
|
|
168572
168612
|
contextPreloadParentSkip;
|
|
168573
|
-
/**
|
|
168613
|
+
/** The Cesium Ion API key supplied via [[TileAdmin.Props.cesiumIonKey]], used by the built-in client to
|
|
168614
|
+
* authenticate directly with Cesium Ion. See [[canAccessCesium]] to test whether any Cesium access is configured.
|
|
168615
|
+
* @beta
|
|
168616
|
+
*/
|
|
168574
168617
|
cesiumIonKey;
|
|
168618
|
+
/** The custom [[CesiumAccessClient]] registered via [[TileAdmin.Props.cesiumAccess]], used to resolve Cesium
|
|
168619
|
+
* asset endpoints. When defined, it takes precedence over [[cesiumIonKey]].
|
|
168620
|
+
* @beta
|
|
168621
|
+
*/
|
|
168622
|
+
cesiumAccess;
|
|
168575
168623
|
_removeIModelConnectionOnCloseListener;
|
|
168576
168624
|
_totalElided = 0;
|
|
168577
168625
|
_rpcInitialized = false;
|
|
@@ -168611,6 +168659,13 @@ class TileAdmin {
|
|
|
168611
168659
|
numPendingTileTreePropsRequests: this._tileTreePropsRequests.length - numActiveTileTreePropsRequests,
|
|
168612
168660
|
};
|
|
168613
168661
|
}
|
|
168662
|
+
/** Returns `true` if any Cesium access is configured — that is, if a custom [[CesiumAccessClient]] has been
|
|
168663
|
+
* registered via [[TileAdmin.Props.cesiumAccess]], or if [[cesiumIonKey]] is set.
|
|
168664
|
+
* @beta
|
|
168665
|
+
*/
|
|
168666
|
+
get canAccessCesium() {
|
|
168667
|
+
return this.cesiumAccess !== undefined || this.cesiumIonKey !== undefined;
|
|
168668
|
+
}
|
|
168614
168669
|
/** Resets the cumulative (per-session) statistics like totalCompletedRequests, totalEmptyTiles, etc. */
|
|
168615
168670
|
resetStatistics() {
|
|
168616
168671
|
this.channels.resetStatistics();
|
|
@@ -168649,6 +168704,7 @@ class TileAdmin {
|
|
|
168649
168704
|
this.useLargerTiles = options.useLargerTiles ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.defaultTileOptions.useLargerTiles;
|
|
168650
168705
|
this.mobileRealityTileMinToleranceRatio = Math.max(options.mobileRealityTileMinToleranceRatio ?? 3.0, 1.0);
|
|
168651
168706
|
this.cesiumIonKey = options.cesiumIonKey;
|
|
168707
|
+
this.cesiumAccess = options.cesiumAccess;
|
|
168652
168708
|
this._cloudStorage = options.tileStorage;
|
|
168653
168709
|
const gpuMemoryLimits = options.gpuMemoryLimits;
|
|
168654
168710
|
let gpuMemoryLimit;
|
|
@@ -171426,6 +171482,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171426
171482
|
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_tile_map_UrlUtils__WEBPACK_IMPORTED_MODULE_48__.appendQueryParams),
|
|
171427
171483
|
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.collectMaskRefs),
|
|
171428
171484
|
/* harmony export */ compareMapLayer: () => (/* reexport safe */ _internal_render_webgl_MapLayerParams__WEBPACK_IMPORTED_MODULE_94__.compareMapLayer),
|
|
171485
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.computeCesiumTokenTimeoutInterval),
|
|
171429
171486
|
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */ _internal_tile_ClassifierTileTree__WEBPACK_IMPORTED_MODULE_83__.createClassifierTileTreeReference),
|
|
171430
171487
|
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */ _internal_tile_ViewFlagOverrides__WEBPACK_IMPORTED_MODULE_0__.createDefaultViewFlagOverrides),
|
|
171431
171488
|
/* harmony export */ createGraphicFromDescription: () => (/* reexport safe */ _internal_tile_ImdlGraphicsCreator__WEBPACK_IMPORTED_MODULE_37__.createGraphicFromDescription),
|
|
@@ -171442,6 +171499,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171442
171499
|
/* harmony export */ decodeMeshoptBuffer: () => (/* reexport safe */ _internal_tile_MeshoptCompression__WEBPACK_IMPORTED_MODULE_93__.decodeMeshoptBuffer),
|
|
171443
171500
|
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_tile_map_ImageryProviders_CoordinatesUtils__WEBPACK_IMPORTED_MODULE_47__.deflateCoordinates),
|
|
171444
171501
|
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.disposeTileTreesForGeometricModels),
|
|
171502
|
+
/* harmony export */ getCesiumAccessClient: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessClient),
|
|
171445
171503
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessTokenAndEndpointUrl),
|
|
171446
171504
|
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAssetUrl),
|
|
171447
171505
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumOSMBuildingsUrl),
|
|
@@ -171834,6 +171892,8 @@ class BingElevationProvider {
|
|
|
171834
171892
|
"use strict";
|
|
171835
171893
|
__webpack_require__.r(__webpack_exports__);
|
|
171836
171894
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
171895
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* binding */ computeCesiumTokenTimeoutInterval),
|
|
171896
|
+
/* harmony export */ getCesiumAccessClient: () => (/* binding */ getCesiumAccessClient),
|
|
171837
171897
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* binding */ getCesiumAccessTokenAndEndpointUrl),
|
|
171838
171898
|
/* harmony export */ getCesiumAssetUrl: () => (/* binding */ getCesiumAssetUrl),
|
|
171839
171899
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* binding */ getCesiumOSMBuildingsUrl),
|
|
@@ -171871,7 +171931,7 @@ var QuantizedMeshExtensionIds;
|
|
|
171871
171931
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["WaterMask"] = 2] = "WaterMask";
|
|
171872
171932
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["Metadata"] = 4] = "Metadata";
|
|
171873
171933
|
})(QuantizedMeshExtensionIds || (QuantizedMeshExtensionIds = {}));
|
|
171874
|
-
/** Return the URL for a Cesium
|
|
171934
|
+
/** Return the URL for a Cesium Ion asset from its asset ID and request Key.
|
|
171875
171935
|
* @public
|
|
171876
171936
|
*/
|
|
171877
171937
|
function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
@@ -171879,10 +171939,30 @@ function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
|
171879
171939
|
}
|
|
171880
171940
|
/** @internal */
|
|
171881
171941
|
function getCesiumOSMBuildingsUrl() {
|
|
171882
|
-
|
|
171883
|
-
if (undefined === key)
|
|
171942
|
+
if (!_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.canAccessCesium)
|
|
171884
171943
|
return undefined;
|
|
171885
|
-
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings,
|
|
171944
|
+
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings, "");
|
|
171945
|
+
}
|
|
171946
|
+
/** Returns the registered [[CesiumAccessClient]], or a default [[CesiumIonClient]] if none is registered.
|
|
171947
|
+
* @internal
|
|
171948
|
+
*/
|
|
171949
|
+
function getCesiumAccessClient() {
|
|
171950
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumAccess ?? new CesiumIonClient();
|
|
171951
|
+
}
|
|
171952
|
+
const cesiumTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
171953
|
+
const cesiumMinTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60); // ...but never re-resolve more often than once per minute.
|
|
171954
|
+
/** Compute when to next re-resolve a Cesium access token. Honors the endpoint's `expiresAt` when it is a valid
|
|
171955
|
+
* future time, but guards against an invalid (NaN) date - which would otherwise disable refresh entirely - and
|
|
171956
|
+
* against a past/imminent expiry that would re-resolve the endpoint on essentially every tile read.
|
|
171957
|
+
* @internal
|
|
171958
|
+
*/
|
|
171959
|
+
function computeCesiumTokenTimeoutInterval(expiresAt) {
|
|
171960
|
+
if (undefined === expiresAt)
|
|
171961
|
+
return cesiumTokenTimeoutInterval;
|
|
171962
|
+
const remainingMs = expiresAt.getTime() - Date.now();
|
|
171963
|
+
if (!Number.isFinite(remainingMs))
|
|
171964
|
+
return cesiumTokenTimeoutInterval;
|
|
171965
|
+
return _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromMilliseconds(Math.max(remainingMs, cesiumMinTokenTimeoutInterval.milliseconds));
|
|
171886
171966
|
}
|
|
171887
171967
|
/** @internal */
|
|
171888
171968
|
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
@@ -171916,15 +171996,19 @@ function notifyTerrainError(detailedDescription) {
|
|
|
171916
171996
|
}
|
|
171917
171997
|
/** @internal */
|
|
171918
171998
|
async function getCesiumTerrainProvider(opts) {
|
|
171919
|
-
const
|
|
171920
|
-
|
|
171999
|
+
const assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
172000
|
+
const client = getCesiumAccessClient();
|
|
172001
|
+
const endpoint = await client.getAssetEndpoint(assetId, opts.iTwinId);
|
|
172002
|
+
if (!endpoint) {
|
|
171921
172003
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
171922
172004
|
return undefined;
|
|
171923
172005
|
}
|
|
172006
|
+
// Resource paths (layer.json, tiles) are appended directly to the base URL, so ensure it ends with a slash.
|
|
172007
|
+
const baseUrl = endpoint.url.endsWith("/") ? endpoint.url : `${endpoint.url}/`;
|
|
171924
172008
|
let layers;
|
|
171925
172009
|
try {
|
|
171926
|
-
const layerRequestOptions = { headers: { authorization: `Bearer ${
|
|
171927
|
-
const layerUrl = `${
|
|
172010
|
+
const layerRequestOptions = { headers: { authorization: `Bearer ${endpoint.accessToken}` } };
|
|
172011
|
+
const layerUrl = `${baseUrl}layer.json`;
|
|
171928
172012
|
layers = await (0,_request_Request__WEBPACK_IMPORTED_MODULE_4__.request)(layerUrl, "json", layerRequestOptions);
|
|
171929
172013
|
}
|
|
171930
172014
|
catch {
|
|
@@ -171953,12 +172037,12 @@ async function getCesiumTerrainProvider(opts) {
|
|
|
171953
172037
|
}
|
|
171954
172038
|
}
|
|
171955
172039
|
}
|
|
171956
|
-
let tileUrlTemplate =
|
|
172040
|
+
let tileUrlTemplate = baseUrl + layers.tiles[0].replace("{version}", layers.version);
|
|
171957
172041
|
if (opts.wantNormals)
|
|
171958
172042
|
tileUrlTemplate = tileUrlTemplate.replace("?", "?extensions=octvertexnormals-watermask-metadata&");
|
|
171959
172043
|
const maxDepth = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asInt(layers.maxzoom, 19);
|
|
171960
172044
|
// TBD -- When we have an API extract the heights for the project from the terrain tiles - for use temporary Bing elevation.
|
|
171961
|
-
return new CesiumTerrainProvider(opts,
|
|
172045
|
+
return new CesiumTerrainProvider(opts, endpoint.accessToken, endpoint.expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, layers.metadataAvailability);
|
|
171962
172046
|
}
|
|
171963
172047
|
function zigZagDecode(value) {
|
|
171964
172048
|
return (value >> 1) ^ (-(value & 1));
|
|
@@ -171993,19 +172077,19 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
171993
172077
|
_metaDataAvailableLevel;
|
|
171994
172078
|
_exaggeration;
|
|
171995
172079
|
_assetId;
|
|
172080
|
+
_iTwinId;
|
|
171996
172081
|
static _scratchQPoint2d = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2d.fromScalars(0, 0);
|
|
171997
172082
|
static _scratchPoint2d = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point2d.createZero();
|
|
171998
172083
|
static _scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.createZero();
|
|
171999
172084
|
static _scratchNormal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createZero();
|
|
172000
172085
|
static _scratchHeightRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range1d.createNull();
|
|
172001
|
-
static _tokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
172002
172086
|
_tokenTimeOut;
|
|
172003
172087
|
forceTileLoad(tile) {
|
|
172004
172088
|
// Force loading of the metadata availability tiles as these are required for determining the availability of descendants.
|
|
172005
172089
|
const mapTile = tile;
|
|
172006
172090
|
return undefined !== this._metaDataAvailableLevel && mapTile.quadId.level === this._metaDataAvailableLevel && !mapTile.everLoaded;
|
|
172007
172091
|
}
|
|
172008
|
-
constructor(opts, accessToken, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
172092
|
+
constructor(opts, accessToken, expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
172009
172093
|
super();
|
|
172010
172094
|
this._wantSkirts = opts.wantSkirts;
|
|
172011
172095
|
this._exaggeration = opts.exaggeration;
|
|
@@ -172016,7 +172100,8 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
172016
172100
|
this._tileAvailability = tileAvailability;
|
|
172017
172101
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
172018
172102
|
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
172019
|
-
this.
|
|
172103
|
+
this._iTwinId = opts.iTwinId;
|
|
172104
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(expiresAt));
|
|
172020
172105
|
}
|
|
172021
172106
|
/** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
|
|
172022
172107
|
addLogoCards(cards) {
|
|
@@ -172062,11 +172147,12 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
172062
172147
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
172063
172148
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
172064
172149
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
172065
|
-
const
|
|
172066
|
-
|
|
172150
|
+
const client = getCesiumAccessClient();
|
|
172151
|
+
const endpoint = await client.getAssetEndpoint(this._assetId, this._iTwinId);
|
|
172152
|
+
if (!endpoint || args.isCanceled())
|
|
172067
172153
|
return undefined;
|
|
172068
|
-
this._accessToken =
|
|
172069
|
-
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(
|
|
172154
|
+
this._accessToken = endpoint.accessToken;
|
|
172155
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(endpoint.expiresAt));
|
|
172070
172156
|
}
|
|
172071
172157
|
const { data, tile } = args;
|
|
172072
172158
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(data instanceof Uint8Array);
|
|
@@ -172253,6 +172339,18 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
172253
172339
|
return undefined === heightRange ? parentRange : heightRange;
|
|
172254
172340
|
}
|
|
172255
172341
|
}
|
|
172342
|
+
/** Default [[CesiumAccessClient]] that authenticates directly with Cesium Ion using [[TileAdmin.cesiumIonKey]].
|
|
172343
|
+
* This is used when no custom [[CesiumAccessClient]] is registered via [[TileAdmin.Props.cesiumAccess]].
|
|
172344
|
+
* @internal
|
|
172345
|
+
*/
|
|
172346
|
+
class CesiumIonClient {
|
|
172347
|
+
async getAssetEndpoint(assetId, _iTwinId) {
|
|
172348
|
+
const result = await getCesiumAccessTokenAndEndpointUrl(assetId);
|
|
172349
|
+
if (!result.token || !result.url)
|
|
172350
|
+
return undefined;
|
|
172351
|
+
return { accessToken: result.token, url: result.url };
|
|
172352
|
+
}
|
|
172353
|
+
}
|
|
172256
172354
|
|
|
172257
172355
|
|
|
172258
172356
|
/***/ }),
|
|
@@ -175720,6 +175818,7 @@ class MapTreeSupplier {
|
|
|
175720
175818
|
wantNormals: id.wantNormals,
|
|
175721
175819
|
dataSource: id.terrainDataSource,
|
|
175722
175820
|
produceGeometry: id.produceGeometry,
|
|
175821
|
+
iTwinId: iModel.iTwinId,
|
|
175723
175822
|
};
|
|
175724
175823
|
if (id.applyTerrain) {
|
|
175725
175824
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
@@ -209165,7 +209264,7 @@ class CurveFactory {
|
|
|
209165
209264
|
return undefined;
|
|
209166
209265
|
}
|
|
209167
209266
|
/**
|
|
209168
|
-
* Construct a sequence of alternating lines and arcs with
|
|
209267
|
+
* Construct a sequence of alternating lines and arcs with each arc creating a smooth transition between consecutive edges.
|
|
209169
209268
|
* * If the radius parameter is a number, that radius is used throughout.
|
|
209170
209269
|
* * If the radius parameter is an array of numbers, `radius[i]` is applied at `point[i]`.
|
|
209171
209270
|
* * A zero radius for any point indicates to leave the as a simple corner.
|
|
@@ -209178,20 +209277,18 @@ class CurveFactory {
|
|
|
209178
209277
|
return this.createFilletsInLineString(new _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_4__.Point3dArrayCarrier(points), radius, allowCuspOrOptions);
|
|
209179
209278
|
if (points instanceof _LineString3d__WEBPACK_IMPORTED_MODULE_5__.LineString3d)
|
|
209180
209279
|
return this.createFilletsInLineString(points.packedPoints, radius, allowCuspOrOptions);
|
|
209181
|
-
|
|
209182
|
-
|
|
209183
|
-
|
|
209184
|
-
|
|
209185
|
-
|
|
209186
|
-
|
|
209187
|
-
allowCusp = allowCuspOrOptions.allowCusp ?? true;
|
|
209188
|
-
filletClosure = allowCuspOrOptions.filletClosure ?? false;
|
|
209189
|
-
}
|
|
209280
|
+
const haveBoolean = typeof allowCuspOrOptions === "boolean";
|
|
209281
|
+
const allowCusp = haveBoolean ? allowCuspOrOptions : allowCuspOrOptions.allowCusp ?? true;
|
|
209282
|
+
const filletClosure = haveBoolean ? false : allowCuspOrOptions.filletClosure ?? false;
|
|
209283
|
+
const closureTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.closureTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
209284
|
+
const cuspTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.cuspTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
209285
|
+
const cuspSegments = haveBoolean ? true : allowCuspOrOptions.cuspSegments ?? true;
|
|
209190
209286
|
let n = points.length;
|
|
209191
|
-
if (filletClosure && points.almostEqualIndexIndex(0, n - 1))
|
|
209287
|
+
if (filletClosure && points.almostEqualIndexIndex(0, n - 1, closureTolerance))
|
|
209192
209288
|
n--; // ignore closure point
|
|
209193
209289
|
if (n <= 1)
|
|
209194
209290
|
return undefined;
|
|
209291
|
+
// create blend data at each vertex
|
|
209195
209292
|
const pointA = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
209196
209293
|
const pointB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
209197
209294
|
const pointC = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
@@ -209212,17 +209309,41 @@ class CurveFactory {
|
|
|
209212
209309
|
}
|
|
209213
209310
|
}
|
|
209214
209311
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(blendArray.length === n);
|
|
209215
|
-
|
|
209216
|
-
|
|
209217
|
-
|
|
209218
|
-
|
|
209219
|
-
|
|
209220
|
-
|
|
209221
|
-
|
|
209222
|
-
|
|
209223
|
-
|
|
209224
|
-
|
|
209225
|
-
|
|
209312
|
+
// For each edge, look at its 0|1|2 fillets to determine whether/which to suppress.
|
|
209313
|
+
// When a cusp is generated by 2 fillets, use this HEURISTIC:
|
|
209314
|
+
// * Prefer to keep the fillet that results in the smaller allowable cusp segment.
|
|
209315
|
+
// * If by itself, each fillet results in a cusp segment of equal allowable length (possibly zero), keep the first.
|
|
209316
|
+
const edgeHasCusp = (fillet0, fillet1) => fillet0.fraction12 + fillet1.fraction10 > 1;
|
|
209317
|
+
const cuspSegmentLength = (checkedEdgeIndex, fillet0, fillet1) => points.distanceUncheckedIndexIndex(checkedEdgeIndex, points.cyclicIndex(checkedEdgeIndex + 1)) * (fillet0.fraction12 + fillet1.fraction10 - 1);
|
|
209318
|
+
const filletOvershootsEdge = (fillet, filletIndex) => filletIndex === 0 ? fillet.fraction12 > 1 : fillet.fraction10 > 1;
|
|
209319
|
+
const cuspNeedsRemoval = (checkedEdgeIndex, fillet0, fillet1) => edgeHasCusp(fillet0, fillet1) && (!allowCusp || cuspSegmentLength(checkedEdgeIndex, fillet0, fillet1) > cuspTolerance);
|
|
209320
|
+
const removeFillet = (fillet) => { fillet.fraction10 = fillet.fraction12 = 0; fillet.arc = undefined; };
|
|
209321
|
+
for (let iEdge = 0; iEdge < (filletClosure ? n : n - 1); iEdge++) {
|
|
209322
|
+
const fillet0 = blendArray[iEdge];
|
|
209323
|
+
const fillet1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(iEdge + 1, n)];
|
|
209324
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
209325
|
+
const fillet0OvershootsEdge = filletOvershootsEdge(fillet0, 0);
|
|
209326
|
+
const fillet1OvershootsEdge = filletOvershootsEdge(fillet1, 1);
|
|
209327
|
+
// prefer to remove just one fillet
|
|
209328
|
+
if (fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
209329
|
+
removeFillet(fillet0);
|
|
209330
|
+
}
|
|
209331
|
+
else if (!fillet0OvershootsEdge && fillet1OvershootsEdge) {
|
|
209332
|
+
removeFillet(fillet1);
|
|
209333
|
+
}
|
|
209334
|
+
else if (!fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
209335
|
+
removeFillet(fillet1); // fillets intersect (arbitrary choice)
|
|
209336
|
+
}
|
|
209337
|
+
else if (fillet1.fraction10 < fillet0.fraction12) {
|
|
209338
|
+
removeFillet(fillet0); // fillet1 yields smaller cusp segment
|
|
209339
|
+
}
|
|
209340
|
+
else {
|
|
209341
|
+
removeFillet(fillet1); // fillet0 yields smaller cusp segment, or they are equal (arbitrary choice)
|
|
209342
|
+
}
|
|
209343
|
+
// re-evaluate the edge after removal of a fillet; if a disallowed cusp persists, remove the other fillet
|
|
209344
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
209345
|
+
removeFillet(fillet0);
|
|
209346
|
+
removeFillet(fillet1);
|
|
209226
209347
|
}
|
|
209227
209348
|
}
|
|
209228
209349
|
}
|
|
@@ -209232,7 +209353,7 @@ class CurveFactory {
|
|
|
209232
209353
|
path.tryAddChild(b0.arc);
|
|
209233
209354
|
if (i + 1 < n || filletClosure) {
|
|
209234
209355
|
const b1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i + 1, n)];
|
|
209235
|
-
this.addPartialSegment(path,
|
|
209356
|
+
this.addPartialSegment(path, cuspSegments, b0.point, b1.point, b0.fraction12, 1 - b1.fraction10);
|
|
209236
209357
|
}
|
|
209237
209358
|
}
|
|
209238
209359
|
return path;
|
|
@@ -217466,13 +217587,13 @@ class RegionOps {
|
|
|
217466
217587
|
}
|
|
217467
217588
|
/**
|
|
217468
217589
|
* Look for and simplify:
|
|
217469
|
-
* * Contiguous
|
|
217590
|
+
* * Contiguous [[LineSegment3d]] and [[LineString3d]] objects:
|
|
217470
217591
|
* * collect all points
|
|
217471
217592
|
* * eliminate duplicated points
|
|
217472
217593
|
* * eliminate points colinear with surrounding points
|
|
217473
|
-
*
|
|
217594
|
+
* * Contiguous concentric circular or elliptic [[Arc3d]] objects:
|
|
217474
217595
|
* * combine angular ranges
|
|
217475
|
-
* * This function can be used to compress adjacent
|
|
217596
|
+
* * This function can be used to compress adjacent [[LineSegment3d]]s into a [[LineString3d]].
|
|
217476
217597
|
* @param curves Path or loop (or larger collection containing paths and loops) to be simplified
|
|
217477
217598
|
* @param options options for tolerance and selective simplification.
|
|
217478
217599
|
*/
|
|
@@ -237761,7 +237882,7 @@ class IndexedXYZCollection {
|
|
|
237761
237882
|
}
|
|
237762
237883
|
/** Adjust index into range by modulo with the length. */
|
|
237763
237884
|
cyclicIndex(i) {
|
|
237764
|
-
return (i
|
|
237885
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i, this.length);
|
|
237765
237886
|
}
|
|
237766
237887
|
/** Return the range of the points. */
|
|
237767
237888
|
getRange(transform, result) {
|
|
@@ -318081,10 +318202,10 @@ class Settings {
|
|
|
318081
318202
|
});
|
|
318082
318203
|
}
|
|
318083
318204
|
toString() {
|
|
318084
|
-
return `Configurations:
|
|
318085
|
-
oidc client id: ${this.oidcClientId},
|
|
318086
|
-
oidc scopes: ${this.oidcScopes},
|
|
318087
|
-
applicationId: ${this.gprid},
|
|
318205
|
+
return `Configurations:
|
|
318206
|
+
oidc client id: ${this.oidcClientId},
|
|
318207
|
+
oidc scopes: ${this.oidcScopes},
|
|
318208
|
+
applicationId: ${this.gprid},
|
|
318088
318209
|
log level: ${this.logLevel}`;
|
|
318089
318210
|
}
|
|
318090
318211
|
}
|
|
@@ -332376,7 +332497,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
332376
332497
|
/***/ ((module) => {
|
|
332377
332498
|
|
|
332378
332499
|
"use strict";
|
|
332379
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.
|
|
332500
|
+
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"}}');
|
|
332380
332501
|
|
|
332381
332502
|
/***/ })
|
|
332382
332503
|
|