@itwin/ecschema-rpcinterface-tests 5.2.0-dev.30 → 5.2.0-dev.31
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 +1770 -1619
- package/lib/dist/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 +16 -16
|
@@ -43705,7 +43705,8 @@ class TabRun extends TextBlockComponent {
|
|
|
43705
43705
|
/** A [[Run]] that displays the formatted value of a property of some [Element]($backend).
|
|
43706
43706
|
* When a [[TextBlock]] containing a [[FieldRun]] is written into the iModel as an [ITextAnnotation]($backend) element,
|
|
43707
43707
|
* a dependency is established between the two elements via the [ElementDrivesTextAnnotation]($backend) relationship such that
|
|
43708
|
-
* whenever the source element specified by [[propertyHost]] is modified
|
|
43708
|
+
* whenever the source element specified by [[propertyHost]] is modified or the `ITextAnnotation` element is inserted or updated in the iModel,
|
|
43709
|
+
* the field(s) in the `ITextAnnotation` element are automatically
|
|
43709
43710
|
* recalculated, causing their [[cachedContent]] to update. If the field's display string cannot be evaluated (for example, because the specified element or
|
|
43710
43711
|
* property does not exist), then its cached content is set to [[FieldRun.invalidContentIndicator]].
|
|
43711
43712
|
* A [[FieldRun]] displays its [[cachedContent]] in the same way that [[TextRun]]s display their `content`, including word wrapping where appropriate.
|
|
@@ -43720,8 +43721,10 @@ class FieldRun extends TextBlockComponent {
|
|
|
43720
43721
|
propertyHost;
|
|
43721
43722
|
/** Describes how to obtain the property value from [[propertyHost]]. */
|
|
43722
43723
|
propertyPath;
|
|
43723
|
-
/** Specifies how to format the property value obtained from [[propertyPath]] into a string to be stored in [[cachedContent]].
|
|
43724
|
-
|
|
43724
|
+
/** Specifies how to format the property value obtained from [[propertyPath]] into a string to be stored in [[cachedContent]].
|
|
43725
|
+
* The specific options used depend upon the [[FieldPropertyType]].
|
|
43726
|
+
*/
|
|
43727
|
+
formatOptions;
|
|
43725
43728
|
_cachedContent;
|
|
43726
43729
|
/** The field's most recently evaluated display string. */
|
|
43727
43730
|
get cachedContent() {
|
|
@@ -43736,7 +43739,7 @@ class FieldRun extends TextBlockComponent {
|
|
|
43736
43739
|
this._cachedContent = props.cachedContent ?? FieldRun.invalidContentIndicator;
|
|
43737
43740
|
this.propertyHost = props.propertyHost;
|
|
43738
43741
|
this.propertyPath = props.propertyPath;
|
|
43739
|
-
this.
|
|
43742
|
+
this.formatOptions = props.formatOptions;
|
|
43740
43743
|
}
|
|
43741
43744
|
/** Create a FieldRun from its JSON representation. */
|
|
43742
43745
|
static create(props) {
|
|
@@ -43744,7 +43747,7 @@ class FieldRun extends TextBlockComponent {
|
|
|
43744
43747
|
...props,
|
|
43745
43748
|
propertyHost: { ...props.propertyHost },
|
|
43746
43749
|
propertyPath: structuredClone(props.propertyPath),
|
|
43747
|
-
|
|
43750
|
+
formatOptions: structuredClone(props.formatOptions),
|
|
43748
43751
|
});
|
|
43749
43752
|
}
|
|
43750
43753
|
/** Convert the FieldRun to its JSON representation. */
|
|
@@ -43758,8 +43761,8 @@ class FieldRun extends TextBlockComponent {
|
|
|
43758
43761
|
if (this.cachedContent !== FieldRun.invalidContentIndicator) {
|
|
43759
43762
|
json.cachedContent = this.cachedContent;
|
|
43760
43763
|
}
|
|
43761
|
-
if (this.
|
|
43762
|
-
json.
|
|
43764
|
+
if (this.formatOptions) {
|
|
43765
|
+
json.formatOptions = structuredClone(this.formatOptions);
|
|
43763
43766
|
}
|
|
43764
43767
|
return json;
|
|
43765
43768
|
}
|
|
@@ -43786,24 +43789,20 @@ class FieldRun extends TextBlockComponent {
|
|
|
43786
43789
|
}
|
|
43787
43790
|
const thisAccessors = this.propertyPath.accessors ?? [];
|
|
43788
43791
|
const otherAccessors = other.propertyPath.accessors ?? [];
|
|
43789
|
-
|
|
43790
|
-
const otherJsonAccessors = other.propertyPath.jsonAccessors ?? [];
|
|
43791
|
-
if (thisAccessors.length !== otherAccessors.length || thisJsonAccessors.length !== otherJsonAccessors.length) {
|
|
43792
|
+
if (thisAccessors.length !== otherAccessors.length) {
|
|
43792
43793
|
return false;
|
|
43793
43794
|
}
|
|
43794
43795
|
if (!thisAccessors.every((value, index) => value === otherAccessors[index])) {
|
|
43795
43796
|
return false;
|
|
43796
43797
|
}
|
|
43797
|
-
if (
|
|
43798
|
-
|
|
43799
|
-
|
|
43800
|
-
|
|
43801
|
-
// ###TODO better comparison of formatter objects.
|
|
43802
|
-
if (JSON.stringify(this.formatter) !== JSON.stringify(other.formatter)) {
|
|
43798
|
+
if (this.formatOptions && other.formatOptions) {
|
|
43799
|
+
// We anticipate new formatting options being added in the future.
|
|
43800
|
+
// So to account for properties we don't know about, just compare the string representations.
|
|
43801
|
+
if (JSON.stringify(this.formatOptions) !== JSON.stringify(other.formatOptions)) {
|
|
43803
43802
|
return false;
|
|
43804
43803
|
}
|
|
43805
43804
|
}
|
|
43806
|
-
else if (this.
|
|
43805
|
+
else if (this.formatOptions || other.formatOptions) {
|
|
43807
43806
|
return false;
|
|
43808
43807
|
}
|
|
43809
43808
|
return true;
|
|
@@ -44004,6 +44003,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44004
44003
|
|
|
44005
44004
|
|
|
44006
44005
|
|
|
44006
|
+
/***/ }),
|
|
44007
|
+
|
|
44008
|
+
/***/ "../../core/common/lib/esm/annotation/TextField.js":
|
|
44009
|
+
/*!*********************************************************!*\
|
|
44010
|
+
!*** ../../core/common/lib/esm/annotation/TextField.js ***!
|
|
44011
|
+
\*********************************************************/
|
|
44012
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
44013
|
+
|
|
44014
|
+
"use strict";
|
|
44015
|
+
__webpack_require__.r(__webpack_exports__);
|
|
44016
|
+
/*----------------------------------------------------------------------------------------
|
|
44017
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
44018
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
44019
|
+
*--------------------------------------------------------------------------------------------*/
|
|
44020
|
+
/** @packageDocumentation
|
|
44021
|
+
* @module Annotation
|
|
44022
|
+
*/
|
|
44023
|
+
|
|
44024
|
+
|
|
44025
|
+
|
|
44007
44026
|
/***/ }),
|
|
44008
44027
|
|
|
44009
44028
|
/***/ "../../core/common/lib/esm/annotation/TextStyle.js":
|
|
@@ -44260,400 +44279,402 @@ deepFreeze(TextStyleSettings.defaults);
|
|
|
44260
44279
|
"use strict";
|
|
44261
44280
|
__webpack_require__.r(__webpack_exports__);
|
|
44262
44281
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
44263
|
-
/* harmony export */ AdditionalTransform: () => (/* reexport safe */
|
|
44264
|
-
/* harmony export */ AffineTransform: () => (/* reexport safe */
|
|
44265
|
-
/* harmony export */ AmbientLight: () => (/* reexport safe */
|
|
44282
|
+
/* harmony export */ AdditionalTransform: () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__.AdditionalTransform),
|
|
44283
|
+
/* harmony export */ AffineTransform: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.AffineTransform),
|
|
44284
|
+
/* harmony export */ AmbientLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.AmbientLight),
|
|
44266
44285
|
/* harmony export */ AmbientOcclusion: () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
44267
44286
|
/* harmony export */ AnalysisStyle: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
44268
44287
|
/* harmony export */ AnalysisStyleDisplacement: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
44269
44288
|
/* harmony export */ AnalysisStyleThematic: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
44270
|
-
/* harmony export */ AreaPattern: () => (/* reexport safe */
|
|
44271
|
-
/* harmony export */ Atmosphere: () => (/* reexport safe */
|
|
44272
|
-
/* harmony export */ B3dmHeader: () => (/* reexport safe */
|
|
44273
|
-
/* harmony export */ BRepEntity: () => (/* reexport safe */
|
|
44274
|
-
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */
|
|
44275
|
-
/* harmony export */ BackendError: () => (/* reexport safe */
|
|
44276
|
-
/* harmony export */ BackgroundFill: () => (/* reexport safe */
|
|
44277
|
-
/* harmony export */ BackgroundMapProvider: () => (/* reexport safe */
|
|
44278
|
-
/* harmony export */ BackgroundMapSettings: () => (/* reexport safe */
|
|
44279
|
-
/* harmony export */ BackgroundMapType: () => (/* reexport safe */
|
|
44280
|
-
/* harmony export */ Base64EncodedString: () => (/* reexport safe */
|
|
44281
|
-
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */
|
|
44282
|
-
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */
|
|
44283
|
-
/* harmony export */ BatchType: () => (/* reexport safe */
|
|
44284
|
-
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */
|
|
44285
|
-
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */
|
|
44286
|
-
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */
|
|
44287
|
-
/* harmony export */ BisCodeSpec: () => (/* reexport safe */
|
|
44288
|
-
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */
|
|
44289
|
-
/* harmony export */ BoundingSphere: () => (/* reexport safe */
|
|
44290
|
-
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */
|
|
44291
|
-
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */
|
|
44292
|
-
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */
|
|
44293
|
-
/* harmony export */ Camera: () => (/* reexport safe */
|
|
44294
|
-
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */
|
|
44295
|
-
/* harmony export */ Cartographic: () => (/* reexport safe */
|
|
44296
|
-
/* harmony export */ CartographicRange: () => (/* reexport safe */
|
|
44297
|
-
/* harmony export */ CatalogError: () => (/* reexport safe */
|
|
44298
|
-
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */
|
|
44299
|
-
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */
|
|
44300
|
-
/* harmony export */ ChangeOpCode: () => (/* reexport safe */
|
|
44301
|
-
/* harmony export */ ChangedValueState: () => (/* reexport safe */
|
|
44302
|
-
/* harmony export */ ChangesetType: () => (/* reexport safe */
|
|
44303
|
-
/* harmony export */ ChannelControlError: () => (/* reexport safe */
|
|
44304
|
-
/* harmony export */ ClipIntersectionStyle: () => (/* reexport safe */
|
|
44305
|
-
/* harmony export */ ClipStyle: () => (/* reexport safe */
|
|
44306
|
-
/* harmony export */ CloudSqliteError: () => (/* reexport safe */
|
|
44307
|
-
/* harmony export */ Code: () => (/* reexport safe */
|
|
44308
|
-
/* harmony export */ CodeScopeSpec: () => (/* reexport safe */
|
|
44309
|
-
/* harmony export */ CodeSpec: () => (/* reexport safe */
|
|
44310
|
-
/* harmony export */ ColorByName: () => (/* reexport safe */
|
|
44311
|
-
/* harmony export */ ColorDef: () => (/* reexport safe */
|
|
44312
|
-
/* harmony export */ ColorIndex: () => (/* reexport safe */
|
|
44313
|
-
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */
|
|
44314
|
-
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */
|
|
44315
|
-
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */
|
|
44316
|
-
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */
|
|
44317
|
-
/* harmony export */ ContentFlags: () => (/* reexport safe */
|
|
44318
|
-
/* harmony export */ ContentIdProvider: () => (/* reexport safe */
|
|
44319
|
-
/* harmony export */ ContextRealityModel: () => (/* reexport safe */
|
|
44320
|
-
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */
|
|
44321
|
-
/* harmony export */ ContextRealityModels: () => (/* reexport safe */
|
|
44322
|
-
/* harmony export */ Contour: () => (/* reexport safe */
|
|
44323
|
-
/* harmony export */ ContourDisplay: () => (/* reexport safe */
|
|
44324
|
-
/* harmony export */ ContourGroup: () => (/* reexport safe */
|
|
44325
|
-
/* harmony export */ ContourStyle: () => (/* reexport safe */
|
|
44326
|
-
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */
|
|
44327
|
-
/* harmony export */ CutStyle: () => (/* reexport safe */
|
|
44328
|
-
/* harmony export */ DbQueryError: () => (/* reexport safe */
|
|
44329
|
-
/* harmony export */ DbRequestKind: () => (/* reexport safe */
|
|
44330
|
-
/* harmony export */ DbResponseKind: () => (/* reexport safe */
|
|
44331
|
-
/* harmony export */ DbResponseStatus: () => (/* reexport safe */
|
|
44332
|
-
/* harmony export */ DbValueFormat: () => (/* reexport safe */
|
|
44333
|
-
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */
|
|
44334
|
-
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */
|
|
44335
|
-
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */
|
|
44336
|
-
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */
|
|
44337
|
-
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */
|
|
44338
|
-
/* harmony export */ DomainOptions: () => (/* reexport safe */
|
|
44339
|
-
/* harmony export */ ECJsNames: () => (/* reexport safe */
|
|
44340
|
-
/* harmony export */ ECSqlReader: () => (/* reexport safe */
|
|
44341
|
-
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */
|
|
44342
|
-
/* harmony export */ ECSqlValueType: () => (/* reexport safe */
|
|
44343
|
-
/* harmony export */ Easing: () => (/* reexport safe */
|
|
44344
|
-
/* harmony export */ EcefLocation: () => (/* reexport safe */
|
|
44345
|
-
/* harmony export */ EdgeArgs: () => (/* reexport safe */
|
|
44346
|
-
/* harmony export */ ElementGeometry: () => (/* reexport safe */
|
|
44347
|
-
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */
|
|
44348
|
-
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */
|
|
44349
|
-
/* harmony export */ EmptyLocalization: () => (/* reexport safe */
|
|
44350
|
-
/* harmony export */ EntityMetaData: () => (/* reexport safe */
|
|
44351
|
-
/* harmony export */ EntityReferenceSet: () => (/* reexport safe */
|
|
44352
|
-
/* harmony export */ Environment: () => (/* reexport safe */
|
|
44353
|
-
/* harmony export */ ExternalSourceAttachmentRole: () => (/* reexport safe */
|
|
44354
|
-
/* harmony export */ Feature: () => (/* reexport safe */
|
|
44355
|
-
/* harmony export */ FeatureAppearance: () => (/* reexport safe */
|
|
44356
|
-
/* harmony export */ FeatureAppearanceProvider: () => (/* reexport safe */
|
|
44357
|
-
/* harmony export */ FeatureIndex: () => (/* reexport safe */
|
|
44358
|
-
/* harmony export */ FeatureIndexType: () => (/* reexport safe */
|
|
44359
|
-
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */
|
|
44360
|
-
/* harmony export */ FeatureOverrides: () => (/* reexport safe */
|
|
44361
|
-
/* harmony export */ FeatureTable: () => (/* reexport safe */
|
|
44362
|
-
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */
|
|
44289
|
+
/* harmony export */ AreaPattern: () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__.AreaPattern),
|
|
44290
|
+
/* harmony export */ Atmosphere: () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_8__.Atmosphere),
|
|
44291
|
+
/* harmony export */ B3dmHeader: () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_150__.B3dmHeader),
|
|
44292
|
+
/* harmony export */ BRepEntity: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.BRepEntity),
|
|
44293
|
+
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.BRepGeometryOperation),
|
|
44294
|
+
/* harmony export */ BackendError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.BackendError),
|
|
44295
|
+
/* harmony export */ BackgroundFill: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.BackgroundFill),
|
|
44296
|
+
/* harmony export */ BackgroundMapProvider: () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapProvider),
|
|
44297
|
+
/* harmony export */ BackgroundMapSettings: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.BackgroundMapSettings),
|
|
44298
|
+
/* harmony export */ BackgroundMapType: () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapType),
|
|
44299
|
+
/* harmony export */ Base64EncodedString: () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_12__.Base64EncodedString),
|
|
44300
|
+
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.BaseLayerSettings),
|
|
44301
|
+
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.BaseMapLayerSettings),
|
|
44302
|
+
/* harmony export */ BatchType: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.BatchType),
|
|
44303
|
+
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__.BentleyCloudRpcConfiguration),
|
|
44304
|
+
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__.BentleyCloudRpcManager),
|
|
44305
|
+
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_144__.BentleyCloudRpcProtocol),
|
|
44306
|
+
/* harmony export */ BisCodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.BisCodeSpec),
|
|
44307
|
+
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.BlobOptionsBuilder),
|
|
44308
|
+
/* harmony export */ BoundingSphere: () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__.BoundingSphere),
|
|
44309
|
+
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.BriefcaseIdValue),
|
|
44310
|
+
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.CURRENT_INVOCATION),
|
|
44311
|
+
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.CURRENT_REQUEST),
|
|
44312
|
+
/* harmony export */ Camera: () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_14__.Camera),
|
|
44313
|
+
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Carto2DDegrees),
|
|
44314
|
+
/* harmony export */ Cartographic: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.Cartographic),
|
|
44315
|
+
/* harmony export */ CartographicRange: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.CartographicRange),
|
|
44316
|
+
/* harmony export */ CatalogError: () => (/* reexport safe */ _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__.CatalogError),
|
|
44317
|
+
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__.CesiumIonAssetId),
|
|
44318
|
+
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__.CesiumTerrainAssetId),
|
|
44319
|
+
/* harmony export */ ChangeOpCode: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangeOpCode),
|
|
44320
|
+
/* harmony export */ ChangedValueState: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangedValueState),
|
|
44321
|
+
/* harmony export */ ChangesetType: () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__.ChangesetType),
|
|
44322
|
+
/* harmony export */ ChannelControlError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ChannelControlError),
|
|
44323
|
+
/* harmony export */ ClipIntersectionStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.ClipIntersectionStyle),
|
|
44324
|
+
/* harmony export */ ClipStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.ClipStyle),
|
|
44325
|
+
/* harmony export */ CloudSqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.CloudSqliteError),
|
|
44326
|
+
/* harmony export */ Code: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.Code),
|
|
44327
|
+
/* harmony export */ CodeScopeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.CodeScopeSpec),
|
|
44328
|
+
/* harmony export */ CodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.CodeSpec),
|
|
44329
|
+
/* harmony export */ ColorByName: () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_21__.ColorByName),
|
|
44330
|
+
/* harmony export */ ColorDef: () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_22__.ColorDef),
|
|
44331
|
+
/* harmony export */ ColorIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.ColorIndex),
|
|
44332
|
+
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__.CommonLoggerCategory),
|
|
44333
|
+
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_151__.CompositeTileHeader),
|
|
44334
|
+
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.ConcreteEntityTypes),
|
|
44335
|
+
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ConflictingLocksError),
|
|
44336
|
+
/* harmony export */ ContentFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.ContentFlags),
|
|
44337
|
+
/* harmony export */ ContentIdProvider: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.ContentIdProvider),
|
|
44338
|
+
/* harmony export */ ContextRealityModel: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModel),
|
|
44339
|
+
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModelProps),
|
|
44340
|
+
/* harmony export */ ContextRealityModels: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModels),
|
|
44341
|
+
/* harmony export */ Contour: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.Contour),
|
|
44342
|
+
/* harmony export */ ContourDisplay: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourDisplay),
|
|
44343
|
+
/* harmony export */ ContourGroup: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourGroup),
|
|
44344
|
+
/* harmony export */ ContourStyle: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourStyle),
|
|
44345
|
+
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.CurrentImdlVersion),
|
|
44346
|
+
/* harmony export */ CutStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.CutStyle),
|
|
44347
|
+
/* harmony export */ DbQueryError: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbQueryError),
|
|
44348
|
+
/* harmony export */ DbRequestKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbRequestKind),
|
|
44349
|
+
/* harmony export */ DbResponseKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseKind),
|
|
44350
|
+
/* harmony export */ DbResponseStatus: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseStatus),
|
|
44351
|
+
/* harmony export */ DbValueFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbValueFormat),
|
|
44352
|
+
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_95__.DefaultSupportedTypes),
|
|
44353
|
+
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__.DevToolsRpcInterface),
|
|
44354
|
+
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__.DevToolsStatsOptions),
|
|
44355
|
+
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyle3dSettings),
|
|
44356
|
+
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyleSettings),
|
|
44357
|
+
/* harmony export */ DomainOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.DomainOptions),
|
|
44358
|
+
/* harmony export */ ECJsNames: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECJsNames),
|
|
44359
|
+
/* harmony export */ ECSqlReader: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__.ECSqlReader),
|
|
44360
|
+
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlSystemProperty),
|
|
44361
|
+
/* harmony export */ ECSqlValueType: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlValueType),
|
|
44362
|
+
/* harmony export */ Easing: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Easing),
|
|
44363
|
+
/* harmony export */ EcefLocation: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.EcefLocation),
|
|
44364
|
+
/* harmony export */ EdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.EdgeArgs),
|
|
44365
|
+
/* harmony export */ ElementGeometry: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometry),
|
|
44366
|
+
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__.ElementGeometryChange),
|
|
44367
|
+
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometryOpcode),
|
|
44368
|
+
/* harmony export */ EmptyLocalization: () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_80__.EmptyLocalization),
|
|
44369
|
+
/* harmony export */ EntityMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.EntityMetaData),
|
|
44370
|
+
/* harmony export */ EntityReferenceSet: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.EntityReferenceSet),
|
|
44371
|
+
/* harmony export */ Environment: () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_35__.Environment),
|
|
44372
|
+
/* harmony export */ ExternalSourceAttachmentRole: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.ExternalSourceAttachmentRole),
|
|
44373
|
+
/* harmony export */ Feature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.Feature),
|
|
44374
|
+
/* harmony export */ FeatureAppearance: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureAppearance),
|
|
44375
|
+
/* harmony export */ FeatureAppearanceProvider: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureAppearanceProvider),
|
|
44376
|
+
/* harmony export */ FeatureIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.FeatureIndex),
|
|
44377
|
+
/* harmony export */ FeatureIndexType: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.FeatureIndexType),
|
|
44378
|
+
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrideType),
|
|
44379
|
+
/* harmony export */ FeatureOverrides: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureOverrides),
|
|
44380
|
+
/* harmony export */ FeatureTable: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.FeatureTable),
|
|
44381
|
+
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.FeatureTableHeader),
|
|
44363
44382
|
/* harmony export */ FieldRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FieldRun),
|
|
44364
|
-
/* harmony export */ FillDisplay: () => (/* reexport safe */
|
|
44365
|
-
/* harmony export */ FillFlags: () => (/* reexport safe */
|
|
44366
|
-
/* harmony export */ FontMap: () => (/* reexport safe */
|
|
44367
|
-
/* harmony export */ FontType: () => (/* reexport safe */
|
|
44383
|
+
/* harmony export */ FillDisplay: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.FillDisplay),
|
|
44384
|
+
/* harmony export */ FillFlags: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.FillFlags),
|
|
44385
|
+
/* harmony export */ FontMap: () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_39__.FontMap),
|
|
44386
|
+
/* harmony export */ FontType: () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_39__.FontType),
|
|
44368
44387
|
/* harmony export */ FractionRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FractionRun),
|
|
44369
|
-
/* harmony export */ FresnelSettings: () => (/* reexport safe */
|
|
44370
|
-
/* harmony export */ Frustum: () => (/* reexport safe */
|
|
44371
|
-
/* harmony export */ FrustumPlanes: () => (/* reexport safe */
|
|
44372
|
-
/* harmony export */ GenericInstanceFilter: () => (/* reexport safe */
|
|
44373
|
-
/* harmony export */ GenericInstanceFilterRuleValue: () => (/* reexport safe */
|
|
44374
|
-
/* harmony export */ GeoCoordStatus: () => (/* reexport safe */
|
|
44375
|
-
/* harmony export */ GeocentricTransform: () => (/* reexport safe */
|
|
44376
|
-
/* harmony export */ GeodeticDatum: () => (/* reexport safe */
|
|
44377
|
-
/* harmony export */ GeodeticEllipsoid: () => (/* reexport safe */
|
|
44378
|
-
/* harmony export */ GeodeticTransform: () => (/* reexport safe */
|
|
44379
|
-
/* harmony export */ GeodeticTransformPath: () => (/* reexport safe */
|
|
44380
|
-
/* harmony export */ GeographicCRS: () => (/* reexport safe */
|
|
44381
|
-
/* harmony export */ GeometryClass: () => (/* reexport safe */
|
|
44382
|
-
/* harmony export */ GeometryParams: () => (/* reexport safe */
|
|
44383
|
-
/* harmony export */ GeometryStreamBuilder: () => (/* reexport safe */
|
|
44384
|
-
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */
|
|
44385
|
-
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */
|
|
44386
|
-
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */
|
|
44387
|
-
/* harmony export */ GlbHeader: () => (/* reexport safe */
|
|
44388
|
-
/* harmony export */ GlobeMode: () => (/* reexport safe */
|
|
44389
|
-
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */
|
|
44390
|
-
/* harmony export */ GltfVersions: () => (/* reexport safe */
|
|
44391
|
-
/* harmony export */ Gradient: () => (/* reexport safe */
|
|
44392
|
-
/* harmony export */ GraphicParams: () => (/* reexport safe */
|
|
44393
|
-
/* harmony export */ GridFileDefinition: () => (/* reexport safe */
|
|
44394
|
-
/* harmony export */ GridFileTransform: () => (/* reexport safe */
|
|
44395
|
-
/* harmony export */ GridOrientationType: () => (/* reexport safe */
|
|
44396
|
-
/* harmony export */ GroundPlane: () => (/* reexport safe */
|
|
44397
|
-
/* harmony export */ HSLColor: () => (/* reexport safe */
|
|
44398
|
-
/* harmony export */ HSVColor: () => (/* reexport safe */
|
|
44399
|
-
/* harmony export */ HSVConstants: () => (/* reexport safe */
|
|
44400
|
-
/* harmony export */ Helmert2DWithZOffset: () => (/* reexport safe */
|
|
44401
|
-
/* harmony export */ HemisphereLights: () => (/* reexport safe */
|
|
44402
|
-
/* harmony export */ HiddenLine: () => (/* reexport safe */
|
|
44403
|
-
/* harmony export */ Hilite: () => (/* reexport safe */
|
|
44404
|
-
/* harmony export */ HorizontalCRS: () => (/* reexport safe */
|
|
44405
|
-
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */
|
|
44406
|
-
/* harmony export */ I3dmHeader: () => (/* reexport safe */
|
|
44407
|
-
/* harmony export */ IModel: () => (/* reexport safe */
|
|
44408
|
-
/* harmony export */ IModelError: () => (/* reexport safe */
|
|
44409
|
-
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */
|
|
44410
|
-
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */
|
|
44411
|
-
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */
|
|
44412
|
-
/* harmony export */ IModelVersion: () => (/* reexport safe */
|
|
44413
|
-
/* harmony export */ INSTANCE: () => (/* reexport safe */
|
|
44414
|
-
/* harmony export */ ImageBuffer: () => (/* reexport safe */
|
|
44415
|
-
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */
|
|
44416
|
-
/* harmony export */ ImageGraphic: () => (/* reexport safe */
|
|
44417
|
-
/* harmony export */ ImageGraphicCorners: () => (/* reexport safe */
|
|
44418
|
-
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */
|
|
44419
|
-
/* harmony export */ ImageSource: () => (/* reexport safe */
|
|
44420
|
-
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */
|
|
44421
|
-
/* harmony export */ ImdlFlags: () => (/* reexport safe */
|
|
44422
|
-
/* harmony export */ ImdlHeader: () => (/* reexport safe */
|
|
44423
|
-
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */
|
|
44424
|
-
/* harmony export */ Interpolation: () => (/* reexport safe */
|
|
44425
|
-
/* harmony export */ IpcSession: () => (/* reexport safe */
|
|
44426
|
-
/* harmony export */ IpcWebSocket: () => (/* reexport safe */
|
|
44427
|
-
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */
|
|
44428
|
-
/* harmony export */ IpcWebSocketFrontend: () => (/* reexport safe */
|
|
44429
|
-
/* harmony export */ IpcWebSocketMessage: () => (/* reexport safe */
|
|
44430
|
-
/* harmony export */ IpcWebSocketMessageType: () => (/* reexport safe */
|
|
44431
|
-
/* harmony export */ IpcWebSocketTransport: () => (/* reexport safe */
|
|
44432
|
-
/* harmony export */ LightSettings: () => (/* reexport safe */
|
|
44388
|
+
/* harmony export */ FresnelSettings: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.FresnelSettings),
|
|
44389
|
+
/* harmony export */ Frustum: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Frustum),
|
|
44390
|
+
/* harmony export */ FrustumPlanes: () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_49__.FrustumPlanes),
|
|
44391
|
+
/* harmony export */ GenericInstanceFilter: () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__.GenericInstanceFilter),
|
|
44392
|
+
/* harmony export */ GenericInstanceFilterRuleValue: () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__.GenericInstanceFilterRuleValue),
|
|
44393
|
+
/* harmony export */ GeoCoordStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.GeoCoordStatus),
|
|
44394
|
+
/* harmony export */ GeocentricTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeocentricTransform),
|
|
44395
|
+
/* harmony export */ GeodeticDatum: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticDatum),
|
|
44396
|
+
/* harmony export */ GeodeticEllipsoid: () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_51__.GeodeticEllipsoid),
|
|
44397
|
+
/* harmony export */ GeodeticTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticTransform),
|
|
44398
|
+
/* harmony export */ GeodeticTransformPath: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticTransformPath),
|
|
44399
|
+
/* harmony export */ GeographicCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.GeographicCRS),
|
|
44400
|
+
/* harmony export */ GeometryClass: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.GeometryClass),
|
|
44401
|
+
/* harmony export */ GeometryParams: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.GeometryParams),
|
|
44402
|
+
/* harmony export */ GeometryStreamBuilder: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamBuilder),
|
|
44403
|
+
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamFlags),
|
|
44404
|
+
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamIterator),
|
|
44405
|
+
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__.GeometrySummaryVerbosity),
|
|
44406
|
+
/* harmony export */ GlbHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GlbHeader),
|
|
44407
|
+
/* harmony export */ GlobeMode: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.GlobeMode),
|
|
44408
|
+
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GltfV2ChunkTypes),
|
|
44409
|
+
/* harmony export */ GltfVersions: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GltfVersions),
|
|
44410
|
+
/* harmony export */ Gradient: () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_61__.Gradient),
|
|
44411
|
+
/* harmony export */ GraphicParams: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.GraphicParams),
|
|
44412
|
+
/* harmony export */ GridFileDefinition: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileDefinition),
|
|
44413
|
+
/* harmony export */ GridFileTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileTransform),
|
|
44414
|
+
/* harmony export */ GridOrientationType: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.GridOrientationType),
|
|
44415
|
+
/* harmony export */ GroundPlane: () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_63__.GroundPlane),
|
|
44416
|
+
/* harmony export */ HSLColor: () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_66__.HSLColor),
|
|
44417
|
+
/* harmony export */ HSVColor: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVColor),
|
|
44418
|
+
/* harmony export */ HSVConstants: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVConstants),
|
|
44419
|
+
/* harmony export */ Helmert2DWithZOffset: () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__.Helmert2DWithZOffset),
|
|
44420
|
+
/* harmony export */ HemisphereLights: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.HemisphereLights),
|
|
44421
|
+
/* harmony export */ HiddenLine: () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_64__.HiddenLine),
|
|
44422
|
+
/* harmony export */ Hilite: () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_65__.Hilite),
|
|
44423
|
+
/* harmony export */ HorizontalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRS),
|
|
44424
|
+
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRSExtent),
|
|
44425
|
+
/* harmony export */ I3dmHeader: () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_154__.I3dmHeader),
|
|
44426
|
+
/* harmony export */ IModel: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.IModel),
|
|
44427
|
+
/* harmony export */ IModelError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.IModelError),
|
|
44428
|
+
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__.IModelNotFoundResponse),
|
|
44429
|
+
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__.IModelReadRpcInterface),
|
|
44430
|
+
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_139__.IModelTileRpcInterface),
|
|
44431
|
+
/* harmony export */ IModelVersion: () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_71__.IModelVersion),
|
|
44432
|
+
/* harmony export */ INSTANCE: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.INSTANCE),
|
|
44433
|
+
/* harmony export */ ImageBuffer: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBuffer),
|
|
44434
|
+
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBufferFormat),
|
|
44435
|
+
/* harmony export */ ImageGraphic: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphic),
|
|
44436
|
+
/* harmony export */ ImageGraphicCorners: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphicCorners),
|
|
44437
|
+
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ImageMapLayerSettings),
|
|
44438
|
+
/* harmony export */ ImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSource),
|
|
44439
|
+
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSourceFormat),
|
|
44440
|
+
/* harmony export */ ImdlFlags: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.ImdlFlags),
|
|
44441
|
+
/* harmony export */ ImdlHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.ImdlHeader),
|
|
44442
|
+
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.InternetConnectivityStatus),
|
|
44443
|
+
/* harmony export */ Interpolation: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Interpolation),
|
|
44444
|
+
/* harmony export */ IpcSession: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.IpcSession),
|
|
44445
|
+
/* harmony export */ IpcWebSocket: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocket),
|
|
44446
|
+
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketBackend),
|
|
44447
|
+
/* harmony export */ IpcWebSocketFrontend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketFrontend),
|
|
44448
|
+
/* harmony export */ IpcWebSocketMessage: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketMessage),
|
|
44449
|
+
/* harmony export */ IpcWebSocketMessageType: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketMessageType),
|
|
44450
|
+
/* harmony export */ IpcWebSocketTransport: () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_75__.IpcWebSocketTransport),
|
|
44451
|
+
/* harmony export */ LightSettings: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.LightSettings),
|
|
44433
44452
|
/* harmony export */ LineBreakRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
44434
|
-
/* harmony export */ LinePixels: () => (/* reexport safe */
|
|
44435
|
-
/* harmony export */ LineStyle: () => (/* reexport safe */
|
|
44436
|
-
/* harmony export */ LockState: () => (/* reexport safe */
|
|
44437
|
-
/* harmony export */ MapImagerySettings: () => (/* reexport safe */
|
|
44438
|
-
/* harmony export */ MapLayerSettings: () => (/* reexport safe */
|
|
44439
|
-
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */
|
|
44440
|
-
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */
|
|
44441
|
-
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */
|
|
44442
|
-
/* harmony export */ MeshEdge: () => (/* reexport safe */
|
|
44443
|
-
/* harmony export */ MeshEdges: () => (/* reexport safe */
|
|
44444
|
-
/* harmony export */ MeshPolyline: () => (/* reexport safe */
|
|
44445
|
-
/* harmony export */ ModelClipGroup: () => (/* reexport safe */
|
|
44446
|
-
/* harmony export */ ModelClipGroups: () => (/* reexport safe */
|
|
44447
|
-
/* harmony export */ ModelFeature: () => (/* reexport safe */
|
|
44448
|
-
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */
|
|
44449
|
-
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */
|
|
44450
|
-
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */
|
|
44451
|
-
/* harmony export */ MonochromeMode: () => (/* reexport safe */
|
|
44452
|
-
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */
|
|
44453
|
-
/* harmony export */ NoContentError: () => (/* reexport safe */
|
|
44454
|
-
/* harmony export */ NonUniformColor: () => (/* reexport safe */
|
|
44455
|
-
/* harmony export */ NormalMapFlags: () => (/* reexport safe */
|
|
44456
|
-
/* harmony export */ Npc: () => (/* reexport safe */
|
|
44457
|
-
/* harmony export */ NpcCenter: () => (/* reexport safe */
|
|
44458
|
-
/* harmony export */ NpcCorners: () => (/* reexport safe */
|
|
44459
|
-
/* harmony export */ OPERATION: () => (/* reexport safe */
|
|
44460
|
-
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */
|
|
44461
|
-
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */
|
|
44462
|
-
/* harmony export */ OverriddenBy: () => (/* reexport safe */
|
|
44463
|
-
/* harmony export */ POLICY: () => (/* reexport safe */
|
|
44464
|
-
/* harmony export */ PackedFeature: () => (/* reexport safe */
|
|
44465
|
-
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */
|
|
44466
|
-
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */
|
|
44453
|
+
/* harmony export */ LinePixels: () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_79__.LinePixels),
|
|
44454
|
+
/* harmony export */ LineStyle: () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_54__.LineStyle),
|
|
44455
|
+
/* harmony export */ LockState: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.LockState),
|
|
44456
|
+
/* harmony export */ MapImagerySettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.MapImagerySettings),
|
|
44457
|
+
/* harmony export */ MapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapLayerSettings),
|
|
44458
|
+
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapSubLayerSettings),
|
|
44459
|
+
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.MarshalingBinaryMarker),
|
|
44460
|
+
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_83__.MassPropertiesOperation),
|
|
44461
|
+
/* harmony export */ MeshEdge: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshEdge),
|
|
44462
|
+
/* harmony export */ MeshEdges: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshEdges),
|
|
44463
|
+
/* harmony export */ MeshPolyline: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshPolyline),
|
|
44464
|
+
/* harmony export */ ModelClipGroup: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroup),
|
|
44465
|
+
/* harmony export */ ModelClipGroups: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroups),
|
|
44466
|
+
/* harmony export */ ModelFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.ModelFeature),
|
|
44467
|
+
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__.ModelGeometryChanges),
|
|
44468
|
+
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerDrapeTarget),
|
|
44469
|
+
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerSettings),
|
|
44470
|
+
/* harmony export */ MonochromeMode: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.MonochromeMode),
|
|
44471
|
+
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MultiModelPackedFeatureTable),
|
|
44472
|
+
/* harmony export */ NoContentError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.NoContentError),
|
|
44473
|
+
/* harmony export */ NonUniformColor: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.NonUniformColor),
|
|
44474
|
+
/* harmony export */ NormalMapFlags: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.NormalMapFlags),
|
|
44475
|
+
/* harmony export */ Npc: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Npc),
|
|
44476
|
+
/* harmony export */ NpcCenter: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCenter),
|
|
44477
|
+
/* harmony export */ NpcCorners: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCorners),
|
|
44478
|
+
/* harmony export */ OPERATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.OPERATION),
|
|
44479
|
+
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormal),
|
|
44480
|
+
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormalPair),
|
|
44481
|
+
/* harmony export */ OverriddenBy: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.OverriddenBy),
|
|
44482
|
+
/* harmony export */ POLICY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.POLICY),
|
|
44483
|
+
/* harmony export */ PackedFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.PackedFeature),
|
|
44484
|
+
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PackedFeatureModelTable),
|
|
44485
|
+
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PackedFeatureTable),
|
|
44467
44486
|
/* harmony export */ Paragraph: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
44468
|
-
/* harmony export */ Placement2d: () => (/* reexport safe */
|
|
44469
|
-
/* harmony export */ Placement3d: () => (/* reexport safe */
|
|
44470
|
-
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */
|
|
44471
|
-
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */
|
|
44472
|
-
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */
|
|
44473
|
-
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */
|
|
44474
|
-
/* harmony export */ PntsHeader: () => (/* reexport safe */
|
|
44475
|
-
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */
|
|
44476
|
-
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */
|
|
44477
|
-
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */
|
|
44478
|
-
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */
|
|
44479
|
-
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */
|
|
44480
|
-
/* harmony export */ ProfileOptions: () => (/* reexport safe */
|
|
44481
|
-
/* harmony export */ Projection: () => (/* reexport safe */
|
|
44482
|
-
/* harmony export */ PropertyMetaData: () => (/* reexport safe */
|
|
44483
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */
|
|
44484
|
-
/* harmony export */ QParams2d: () => (/* reexport safe */
|
|
44485
|
-
/* harmony export */ QParams3d: () => (/* reexport safe */
|
|
44486
|
-
/* harmony export */ QPoint2d: () => (/* reexport safe */
|
|
44487
|
-
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */
|
|
44488
|
-
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */
|
|
44489
|
-
/* harmony export */ QPoint2dList: () => (/* reexport safe */
|
|
44490
|
-
/* harmony export */ QPoint3d: () => (/* reexport safe */
|
|
44491
|
-
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */
|
|
44492
|
-
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */
|
|
44493
|
-
/* harmony export */ QPoint3dList: () => (/* reexport safe */
|
|
44494
|
-
/* harmony export */ Quantization: () => (/* reexport safe */
|
|
44495
|
-
/* harmony export */ QueryBinder: () => (/* reexport safe */
|
|
44496
|
-
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */
|
|
44497
|
-
/* harmony export */ QueryParamType: () => (/* reexport safe */
|
|
44498
|
-
/* harmony export */ QueryRowFormat: () => (/* reexport safe */
|
|
44499
|
-
/* harmony export */ REGISTRY: () => (/* reexport safe */
|
|
44500
|
-
/* harmony export */ Rank: () => (/* reexport safe */
|
|
44501
|
-
/* harmony export */ RealityDataFormat: () => (/* reexport safe */
|
|
44502
|
-
/* harmony export */ RealityDataProvider: () => (/* reexport safe */
|
|
44503
|
-
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */
|
|
44504
|
-
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */
|
|
44505
|
-
/* harmony export */ RelatedElement: () => (/* reexport safe */
|
|
44506
|
-
/* harmony export */ RenderMaterial: () => (/* reexport safe */
|
|
44507
|
-
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */
|
|
44508
|
-
/* harmony export */ RenderMode: () => (/* reexport safe */
|
|
44509
|
-
/* harmony export */ RenderSchedule: () => (/* reexport safe */
|
|
44510
|
-
/* harmony export */ RenderTexture: () => (/* reexport safe */
|
|
44511
|
-
/* harmony export */ RenderTextureParams: () => (/* reexport safe */
|
|
44512
|
-
/* harmony export */ ResponseLike: () => (/* reexport safe */
|
|
44513
|
-
/* harmony export */ RgbColor: () => (/* reexport safe */
|
|
44514
|
-
/* harmony export */ RpcConfiguration: () => (/* reexport safe */
|
|
44515
|
-
/* harmony export */ RpcContentType: () => (/* reexport safe */
|
|
44516
|
-
/* harmony export */ RpcControlChannel: () => (/* reexport safe */
|
|
44517
|
-
/* harmony export */ RpcControlResponse: () => (/* reexport safe */
|
|
44518
|
-
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */
|
|
44519
|
-
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */
|
|
44520
|
-
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */
|
|
44521
|
-
/* harmony export */ RpcEndpoint: () => (/* reexport safe */
|
|
44522
|
-
/* harmony export */ RpcInterface: () => (/* reexport safe */
|
|
44523
|
-
/* harmony export */ RpcInvocation: () => (/* reexport safe */
|
|
44524
|
-
/* harmony export */ RpcManager: () => (/* reexport safe */
|
|
44525
|
-
/* harmony export */ RpcMarshaling: () => (/* reexport safe */
|
|
44526
|
-
/* harmony export */ RpcMultipart: () => (/* reexport safe */
|
|
44527
|
-
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */
|
|
44528
|
-
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */
|
|
44529
|
-
/* harmony export */ RpcOperation: () => (/* reexport safe */
|
|
44530
|
-
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */
|
|
44531
|
-
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */
|
|
44532
|
-
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */
|
|
44533
|
-
/* harmony export */ RpcProtocol: () => (/* reexport safe */
|
|
44534
|
-
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */
|
|
44535
|
-
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */
|
|
44536
|
-
/* harmony export */ RpcPushChannel: () => (/* reexport safe */
|
|
44537
|
-
/* harmony export */ RpcPushConnection: () => (/* reexport safe */
|
|
44538
|
-
/* harmony export */ RpcPushService: () => (/* reexport safe */
|
|
44539
|
-
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */
|
|
44540
|
-
/* harmony export */ RpcPushTransport: () => (/* reexport safe */
|
|
44541
|
-
/* harmony export */ RpcRegistry: () => (/* reexport safe */
|
|
44542
|
-
/* harmony export */ RpcRequest: () => (/* reexport safe */
|
|
44543
|
-
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */
|
|
44544
|
-
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */
|
|
44545
|
-
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */
|
|
44546
|
-
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */
|
|
44547
|
-
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */
|
|
44548
|
-
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */
|
|
44549
|
-
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */
|
|
44550
|
-
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */
|
|
44487
|
+
/* harmony export */ Placement2d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement2d),
|
|
44488
|
+
/* harmony export */ Placement3d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement3d),
|
|
44489
|
+
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_93__.PlanProjectionSettings),
|
|
44490
|
+
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskMode),
|
|
44491
|
+
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskPriority),
|
|
44492
|
+
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskSettings),
|
|
44493
|
+
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_156__.PntsHeader),
|
|
44494
|
+
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__.PointCloudDisplaySettings),
|
|
44495
|
+
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PolylineEdgeArgs),
|
|
44496
|
+
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _RenderPolyline__WEBPACK_IMPORTED_MODULE_97__.PolylineTypeFlags),
|
|
44497
|
+
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.PositionalVectorTransform),
|
|
44498
|
+
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PrimitiveTypeCode),
|
|
44499
|
+
/* harmony export */ ProfileOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.ProfileOptions),
|
|
44500
|
+
/* harmony export */ Projection: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Projection),
|
|
44501
|
+
/* harmony export */ PropertyMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PropertyMetaData),
|
|
44502
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__.PropertyMetaDataMap),
|
|
44503
|
+
/* harmony export */ QParams2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QParams2d),
|
|
44504
|
+
/* harmony export */ QParams3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QParams3d),
|
|
44505
|
+
/* harmony export */ QPoint2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2d),
|
|
44506
|
+
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dBuffer),
|
|
44507
|
+
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dBufferBuilder),
|
|
44508
|
+
/* harmony export */ QPoint2dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dList),
|
|
44509
|
+
/* harmony export */ QPoint3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3d),
|
|
44510
|
+
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dBuffer),
|
|
44511
|
+
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dBufferBuilder),
|
|
44512
|
+
/* harmony export */ QPoint3dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dList),
|
|
44513
|
+
/* harmony export */ Quantization: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.Quantization),
|
|
44514
|
+
/* harmony export */ QueryBinder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryBinder),
|
|
44515
|
+
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryOptionsBuilder),
|
|
44516
|
+
/* harmony export */ QueryParamType: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryParamType),
|
|
44517
|
+
/* harmony export */ QueryRowFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryRowFormat),
|
|
44518
|
+
/* harmony export */ REGISTRY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.REGISTRY),
|
|
44519
|
+
/* harmony export */ Rank: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.Rank),
|
|
44520
|
+
/* harmony export */ RealityDataFormat: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataFormat),
|
|
44521
|
+
/* harmony export */ RealityDataProvider: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataProvider),
|
|
44522
|
+
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataSourceKey),
|
|
44523
|
+
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__.RealityModelDisplaySettings),
|
|
44524
|
+
/* harmony export */ RelatedElement: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.RelatedElement),
|
|
44525
|
+
/* harmony export */ RenderMaterial: () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_98__.RenderMaterial),
|
|
44526
|
+
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.RenderMaterialParams),
|
|
44527
|
+
/* harmony export */ RenderMode: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_121__.RenderMode),
|
|
44528
|
+
/* harmony export */ RenderSchedule: () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_99__.RenderSchedule),
|
|
44529
|
+
/* harmony export */ RenderTexture: () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_100__.RenderTexture),
|
|
44530
|
+
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.RenderTextureParams),
|
|
44531
|
+
/* harmony export */ ResponseLike: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.ResponseLike),
|
|
44532
|
+
/* harmony export */ RgbColor: () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_101__.RgbColor),
|
|
44533
|
+
/* harmony export */ RpcConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcConfiguration),
|
|
44534
|
+
/* harmony export */ RpcContentType: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcContentType),
|
|
44535
|
+
/* harmony export */ RpcControlChannel: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcControlChannel),
|
|
44536
|
+
/* harmony export */ RpcControlResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcControlResponse),
|
|
44537
|
+
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDefaultConfiguration),
|
|
44538
|
+
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDirectProtocol),
|
|
44539
|
+
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDirectRequest),
|
|
44540
|
+
/* harmony export */ RpcEndpoint: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcEndpoint),
|
|
44541
|
+
/* harmony export */ RpcInterface: () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_142__.RpcInterface),
|
|
44542
|
+
/* harmony export */ RpcInvocation: () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_125__.RpcInvocation),
|
|
44543
|
+
/* harmony export */ RpcManager: () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_102__.RpcManager),
|
|
44544
|
+
/* harmony export */ RpcMarshaling: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.RpcMarshaling),
|
|
44545
|
+
/* harmony export */ RpcMultipart: () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_146__.RpcMultipart),
|
|
44546
|
+
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcNotFoundResponse),
|
|
44547
|
+
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_145__.RpcOpenAPIDescription),
|
|
44548
|
+
/* harmony export */ RpcOperation: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__.RpcOperation),
|
|
44549
|
+
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__.RpcOperationPolicy),
|
|
44550
|
+
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_129__.RpcPendingQueue),
|
|
44551
|
+
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcPendingResponse),
|
|
44552
|
+
/* harmony export */ RpcProtocol: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcProtocol),
|
|
44553
|
+
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcProtocolEvent),
|
|
44554
|
+
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcProtocolVersion),
|
|
44555
|
+
/* harmony export */ RpcPushChannel: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushChannel),
|
|
44556
|
+
/* harmony export */ RpcPushConnection: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushConnection),
|
|
44557
|
+
/* harmony export */ RpcPushService: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushService),
|
|
44558
|
+
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushSubscription),
|
|
44559
|
+
/* harmony export */ RpcPushTransport: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushTransport),
|
|
44560
|
+
/* harmony export */ RpcRegistry: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.RpcRegistry),
|
|
44561
|
+
/* harmony export */ RpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.RpcRequest),
|
|
44562
|
+
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcRequestEvent),
|
|
44563
|
+
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcRequestFulfillment),
|
|
44564
|
+
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcRequestStatus),
|
|
44565
|
+
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcResponseCacheControl),
|
|
44566
|
+
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcRoutingMap),
|
|
44567
|
+
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_134__.RpcRoutingToken),
|
|
44568
|
+
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.RpcSerializedValue),
|
|
44569
|
+
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcSessionInvocation),
|
|
44551
44570
|
/* harmony export */ Run: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
44552
|
-
/* harmony export */ SchemaState: () => (/* reexport safe */
|
|
44553
|
-
/* harmony export */ SectionType: () => (/* reexport safe */
|
|
44554
|
-
/* harmony export */ ServerError: () => (/* reexport safe */
|
|
44555
|
-
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */
|
|
44556
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */
|
|
44557
|
-
/* harmony export */ SkyBox: () => (/* reexport safe */
|
|
44558
|
-
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */
|
|
44559
|
-
/* harmony export */ SkyCube: () => (/* reexport safe */
|
|
44560
|
-
/* harmony export */ SkyGradient: () => (/* reexport safe */
|
|
44561
|
-
/* harmony export */ SkySphere: () => (/* reexport safe */
|
|
44562
|
-
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */
|
|
44563
|
-
/* harmony export */ SolarLight: () => (/* reexport safe */
|
|
44564
|
-
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */
|
|
44565
|
-
/* harmony export */ SpatialClassifier: () => (/* reexport safe */
|
|
44566
|
-
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */
|
|
44567
|
-
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */
|
|
44568
|
-
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */
|
|
44569
|
-
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */
|
|
44570
|
-
/* harmony export */ SqliteError: () => (/* reexport safe */
|
|
44571
|
-
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */
|
|
44572
|
-
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */
|
|
44573
|
-
/* harmony export */ SyncMode: () => (/* reexport safe */
|
|
44571
|
+
/* harmony export */ SchemaState: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SchemaState),
|
|
44572
|
+
/* harmony export */ SectionType: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.SectionType),
|
|
44573
|
+
/* harmony export */ ServerError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerError),
|
|
44574
|
+
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerTimeoutError),
|
|
44575
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.SilhouetteEdgeArgs),
|
|
44576
|
+
/* harmony export */ SkyBox: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyBox),
|
|
44577
|
+
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyBoxImageType),
|
|
44578
|
+
/* harmony export */ SkyCube: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyCube),
|
|
44579
|
+
/* harmony export */ SkyGradient: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyGradient),
|
|
44580
|
+
/* harmony export */ SkySphere: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkySphere),
|
|
44581
|
+
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_140__.SnapshotIModelRpcInterface),
|
|
44582
|
+
/* harmony export */ SolarLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.SolarLight),
|
|
44583
|
+
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_106__.SolarShadowSettings),
|
|
44584
|
+
/* harmony export */ SpatialClassifier: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifier),
|
|
44585
|
+
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierFlags),
|
|
44586
|
+
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierInsideDisplay),
|
|
44587
|
+
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierOutsideDisplay),
|
|
44588
|
+
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifiers),
|
|
44589
|
+
/* harmony export */ SqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.SqliteError),
|
|
44590
|
+
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__.SubCategoryAppearance),
|
|
44591
|
+
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__.SubCategoryOverride),
|
|
44592
|
+
/* harmony export */ SyncMode: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SyncMode),
|
|
44574
44593
|
/* harmony export */ TabRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TabRun),
|
|
44575
|
-
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */
|
|
44576
|
-
/* harmony export */ TerrainSettings: () => (/* reexport safe */
|
|
44577
|
-
/* harmony export */ TestRpcManager: () => (/* reexport safe */
|
|
44594
|
+
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__.TerrainHeightOriginMode),
|
|
44595
|
+
/* harmony export */ TerrainSettings: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__.TerrainSettings),
|
|
44596
|
+
/* harmony export */ TestRpcManager: () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_141__.TestRpcManager),
|
|
44578
44597
|
/* harmony export */ TextAnnotation: () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
44579
44598
|
/* harmony export */ TextBlock: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
44580
44599
|
/* harmony export */ TextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
44581
44600
|
/* harmony export */ TextRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextRun),
|
|
44582
|
-
/* harmony export */ TextString: () => (/* reexport safe */
|
|
44583
|
-
/* harmony export */ TextStyleSettings: () => (/* reexport safe */
|
|
44584
|
-
/* harmony export */ TextureMapUnits: () => (/* reexport safe */
|
|
44585
|
-
/* harmony export */ TextureMapping: () => (/* reexport safe */
|
|
44586
|
-
/* harmony export */ TextureTransparency: () => (/* reexport safe */
|
|
44587
|
-
/* harmony export */ ThematicDisplay: () => (/* reexport safe */
|
|
44588
|
-
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */
|
|
44589
|
-
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */
|
|
44590
|
-
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */
|
|
44591
|
-
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */
|
|
44592
|
-
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */
|
|
44593
|
-
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */
|
|
44594
|
-
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */
|
|
44595
|
-
/* harmony export */ TileContentSource: () => (/* reexport safe */
|
|
44596
|
-
/* harmony export */ TileFormat: () => (/* reexport safe */
|
|
44597
|
-
/* harmony export */ TileHeader: () => (/* reexport safe */
|
|
44598
|
-
/* harmony export */ TileMetadataReader: () => (/* reexport safe */
|
|
44599
|
-
/* harmony export */ TileOptions: () => (/* reexport safe */
|
|
44600
|
-
/* harmony export */ TileReadError: () => (/* reexport safe */
|
|
44601
|
-
/* harmony export */ TileReadStatus: () => (/* reexport safe */
|
|
44602
|
-
/* harmony export */ TreeFlags: () => (/* reexport safe */
|
|
44603
|
-
/* harmony export */ Tween: () => (/* reexport safe */
|
|
44604
|
-
/* harmony export */ Tweens: () => (/* reexport safe */
|
|
44605
|
-
/* harmony export */ TxnAction: () => (/* reexport safe */
|
|
44606
|
-
/* harmony export */ TypeDefinition: () => (/* reexport safe */
|
|
44607
|
-
/* harmony export */ TypeOfChange: () => (/* reexport safe */
|
|
44608
|
-
/* harmony export */ VerticalCRS: () => (/* reexport safe */
|
|
44609
|
-
/* harmony export */ ViewDetails: () => (/* reexport safe */
|
|
44610
|
-
/* harmony export */ ViewDetails3d: () => (/* reexport safe */
|
|
44611
|
-
/* harmony export */ ViewFlags: () => (/* reexport safe */
|
|
44612
|
-
/* harmony export */ ViewStoreError: () => (/* reexport safe */
|
|
44613
|
-
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */
|
|
44614
|
-
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */
|
|
44615
|
-
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */
|
|
44616
|
-
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */
|
|
44617
|
-
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */
|
|
44618
|
-
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */
|
|
44619
|
-
/* harmony export */ WorkspaceError: () => (/* reexport safe */
|
|
44620
|
-
/* harmony export */ XyzRotation: () => (/* reexport safe */
|
|
44621
|
-
/* harmony export */ aggregateLoad: () => (/* reexport safe */
|
|
44622
|
-
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */
|
|
44623
|
-
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */
|
|
44624
|
-
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */
|
|
44625
|
-
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */
|
|
44626
|
-
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */
|
|
44627
|
-
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */
|
|
44628
|
-
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */
|
|
44629
|
-
/* harmony export */ computeChildTileProps: () => (/* reexport safe */
|
|
44630
|
-
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */
|
|
44631
|
-
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */
|
|
44632
|
-
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */
|
|
44633
|
-
/* harmony export */ defaultTileOptions: () => (/* reexport safe */
|
|
44634
|
-
/* harmony export */
|
|
44635
|
-
/* harmony export */
|
|
44636
|
-
/* harmony export */
|
|
44637
|
-
/* harmony export */
|
|
44638
|
-
/* harmony export */
|
|
44639
|
-
/* harmony export */
|
|
44640
|
-
/* harmony export */
|
|
44641
|
-
/* harmony export */
|
|
44642
|
-
/* harmony export */
|
|
44643
|
-
/* harmony export */
|
|
44644
|
-
/* harmony export */
|
|
44645
|
-
/* harmony export */
|
|
44646
|
-
/* harmony export */
|
|
44647
|
-
/* harmony export */
|
|
44648
|
-
/* harmony export */
|
|
44649
|
-
/* harmony export */
|
|
44650
|
-
/* harmony export */
|
|
44651
|
-
/* harmony export */
|
|
44652
|
-
/* harmony export */
|
|
44653
|
-
/* harmony export */
|
|
44654
|
-
/* harmony export */
|
|
44655
|
-
/* harmony export */
|
|
44656
|
-
/* harmony export */
|
|
44601
|
+
/* harmony export */ TextString: () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__.TextString),
|
|
44602
|
+
/* harmony export */ TextStyleSettings: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.TextStyleSettings),
|
|
44603
|
+
/* harmony export */ TextureMapUnits: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.TextureMapUnits),
|
|
44604
|
+
/* harmony export */ TextureMapping: () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_112__.TextureMapping),
|
|
44605
|
+
/* harmony export */ TextureTransparency: () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_113__.TextureTransparency),
|
|
44606
|
+
/* harmony export */ ThematicDisplay: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplay),
|
|
44607
|
+
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplayMode),
|
|
44608
|
+
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplaySensor),
|
|
44609
|
+
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplaySensorSettings),
|
|
44610
|
+
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientColorScheme),
|
|
44611
|
+
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientMode),
|
|
44612
|
+
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientSettings),
|
|
44613
|
+
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientTransparencyMode),
|
|
44614
|
+
/* harmony export */ TileContentSource: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_117__.TileContentSource),
|
|
44615
|
+
/* harmony export */ TileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileFormat),
|
|
44616
|
+
/* harmony export */ TileHeader: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileHeader),
|
|
44617
|
+
/* harmony export */ TileMetadataReader: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TileMetadataReader),
|
|
44618
|
+
/* harmony export */ TileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TileOptions),
|
|
44619
|
+
/* harmony export */ TileReadError: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileReadError),
|
|
44620
|
+
/* harmony export */ TileReadStatus: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileReadStatus),
|
|
44621
|
+
/* harmony export */ TreeFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TreeFlags),
|
|
44622
|
+
/* harmony export */ Tween: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Tween),
|
|
44623
|
+
/* harmony export */ Tweens: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Tweens),
|
|
44624
|
+
/* harmony export */ TxnAction: () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_119__.TxnAction),
|
|
44625
|
+
/* harmony export */ TypeDefinition: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.TypeDefinition),
|
|
44626
|
+
/* harmony export */ TypeOfChange: () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_16__.TypeOfChange),
|
|
44627
|
+
/* harmony export */ VerticalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.VerticalCRS),
|
|
44628
|
+
/* harmony export */ ViewDetails: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.ViewDetails),
|
|
44629
|
+
/* harmony export */ ViewDetails3d: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.ViewDetails3d),
|
|
44630
|
+
/* harmony export */ ViewFlags: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_121__.ViewFlags),
|
|
44631
|
+
/* harmony export */ ViewStoreError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ViewStoreError),
|
|
44632
|
+
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_122__.ViewStoreRpc),
|
|
44633
|
+
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.WEB_RPC_CONSTANTS),
|
|
44634
|
+
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_149__.WebAppRpcLogging),
|
|
44635
|
+
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_147__.WebAppRpcProtocol),
|
|
44636
|
+
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_148__.WebAppRpcRequest),
|
|
44637
|
+
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_160__.WhiteOnWhiteReversalSettings),
|
|
44638
|
+
/* harmony export */ WorkspaceError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.WorkspaceError),
|
|
44639
|
+
/* harmony export */ XyzRotation: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.XyzRotation),
|
|
44640
|
+
/* harmony export */ aggregateLoad: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.aggregateLoad),
|
|
44641
|
+
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.bisectTileRange2d),
|
|
44642
|
+
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.bisectTileRange3d),
|
|
44643
|
+
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarAngles),
|
|
44644
|
+
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirection),
|
|
44645
|
+
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirectionFromAngles),
|
|
44646
|
+
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSunriseOrSunset),
|
|
44647
|
+
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.compareIModelTileTreeIds),
|
|
44648
|
+
/* harmony export */ computeChildTileProps: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeChildTileProps),
|
|
44649
|
+
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeChildTileRanges),
|
|
44650
|
+
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeTileChordTolerance),
|
|
44651
|
+
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.decodeTileContentDescription),
|
|
44652
|
+
/* harmony export */ defaultTileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.defaultTileOptions),
|
|
44653
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.formatFieldValue),
|
|
44654
|
+
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.getMaximumMajorTileFormatVersion),
|
|
44655
|
+
/* harmony export */ getPullChangesIpcChannel: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.getPullChangesIpcChannel),
|
|
44656
|
+
/* harmony export */ getTileObjectReference: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_117__.getTileObjectReference),
|
|
44657
|
+
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.iModelTileTreeIdToString),
|
|
44658
|
+
/* harmony export */ iTwinChannel: () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__.iTwinChannel),
|
|
44659
|
+
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.initializeRpcRequest),
|
|
44660
|
+
/* harmony export */ ipcAppChannels: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.ipcAppChannels),
|
|
44661
|
+
/* harmony export */ isBinaryImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isBinaryImageSource),
|
|
44662
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.isKnownFieldPropertyType),
|
|
44663
|
+
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.isKnownTileFormat),
|
|
44664
|
+
/* harmony export */ isPlacement2dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement2dProps),
|
|
44665
|
+
/* harmony export */ isPlacement3dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement3dProps),
|
|
44666
|
+
/* harmony export */ isPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isPowerOfTwo),
|
|
44667
|
+
/* harmony export */ isValidImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isValidImageSourceFormat),
|
|
44668
|
+
/* harmony export */ mapToGeoServiceStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.mapToGeoServiceStatus),
|
|
44669
|
+
/* harmony export */ nativeAppIpcStrings: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.nativeAppIpcStrings),
|
|
44670
|
+
/* harmony export */ nextHighestPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.nextHighestPowerOfTwo),
|
|
44671
|
+
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.nextPoint3d64FromByteStream),
|
|
44672
|
+
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.parseTileTreeIdAndContentId),
|
|
44673
|
+
/* harmony export */ readElementMeshes: () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_30__.readElementMeshes),
|
|
44674
|
+
/* harmony export */ readTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.readTileContentDescription),
|
|
44675
|
+
/* harmony export */ rpcOverIpcStrings: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.rpcOverIpcStrings),
|
|
44676
|
+
/* harmony export */ textAnnotationFrameShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.textAnnotationFrameShapes),
|
|
44677
|
+
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.tileFormatFromNumber)
|
|
44657
44678
|
/* harmony export */ });
|
|
44658
44679
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
44659
44680
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -44661,161 +44682,162 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44661
44682
|
/* harmony import */ var _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./annotation/TextBlock */ "../../core/common/lib/esm/annotation/TextBlock.js");
|
|
44662
44683
|
/* harmony import */ var _annotation_TextBlockGeometryProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotation/TextBlockGeometryProps */ "../../core/common/lib/esm/annotation/TextBlockGeometryProps.js");
|
|
44663
44684
|
/* harmony import */ var _annotation_TextBlockLayoutResult__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./annotation/TextBlockLayoutResult */ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js");
|
|
44664
|
-
/* harmony import */ var
|
|
44665
|
-
/* harmony import */ var
|
|
44666
|
-
/* harmony import */ var
|
|
44667
|
-
/* harmony import */ var
|
|
44668
|
-
/* harmony import */ var
|
|
44669
|
-
/* harmony import */ var
|
|
44670
|
-
/* harmony import */ var
|
|
44671
|
-
/* harmony import */ var
|
|
44672
|
-
/* harmony import */ var
|
|
44673
|
-
/* harmony import */ var
|
|
44674
|
-
/* harmony import */ var
|
|
44675
|
-
/* harmony import */ var
|
|
44676
|
-
/* harmony import */ var
|
|
44677
|
-
/* harmony import */ var
|
|
44678
|
-
/* harmony import */ var
|
|
44679
|
-
/* harmony import */ var
|
|
44680
|
-
/* harmony import */ var
|
|
44681
|
-
/* harmony import */ var
|
|
44682
|
-
/* harmony import */ var
|
|
44683
|
-
/* harmony import */ var
|
|
44684
|
-
/* harmony import */ var
|
|
44685
|
-
/* harmony import */ var
|
|
44686
|
-
/* harmony import */ var
|
|
44687
|
-
/* harmony import */ var
|
|
44688
|
-
/* harmony import */ var
|
|
44689
|
-
/* harmony import */ var
|
|
44690
|
-
/* harmony import */ var
|
|
44691
|
-
/* harmony import */ var
|
|
44692
|
-
/* harmony import */ var
|
|
44693
|
-
/* harmony import */ var
|
|
44694
|
-
/* harmony import */ var
|
|
44695
|
-
/* harmony import */ var
|
|
44696
|
-
/* harmony import */ var
|
|
44697
|
-
/* harmony import */ var
|
|
44698
|
-
/* harmony import */ var
|
|
44699
|
-
/* harmony import */ var
|
|
44700
|
-
/* harmony import */ var
|
|
44701
|
-
/* harmony import */ var
|
|
44702
|
-
/* harmony import */ var
|
|
44703
|
-
/* harmony import */ var
|
|
44704
|
-
/* harmony import */ var
|
|
44705
|
-
/* harmony import */ var
|
|
44706
|
-
/* harmony import */ var
|
|
44707
|
-
/* harmony import */ var
|
|
44708
|
-
/* harmony import */ var
|
|
44709
|
-
/* harmony import */ var
|
|
44710
|
-
/* harmony import */ var
|
|
44711
|
-
/* harmony import */ var
|
|
44712
|
-
/* harmony import */ var
|
|
44713
|
-
/* harmony import */ var
|
|
44714
|
-
/* harmony import */ var
|
|
44715
|
-
/* harmony import */ var
|
|
44716
|
-
/* harmony import */ var
|
|
44717
|
-
/* harmony import */ var
|
|
44718
|
-
/* harmony import */ var
|
|
44719
|
-
/* harmony import */ var
|
|
44720
|
-
/* harmony import */ var
|
|
44721
|
-
/* harmony import */ var
|
|
44722
|
-
/* harmony import */ var
|
|
44723
|
-
/* harmony import */ var
|
|
44724
|
-
/* harmony import */ var
|
|
44725
|
-
/* harmony import */ var
|
|
44726
|
-
/* harmony import */ var
|
|
44727
|
-
/* harmony import */ var
|
|
44728
|
-
/* harmony import */ var
|
|
44729
|
-
/* harmony import */ var
|
|
44730
|
-
/* harmony import */ var
|
|
44731
|
-
/* harmony import */ var
|
|
44732
|
-
/* harmony import */ var
|
|
44733
|
-
/* harmony import */ var
|
|
44734
|
-
/* harmony import */ var
|
|
44735
|
-
/* harmony import */ var
|
|
44736
|
-
/* harmony import */ var
|
|
44737
|
-
/* harmony import */ var
|
|
44738
|
-
/* harmony import */ var
|
|
44739
|
-
/* harmony import */ var
|
|
44740
|
-
/* harmony import */ var
|
|
44741
|
-
/* harmony import */ var
|
|
44742
|
-
/* harmony import */ var
|
|
44743
|
-
/* harmony import */ var
|
|
44744
|
-
/* harmony import */ var
|
|
44745
|
-
/* harmony import */ var
|
|
44746
|
-
/* harmony import */ var
|
|
44747
|
-
/* harmony import */ var
|
|
44748
|
-
/* harmony import */ var
|
|
44749
|
-
/* harmony import */ var
|
|
44750
|
-
/* harmony import */ var
|
|
44751
|
-
/* harmony import */ var
|
|
44752
|
-
/* harmony import */ var
|
|
44753
|
-
/* harmony import */ var
|
|
44754
|
-
/* harmony import */ var
|
|
44755
|
-
/* harmony import */ var
|
|
44756
|
-
/* harmony import */ var
|
|
44757
|
-
/* harmony import */ var
|
|
44758
|
-
/* harmony import */ var
|
|
44759
|
-
/* harmony import */ var
|
|
44760
|
-
/* harmony import */ var
|
|
44761
|
-
/* harmony import */ var
|
|
44762
|
-
/* harmony import */ var
|
|
44763
|
-
/* harmony import */ var
|
|
44764
|
-
/* harmony import */ var
|
|
44765
|
-
/* harmony import */ var
|
|
44766
|
-
/* harmony import */ var
|
|
44767
|
-
/* harmony import */ var
|
|
44768
|
-
/* harmony import */ var
|
|
44769
|
-
/* harmony import */ var
|
|
44770
|
-
/* harmony import */ var
|
|
44771
|
-
/* harmony import */ var
|
|
44772
|
-
/* harmony import */ var
|
|
44773
|
-
/* harmony import */ var
|
|
44774
|
-
/* harmony import */ var
|
|
44775
|
-
/* harmony import */ var
|
|
44776
|
-
/* harmony import */ var
|
|
44777
|
-
/* harmony import */ var
|
|
44778
|
-
/* harmony import */ var
|
|
44779
|
-
/* harmony import */ var
|
|
44780
|
-
/* harmony import */ var
|
|
44781
|
-
/* harmony import */ var
|
|
44782
|
-
/* harmony import */ var
|
|
44783
|
-
/* harmony import */ var
|
|
44784
|
-
/* harmony import */ var
|
|
44785
|
-
/* harmony import */ var
|
|
44786
|
-
/* harmony import */ var
|
|
44787
|
-
/* harmony import */ var
|
|
44788
|
-
/* harmony import */ var
|
|
44789
|
-
/* harmony import */ var
|
|
44790
|
-
/* harmony import */ var
|
|
44791
|
-
/* harmony import */ var
|
|
44792
|
-
/* harmony import */ var
|
|
44793
|
-
/* harmony import */ var
|
|
44794
|
-
/* harmony import */ var
|
|
44795
|
-
/* harmony import */ var
|
|
44796
|
-
/* harmony import */ var
|
|
44797
|
-
/* harmony import */ var
|
|
44798
|
-
/* harmony import */ var
|
|
44799
|
-
/* harmony import */ var
|
|
44800
|
-
/* harmony import */ var
|
|
44801
|
-
/* harmony import */ var
|
|
44802
|
-
/* harmony import */ var
|
|
44803
|
-
/* harmony import */ var
|
|
44804
|
-
/* harmony import */ var
|
|
44805
|
-
/* harmony import */ var
|
|
44806
|
-
/* harmony import */ var
|
|
44807
|
-
/* harmony import */ var
|
|
44808
|
-
/* harmony import */ var
|
|
44809
|
-
/* harmony import */ var
|
|
44810
|
-
/* harmony import */ var
|
|
44811
|
-
/* harmony import */ var
|
|
44812
|
-
/* harmony import */ var
|
|
44813
|
-
/* harmony import */ var
|
|
44814
|
-
/* harmony import */ var
|
|
44815
|
-
/* harmony import */ var
|
|
44816
|
-
/* harmony import */ var
|
|
44817
|
-
/* harmony import */ var
|
|
44818
|
-
/* harmony import */ var
|
|
44685
|
+
/* harmony import */ var _annotation_TextField__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./annotation/TextField */ "../../core/common/lib/esm/annotation/TextField.js");
|
|
44686
|
+
/* harmony import */ var _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./annotation/TextStyle */ "../../core/common/lib/esm/annotation/TextStyle.js");
|
|
44687
|
+
/* harmony import */ var _Atmosphere__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Atmosphere */ "../../core/common/lib/esm/Atmosphere.js");
|
|
44688
|
+
/* harmony import */ var _AuthorizationClient__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./AuthorizationClient */ "../../core/common/lib/esm/AuthorizationClient.js");
|
|
44689
|
+
/* harmony import */ var _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./BackgroundMapProvider */ "../../core/common/lib/esm/BackgroundMapProvider.js");
|
|
44690
|
+
/* harmony import */ var _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./BackgroundMapSettings */ "../../core/common/lib/esm/BackgroundMapSettings.js");
|
|
44691
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
44692
|
+
/* harmony import */ var _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./BriefcaseTypes */ "../../core/common/lib/esm/BriefcaseTypes.js");
|
|
44693
|
+
/* harmony import */ var _Camera__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./Camera */ "../../core/common/lib/esm/Camera.js");
|
|
44694
|
+
/* harmony import */ var _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./CatalogIModel */ "../../core/common/lib/esm/CatalogIModel.js");
|
|
44695
|
+
/* harmony import */ var _ChangedElements__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ChangedElements */ "../../core/common/lib/esm/ChangedElements.js");
|
|
44696
|
+
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
44697
|
+
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
44698
|
+
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
44699
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
44700
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
44701
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
44702
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
44703
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
44704
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
44705
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
44706
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
44707
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
44708
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
44709
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
44710
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
44711
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
44712
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
44713
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
44714
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
44715
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
44716
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
44717
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
44718
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
44719
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
44720
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
44721
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
44722
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
44723
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
44724
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
44725
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
44726
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
44727
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
44728
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
44729
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
44730
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
44731
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
44732
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
44733
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
44734
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
44735
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
44736
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
44737
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
44738
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
44739
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
44740
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
44741
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
44742
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
44743
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
44744
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
44745
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
44746
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
44747
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
44748
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
44749
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
44750
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
44751
|
+
/* harmony import */ var _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ITwinCoreErrors */ "../../core/common/lib/esm/ITwinCoreErrors.js");
|
|
44752
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
44753
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
44754
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
44755
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
44756
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
44757
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
44758
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
44759
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
44760
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
44761
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
44762
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
44763
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
44764
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
44765
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
44766
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
44767
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
44768
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
44769
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
44770
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
44771
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
44772
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
44773
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
44774
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
44775
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
44776
|
+
/* harmony import */ var _RenderPolyline__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RenderPolyline */ "../../core/common/lib/esm/RenderPolyline.js");
|
|
44777
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
44778
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
44779
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
44780
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
44781
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
44782
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
44783
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
44784
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
44785
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
44786
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
44787
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
44788
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
44789
|
+
/* harmony import */ var _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./CesiumIonAssets */ "../../core/common/lib/esm/CesiumIonAssets.js");
|
|
44790
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
44791
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
44792
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
44793
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
44794
|
+
/* harmony import */ var _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./ContourDisplay */ "../../core/common/lib/esm/ContourDisplay.js");
|
|
44795
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
44796
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
44797
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
44798
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
44799
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
44800
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
44801
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
44802
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
44803
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
44804
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
44805
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
44806
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
44807
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
44808
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
44809
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
44810
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
44811
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
44812
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
44813
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
44814
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
44815
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
44816
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
44817
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
44818
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
44819
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
44820
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
44821
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
44822
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
44823
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
44824
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
44825
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
44826
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
44827
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
44828
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
44829
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
44830
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
44831
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
44832
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
44833
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
44834
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
44835
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
44836
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
44837
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
44838
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
44839
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
44840
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/common/lib/esm/internal/cross-package.js");
|
|
44819
44841
|
/*---------------------------------------------------------------------------------------------
|
|
44820
44842
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
44821
44843
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -44979,6 +45001,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44979
45001
|
|
|
44980
45002
|
|
|
44981
45003
|
|
|
45004
|
+
|
|
44982
45005
|
|
|
44983
45006
|
|
|
44984
45007
|
/** @docs-package-description
|
|
@@ -54683,6 +54706,83 @@ class RenderTextureParams {
|
|
|
54683
54706
|
}
|
|
54684
54707
|
|
|
54685
54708
|
|
|
54709
|
+
/***/ }),
|
|
54710
|
+
|
|
54711
|
+
/***/ "../../core/common/lib/esm/internal/annotations/FieldFormatter.js":
|
|
54712
|
+
/*!************************************************************************!*\
|
|
54713
|
+
!*** ../../core/common/lib/esm/internal/annotations/FieldFormatter.js ***!
|
|
54714
|
+
\************************************************************************/
|
|
54715
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
54716
|
+
|
|
54717
|
+
"use strict";
|
|
54718
|
+
__webpack_require__.r(__webpack_exports__);
|
|
54719
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
54720
|
+
/* harmony export */ formatFieldValue: () => (/* binding */ formatFieldValue),
|
|
54721
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* binding */ isKnownFieldPropertyType)
|
|
54722
|
+
/* harmony export */ });
|
|
54723
|
+
/*---------------------------------------------------------------------------------------------
|
|
54724
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
54725
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
54726
|
+
*--------------------------------------------------------------------------------------------*/
|
|
54727
|
+
const formatters = {
|
|
54728
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54729
|
+
"string": (v, o) => formatString(v.toString(), o),
|
|
54730
|
+
"datetime": (v, o) => formatString(formatDateTime(v, o?.dateTime), o),
|
|
54731
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54732
|
+
"quantity": (v, o) => formatString(v.toString(), o),
|
|
54733
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54734
|
+
"coordinate": (v, o) => formatString(v.toString(), o),
|
|
54735
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54736
|
+
"boolean": (v, o) => formatString(v.toString(), o),
|
|
54737
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54738
|
+
"int-enum": (v, o) => formatString(v.toString(), o),
|
|
54739
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
54740
|
+
"string-enum": (v, o) => formatString(v.toString(), o),
|
|
54741
|
+
};
|
|
54742
|
+
function formatString(s, o) {
|
|
54743
|
+
if (undefined === s || !o) {
|
|
54744
|
+
return s;
|
|
54745
|
+
}
|
|
54746
|
+
switch (o.case) {
|
|
54747
|
+
case "upper":
|
|
54748
|
+
s = s.toUpperCase();
|
|
54749
|
+
break;
|
|
54750
|
+
case "lower":
|
|
54751
|
+
s = s.toLowerCase();
|
|
54752
|
+
break;
|
|
54753
|
+
}
|
|
54754
|
+
if (o.prefix || o.suffix) {
|
|
54755
|
+
s = `${o.prefix ?? ""}${s}${o.suffix ?? ""}`;
|
|
54756
|
+
}
|
|
54757
|
+
return s;
|
|
54758
|
+
}
|
|
54759
|
+
function formatDateTime(v, o) {
|
|
54760
|
+
if (!(v instanceof Date))
|
|
54761
|
+
return undefined;
|
|
54762
|
+
if (!isNaN(v.getTime())) {
|
|
54763
|
+
if (o?.formatOptions) {
|
|
54764
|
+
const locale = o.locale ?? "en-US";
|
|
54765
|
+
if (!Intl.DateTimeFormat.supportedLocalesOf([locale], { localeMatcher: "lookup" }).includes(locale)) {
|
|
54766
|
+
return undefined;
|
|
54767
|
+
}
|
|
54768
|
+
const formatter = new Intl.DateTimeFormat(locale, o.formatOptions);
|
|
54769
|
+
return formatter.format(v);
|
|
54770
|
+
}
|
|
54771
|
+
return v.toString();
|
|
54772
|
+
}
|
|
54773
|
+
return undefined;
|
|
54774
|
+
}
|
|
54775
|
+
/** @internal */
|
|
54776
|
+
function formatFieldValue(value, options) {
|
|
54777
|
+
const formatter = formatters[value.type];
|
|
54778
|
+
return formatter ? formatter(value.value, options) : undefined;
|
|
54779
|
+
}
|
|
54780
|
+
/** @internal */
|
|
54781
|
+
function isKnownFieldPropertyType(type) {
|
|
54782
|
+
return type in formatters;
|
|
54783
|
+
}
|
|
54784
|
+
|
|
54785
|
+
|
|
54686
54786
|
/***/ }),
|
|
54687
54787
|
|
|
54688
54788
|
/***/ "../../core/common/lib/esm/internal/cross-package.js":
|
|
@@ -54704,12 +54804,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54704
54804
|
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.PolylineEdgeArgs),
|
|
54705
54805
|
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _RenderMaterialParams__WEBPACK_IMPORTED_MODULE_2__.RenderMaterialParams),
|
|
54706
54806
|
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _RenderTextureParams__WEBPACK_IMPORTED_MODULE_3__.RenderTextureParams),
|
|
54707
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.SilhouetteEdgeArgs)
|
|
54807
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.SilhouetteEdgeArgs),
|
|
54808
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__.formatFieldValue),
|
|
54809
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__.isKnownFieldPropertyType)
|
|
54708
54810
|
/* harmony export */ });
|
|
54709
54811
|
/* harmony import */ var _RenderMesh__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RenderMesh */ "../../core/common/lib/esm/internal/RenderMesh.js");
|
|
54710
54812
|
/* harmony import */ var _PackedFeatureTable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PackedFeatureTable */ "../../core/common/lib/esm/internal/PackedFeatureTable.js");
|
|
54711
54813
|
/* harmony import */ var _RenderMaterialParams__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RenderMaterialParams */ "../../core/common/lib/esm/internal/RenderMaterialParams.js");
|
|
54712
54814
|
/* harmony import */ var _RenderTextureParams__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RenderTextureParams */ "../../core/common/lib/esm/internal/RenderTextureParams.js");
|
|
54815
|
+
/* harmony import */ var _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotations/FieldFormatter */ "../../core/common/lib/esm/internal/annotations/FieldFormatter.js");
|
|
54713
54816
|
/*---------------------------------------------------------------------------------------------
|
|
54714
54817
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
54715
54818
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -54720,6 +54823,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54720
54823
|
|
|
54721
54824
|
|
|
54722
54825
|
|
|
54826
|
+
|
|
54723
54827
|
/***/ }),
|
|
54724
54828
|
|
|
54725
54829
|
/***/ "../../core/common/lib/esm/ipc/IpcSession.js":
|
|
@@ -65801,212 +65905,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65801
65905
|
* WITH clauses are broken down into individual variables.
|
|
65802
65906
|
*/
|
|
65803
65907
|
const propertyType = (alias) => {
|
|
65804
|
-
return `
|
|
65805
|
-
CASE
|
|
65806
|
-
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
65807
|
-
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
65808
|
-
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
65809
|
-
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
65810
|
-
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
65811
|
-
ELSE NULL
|
|
65812
|
-
END
|
|
65908
|
+
return `
|
|
65909
|
+
CASE
|
|
65910
|
+
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
65911
|
+
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
65912
|
+
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
65913
|
+
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
65914
|
+
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
65915
|
+
ELSE NULL
|
|
65916
|
+
END
|
|
65813
65917
|
`;
|
|
65814
65918
|
};
|
|
65815
65919
|
const navigationDirection = (alias) => {
|
|
65816
|
-
return `
|
|
65817
|
-
CASE
|
|
65818
|
-
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
65819
|
-
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
65820
|
-
ELSE NULL
|
|
65821
|
-
END
|
|
65920
|
+
return `
|
|
65921
|
+
CASE
|
|
65922
|
+
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
65923
|
+
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
65924
|
+
ELSE NULL
|
|
65925
|
+
END
|
|
65822
65926
|
`;
|
|
65823
65927
|
};
|
|
65824
65928
|
const schemaCustomAttribute = (alias) => {
|
|
65825
|
-
return `
|
|
65826
|
-
SELECT
|
|
65827
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65828
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
65829
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
65830
|
-
ORDER BY [ca].[Ordinal]
|
|
65929
|
+
return `
|
|
65930
|
+
SELECT
|
|
65931
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65932
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
65933
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
65934
|
+
ORDER BY [ca].[Ordinal]
|
|
65831
65935
|
`;
|
|
65832
65936
|
};
|
|
65833
65937
|
/**
|
|
65834
65938
|
* Selects customAttribute data for each class type.
|
|
65835
65939
|
*/
|
|
65836
65940
|
const classCustomAttribute = (alias) => {
|
|
65837
|
-
return `
|
|
65838
|
-
SELECT
|
|
65839
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65840
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
65841
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
65842
|
-
ORDER BY [ca].[Ordinal]
|
|
65941
|
+
return `
|
|
65942
|
+
SELECT
|
|
65943
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65944
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
65945
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
65946
|
+
ORDER BY [ca].[Ordinal]
|
|
65843
65947
|
`;
|
|
65844
65948
|
};
|
|
65845
65949
|
const propertyCustomAttribute = (alias) => {
|
|
65846
|
-
return `
|
|
65847
|
-
SELECT
|
|
65848
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65849
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
65850
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
65851
|
-
ORDER BY [ca].[Ordinal]
|
|
65950
|
+
return `
|
|
65951
|
+
SELECT
|
|
65952
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
65953
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
65954
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
65955
|
+
ORDER BY [ca].[Ordinal]
|
|
65852
65956
|
`;
|
|
65853
65957
|
};
|
|
65854
65958
|
/**
|
|
65855
65959
|
* Selects base class data for each class type.
|
|
65856
65960
|
*/
|
|
65857
|
-
const selectBaseClasses = `
|
|
65858
|
-
SELECT
|
|
65859
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
65860
|
-
FROM
|
|
65861
|
-
[meta].[ECClassDef] [baseClass]
|
|
65862
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
65863
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
65864
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
65865
|
-
|
|
65961
|
+
const selectBaseClasses = `
|
|
65962
|
+
SELECT
|
|
65963
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
65964
|
+
FROM
|
|
65965
|
+
[meta].[ECClassDef] [baseClass]
|
|
65966
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
65967
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
65968
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
65969
|
+
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
65970
|
+
LIMIT 1
|
|
65866
65971
|
`;
|
|
65867
65972
|
/**
|
|
65868
65973
|
* Selects class property data for each class type. ClassProperties
|
|
65869
65974
|
* is a common table expression (CTE or WITH clause) defined below.
|
|
65870
65975
|
*/
|
|
65871
|
-
const selectProperties = `
|
|
65872
|
-
SELECT
|
|
65873
|
-
json_group_array(json([classProperties].[property]))
|
|
65874
|
-
FROM
|
|
65875
|
-
[ClassProperties] [classProperties]
|
|
65876
|
-
WHERE
|
|
65877
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
65976
|
+
const selectProperties = `
|
|
65977
|
+
SELECT
|
|
65978
|
+
json_group_array(json([classProperties].[property]))
|
|
65979
|
+
FROM
|
|
65980
|
+
[ClassProperties] [classProperties]
|
|
65981
|
+
WHERE
|
|
65982
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
65878
65983
|
`;
|
|
65879
65984
|
/**
|
|
65880
65985
|
* A CTE used to select AppliesTo from IsMixin CustomAttributes for a given Mixin.
|
|
65881
65986
|
*/
|
|
65882
|
-
const withAppliesTo = `
|
|
65883
|
-
AppliesToCTE AS (
|
|
65884
|
-
SELECT
|
|
65885
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
65886
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
65887
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
65888
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
65889
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
65890
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
65891
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
65892
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
65893
|
-
WHERE [ca].[ContainerType] = 30
|
|
65894
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
65895
|
-
)
|
|
65987
|
+
const withAppliesTo = `
|
|
65988
|
+
AppliesToCTE AS (
|
|
65989
|
+
SELECT
|
|
65990
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
65991
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
65992
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
65993
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
65994
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
65995
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
65996
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
65997
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
65998
|
+
WHERE [ca].[ContainerType] = 30
|
|
65999
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
66000
|
+
)
|
|
65896
66001
|
`;
|
|
65897
66002
|
/**
|
|
65898
66003
|
* A CTE used to select Schema reference data for a given Schema.
|
|
65899
66004
|
*/
|
|
65900
|
-
const withSchemaReferences = `
|
|
65901
|
-
SchemaReferences as (
|
|
65902
|
-
SELECT
|
|
65903
|
-
[ref].[SourceECInstanceId] as [SchemaId],
|
|
65904
|
-
json_object(
|
|
65905
|
-
'name', [Name],
|
|
65906
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
65907
|
-
) as [reference]
|
|
65908
|
-
FROM
|
|
65909
|
-
[meta].[ECSchemaDef] as [refSchema]
|
|
65910
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
65911
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
65912
|
-
)
|
|
66005
|
+
const withSchemaReferences = `
|
|
66006
|
+
SchemaReferences as (
|
|
66007
|
+
SELECT
|
|
66008
|
+
[ref].[SourceECInstanceId] as [SchemaId],
|
|
66009
|
+
json_object(
|
|
66010
|
+
'name', [Name],
|
|
66011
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
66012
|
+
) as [reference]
|
|
66013
|
+
FROM
|
|
66014
|
+
[meta].[ECSchemaDef] as [refSchema]
|
|
66015
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
66016
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
66017
|
+
)
|
|
65913
66018
|
`;
|
|
65914
66019
|
/**
|
|
65915
66020
|
* A CTE used to select Relationship constraints for a given RelationshipClass.
|
|
65916
66021
|
*/
|
|
65917
|
-
const withRelationshipConstraints = `
|
|
65918
|
-
ClassRelationshipConstraints as (
|
|
65919
|
-
SELECT
|
|
65920
|
-
[rhc].[SourceECInstanceId] as [ClassId],
|
|
65921
|
-
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
65922
|
-
[RelationshipEnd],
|
|
65923
|
-
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
65924
|
-
[IsPolyMorphic],
|
|
65925
|
-
[RoleLabel],
|
|
65926
|
-
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
65927
|
-
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
65928
|
-
FROM
|
|
65929
|
-
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
65930
|
-
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
65931
|
-
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
65932
|
-
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
65933
|
-
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
65934
|
-
GROUP BY [constraintDef].[ECInstanceId]
|
|
65935
|
-
)
|
|
66022
|
+
const withRelationshipConstraints = `
|
|
66023
|
+
ClassRelationshipConstraints as (
|
|
66024
|
+
SELECT
|
|
66025
|
+
[rhc].[SourceECInstanceId] as [ClassId],
|
|
66026
|
+
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
66027
|
+
[RelationshipEnd],
|
|
66028
|
+
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
66029
|
+
[IsPolyMorphic],
|
|
66030
|
+
[RoleLabel],
|
|
66031
|
+
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
66032
|
+
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
66033
|
+
FROM
|
|
66034
|
+
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
66035
|
+
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
66036
|
+
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
66037
|
+
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
66038
|
+
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
66039
|
+
GROUP BY [constraintDef].[ECInstanceId]
|
|
66040
|
+
)
|
|
65936
66041
|
`;
|
|
65937
66042
|
/**
|
|
65938
66043
|
* A CTE used to select Class property data for a given Class.
|
|
65939
66044
|
*/
|
|
65940
|
-
const withClassProperties = `
|
|
65941
|
-
ClassProperties as (
|
|
65942
|
-
SELECT
|
|
65943
|
-
[cop].[SourceECInstanceId] as [ClassId],
|
|
65944
|
-
json_object(
|
|
65945
|
-
'name', [pd].[Name],
|
|
65946
|
-
'label', [pd].[DisplayLabel],
|
|
65947
|
-
'description', [pd].[Description],
|
|
65948
|
-
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
65949
|
-
'priority', [pd].[Priority],
|
|
65950
|
-
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
65951
|
-
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
65952
|
-
'typeName',
|
|
65953
|
-
CASE
|
|
65954
|
-
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
65955
|
-
CASE
|
|
65956
|
-
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
65957
|
-
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
65958
|
-
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
65959
|
-
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
65960
|
-
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
65961
|
-
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
65962
|
-
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
65963
|
-
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
65964
|
-
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
65965
|
-
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
65966
|
-
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
65967
|
-
ELSE null
|
|
65968
|
-
END
|
|
65969
|
-
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
65970
|
-
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
65971
|
-
ELSE null
|
|
65972
|
-
END,
|
|
65973
|
-
'type', ${propertyType("pd")},
|
|
65974
|
-
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
65975
|
-
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
65976
|
-
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
65977
|
-
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
65978
|
-
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
65979
|
-
'minOccurs', [pd].[ArrayMinOccurs],
|
|
65980
|
-
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
65981
|
-
'direction', ${navigationDirection("pd")},
|
|
65982
|
-
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
65983
|
-
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
65984
|
-
) as [property]
|
|
65985
|
-
FROM
|
|
65986
|
-
[meta].[ECPropertyDef] as [pd]
|
|
65987
|
-
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
65988
|
-
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
65989
|
-
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
65990
|
-
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
65991
|
-
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
65992
|
-
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
65993
|
-
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
65994
|
-
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
65995
|
-
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
65996
|
-
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
65997
|
-
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
65998
|
-
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
65999
|
-
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
66000
|
-
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
66001
|
-
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
66002
|
-
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
66003
|
-
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
66004
|
-
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
66005
|
-
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
66006
|
-
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
66007
|
-
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
66008
|
-
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
66009
|
-
)
|
|
66045
|
+
const withClassProperties = `
|
|
66046
|
+
ClassProperties as (
|
|
66047
|
+
SELECT
|
|
66048
|
+
[cop].[SourceECInstanceId] as [ClassId],
|
|
66049
|
+
json_object(
|
|
66050
|
+
'name', [pd].[Name],
|
|
66051
|
+
'label', [pd].[DisplayLabel],
|
|
66052
|
+
'description', [pd].[Description],
|
|
66053
|
+
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
66054
|
+
'priority', [pd].[Priority],
|
|
66055
|
+
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
66056
|
+
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
66057
|
+
'typeName',
|
|
66058
|
+
CASE
|
|
66059
|
+
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
66060
|
+
CASE
|
|
66061
|
+
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
66062
|
+
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
66063
|
+
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
66064
|
+
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
66065
|
+
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
66066
|
+
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
66067
|
+
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
66068
|
+
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
66069
|
+
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
66070
|
+
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
66071
|
+
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
66072
|
+
ELSE null
|
|
66073
|
+
END
|
|
66074
|
+
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
66075
|
+
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
66076
|
+
ELSE null
|
|
66077
|
+
END,
|
|
66078
|
+
'type', ${propertyType("pd")},
|
|
66079
|
+
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
66080
|
+
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
66081
|
+
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
66082
|
+
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
66083
|
+
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
66084
|
+
'minOccurs', [pd].[ArrayMinOccurs],
|
|
66085
|
+
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
66086
|
+
'direction', ${navigationDirection("pd")},
|
|
66087
|
+
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
66088
|
+
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
66089
|
+
) as [property]
|
|
66090
|
+
FROM
|
|
66091
|
+
[meta].[ECPropertyDef] as [pd]
|
|
66092
|
+
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
66093
|
+
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
66094
|
+
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
66095
|
+
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
66096
|
+
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
66097
|
+
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
66098
|
+
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
66099
|
+
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
66100
|
+
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
66101
|
+
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
66102
|
+
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
66103
|
+
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
66104
|
+
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
66105
|
+
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
66106
|
+
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
66107
|
+
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
66108
|
+
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
66109
|
+
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
66110
|
+
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
66111
|
+
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
66112
|
+
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
66113
|
+
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
66114
|
+
)
|
|
66010
66115
|
`;
|
|
66011
66116
|
/**
|
|
66012
66117
|
* Query that provides EntityClass data and is shared by two cases:
|
|
@@ -66014,52 +66119,52 @@ LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
|
66014
66119
|
* 2. When querying a full schema with multiple schema item queries or
|
|
66015
66120
|
* when just querying for Entity classes.
|
|
66016
66121
|
*/
|
|
66017
|
-
const baseEntityQuery = `
|
|
66018
|
-
SELECT
|
|
66019
|
-
[sd].[Name] as [schema],
|
|
66020
|
-
json_object (
|
|
66021
|
-
'schemaItemType', 'EntityClass',
|
|
66022
|
-
'name', [class].[Name],
|
|
66023
|
-
'label', [class].[DisplayLabel],
|
|
66024
|
-
'description', [class].[Description],
|
|
66025
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66026
|
-
'baseClass', (
|
|
66027
|
-
${selectBaseClasses}
|
|
66028
|
-
),
|
|
66029
|
-
'mixins', (
|
|
66030
|
-
SELECT
|
|
66031
|
-
json_group_array(
|
|
66032
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
66033
|
-
)
|
|
66034
|
-
FROM
|
|
66035
|
-
[meta].[ECClassDef] [baseClass]
|
|
66036
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
66037
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
66038
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
66039
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
66040
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
66041
|
-
),
|
|
66042
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
66043
|
-
'properties', (
|
|
66044
|
-
${selectProperties}
|
|
66045
|
-
)
|
|
66046
|
-
) AS [item]
|
|
66047
|
-
FROM [meta].[ECClassDef] [class]
|
|
66048
|
-
JOIN
|
|
66049
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66050
|
-
WHERE [class].[Type] = 0 AND
|
|
66051
|
-
[sd].[Name] = :schemaName
|
|
66052
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
66053
|
-
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
66122
|
+
const baseEntityQuery = `
|
|
66123
|
+
SELECT
|
|
66124
|
+
[sd].[Name] as [schema],
|
|
66125
|
+
json_object (
|
|
66126
|
+
'schemaItemType', 'EntityClass',
|
|
66127
|
+
'name', [class].[Name],
|
|
66128
|
+
'label', [class].[DisplayLabel],
|
|
66129
|
+
'description', [class].[Description],
|
|
66130
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66131
|
+
'baseClass', (
|
|
66132
|
+
${selectBaseClasses}
|
|
66133
|
+
),
|
|
66134
|
+
'mixins', (
|
|
66135
|
+
SELECT
|
|
66136
|
+
json_group_array(
|
|
66137
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
66138
|
+
)
|
|
66139
|
+
FROM
|
|
66140
|
+
[meta].[ECClassDef] [baseClass]
|
|
66141
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
66142
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
66143
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
66144
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
66145
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
66146
|
+
),
|
|
66147
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
66148
|
+
'properties', (
|
|
66149
|
+
${selectProperties}
|
|
66150
|
+
)
|
|
66151
|
+
) AS [item]
|
|
66152
|
+
FROM [meta].[ECClassDef] [class]
|
|
66153
|
+
JOIN
|
|
66154
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66155
|
+
WHERE [class].[Type] = 0 AND
|
|
66156
|
+
[sd].[Name] = :schemaName
|
|
66157
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
66158
|
+
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
66054
66159
|
`;
|
|
66055
66160
|
/**
|
|
66056
66161
|
* EntityClass query used to when querying for EntityClass data only. Not used
|
|
66057
66162
|
* for full Schema load via single query.
|
|
66058
66163
|
*/
|
|
66059
|
-
const entityQuery = `
|
|
66060
|
-
WITH
|
|
66061
|
-
${withClassProperties}
|
|
66062
|
-
${baseEntityQuery}
|
|
66164
|
+
const entityQuery = `
|
|
66165
|
+
WITH
|
|
66166
|
+
${withClassProperties}
|
|
66167
|
+
${baseEntityQuery}
|
|
66063
66168
|
`;
|
|
66064
66169
|
/**
|
|
66065
66170
|
* Query that provides Mixin data and is shared by two cases:
|
|
@@ -66067,56 +66172,56 @@ const entityQuery = `
|
|
|
66067
66172
|
* 2. When querying a full schema with multiple schema item queries or
|
|
66068
66173
|
* when just querying for Mixin classes.
|
|
66069
66174
|
*/
|
|
66070
|
-
const baseMixinQuery = `
|
|
66071
|
-
SELECT
|
|
66072
|
-
[sd].[Name] as [schema],
|
|
66073
|
-
json_object (
|
|
66074
|
-
'schemaItemType', 'Mixin',
|
|
66075
|
-
'name', [class].[Name],
|
|
66076
|
-
'label', [class].[DisplayLabel],
|
|
66077
|
-
'description', [class].[Description],
|
|
66078
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66079
|
-
'baseClass', (
|
|
66080
|
-
${selectBaseClasses}
|
|
66081
|
-
),
|
|
66082
|
-
'appliesTo', (
|
|
66083
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
66084
|
-
FROM [AppliesToCTE] [atCTE]
|
|
66085
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
66086
|
-
),
|
|
66087
|
-
'customAttributes', (
|
|
66088
|
-
SELECT
|
|
66089
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66090
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
66091
|
-
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
66092
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
66093
|
-
),
|
|
66094
|
-
'properties', (
|
|
66095
|
-
SELECT
|
|
66096
|
-
json_group_array(json([classProperties].[property]))
|
|
66097
|
-
FROM
|
|
66098
|
-
[ClassProperties] [classProperties]
|
|
66099
|
-
WHERE
|
|
66100
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
66101
|
-
)
|
|
66102
|
-
) AS [item]
|
|
66103
|
-
FROM [meta].[ECClassDef] [class]
|
|
66104
|
-
JOIN
|
|
66105
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66106
|
-
WHERE [class].[Type] = 0 AND
|
|
66107
|
-
[sd].[Name] = :schemaName
|
|
66108
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
66109
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
66175
|
+
const baseMixinQuery = `
|
|
66176
|
+
SELECT
|
|
66177
|
+
[sd].[Name] as [schema],
|
|
66178
|
+
json_object (
|
|
66179
|
+
'schemaItemType', 'Mixin',
|
|
66180
|
+
'name', [class].[Name],
|
|
66181
|
+
'label', [class].[DisplayLabel],
|
|
66182
|
+
'description', [class].[Description],
|
|
66183
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66184
|
+
'baseClass', (
|
|
66185
|
+
${selectBaseClasses}
|
|
66186
|
+
),
|
|
66187
|
+
'appliesTo', (
|
|
66188
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
66189
|
+
FROM [AppliesToCTE] [atCTE]
|
|
66190
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
66191
|
+
),
|
|
66192
|
+
'customAttributes', (
|
|
66193
|
+
SELECT
|
|
66194
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66195
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
66196
|
+
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
66197
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
66198
|
+
),
|
|
66199
|
+
'properties', (
|
|
66200
|
+
SELECT
|
|
66201
|
+
json_group_array(json([classProperties].[property]))
|
|
66202
|
+
FROM
|
|
66203
|
+
[ClassProperties] [classProperties]
|
|
66204
|
+
WHERE
|
|
66205
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
66206
|
+
)
|
|
66207
|
+
) AS [item]
|
|
66208
|
+
FROM [meta].[ECClassDef] [class]
|
|
66209
|
+
JOIN
|
|
66210
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66211
|
+
WHERE [class].[Type] = 0 AND
|
|
66212
|
+
[sd].[Name] = :schemaName
|
|
66213
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
66214
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
66110
66215
|
`;
|
|
66111
66216
|
/**
|
|
66112
66217
|
* Mixin query used to when querying for Mixin data only. Not used
|
|
66113
66218
|
* for full Schema load via single query.
|
|
66114
66219
|
*/
|
|
66115
|
-
const mixinQuery = `
|
|
66116
|
-
WITH
|
|
66117
|
-
${withAppliesTo},
|
|
66118
|
-
${withClassProperties}
|
|
66119
|
-
${baseMixinQuery}
|
|
66220
|
+
const mixinQuery = `
|
|
66221
|
+
WITH
|
|
66222
|
+
${withAppliesTo},
|
|
66223
|
+
${withClassProperties}
|
|
66224
|
+
${baseMixinQuery}
|
|
66120
66225
|
`;
|
|
66121
66226
|
/**
|
|
66122
66227
|
* Query that provides RelationshipClass data and is shared by two cases:
|
|
@@ -66124,82 +66229,82 @@ ${baseMixinQuery}
|
|
|
66124
66229
|
* 2. When querying a full schema with multiple schema item queries or
|
|
66125
66230
|
* when just querying for Relationship classes.
|
|
66126
66231
|
*/
|
|
66127
|
-
const baseRelationshipClassQuery = `
|
|
66128
|
-
SELECT
|
|
66129
|
-
[sd].Name as schema,
|
|
66130
|
-
json_object (
|
|
66131
|
-
'schemaItemType', 'RelationshipClass',
|
|
66132
|
-
'name', [class].[Name],
|
|
66133
|
-
'label', [class].[DisplayLabel],
|
|
66134
|
-
'description', [class].[Description],
|
|
66135
|
-
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
66136
|
-
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
66137
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66138
|
-
'baseClass', (
|
|
66139
|
-
${selectBaseClasses}
|
|
66140
|
-
),
|
|
66141
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
66142
|
-
'properties', (
|
|
66143
|
-
${selectProperties}
|
|
66144
|
-
),
|
|
66145
|
-
'source', (
|
|
66146
|
-
SELECT
|
|
66147
|
-
json_object (
|
|
66148
|
-
'multiplicity', [sourceConst].[Multiplicity],
|
|
66149
|
-
'roleLabel', [sourceConst].[RoleLabel],
|
|
66150
|
-
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
66151
|
-
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
66152
|
-
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
66153
|
-
'customAttributes', (
|
|
66154
|
-
SELECT
|
|
66155
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66156
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
66157
|
-
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
66158
|
-
ORDER BY [ca].[Ordinal]
|
|
66159
|
-
)
|
|
66160
|
-
)
|
|
66161
|
-
FROM
|
|
66162
|
-
[ClassRelationshipConstraints] [sourceConst]
|
|
66163
|
-
WHERE [sourceConst].[relationshipEnd] = 0
|
|
66164
|
-
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
66165
|
-
),
|
|
66166
|
-
'target', (
|
|
66167
|
-
SELECT
|
|
66168
|
-
json_object (
|
|
66169
|
-
'multiplicity', [targetConst].[Multiplicity],
|
|
66170
|
-
'roleLabel', [targetConst].[RoleLabel],
|
|
66171
|
-
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
66172
|
-
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
66173
|
-
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
66174
|
-
'customAttributes', (
|
|
66175
|
-
SELECT
|
|
66176
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66177
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
66178
|
-
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
66179
|
-
ORDER BY [ca].[Ordinal]
|
|
66180
|
-
)
|
|
66181
|
-
)
|
|
66182
|
-
FROM
|
|
66183
|
-
[ClassRelationshipConstraints] [targetConst]
|
|
66184
|
-
WHERE [targetConst].[relationshipEnd] = 1
|
|
66185
|
-
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
66186
|
-
)
|
|
66187
|
-
) AS [item]
|
|
66188
|
-
FROM [meta].[ECClassDef] [class]
|
|
66189
|
-
JOIN
|
|
66190
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66191
|
-
WHERE [class].[Type] = 1 AND
|
|
66192
|
-
[sd].[Name] = :schemaName
|
|
66232
|
+
const baseRelationshipClassQuery = `
|
|
66233
|
+
SELECT
|
|
66234
|
+
[sd].Name as schema,
|
|
66235
|
+
json_object (
|
|
66236
|
+
'schemaItemType', 'RelationshipClass',
|
|
66237
|
+
'name', [class].[Name],
|
|
66238
|
+
'label', [class].[DisplayLabel],
|
|
66239
|
+
'description', [class].[Description],
|
|
66240
|
+
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
66241
|
+
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
66242
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66243
|
+
'baseClass', (
|
|
66244
|
+
${selectBaseClasses}
|
|
66245
|
+
),
|
|
66246
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
66247
|
+
'properties', (
|
|
66248
|
+
${selectProperties}
|
|
66249
|
+
),
|
|
66250
|
+
'source', (
|
|
66251
|
+
SELECT
|
|
66252
|
+
json_object (
|
|
66253
|
+
'multiplicity', [sourceConst].[Multiplicity],
|
|
66254
|
+
'roleLabel', [sourceConst].[RoleLabel],
|
|
66255
|
+
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
66256
|
+
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
66257
|
+
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
66258
|
+
'customAttributes', (
|
|
66259
|
+
SELECT
|
|
66260
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66261
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
66262
|
+
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
66263
|
+
ORDER BY [ca].[Ordinal]
|
|
66264
|
+
)
|
|
66265
|
+
)
|
|
66266
|
+
FROM
|
|
66267
|
+
[ClassRelationshipConstraints] [sourceConst]
|
|
66268
|
+
WHERE [sourceConst].[relationshipEnd] = 0
|
|
66269
|
+
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
66270
|
+
),
|
|
66271
|
+
'target', (
|
|
66272
|
+
SELECT
|
|
66273
|
+
json_object (
|
|
66274
|
+
'multiplicity', [targetConst].[Multiplicity],
|
|
66275
|
+
'roleLabel', [targetConst].[RoleLabel],
|
|
66276
|
+
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
66277
|
+
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
66278
|
+
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
66279
|
+
'customAttributes', (
|
|
66280
|
+
SELECT
|
|
66281
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
66282
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
66283
|
+
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
66284
|
+
ORDER BY [ca].[Ordinal]
|
|
66285
|
+
)
|
|
66286
|
+
)
|
|
66287
|
+
FROM
|
|
66288
|
+
[ClassRelationshipConstraints] [targetConst]
|
|
66289
|
+
WHERE [targetConst].[relationshipEnd] = 1
|
|
66290
|
+
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
66291
|
+
)
|
|
66292
|
+
) AS [item]
|
|
66293
|
+
FROM [meta].[ECClassDef] [class]
|
|
66294
|
+
JOIN
|
|
66295
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66296
|
+
WHERE [class].[Type] = 1 AND
|
|
66297
|
+
[sd].[Name] = :schemaName
|
|
66193
66298
|
`;
|
|
66194
66299
|
/**
|
|
66195
66300
|
* RelationshipClass query used to when querying for RelationshipClass data only. Not used
|
|
66196
66301
|
* for full Schema load via single query.
|
|
66197
66302
|
*/
|
|
66198
|
-
const relationshipClassQuery = `
|
|
66199
|
-
WITH
|
|
66200
|
-
${withClassProperties},
|
|
66201
|
-
${withRelationshipConstraints}
|
|
66202
|
-
${baseRelationshipClassQuery}
|
|
66303
|
+
const relationshipClassQuery = `
|
|
66304
|
+
WITH
|
|
66305
|
+
${withClassProperties},
|
|
66306
|
+
${withRelationshipConstraints}
|
|
66307
|
+
${baseRelationshipClassQuery}
|
|
66203
66308
|
`;
|
|
66204
66309
|
/**
|
|
66205
66310
|
* Query that provides StructClass data and is shared by two cases:
|
|
@@ -66207,37 +66312,37 @@ ${baseRelationshipClassQuery}
|
|
|
66207
66312
|
* 2. When querying a full schema with multiple schema item queries or
|
|
66208
66313
|
* when just querying for Struct classes.
|
|
66209
66314
|
*/
|
|
66210
|
-
const baseStructQuery = `
|
|
66211
|
-
SELECT
|
|
66212
|
-
[sd].Name as schema,
|
|
66213
|
-
json_object (
|
|
66214
|
-
'schemaItemType', 'StructClass',
|
|
66215
|
-
'name', [class].[Name],
|
|
66216
|
-
'label', [class].[DisplayLabel],
|
|
66217
|
-
'description', [class].[Description],
|
|
66218
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66219
|
-
'baseClass', (
|
|
66220
|
-
${selectBaseClasses}
|
|
66221
|
-
),
|
|
66222
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
66223
|
-
'properties', (
|
|
66224
|
-
${selectProperties}
|
|
66225
|
-
)
|
|
66226
|
-
) AS item
|
|
66227
|
-
FROM [meta].[ECClassDef] [class]
|
|
66228
|
-
JOIN
|
|
66229
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66230
|
-
WHERE [class].[Type] = 2 AND
|
|
66231
|
-
[sd].[Name] = :schemaName
|
|
66315
|
+
const baseStructQuery = `
|
|
66316
|
+
SELECT
|
|
66317
|
+
[sd].Name as schema,
|
|
66318
|
+
json_object (
|
|
66319
|
+
'schemaItemType', 'StructClass',
|
|
66320
|
+
'name', [class].[Name],
|
|
66321
|
+
'label', [class].[DisplayLabel],
|
|
66322
|
+
'description', [class].[Description],
|
|
66323
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66324
|
+
'baseClass', (
|
|
66325
|
+
${selectBaseClasses}
|
|
66326
|
+
),
|
|
66327
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
66328
|
+
'properties', (
|
|
66329
|
+
${selectProperties}
|
|
66330
|
+
)
|
|
66331
|
+
) AS item
|
|
66332
|
+
FROM [meta].[ECClassDef] [class]
|
|
66333
|
+
JOIN
|
|
66334
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66335
|
+
WHERE [class].[Type] = 2 AND
|
|
66336
|
+
[sd].[Name] = :schemaName
|
|
66232
66337
|
`;
|
|
66233
66338
|
/**
|
|
66234
66339
|
* StructClass query used to when querying for StructClass data only. Not used
|
|
66235
66340
|
* for full Schema load via single query.
|
|
66236
66341
|
*/
|
|
66237
|
-
const structQuery = `
|
|
66238
|
-
WITH
|
|
66239
|
-
${withClassProperties}
|
|
66240
|
-
${baseStructQuery}
|
|
66342
|
+
const structQuery = `
|
|
66343
|
+
WITH
|
|
66344
|
+
${withClassProperties}
|
|
66345
|
+
${baseStructQuery}
|
|
66241
66346
|
`;
|
|
66242
66347
|
/**
|
|
66243
66348
|
* Query that provides CustomAttributeClass data and is shared by two cases:
|
|
@@ -66245,141 +66350,141 @@ ${baseStructQuery}
|
|
|
66245
66350
|
* 2. When querying a full schema with multiple schema item queries or
|
|
66246
66351
|
* when just querying for CustomAttribute classes.
|
|
66247
66352
|
*/
|
|
66248
|
-
const baseCustomAttributeQuery = `
|
|
66249
|
-
SELECT
|
|
66250
|
-
[sd].Name as schema,
|
|
66251
|
-
json_object (
|
|
66252
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
66253
|
-
'name', [class].[Name],
|
|
66254
|
-
'label', [class].[DisplayLabel],
|
|
66255
|
-
'description', [class].[Description],
|
|
66256
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
66257
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66258
|
-
'baseClass', (
|
|
66259
|
-
${selectBaseClasses}
|
|
66260
|
-
),
|
|
66261
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
66262
|
-
'properties', (
|
|
66263
|
-
${selectProperties}
|
|
66264
|
-
)
|
|
66265
|
-
) AS [item]
|
|
66266
|
-
FROM [meta].[ECClassDef] [class]
|
|
66267
|
-
JOIN
|
|
66268
|
-
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66269
|
-
WHERE [class].[Type] = 3 AND
|
|
66270
|
-
[sd].[Name] = :schemaName
|
|
66353
|
+
const baseCustomAttributeQuery = `
|
|
66354
|
+
SELECT
|
|
66355
|
+
[sd].Name as schema,
|
|
66356
|
+
json_object (
|
|
66357
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
66358
|
+
'name', [class].[Name],
|
|
66359
|
+
'label', [class].[DisplayLabel],
|
|
66360
|
+
'description', [class].[Description],
|
|
66361
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
66362
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
66363
|
+
'baseClass', (
|
|
66364
|
+
${selectBaseClasses}
|
|
66365
|
+
),
|
|
66366
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
66367
|
+
'properties', (
|
|
66368
|
+
${selectProperties}
|
|
66369
|
+
)
|
|
66370
|
+
) AS [item]
|
|
66371
|
+
FROM [meta].[ECClassDef] [class]
|
|
66372
|
+
JOIN
|
|
66373
|
+
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
66374
|
+
WHERE [class].[Type] = 3 AND
|
|
66375
|
+
[sd].[Name] = :schemaName
|
|
66271
66376
|
`;
|
|
66272
66377
|
/**
|
|
66273
66378
|
* CustomAttributeClass query used to when querying for CustomAttributeClass data only. Not used
|
|
66274
66379
|
* for full Schema load via single query.
|
|
66275
66380
|
*/
|
|
66276
|
-
const customAttributeQuery = `
|
|
66277
|
-
WITH
|
|
66278
|
-
${withClassProperties}
|
|
66279
|
-
${baseCustomAttributeQuery}
|
|
66381
|
+
const customAttributeQuery = `
|
|
66382
|
+
WITH
|
|
66383
|
+
${withClassProperties}
|
|
66384
|
+
${baseCustomAttributeQuery}
|
|
66280
66385
|
`;
|
|
66281
66386
|
/**
|
|
66282
66387
|
* Used by full schema load query via single query. Allows
|
|
66283
66388
|
* all SchemaItemTypes to be queried at once.
|
|
66284
66389
|
*/
|
|
66285
|
-
const withSchemaItems = `
|
|
66286
|
-
SchemaItems AS (
|
|
66287
|
-
${baseEntityQuery}
|
|
66288
|
-
UNION ALL
|
|
66289
|
-
${baseRelationshipClassQuery}
|
|
66290
|
-
UNION ALL
|
|
66291
|
-
${baseStructQuery}
|
|
66292
|
-
UNION ALL
|
|
66293
|
-
${baseMixinQuery}
|
|
66294
|
-
UNION ALL
|
|
66295
|
-
${baseCustomAttributeQuery}
|
|
66296
|
-
UNION ALL
|
|
66297
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
66298
|
-
UNION ALL
|
|
66299
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
66300
|
-
UNION ALL
|
|
66301
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
66302
|
-
UNION ALL
|
|
66303
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
66304
|
-
UNION ALL
|
|
66305
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
66306
|
-
UNION ALL
|
|
66307
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
66308
|
-
UNION ALL
|
|
66309
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
66310
|
-
UNION ALL
|
|
66311
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
66312
|
-
UNION ALL
|
|
66313
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
66314
|
-
)
|
|
66390
|
+
const withSchemaItems = `
|
|
66391
|
+
SchemaItems AS (
|
|
66392
|
+
${baseEntityQuery}
|
|
66393
|
+
UNION ALL
|
|
66394
|
+
${baseRelationshipClassQuery}
|
|
66395
|
+
UNION ALL
|
|
66396
|
+
${baseStructQuery}
|
|
66397
|
+
UNION ALL
|
|
66398
|
+
${baseMixinQuery}
|
|
66399
|
+
UNION ALL
|
|
66400
|
+
${baseCustomAttributeQuery}
|
|
66401
|
+
UNION ALL
|
|
66402
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
66403
|
+
UNION ALL
|
|
66404
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
66405
|
+
UNION ALL
|
|
66406
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
66407
|
+
UNION ALL
|
|
66408
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
66409
|
+
UNION ALL
|
|
66410
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
66411
|
+
UNION ALL
|
|
66412
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
66413
|
+
UNION ALL
|
|
66414
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
66415
|
+
UNION ALL
|
|
66416
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
66417
|
+
UNION ALL
|
|
66418
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
66419
|
+
)
|
|
66315
66420
|
`;
|
|
66316
66421
|
/**
|
|
66317
66422
|
* Query for Schema data without SchemaItems
|
|
66318
66423
|
*/
|
|
66319
|
-
const schemaNoItemsQuery = `
|
|
66320
|
-
WITH
|
|
66321
|
-
${withSchemaReferences}
|
|
66322
|
-
SELECT
|
|
66323
|
-
json_object (
|
|
66324
|
-
'name', [schemaDef].[Name],
|
|
66325
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
66326
|
-
'alias', [schemaDef].[Alias],
|
|
66327
|
-
'label', [schemaDef].[DisplayLabel],
|
|
66328
|
-
'description', [schemaDef].[Description],
|
|
66329
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
66330
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
66331
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
66332
|
-
'references', (
|
|
66333
|
-
SELECT
|
|
66334
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
66335
|
-
FROM
|
|
66336
|
-
[SchemaReferences] [schemaReferences]
|
|
66337
|
-
WHERE
|
|
66338
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
66339
|
-
)
|
|
66340
|
-
) as [schema]
|
|
66341
|
-
FROM
|
|
66342
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
66424
|
+
const schemaNoItemsQuery = `
|
|
66425
|
+
WITH
|
|
66426
|
+
${withSchemaReferences}
|
|
66427
|
+
SELECT
|
|
66428
|
+
json_object (
|
|
66429
|
+
'name', [schemaDef].[Name],
|
|
66430
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
66431
|
+
'alias', [schemaDef].[Alias],
|
|
66432
|
+
'label', [schemaDef].[DisplayLabel],
|
|
66433
|
+
'description', [schemaDef].[Description],
|
|
66434
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
66435
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
66436
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
66437
|
+
'references', (
|
|
66438
|
+
SELECT
|
|
66439
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
66440
|
+
FROM
|
|
66441
|
+
[SchemaReferences] [schemaReferences]
|
|
66442
|
+
WHERE
|
|
66443
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
66444
|
+
)
|
|
66445
|
+
) as [schema]
|
|
66446
|
+
FROM
|
|
66447
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
66343
66448
|
`;
|
|
66344
66449
|
/**
|
|
66345
66450
|
* Query to load a full Schema via a single query.
|
|
66346
66451
|
*/
|
|
66347
|
-
const schemaQuery = `
|
|
66348
|
-
WITH
|
|
66349
|
-
${withAppliesTo},
|
|
66350
|
-
${withSchemaReferences},
|
|
66351
|
-
${withClassProperties},
|
|
66352
|
-
${withRelationshipConstraints},
|
|
66353
|
-
${withSchemaItems}
|
|
66354
|
-
SELECT
|
|
66355
|
-
json_object (
|
|
66356
|
-
'name', [schemaDef].[Name],
|
|
66357
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
66358
|
-
'alias', [schemaDef].[Alias],
|
|
66359
|
-
'label', [schemaDef].[DisplayLabel],
|
|
66360
|
-
'description', [schemaDef].[Description],
|
|
66361
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
66362
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
66363
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
66364
|
-
'references', (
|
|
66365
|
-
SELECT
|
|
66366
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
66367
|
-
FROM
|
|
66368
|
-
[SchemaReferences] [schemaReferences]
|
|
66369
|
-
WHERE
|
|
66370
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
66371
|
-
),
|
|
66372
|
-
'items', (
|
|
66373
|
-
SELECT
|
|
66374
|
-
json_group_array(json(json_object(
|
|
66375
|
-
'item', json([items].[item])
|
|
66376
|
-
)))
|
|
66377
|
-
FROM
|
|
66378
|
-
[SchemaItems] [items]
|
|
66379
|
-
)
|
|
66380
|
-
) as [schema]
|
|
66381
|
-
FROM
|
|
66382
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
66452
|
+
const schemaQuery = `
|
|
66453
|
+
WITH
|
|
66454
|
+
${withAppliesTo},
|
|
66455
|
+
${withSchemaReferences},
|
|
66456
|
+
${withClassProperties},
|
|
66457
|
+
${withRelationshipConstraints},
|
|
66458
|
+
${withSchemaItems}
|
|
66459
|
+
SELECT
|
|
66460
|
+
json_object (
|
|
66461
|
+
'name', [schemaDef].[Name],
|
|
66462
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
66463
|
+
'alias', [schemaDef].[Alias],
|
|
66464
|
+
'label', [schemaDef].[DisplayLabel],
|
|
66465
|
+
'description', [schemaDef].[Description],
|
|
66466
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
66467
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
66468
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
66469
|
+
'references', (
|
|
66470
|
+
SELECT
|
|
66471
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
66472
|
+
FROM
|
|
66473
|
+
[SchemaReferences] [schemaReferences]
|
|
66474
|
+
WHERE
|
|
66475
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
66476
|
+
),
|
|
66477
|
+
'items', (
|
|
66478
|
+
SELECT
|
|
66479
|
+
json_group_array(json(json_object(
|
|
66480
|
+
'item', json([items].[item])
|
|
66481
|
+
)))
|
|
66482
|
+
FROM
|
|
66483
|
+
[SchemaItems] [items]
|
|
66484
|
+
)
|
|
66485
|
+
) as [schema]
|
|
66486
|
+
FROM
|
|
66487
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
66383
66488
|
`;
|
|
66384
66489
|
/**
|
|
66385
66490
|
* Queries for loading full Schema JSON.
|
|
@@ -66844,7 +66949,7 @@ class KindOfQuantityParser extends SchemaItemParser {
|
|
|
66844
66949
|
}
|
|
66845
66950
|
createOverrideFormatString(overrideFormatProps) {
|
|
66846
66951
|
let formatFullName = this.getQualifiedTypeName(overrideFormatProps.name);
|
|
66847
|
-
if (overrideFormatProps.precision)
|
|
66952
|
+
if (overrideFormatProps.precision !== undefined)
|
|
66848
66953
|
formatFullName += `(${overrideFormatProps.precision.toString()})`;
|
|
66849
66954
|
if (undefined === overrideFormatProps.unitAndLabels)
|
|
66850
66955
|
return formatFullName;
|
|
@@ -66885,281 +66990,281 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
66885
66990
|
* Query for SchemaItemType KindOfQuantity data.
|
|
66886
66991
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
66887
66992
|
*/
|
|
66888
|
-
const kindOfQuantity = (singleSchema) => `
|
|
66889
|
-
SELECT
|
|
66890
|
-
[koq].[Schema].[Id] AS [SchemaId],
|
|
66891
|
-
json_object (
|
|
66892
|
-
'schemaItemType', 'KindOfQuantity',
|
|
66893
|
-
'name', [koq].[Name],
|
|
66894
|
-
'label', [koq].[DisplayLabel],
|
|
66895
|
-
'description', [koq].[Description]
|
|
66896
|
-
|
|
66897
|
-
'persistenceUnit', [koq].[PersistenceUnit]
|
|
66898
|
-
${singleSchema ? `
|
|
66899
|
-
,
|
|
66900
|
-
SELECT json_group_array(js."value")
|
|
66901
|
-
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
66902
|
-
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
66903
|
-
) ` : ""}
|
|
66904
|
-
) as [item]
|
|
66905
|
-
FROM
|
|
66906
|
-
[meta].[KindOfQuantityDef] [koq]
|
|
66907
|
-
${singleSchema ? `
|
|
66908
|
-
JOIN
|
|
66909
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
66910
|
-
WHERE [schema].[Name] = :schemaName
|
|
66911
|
-
` : ""}
|
|
66993
|
+
const kindOfQuantity = (singleSchema) => `
|
|
66994
|
+
SELECT
|
|
66995
|
+
[koq].[Schema].[Id] AS [SchemaId],
|
|
66996
|
+
json_object (
|
|
66997
|
+
'schemaItemType', 'KindOfQuantity',
|
|
66998
|
+
'name', [koq].[Name],
|
|
66999
|
+
'label', [koq].[DisplayLabel],
|
|
67000
|
+
'description', [koq].[Description],
|
|
67001
|
+
'relativeError', [koq].[RelativeError],
|
|
67002
|
+
'persistenceUnit', [koq].[PersistenceUnit]
|
|
67003
|
+
${singleSchema ? `
|
|
67004
|
+
,'presentationUnits', (
|
|
67005
|
+
SELECT json_group_array(js."value")
|
|
67006
|
+
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
67007
|
+
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
67008
|
+
) ` : ""}
|
|
67009
|
+
) as [item]
|
|
67010
|
+
FROM
|
|
67011
|
+
[meta].[KindOfQuantityDef] [koq]
|
|
67012
|
+
${singleSchema ? `
|
|
67013
|
+
JOIN
|
|
67014
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
67015
|
+
WHERE [schema].[Name] = :schemaName
|
|
67016
|
+
` : ""}
|
|
66912
67017
|
`;
|
|
66913
67018
|
/**
|
|
66914
67019
|
* Query for SchemaItemType PropertyCategory data.
|
|
66915
67020
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
66916
67021
|
*/
|
|
66917
|
-
const propertyCategory = (singleSchema) => `
|
|
66918
|
-
SELECT
|
|
66919
|
-
[pc].[Schema].[Id] AS [SchemaId],
|
|
66920
|
-
json_object (
|
|
66921
|
-
'schemaItemType', 'PropertyCategory',
|
|
66922
|
-
'name', [pc].[Name],
|
|
66923
|
-
'label', [pc].[DisplayLabel],
|
|
66924
|
-
'description', [pc].[Description],
|
|
66925
|
-
'priority', [pc].[Priority]
|
|
66926
|
-
) as [item]
|
|
66927
|
-
FROM
|
|
66928
|
-
[meta].[PropertyCategoryDef] [pc]
|
|
66929
|
-
${singleSchema ? `
|
|
66930
|
-
JOIN
|
|
66931
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
66932
|
-
WHERE [schema].[Name] = :schemaName
|
|
66933
|
-
` : ""}
|
|
67022
|
+
const propertyCategory = (singleSchema) => `
|
|
67023
|
+
SELECT
|
|
67024
|
+
[pc].[Schema].[Id] AS [SchemaId],
|
|
67025
|
+
json_object (
|
|
67026
|
+
'schemaItemType', 'PropertyCategory',
|
|
67027
|
+
'name', [pc].[Name],
|
|
67028
|
+
'label', [pc].[DisplayLabel],
|
|
67029
|
+
'description', [pc].[Description],
|
|
67030
|
+
'priority', [pc].[Priority]
|
|
67031
|
+
) as [item]
|
|
67032
|
+
FROM
|
|
67033
|
+
[meta].[PropertyCategoryDef] [pc]
|
|
67034
|
+
${singleSchema ? `
|
|
67035
|
+
JOIN
|
|
67036
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
67037
|
+
WHERE [schema].[Name] = :schemaName
|
|
67038
|
+
` : ""}
|
|
66934
67039
|
`;
|
|
66935
67040
|
/**
|
|
66936
67041
|
* Query for SchemaItemType Enumeration data.
|
|
66937
67042
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
66938
67043
|
*/
|
|
66939
|
-
const enumeration = (singleSchema) => `
|
|
66940
|
-
SELECT
|
|
66941
|
-
[ed].[Schema].[Id] AS [SchemaId],
|
|
66942
|
-
json_object (
|
|
66943
|
-
'schemaItemType', 'Enumeration',
|
|
66944
|
-
'name', [ed].[Name],
|
|
66945
|
-
'label', [ed].[DisplayLabel],
|
|
66946
|
-
'description', [ed].[Description],
|
|
66947
|
-
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
66948
|
-
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
66949
|
-
'enumerators', (
|
|
66950
|
-
SELECT json_group_array(json(json_object(
|
|
66951
|
-
'name', json_extract(js."value", '$.Name'),
|
|
66952
|
-
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
66953
|
-
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
66954
|
-
'description', json_extract(js."value", '$.Description')
|
|
66955
|
-
)))
|
|
66956
|
-
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
66957
|
-
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
66958
|
-
)
|
|
66959
|
-
) as [item]
|
|
66960
|
-
FROM
|
|
66961
|
-
[meta].[ECEnumerationDef] [ed]
|
|
66962
|
-
${singleSchema ? `
|
|
66963
|
-
JOIN
|
|
66964
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
66965
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67044
|
+
const enumeration = (singleSchema) => `
|
|
67045
|
+
SELECT
|
|
67046
|
+
[ed].[Schema].[Id] AS [SchemaId],
|
|
67047
|
+
json_object (
|
|
67048
|
+
'schemaItemType', 'Enumeration',
|
|
67049
|
+
'name', [ed].[Name],
|
|
67050
|
+
'label', [ed].[DisplayLabel],
|
|
67051
|
+
'description', [ed].[Description],
|
|
67052
|
+
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
67053
|
+
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
67054
|
+
'enumerators', (
|
|
67055
|
+
SELECT json_group_array(json(json_object(
|
|
67056
|
+
'name', json_extract(js."value", '$.Name'),
|
|
67057
|
+
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
67058
|
+
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
67059
|
+
'description', json_extract(js."value", '$.Description')
|
|
67060
|
+
)))
|
|
67061
|
+
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
67062
|
+
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
67063
|
+
)
|
|
67064
|
+
) as [item]
|
|
67065
|
+
FROM
|
|
67066
|
+
[meta].[ECEnumerationDef] [ed]
|
|
67067
|
+
${singleSchema ? `
|
|
67068
|
+
JOIN
|
|
67069
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
67070
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
66966
67071
|
`;
|
|
66967
67072
|
/**
|
|
66968
67073
|
* Query for SchemaItemType Unit data.
|
|
66969
67074
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
66970
67075
|
*/
|
|
66971
|
-
const unit = (singleSchema) => `
|
|
66972
|
-
SELECT
|
|
66973
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
66974
|
-
json_object (
|
|
66975
|
-
'schemaItemType', 'Unit',
|
|
66976
|
-
'name', [ud].[Name],
|
|
66977
|
-
'label', [ud].[DisplayLabel],
|
|
66978
|
-
'description', [ud].[Description],
|
|
66979
|
-
'definition', [ud].[Definition],
|
|
66980
|
-
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
66981
|
-
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
66982
|
-
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
66983
|
-
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
66984
|
-
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
66985
|
-
) as item
|
|
66986
|
-
FROM
|
|
66987
|
-
[meta].[UnitDef] [ud]
|
|
66988
|
-
${singleSchema ? `
|
|
66989
|
-
JOIN
|
|
66990
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
66991
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
66992
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
66993
|
-
JOIN [meta].[ECSchemaDef] [uss]
|
|
66994
|
-
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
66995
|
-
JOIN [meta].[PhenomenonDef] [pd]
|
|
66996
|
-
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
66997
|
-
JOIN [meta].[ECSchemaDef] [ps]
|
|
66998
|
-
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
66999
|
-
WHERE
|
|
67000
|
-
${singleSchema ? `
|
|
67001
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
67002
|
-
[ud].[IsConstant] = 0 AND
|
|
67003
|
-
[ud].[InvertingUnit] IS NULL
|
|
67076
|
+
const unit = (singleSchema) => `
|
|
67077
|
+
SELECT
|
|
67078
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
67079
|
+
json_object (
|
|
67080
|
+
'schemaItemType', 'Unit',
|
|
67081
|
+
'name', [ud].[Name],
|
|
67082
|
+
'label', [ud].[DisplayLabel],
|
|
67083
|
+
'description', [ud].[Description],
|
|
67084
|
+
'definition', [ud].[Definition],
|
|
67085
|
+
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
67086
|
+
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
67087
|
+
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
67088
|
+
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
67089
|
+
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
67090
|
+
) as item
|
|
67091
|
+
FROM
|
|
67092
|
+
[meta].[UnitDef] [ud]
|
|
67093
|
+
${singleSchema ? `
|
|
67094
|
+
JOIN
|
|
67095
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
67096
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
67097
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
67098
|
+
JOIN [meta].[ECSchemaDef] [uss]
|
|
67099
|
+
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
67100
|
+
JOIN [meta].[PhenomenonDef] [pd]
|
|
67101
|
+
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
67102
|
+
JOIN [meta].[ECSchemaDef] [ps]
|
|
67103
|
+
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
67104
|
+
WHERE
|
|
67105
|
+
${singleSchema ? `
|
|
67106
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
67107
|
+
[ud].[IsConstant] = 0 AND
|
|
67108
|
+
[ud].[InvertingUnit] IS NULL
|
|
67004
67109
|
`;
|
|
67005
67110
|
/**
|
|
67006
67111
|
* Query for SchemaItemType InvertedUnit data.
|
|
67007
67112
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
67008
67113
|
*/
|
|
67009
|
-
const invertedUnit = (singleSchema) => `
|
|
67010
|
-
SELECT
|
|
67011
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
67012
|
-
json_object (
|
|
67013
|
-
'schemaItemType', 'InvertedUnit',
|
|
67014
|
-
'name', [ud].[Name],
|
|
67015
|
-
'label', [ud].[DisplayLabel],
|
|
67016
|
-
'description', [ud].[Description],
|
|
67017
|
-
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
67018
|
-
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
67019
|
-
) as [item]
|
|
67020
|
-
FROM
|
|
67021
|
-
[meta].[UnitDef] [ud]
|
|
67022
|
-
${singleSchema ? `
|
|
67023
|
-
JOIN
|
|
67024
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
67025
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
67026
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
67027
|
-
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
67028
|
-
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
67029
|
-
LEFT JOIN [meta].[UnitDef] [iud]
|
|
67030
|
-
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
67031
|
-
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
67032
|
-
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
67033
|
-
WHERE
|
|
67034
|
-
${singleSchema ? `
|
|
67035
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
67036
|
-
[ud].[IsConstant] = 0 AND
|
|
67037
|
-
[ud].[InvertingUnit] IS NOT NULL
|
|
67114
|
+
const invertedUnit = (singleSchema) => `
|
|
67115
|
+
SELECT
|
|
67116
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
67117
|
+
json_object (
|
|
67118
|
+
'schemaItemType', 'InvertedUnit',
|
|
67119
|
+
'name', [ud].[Name],
|
|
67120
|
+
'label', [ud].[DisplayLabel],
|
|
67121
|
+
'description', [ud].[Description],
|
|
67122
|
+
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
67123
|
+
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
67124
|
+
) as [item]
|
|
67125
|
+
FROM
|
|
67126
|
+
[meta].[UnitDef] [ud]
|
|
67127
|
+
${singleSchema ? `
|
|
67128
|
+
JOIN
|
|
67129
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
67130
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
67131
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
67132
|
+
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
67133
|
+
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
67134
|
+
LEFT JOIN [meta].[UnitDef] [iud]
|
|
67135
|
+
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
67136
|
+
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
67137
|
+
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
67138
|
+
WHERE
|
|
67139
|
+
${singleSchema ? `
|
|
67140
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
67141
|
+
[ud].[IsConstant] = 0 AND
|
|
67142
|
+
[ud].[InvertingUnit] IS NOT NULL
|
|
67038
67143
|
`;
|
|
67039
67144
|
/**
|
|
67040
67145
|
* Query for SchemaItemType Constant data.
|
|
67041
67146
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
67042
67147
|
*/
|
|
67043
|
-
const constant = (singleSchema) => `
|
|
67044
|
-
SELECT
|
|
67045
|
-
[cd].[Schema].[Id] AS [SchemaId],
|
|
67046
|
-
json_object(
|
|
67047
|
-
'schemaItemType', 'Constant',
|
|
67048
|
-
'name', [cd].[Name],
|
|
67049
|
-
'label', [cd].[DisplayLabel],
|
|
67050
|
-
'description', [cd].[Description],
|
|
67051
|
-
'definition', [cd].[Definition],
|
|
67052
|
-
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
67053
|
-
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
67054
|
-
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
67055
|
-
) as item
|
|
67056
|
-
FROM
|
|
67057
|
-
[meta].[UnitDef] [cd]
|
|
67058
|
-
${singleSchema ? `
|
|
67059
|
-
JOIN
|
|
67060
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
67061
|
-
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
67062
|
-
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
67063
|
-
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
67064
|
-
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
67065
|
-
WHERE
|
|
67066
|
-
${singleSchema ? `
|
|
67067
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
67068
|
-
[cd].[IsConstant] = 1
|
|
67148
|
+
const constant = (singleSchema) => `
|
|
67149
|
+
SELECT
|
|
67150
|
+
[cd].[Schema].[Id] AS [SchemaId],
|
|
67151
|
+
json_object(
|
|
67152
|
+
'schemaItemType', 'Constant',
|
|
67153
|
+
'name', [cd].[Name],
|
|
67154
|
+
'label', [cd].[DisplayLabel],
|
|
67155
|
+
'description', [cd].[Description],
|
|
67156
|
+
'definition', [cd].[Definition],
|
|
67157
|
+
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
67158
|
+
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
67159
|
+
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
67160
|
+
) as item
|
|
67161
|
+
FROM
|
|
67162
|
+
[meta].[UnitDef] [cd]
|
|
67163
|
+
${singleSchema ? `
|
|
67164
|
+
JOIN
|
|
67165
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
67166
|
+
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
67167
|
+
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
67168
|
+
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
67169
|
+
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
67170
|
+
WHERE
|
|
67171
|
+
${singleSchema ? `
|
|
67172
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
67173
|
+
[cd].[IsConstant] = 1
|
|
67069
67174
|
`;
|
|
67070
67175
|
/**
|
|
67071
67176
|
* Query for SchemaItemType UnitSystem data.
|
|
67072
67177
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
67073
67178
|
*/
|
|
67074
|
-
const unitSystem = (singleSchema) => `
|
|
67075
|
-
SELECT
|
|
67076
|
-
[us].[Schema].[Id] AS [SchemaId],
|
|
67077
|
-
json_object (
|
|
67078
|
-
'schemaItemType', 'UnitSystem',
|
|
67079
|
-
'name', [us].[Name],
|
|
67080
|
-
'label', [us].[DisplayLabel],
|
|
67081
|
-
'description', [us].[Description]
|
|
67082
|
-
) as [item]
|
|
67083
|
-
FROM
|
|
67084
|
-
[meta].[UnitSystemDef] [us]
|
|
67085
|
-
${singleSchema ? `
|
|
67086
|
-
JOIN
|
|
67087
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
67088
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67179
|
+
const unitSystem = (singleSchema) => `
|
|
67180
|
+
SELECT
|
|
67181
|
+
[us].[Schema].[Id] AS [SchemaId],
|
|
67182
|
+
json_object (
|
|
67183
|
+
'schemaItemType', 'UnitSystem',
|
|
67184
|
+
'name', [us].[Name],
|
|
67185
|
+
'label', [us].[DisplayLabel],
|
|
67186
|
+
'description', [us].[Description]
|
|
67187
|
+
) as [item]
|
|
67188
|
+
FROM
|
|
67189
|
+
[meta].[UnitSystemDef] [us]
|
|
67190
|
+
${singleSchema ? `
|
|
67191
|
+
JOIN
|
|
67192
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
67193
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67089
67194
|
`;
|
|
67090
67195
|
/**
|
|
67091
67196
|
* Query for SchemaItemType Phenomenon data.
|
|
67092
67197
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
67093
67198
|
*/
|
|
67094
|
-
const phenomenon = (singleSchema) => `
|
|
67095
|
-
SELECT
|
|
67096
|
-
[pd].[Schema].[Id] AS [SchemaId],
|
|
67097
|
-
json_object(
|
|
67098
|
-
'schemaItemType', 'Phenomenon',
|
|
67099
|
-
'name', [pd].[Name],
|
|
67100
|
-
'label', [pd].[DisplayLabel],
|
|
67101
|
-
'description', [pd].[Description],
|
|
67102
|
-
'definition', [pd].[Definition]
|
|
67103
|
-
) as [item]
|
|
67104
|
-
FROM
|
|
67105
|
-
[meta].[PhenomenonDef] [pd]
|
|
67106
|
-
${singleSchema ? `
|
|
67107
|
-
JOIN
|
|
67108
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
67109
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67199
|
+
const phenomenon = (singleSchema) => `
|
|
67200
|
+
SELECT
|
|
67201
|
+
[pd].[Schema].[Id] AS [SchemaId],
|
|
67202
|
+
json_object(
|
|
67203
|
+
'schemaItemType', 'Phenomenon',
|
|
67204
|
+
'name', [pd].[Name],
|
|
67205
|
+
'label', [pd].[DisplayLabel],
|
|
67206
|
+
'description', [pd].[Description],
|
|
67207
|
+
'definition', [pd].[Definition]
|
|
67208
|
+
) as [item]
|
|
67209
|
+
FROM
|
|
67210
|
+
[meta].[PhenomenonDef] [pd]
|
|
67211
|
+
${singleSchema ? `
|
|
67212
|
+
JOIN
|
|
67213
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
67214
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67110
67215
|
`;
|
|
67111
67216
|
/**
|
|
67112
67217
|
* Query for SchemaItemType Format data.
|
|
67113
67218
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
67114
67219
|
*/
|
|
67115
|
-
const format = (singleSchema) => `
|
|
67116
|
-
SELECT
|
|
67117
|
-
[fd].[Schema].[Id] AS [SchemaId],
|
|
67118
|
-
json_object(
|
|
67119
|
-
'schemaItemType', 'Format',
|
|
67120
|
-
'name', [fd].[Name],
|
|
67121
|
-
'label', [fd].[DisplayLabel],
|
|
67122
|
-
'description', [fd].[Description],
|
|
67123
|
-
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
67124
|
-
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
67125
|
-
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
67126
|
-
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
67127
|
-
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
67128
|
-
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
67129
|
-
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
67130
|
-
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
67131
|
-
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
67132
|
-
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
67133
|
-
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
67134
|
-
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
67135
|
-
${singleSchema ? `
|
|
67136
|
-
,'composite', (
|
|
67137
|
-
SELECT
|
|
67138
|
-
json_object(
|
|
67139
|
-
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
67140
|
-
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
67141
|
-
'units', (
|
|
67142
|
-
SELECT json_group_array(json(json_object(
|
|
67143
|
-
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
67144
|
-
'label', [fud].[Label]
|
|
67145
|
-
)))
|
|
67146
|
-
FROM [meta].[FormatDef] [fd2]
|
|
67147
|
-
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
67148
|
-
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
67149
|
-
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
67150
|
-
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
67151
|
-
)
|
|
67152
|
-
)
|
|
67153
|
-
FROM [meta].[FormatDef] [fd1]
|
|
67154
|
-
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
67155
|
-
)` : ""}
|
|
67156
|
-
) AS item
|
|
67157
|
-
FROM
|
|
67158
|
-
[meta].[FormatDef] [fd]
|
|
67159
|
-
${singleSchema ? `
|
|
67160
|
-
JOIN
|
|
67161
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
67162
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67220
|
+
const format = (singleSchema) => `
|
|
67221
|
+
SELECT
|
|
67222
|
+
[fd].[Schema].[Id] AS [SchemaId],
|
|
67223
|
+
json_object(
|
|
67224
|
+
'schemaItemType', 'Format',
|
|
67225
|
+
'name', [fd].[Name],
|
|
67226
|
+
'label', [fd].[DisplayLabel],
|
|
67227
|
+
'description', [fd].[Description],
|
|
67228
|
+
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
67229
|
+
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
67230
|
+
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
67231
|
+
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
67232
|
+
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
67233
|
+
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
67234
|
+
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
67235
|
+
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
67236
|
+
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
67237
|
+
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
67238
|
+
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
67239
|
+
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
67240
|
+
${singleSchema ? `
|
|
67241
|
+
,'composite', (
|
|
67242
|
+
SELECT
|
|
67243
|
+
json_object(
|
|
67244
|
+
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
67245
|
+
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
67246
|
+
'units', (
|
|
67247
|
+
SELECT json_group_array(json(json_object(
|
|
67248
|
+
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
67249
|
+
'label', [fud].[Label]
|
|
67250
|
+
)))
|
|
67251
|
+
FROM [meta].[FormatDef] [fd2]
|
|
67252
|
+
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
67253
|
+
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
67254
|
+
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
67255
|
+
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
67256
|
+
)
|
|
67257
|
+
)
|
|
67258
|
+
FROM [meta].[FormatDef] [fd1]
|
|
67259
|
+
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
67260
|
+
)` : ""}
|
|
67261
|
+
) AS item
|
|
67262
|
+
FROM
|
|
67263
|
+
[meta].[FormatDef] [fd]
|
|
67264
|
+
${singleSchema ? `
|
|
67265
|
+
JOIN
|
|
67266
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
67267
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
67163
67268
|
`;
|
|
67164
67269
|
/**
|
|
67165
67270
|
* Queries for each SchemaItemType
|
|
@@ -67325,332 +67430,332 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67325
67430
|
*--------------------------------------------------------------------------------------------*/
|
|
67326
67431
|
|
|
67327
67432
|
const modifier = (alias) => {
|
|
67328
|
-
return `
|
|
67329
|
-
CASE
|
|
67330
|
-
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
67331
|
-
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
67332
|
-
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
67333
|
-
ELSE NULL
|
|
67334
|
-
END
|
|
67433
|
+
return `
|
|
67434
|
+
CASE
|
|
67435
|
+
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
67436
|
+
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
67437
|
+
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
67438
|
+
ELSE NULL
|
|
67439
|
+
END
|
|
67335
67440
|
`;
|
|
67336
67441
|
};
|
|
67337
67442
|
const strength = (alias) => {
|
|
67338
|
-
return `
|
|
67339
|
-
CASE
|
|
67340
|
-
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
67341
|
-
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
67342
|
-
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
67343
|
-
ELSE NULL
|
|
67344
|
-
END
|
|
67443
|
+
return `
|
|
67444
|
+
CASE
|
|
67445
|
+
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
67446
|
+
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
67447
|
+
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
67448
|
+
ELSE NULL
|
|
67449
|
+
END
|
|
67345
67450
|
`;
|
|
67346
67451
|
};
|
|
67347
67452
|
const strengthDirection = (alias) => {
|
|
67348
|
-
return `
|
|
67349
|
-
CASE
|
|
67350
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
67351
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
67352
|
-
ELSE NULL
|
|
67353
|
-
END
|
|
67453
|
+
return `
|
|
67454
|
+
CASE
|
|
67455
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
67456
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
67457
|
+
ELSE NULL
|
|
67458
|
+
END
|
|
67354
67459
|
`;
|
|
67355
67460
|
};
|
|
67356
|
-
const withAppliesTo = `
|
|
67357
|
-
AppliesToCTE AS (
|
|
67358
|
-
SELECT
|
|
67359
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
67360
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
67361
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
67362
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
67363
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
67364
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
67365
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
67366
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
67367
|
-
WHERE [ca].[ContainerType] = 30
|
|
67368
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
67369
|
-
)
|
|
67461
|
+
const withAppliesTo = `
|
|
67462
|
+
AppliesToCTE AS (
|
|
67463
|
+
SELECT
|
|
67464
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
67465
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
67466
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
67467
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
67468
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
67469
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
67470
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
67471
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
67472
|
+
WHERE [ca].[ContainerType] = 30
|
|
67473
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
67474
|
+
)
|
|
67370
67475
|
`;
|
|
67371
|
-
const withSchemaReferences = `
|
|
67372
|
-
SchemaReferences AS (
|
|
67373
|
-
SELECT
|
|
67374
|
-
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
67375
|
-
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
67376
|
-
FROM
|
|
67377
|
-
[meta].[ECSchemaDef] AS [refSchema]
|
|
67378
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
67379
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
67380
|
-
)
|
|
67476
|
+
const withSchemaReferences = `
|
|
67477
|
+
SchemaReferences AS (
|
|
67478
|
+
SELECT
|
|
67479
|
+
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
67480
|
+
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
67481
|
+
FROM
|
|
67482
|
+
[meta].[ECSchemaDef] AS [refSchema]
|
|
67483
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
67484
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
67485
|
+
)
|
|
67381
67486
|
`;
|
|
67382
|
-
const customAttributeQuery = `
|
|
67383
|
-
SELECT
|
|
67384
|
-
[Schema].[Id] AS [SchemaId],
|
|
67385
|
-
json_object(
|
|
67386
|
-
'name', [class].[Name],
|
|
67387
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
67388
|
-
'modifier', ${modifier("class")},
|
|
67389
|
-
'label', [class].[DisplayLabel],
|
|
67390
|
-
'description', [class].[Description],
|
|
67391
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
67392
|
-
'baseClasses', (
|
|
67393
|
-
SELECT
|
|
67394
|
-
json_group_array(json(json_object(
|
|
67395
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67396
|
-
'name', [baseClass].[Name],
|
|
67397
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
67398
|
-
'modifier', ${modifier("baseClass")},
|
|
67399
|
-
'label', [baseClass].[DisplayLabel],
|
|
67400
|
-
'description', [baseClass].[Description],
|
|
67401
|
-
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
67402
|
-
)))
|
|
67403
|
-
FROM
|
|
67404
|
-
[meta].[ECClassDef] [baseClass]
|
|
67405
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67406
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67407
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67408
|
-
)
|
|
67409
|
-
) AS [item]
|
|
67410
|
-
FROM [meta].[ECClassDef] [class]
|
|
67411
|
-
WHERE [class].[Type] = 3
|
|
67487
|
+
const customAttributeQuery = `
|
|
67488
|
+
SELECT
|
|
67489
|
+
[Schema].[Id] AS [SchemaId],
|
|
67490
|
+
json_object(
|
|
67491
|
+
'name', [class].[Name],
|
|
67492
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
67493
|
+
'modifier', ${modifier("class")},
|
|
67494
|
+
'label', [class].[DisplayLabel],
|
|
67495
|
+
'description', [class].[Description],
|
|
67496
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
67497
|
+
'baseClasses', (
|
|
67498
|
+
SELECT
|
|
67499
|
+
json_group_array(json(json_object(
|
|
67500
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67501
|
+
'name', [baseClass].[Name],
|
|
67502
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
67503
|
+
'modifier', ${modifier("baseClass")},
|
|
67504
|
+
'label', [baseClass].[DisplayLabel],
|
|
67505
|
+
'description', [baseClass].[Description],
|
|
67506
|
+
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
67507
|
+
)))
|
|
67508
|
+
FROM
|
|
67509
|
+
[meta].[ECClassDef] [baseClass]
|
|
67510
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67511
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67512
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67513
|
+
)
|
|
67514
|
+
) AS [item]
|
|
67515
|
+
FROM [meta].[ECClassDef] [class]
|
|
67516
|
+
WHERE [class].[Type] = 3
|
|
67412
67517
|
`;
|
|
67413
|
-
const structQuery = `
|
|
67414
|
-
SELECT
|
|
67415
|
-
[Schema].[Id] AS [SchemaId],
|
|
67416
|
-
json_object(
|
|
67417
|
-
'name', [class].[Name],
|
|
67418
|
-
'schemaItemType', 'StructClass',
|
|
67419
|
-
'modifier', ${modifier("class")},
|
|
67420
|
-
'label', [class].[DisplayLabel],
|
|
67421
|
-
'description', [class].[Description],
|
|
67422
|
-
'baseClasses', (
|
|
67423
|
-
SELECT
|
|
67424
|
-
json_group_array(json(json_object(
|
|
67425
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67426
|
-
'name', [baseClass].[Name],
|
|
67427
|
-
'schemaItemType', 'StructClass',
|
|
67428
|
-
'modifier', ${modifier("baseClass")},
|
|
67429
|
-
'label', [baseClass].[DisplayLabel],
|
|
67430
|
-
'description', [baseClass].[Description]
|
|
67431
|
-
)))
|
|
67432
|
-
FROM
|
|
67433
|
-
[meta].[ECClassDef] [baseClass]
|
|
67434
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67435
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67436
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67437
|
-
)
|
|
67438
|
-
) AS [item]
|
|
67439
|
-
FROM [meta].[ECClassDef] [class]
|
|
67440
|
-
WHERE [class].[Type] = 2
|
|
67518
|
+
const structQuery = `
|
|
67519
|
+
SELECT
|
|
67520
|
+
[Schema].[Id] AS [SchemaId],
|
|
67521
|
+
json_object(
|
|
67522
|
+
'name', [class].[Name],
|
|
67523
|
+
'schemaItemType', 'StructClass',
|
|
67524
|
+
'modifier', ${modifier("class")},
|
|
67525
|
+
'label', [class].[DisplayLabel],
|
|
67526
|
+
'description', [class].[Description],
|
|
67527
|
+
'baseClasses', (
|
|
67528
|
+
SELECT
|
|
67529
|
+
json_group_array(json(json_object(
|
|
67530
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67531
|
+
'name', [baseClass].[Name],
|
|
67532
|
+
'schemaItemType', 'StructClass',
|
|
67533
|
+
'modifier', ${modifier("baseClass")},
|
|
67534
|
+
'label', [baseClass].[DisplayLabel],
|
|
67535
|
+
'description', [baseClass].[Description]
|
|
67536
|
+
)))
|
|
67537
|
+
FROM
|
|
67538
|
+
[meta].[ECClassDef] [baseClass]
|
|
67539
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67540
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67541
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67542
|
+
)
|
|
67543
|
+
) AS [item]
|
|
67544
|
+
FROM [meta].[ECClassDef] [class]
|
|
67545
|
+
WHERE [class].[Type] = 2
|
|
67441
67546
|
`;
|
|
67442
|
-
const relationshipQuery = `
|
|
67443
|
-
SELECT
|
|
67444
|
-
[Schema].[Id] AS [SchemaId],
|
|
67445
|
-
json_object(
|
|
67446
|
-
'name', [class].[Name],
|
|
67447
|
-
'schemaItemType', 'RelationshipClass',
|
|
67448
|
-
'modifier', ${modifier("class")},
|
|
67449
|
-
'label', [class].[DisplayLabel],
|
|
67450
|
-
'description', [class].[Description],
|
|
67451
|
-
'strength', ${strength("class")},
|
|
67452
|
-
'strengthDirection', ${strengthDirection("class")},
|
|
67453
|
-
'baseClasses', (
|
|
67454
|
-
SELECT
|
|
67455
|
-
json_group_array(json(json_object(
|
|
67456
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67457
|
-
'name', [baseClass].[Name],
|
|
67458
|
-
'schemaItemType', 'RelationshipClass',
|
|
67459
|
-
'modifier', ${modifier("baseClass")},
|
|
67460
|
-
'label', [baseClass].[DisplayLabel],
|
|
67461
|
-
'description', [baseClass].[Description],
|
|
67462
|
-
'strength', ${strength("baseClass")},
|
|
67463
|
-
'strengthDirection', ${strengthDirection("baseClass")}
|
|
67464
|
-
)))
|
|
67465
|
-
FROM
|
|
67466
|
-
[meta].[ECClassDef] [baseClass]
|
|
67467
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67468
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67469
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67470
|
-
)
|
|
67471
|
-
) AS [item]
|
|
67472
|
-
FROM [meta].[ECClassDef] [class]
|
|
67473
|
-
WHERE [class].[Type] = 1
|
|
67547
|
+
const relationshipQuery = `
|
|
67548
|
+
SELECT
|
|
67549
|
+
[Schema].[Id] AS [SchemaId],
|
|
67550
|
+
json_object(
|
|
67551
|
+
'name', [class].[Name],
|
|
67552
|
+
'schemaItemType', 'RelationshipClass',
|
|
67553
|
+
'modifier', ${modifier("class")},
|
|
67554
|
+
'label', [class].[DisplayLabel],
|
|
67555
|
+
'description', [class].[Description],
|
|
67556
|
+
'strength', ${strength("class")},
|
|
67557
|
+
'strengthDirection', ${strengthDirection("class")},
|
|
67558
|
+
'baseClasses', (
|
|
67559
|
+
SELECT
|
|
67560
|
+
json_group_array(json(json_object(
|
|
67561
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67562
|
+
'name', [baseClass].[Name],
|
|
67563
|
+
'schemaItemType', 'RelationshipClass',
|
|
67564
|
+
'modifier', ${modifier("baseClass")},
|
|
67565
|
+
'label', [baseClass].[DisplayLabel],
|
|
67566
|
+
'description', [baseClass].[Description],
|
|
67567
|
+
'strength', ${strength("baseClass")},
|
|
67568
|
+
'strengthDirection', ${strengthDirection("baseClass")}
|
|
67569
|
+
)))
|
|
67570
|
+
FROM
|
|
67571
|
+
[meta].[ECClassDef] [baseClass]
|
|
67572
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67573
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67574
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67575
|
+
)
|
|
67576
|
+
) AS [item]
|
|
67577
|
+
FROM [meta].[ECClassDef] [class]
|
|
67578
|
+
WHERE [class].[Type] = 1
|
|
67474
67579
|
`;
|
|
67475
|
-
const entityQuery = `
|
|
67476
|
-
SELECT
|
|
67477
|
-
[Schema].[Id] AS [SchemaId],
|
|
67478
|
-
json_object(
|
|
67479
|
-
'name', [class].[Name],
|
|
67480
|
-
'schemaItemType', 'EntityClass',
|
|
67481
|
-
'modifier', ${modifier("class")},
|
|
67482
|
-
'label', [class].[DisplayLabel],
|
|
67483
|
-
'description', [class].[Description],
|
|
67484
|
-
'baseClasses', (
|
|
67485
|
-
SELECT
|
|
67486
|
-
json_group_array(json(json_object(
|
|
67487
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67488
|
-
'name', [baseClass].[Name],
|
|
67489
|
-
'schemaItemType', 'EntityClass',
|
|
67490
|
-
'modifier', ${modifier("baseClass")},
|
|
67491
|
-
'label', [baseClass].[DisplayLabel],
|
|
67492
|
-
'description', [baseClass].[Description]
|
|
67493
|
-
)))
|
|
67494
|
-
FROM
|
|
67495
|
-
[meta].[ECClassDef] [baseClass]
|
|
67496
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67497
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67498
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67499
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67500
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67501
|
-
),
|
|
67502
|
-
'mixins', (
|
|
67503
|
-
SELECT
|
|
67504
|
-
json_group_array(json(json_object(
|
|
67505
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67506
|
-
'name', [baseClass].[Name],
|
|
67507
|
-
'schemaItemType', 'Mixin',
|
|
67508
|
-
'modifier', ${modifier("baseClass")},
|
|
67509
|
-
'label', [baseClass].[DisplayLabel],
|
|
67510
|
-
'description', [baseClass].[Description],
|
|
67511
|
-
'appliesTo', (
|
|
67512
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67513
|
-
FROM [AppliesToCTE] [atCTE]
|
|
67514
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
67515
|
-
),
|
|
67516
|
-
'baseClasses', (
|
|
67517
|
-
SELECT
|
|
67518
|
-
json_group_array(json(json_object(
|
|
67519
|
-
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
67520
|
-
'name', [mixinBaseClass].[Name],
|
|
67521
|
-
'schemaItemType', 'Mixin',
|
|
67522
|
-
'modifier', ${modifier("mixinBaseClass")},
|
|
67523
|
-
'label', [mixinBaseClass].[DisplayLabel],
|
|
67524
|
-
'description', [mixinBaseClass].[Description],
|
|
67525
|
-
'appliesTo', (
|
|
67526
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67527
|
-
FROM [AppliesToCTE] [atCTE]
|
|
67528
|
-
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
67529
|
-
)
|
|
67530
|
-
)))
|
|
67531
|
-
FROM
|
|
67532
|
-
[meta].[ECClassDef] [mixinBaseClass]
|
|
67533
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
67534
|
-
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
67535
|
-
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
67536
|
-
)
|
|
67537
|
-
)))
|
|
67538
|
-
FROM
|
|
67539
|
-
[meta].[ECClassDef] [baseClass]
|
|
67540
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67541
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67542
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67543
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67544
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67545
|
-
)
|
|
67546
|
-
) AS [item]
|
|
67547
|
-
FROM [meta].[ECClassDef] [class]
|
|
67548
|
-
WHERE [class].[Type] = 0
|
|
67549
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67550
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67580
|
+
const entityQuery = `
|
|
67581
|
+
SELECT
|
|
67582
|
+
[Schema].[Id] AS [SchemaId],
|
|
67583
|
+
json_object(
|
|
67584
|
+
'name', [class].[Name],
|
|
67585
|
+
'schemaItemType', 'EntityClass',
|
|
67586
|
+
'modifier', ${modifier("class")},
|
|
67587
|
+
'label', [class].[DisplayLabel],
|
|
67588
|
+
'description', [class].[Description],
|
|
67589
|
+
'baseClasses', (
|
|
67590
|
+
SELECT
|
|
67591
|
+
json_group_array(json(json_object(
|
|
67592
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67593
|
+
'name', [baseClass].[Name],
|
|
67594
|
+
'schemaItemType', 'EntityClass',
|
|
67595
|
+
'modifier', ${modifier("baseClass")},
|
|
67596
|
+
'label', [baseClass].[DisplayLabel],
|
|
67597
|
+
'description', [baseClass].[Description]
|
|
67598
|
+
)))
|
|
67599
|
+
FROM
|
|
67600
|
+
[meta].[ECClassDef] [baseClass]
|
|
67601
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67602
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67603
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67604
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67605
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67606
|
+
),
|
|
67607
|
+
'mixins', (
|
|
67608
|
+
SELECT
|
|
67609
|
+
json_group_array(json(json_object(
|
|
67610
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67611
|
+
'name', [baseClass].[Name],
|
|
67612
|
+
'schemaItemType', 'Mixin',
|
|
67613
|
+
'modifier', ${modifier("baseClass")},
|
|
67614
|
+
'label', [baseClass].[DisplayLabel],
|
|
67615
|
+
'description', [baseClass].[Description],
|
|
67616
|
+
'appliesTo', (
|
|
67617
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67618
|
+
FROM [AppliesToCTE] [atCTE]
|
|
67619
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
67620
|
+
),
|
|
67621
|
+
'baseClasses', (
|
|
67622
|
+
SELECT
|
|
67623
|
+
json_group_array(json(json_object(
|
|
67624
|
+
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
67625
|
+
'name', [mixinBaseClass].[Name],
|
|
67626
|
+
'schemaItemType', 'Mixin',
|
|
67627
|
+
'modifier', ${modifier("mixinBaseClass")},
|
|
67628
|
+
'label', [mixinBaseClass].[DisplayLabel],
|
|
67629
|
+
'description', [mixinBaseClass].[Description],
|
|
67630
|
+
'appliesTo', (
|
|
67631
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67632
|
+
FROM [AppliesToCTE] [atCTE]
|
|
67633
|
+
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
67634
|
+
)
|
|
67635
|
+
)))
|
|
67636
|
+
FROM
|
|
67637
|
+
[meta].[ECClassDef] [mixinBaseClass]
|
|
67638
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
67639
|
+
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
67640
|
+
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
67641
|
+
)
|
|
67642
|
+
)))
|
|
67643
|
+
FROM
|
|
67644
|
+
[meta].[ECClassDef] [baseClass]
|
|
67645
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
67646
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67647
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67648
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
67649
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67650
|
+
)
|
|
67651
|
+
) AS [item]
|
|
67652
|
+
FROM [meta].[ECClassDef] [class]
|
|
67653
|
+
WHERE [class].[Type] = 0
|
|
67654
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67655
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67551
67656
|
`;
|
|
67552
|
-
const mixinQuery = `
|
|
67553
|
-
SELECT
|
|
67554
|
-
[Schema].[Id] AS [SchemaId],
|
|
67555
|
-
json_object(
|
|
67556
|
-
'name', [class].[Name],
|
|
67557
|
-
'schemaItemType', 'Mixin',
|
|
67558
|
-
'modifier', ${modifier("class")},
|
|
67559
|
-
'label', [class].[DisplayLabel],
|
|
67560
|
-
'description', [class].[Description],
|
|
67561
|
-
'appliesTo', (
|
|
67562
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67563
|
-
FROM [AppliesToCTE] [atCTE]
|
|
67564
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
67565
|
-
),
|
|
67566
|
-
'baseClasses', (
|
|
67567
|
-
SELECT
|
|
67568
|
-
json_group_array(json(json_object(
|
|
67569
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67570
|
-
'name', [baseClass].[Name],
|
|
67571
|
-
'schemaItemType', 'Mixin',
|
|
67572
|
-
'modifier', ${modifier("baseClass")},
|
|
67573
|
-
'label', [baseClass].[DisplayLabel],
|
|
67574
|
-
'description', [baseClass].[Description],
|
|
67575
|
-
'appliesTo', (
|
|
67576
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67577
|
-
FROM [AppliesToCTE] [atCTE]
|
|
67578
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
67579
|
-
)
|
|
67580
|
-
)))
|
|
67581
|
-
FROM
|
|
67582
|
-
[meta].[ECClassDef] [baseClass]
|
|
67583
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67584
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67585
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67586
|
-
)
|
|
67587
|
-
) AS [item]
|
|
67588
|
-
FROM [meta].[ECClassDef] [class]
|
|
67589
|
-
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67590
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67657
|
+
const mixinQuery = `
|
|
67658
|
+
SELECT
|
|
67659
|
+
[Schema].[Id] AS [SchemaId],
|
|
67660
|
+
json_object(
|
|
67661
|
+
'name', [class].[Name],
|
|
67662
|
+
'schemaItemType', 'Mixin',
|
|
67663
|
+
'modifier', ${modifier("class")},
|
|
67664
|
+
'label', [class].[DisplayLabel],
|
|
67665
|
+
'description', [class].[Description],
|
|
67666
|
+
'appliesTo', (
|
|
67667
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67668
|
+
FROM [AppliesToCTE] [atCTE]
|
|
67669
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
67670
|
+
),
|
|
67671
|
+
'baseClasses', (
|
|
67672
|
+
SELECT
|
|
67673
|
+
json_group_array(json(json_object(
|
|
67674
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
67675
|
+
'name', [baseClass].[Name],
|
|
67676
|
+
'schemaItemType', 'Mixin',
|
|
67677
|
+
'modifier', ${modifier("baseClass")},
|
|
67678
|
+
'label', [baseClass].[DisplayLabel],
|
|
67679
|
+
'description', [baseClass].[Description],
|
|
67680
|
+
'appliesTo', (
|
|
67681
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
67682
|
+
FROM [AppliesToCTE] [atCTE]
|
|
67683
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
67684
|
+
)
|
|
67685
|
+
)))
|
|
67686
|
+
FROM
|
|
67687
|
+
[meta].[ECClassDef] [baseClass]
|
|
67688
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
67689
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
67690
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
67691
|
+
)
|
|
67692
|
+
) AS [item]
|
|
67693
|
+
FROM [meta].[ECClassDef] [class]
|
|
67694
|
+
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
67695
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
67591
67696
|
`;
|
|
67592
|
-
const withSchemaItems = `
|
|
67593
|
-
SchemaItems AS (
|
|
67594
|
-
${customAttributeQuery}
|
|
67595
|
-
UNION ALL
|
|
67596
|
-
${structQuery}
|
|
67597
|
-
UNION ALL
|
|
67598
|
-
${relationshipQuery}
|
|
67599
|
-
UNION ALL
|
|
67600
|
-
${entityQuery}
|
|
67601
|
-
UNION ALL
|
|
67602
|
-
${mixinQuery}
|
|
67603
|
-
UNION ALL
|
|
67604
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
67605
|
-
UNION ALL
|
|
67606
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
67607
|
-
UNION ALL
|
|
67608
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
67609
|
-
UNION ALL
|
|
67610
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
67611
|
-
UNION ALL
|
|
67612
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
67613
|
-
UNION ALL
|
|
67614
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
67615
|
-
UNION ALL
|
|
67616
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
67617
|
-
UNION ALL
|
|
67618
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
67619
|
-
UNION ALL
|
|
67620
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
67621
|
-
)
|
|
67697
|
+
const withSchemaItems = `
|
|
67698
|
+
SchemaItems AS (
|
|
67699
|
+
${customAttributeQuery}
|
|
67700
|
+
UNION ALL
|
|
67701
|
+
${structQuery}
|
|
67702
|
+
UNION ALL
|
|
67703
|
+
${relationshipQuery}
|
|
67704
|
+
UNION ALL
|
|
67705
|
+
${entityQuery}
|
|
67706
|
+
UNION ALL
|
|
67707
|
+
${mixinQuery}
|
|
67708
|
+
UNION ALL
|
|
67709
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
67710
|
+
UNION ALL
|
|
67711
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
67712
|
+
UNION ALL
|
|
67713
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
67714
|
+
UNION ALL
|
|
67715
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
67716
|
+
UNION ALL
|
|
67717
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
67718
|
+
UNION ALL
|
|
67719
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
67720
|
+
UNION ALL
|
|
67721
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
67722
|
+
UNION ALL
|
|
67723
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
67724
|
+
UNION ALL
|
|
67725
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
67726
|
+
)
|
|
67622
67727
|
`;
|
|
67623
|
-
const schemaStubQuery = `
|
|
67624
|
-
WITH
|
|
67625
|
-
${withAppliesTo},
|
|
67626
|
-
${withSchemaItems}
|
|
67627
|
-
SELECT
|
|
67628
|
-
[items].[item]
|
|
67629
|
-
FROM
|
|
67630
|
-
[SchemaItems] [items]
|
|
67631
|
-
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
67632
|
-
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
67633
|
-
WHERE [schemaDef].[Name] = :schemaName
|
|
67728
|
+
const schemaStubQuery = `
|
|
67729
|
+
WITH
|
|
67730
|
+
${withAppliesTo},
|
|
67731
|
+
${withSchemaItems}
|
|
67732
|
+
SELECT
|
|
67733
|
+
[items].[item]
|
|
67734
|
+
FROM
|
|
67735
|
+
[SchemaItems] [items]
|
|
67736
|
+
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
67737
|
+
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
67738
|
+
WHERE [schemaDef].[Name] = :schemaName
|
|
67634
67739
|
`;
|
|
67635
|
-
const schemaInfoQuery = `
|
|
67636
|
-
WITH
|
|
67637
|
-
${withSchemaReferences}
|
|
67638
|
-
SELECT
|
|
67639
|
-
[Name] as [name],
|
|
67640
|
-
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
67641
|
-
[Alias] as [alias],
|
|
67642
|
-
[DisplayLabel] as [label],
|
|
67643
|
-
[Description] as [description],
|
|
67644
|
-
(
|
|
67645
|
-
SELECT
|
|
67646
|
-
json_group_array([schemaReferences].[fullName])
|
|
67647
|
-
FROM
|
|
67648
|
-
[SchemaReferences] [schemaReferences]
|
|
67649
|
-
WHERE
|
|
67650
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67651
|
-
) AS [references]
|
|
67652
|
-
FROM
|
|
67653
|
-
[meta].[ECSchemaDef] [schemaDef]
|
|
67740
|
+
const schemaInfoQuery = `
|
|
67741
|
+
WITH
|
|
67742
|
+
${withSchemaReferences}
|
|
67743
|
+
SELECT
|
|
67744
|
+
[Name] as [name],
|
|
67745
|
+
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
67746
|
+
[Alias] as [alias],
|
|
67747
|
+
[DisplayLabel] as [label],
|
|
67748
|
+
[Description] as [description],
|
|
67749
|
+
(
|
|
67750
|
+
SELECT
|
|
67751
|
+
json_group_array([schemaReferences].[fullName])
|
|
67752
|
+
FROM
|
|
67753
|
+
[SchemaReferences] [schemaReferences]
|
|
67754
|
+
WHERE
|
|
67755
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
67756
|
+
) AS [references]
|
|
67757
|
+
FROM
|
|
67758
|
+
[meta].[ECSchemaDef] [schemaDef]
|
|
67654
67759
|
`;
|
|
67655
67760
|
/**
|
|
67656
67761
|
* Partial Schema queries.
|
|
@@ -303991,7 +304096,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
303991
304096
|
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Constants */ "../../core/quantity/lib/esm/Constants.js");
|
|
303992
304097
|
/* harmony import */ var _Exception__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Exception */ "../../core/quantity/lib/esm/Exception.js");
|
|
303993
304098
|
/* harmony import */ var _FormatEnums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FormatEnums */ "../../core/quantity/lib/esm/Formatter/FormatEnums.js");
|
|
303994
|
-
/* harmony import */ var _Interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Interfaces */ "../../core/quantity/lib/esm/Formatter/Interfaces.js");
|
|
303995
304099
|
/*---------------------------------------------------------------------------------------------
|
|
303996
304100
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
303997
304101
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -304002,7 +304106,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
304002
304106
|
|
|
304003
304107
|
|
|
304004
304108
|
|
|
304005
|
-
|
|
304006
304109
|
// cSpell:ignore ZERONORMALIZED, nosign, onlynegative, signalways, negativeparentheses
|
|
304007
304110
|
// cSpell:ignore trailzeroes, keepsinglezero, zeroempty, keepdecimalpoint, applyrounding, fractiondash, showunitlabel, prependunitlabel, exponentonlynegative
|
|
304008
304111
|
/** A base Format class with shared properties and functionality between quantity and ecschema-metadata Format classes
|
|
@@ -304215,19 +304318,6 @@ class Format extends BaseFormat {
|
|
|
304215
304318
|
const traitStr = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.getTraitString)(trait);
|
|
304216
304319
|
return formatTraits.find((traitEntry) => traitStr === traitEntry) ? true : false;
|
|
304217
304320
|
}
|
|
304218
|
-
async createUnit(unitsProvider, name, label) {
|
|
304219
|
-
if (name === undefined || typeof (name) !== "string" || (label !== undefined && typeof (label) !== "string")) // throws if name is undefined or name isn't a string or if label is defined and isn't a string
|
|
304220
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `This Composite has a unit with an invalid 'name' or 'label' attribute.`);
|
|
304221
|
-
for (const unit of this.units) {
|
|
304222
|
-
const unitObj = unit[0].name;
|
|
304223
|
-
if (unitObj.toLowerCase() === name.toLowerCase()) // duplicate names are not allowed
|
|
304224
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The unit ${unitObj} has a duplicate name.`);
|
|
304225
|
-
}
|
|
304226
|
-
const newUnit = await unitsProvider.findUnitByName(name);
|
|
304227
|
-
if (!newUnit || !newUnit.isValid)
|
|
304228
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${name}'.`);
|
|
304229
|
-
this.units.push([newUnit, label]);
|
|
304230
|
-
}
|
|
304231
304321
|
/**
|
|
304232
304322
|
* Clone Format
|
|
304233
304323
|
*/
|
|
@@ -304287,9 +304377,12 @@ class Format extends BaseFormat {
|
|
|
304287
304377
|
* Populates this Format with the values from the provided.
|
|
304288
304378
|
*/
|
|
304289
304379
|
async fromJSON(unitsProvider, jsonObj) {
|
|
304380
|
+
const json = await resolveFormatProps(this.name, unitsProvider, jsonObj);
|
|
304381
|
+
return this.fromFullyResolvedJSON(json);
|
|
304382
|
+
}
|
|
304383
|
+
fromFullyResolvedJSON(jsonObj) {
|
|
304290
304384
|
this.loadFormatProperties(jsonObj);
|
|
304291
|
-
|
|
304292
|
-
this._customProps = jsonObj.custom;
|
|
304385
|
+
this._customProps = jsonObj.custom;
|
|
304293
304386
|
if (undefined !== jsonObj.composite) { // optional
|
|
304294
304387
|
this._units = new Array();
|
|
304295
304388
|
if (jsonObj.composite.includeZero !== undefined) {
|
|
@@ -304309,15 +304402,19 @@ class Format extends BaseFormat {
|
|
|
304309
304402
|
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'units' attribute. It must be of type 'array'`);
|
|
304310
304403
|
}
|
|
304311
304404
|
if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
|
|
304312
|
-
|
|
304313
|
-
|
|
304314
|
-
|
|
304315
|
-
|
|
304405
|
+
for (const nextUnit of jsonObj.composite.units) {
|
|
304406
|
+
if (this._units) {
|
|
304407
|
+
for (const existingUnit of this._units) {
|
|
304408
|
+
const unitObj = existingUnit[0].name;
|
|
304409
|
+
if (unitObj.toLowerCase() === nextUnit.unit.name.toLowerCase()) {
|
|
304410
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The unit ${unitObj} has a duplicate name.`);
|
|
304411
|
+
}
|
|
304412
|
+
}
|
|
304316
304413
|
}
|
|
304317
|
-
|
|
304318
|
-
|
|
304319
|
-
|
|
304320
|
-
|
|
304414
|
+
if (undefined === this._units) {
|
|
304415
|
+
this._units = [];
|
|
304416
|
+
}
|
|
304417
|
+
this._units.push([nextUnit.unit, nextUnit.label]);
|
|
304321
304418
|
}
|
|
304322
304419
|
}
|
|
304323
304420
|
}
|
|
@@ -304325,23 +304422,8 @@ class Format extends BaseFormat {
|
|
|
304325
304422
|
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with no valid 'units'`);
|
|
304326
304423
|
}
|
|
304327
304424
|
if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Azimuth || this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Bearing) {
|
|
304328
|
-
|
|
304329
|
-
|
|
304330
|
-
if (typeof (jsonObj.azimuthBaseUnit) !== "string")
|
|
304331
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthBaseUnit' attribute. It should be of type 'string'.`);
|
|
304332
|
-
const baseUnit = await unitsProvider.findUnitByName(jsonObj.azimuthBaseUnit);
|
|
304333
|
-
if (!baseUnit || !baseUnit.isValid)
|
|
304334
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${jsonObj.azimuthBaseUnit}' for azimuthBaseUnit in Format '${this.name}'.`);
|
|
304335
|
-
this._azimuthBaseUnit = baseUnit;
|
|
304336
|
-
}
|
|
304337
|
-
if (undefined !== jsonObj.revolutionUnit) {
|
|
304338
|
-
if (typeof (jsonObj.revolutionUnit) !== "string")
|
|
304339
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'revolutionUnit' attribute. It should be of type 'string'.`);
|
|
304340
|
-
const revolutionUnit = await unitsProvider.findUnitByName(jsonObj.revolutionUnit);
|
|
304341
|
-
if (!revolutionUnit || !revolutionUnit.isValid)
|
|
304342
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${jsonObj.revolutionUnit}' for revolutionUnit in Format '${this.name}'.`);
|
|
304343
|
-
this._revolutionUnit = revolutionUnit;
|
|
304344
|
-
}
|
|
304425
|
+
this._azimuthBaseUnit = jsonObj.azimuthBaseUnit;
|
|
304426
|
+
this._revolutionUnit = jsonObj.revolutionUnit;
|
|
304345
304427
|
if (this._revolutionUnit === undefined)
|
|
304346
304428
|
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Azimuth' or 'Bearing' type therefore the attribute 'revolutionUnit' is required.`);
|
|
304347
304429
|
if (this._azimuthBase !== undefined && this._azimuthBaseUnit === undefined)
|
|
@@ -304354,17 +304436,36 @@ class Format extends BaseFormat {
|
|
|
304354
304436
|
await actualFormat.fromJSON(unitsProvider, formatProps);
|
|
304355
304437
|
return actualFormat;
|
|
304356
304438
|
}
|
|
304439
|
+
static createFromFullyResolvedJSON(name, formatProps) {
|
|
304440
|
+
const actualFormat = new Format(name);
|
|
304441
|
+
actualFormat.fromFullyResolvedJSON(formatProps);
|
|
304442
|
+
return actualFormat;
|
|
304443
|
+
}
|
|
304357
304444
|
/**
|
|
304358
304445
|
* Returns a JSON object that contain the specification for this Format.
|
|
304359
304446
|
*/
|
|
304360
304447
|
toJSON() {
|
|
304448
|
+
const json = this.toFullyResolvedJSON();
|
|
304449
|
+
return {
|
|
304450
|
+
...json,
|
|
304451
|
+
azimuthBaseUnit: json.azimuthBaseUnit?.name,
|
|
304452
|
+
revolutionUnit: json.revolutionUnit?.name,
|
|
304453
|
+
composite: json.composite ? {
|
|
304454
|
+
...json.composite,
|
|
304455
|
+
units: json.composite.units.map((unit) => {
|
|
304456
|
+
return undefined !== unit.label ? { name: unit.unit.name, label: unit.label } : { name: unit.unit.name };
|
|
304457
|
+
}),
|
|
304458
|
+
} : undefined,
|
|
304459
|
+
};
|
|
304460
|
+
}
|
|
304461
|
+
toFullyResolvedJSON() {
|
|
304361
304462
|
let composite;
|
|
304362
304463
|
if (this.units) {
|
|
304363
304464
|
const units = this.units.map((value) => {
|
|
304364
304465
|
if (undefined !== value[1])
|
|
304365
|
-
return {
|
|
304466
|
+
return { unit: value[0], label: value[1] };
|
|
304366
304467
|
else
|
|
304367
|
-
return {
|
|
304468
|
+
return { unit: value[0] };
|
|
304368
304469
|
});
|
|
304369
304470
|
composite = {
|
|
304370
304471
|
spacer: this.spacer,
|
|
@@ -304372,8 +304473,8 @@ class Format extends BaseFormat {
|
|
|
304372
304473
|
units,
|
|
304373
304474
|
};
|
|
304374
304475
|
}
|
|
304375
|
-
const azimuthBaseUnit = this.azimuthBaseUnit
|
|
304376
|
-
const revolutionUnit = this.revolutionUnit
|
|
304476
|
+
const azimuthBaseUnit = this.azimuthBaseUnit;
|
|
304477
|
+
const revolutionUnit = this.revolutionUnit;
|
|
304377
304478
|
const baseFormatProps = {
|
|
304378
304479
|
type: this.type,
|
|
304379
304480
|
precision: this.precision,
|
|
@@ -304394,15 +304495,65 @@ class Format extends BaseFormat {
|
|
|
304394
304495
|
azimuthCounterClockwise: this.azimuthCounterClockwise,
|
|
304395
304496
|
revolutionUnit,
|
|
304396
304497
|
composite,
|
|
304498
|
+
custom: this.customProps,
|
|
304397
304499
|
};
|
|
304398
|
-
if (this.customProps)
|
|
304399
|
-
return {
|
|
304400
|
-
...baseFormatProps,
|
|
304401
|
-
custom: this.customProps,
|
|
304402
|
-
};
|
|
304403
304500
|
return baseFormatProps;
|
|
304404
304501
|
}
|
|
304405
304502
|
}
|
|
304503
|
+
async function resolveCompositeUnit(provider, name, label) {
|
|
304504
|
+
if (typeof name !== "string" || (undefined !== label && typeof label !== "string")) {
|
|
304505
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `This Composite has a unit with an invalid 'name' or 'label' attribute.`);
|
|
304506
|
+
}
|
|
304507
|
+
const unit = await provider.findUnitByName(name);
|
|
304508
|
+
if (!unit || !unit.isValid) {
|
|
304509
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${name}'.`);
|
|
304510
|
+
}
|
|
304511
|
+
return unit;
|
|
304512
|
+
}
|
|
304513
|
+
async function resolveAzimuthBearingUnit(formatName, jsonObj, key, provider) {
|
|
304514
|
+
const unitName = jsonObj[key];
|
|
304515
|
+
if (undefined !== unitName) {
|
|
304516
|
+
if (typeof unitName !== "string") {
|
|
304517
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${formatName} has an invalid '${key}' attribute. It should be of type 'string'.`);
|
|
304518
|
+
}
|
|
304519
|
+
const unit = await provider.findUnitByName(unitName);
|
|
304520
|
+
if (!unit || !unit.isValid) {
|
|
304521
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${unitName}' for ${key} in Format '${formatName}'.`);
|
|
304522
|
+
}
|
|
304523
|
+
return unit;
|
|
304524
|
+
}
|
|
304525
|
+
return undefined;
|
|
304526
|
+
}
|
|
304527
|
+
async function resolveFormatProps(formatName, unitsProvider, jsonObj) {
|
|
304528
|
+
let units;
|
|
304529
|
+
if (undefined !== jsonObj.composite?.units) {
|
|
304530
|
+
units = await Promise.all(jsonObj.composite.units.map(async (entry) => {
|
|
304531
|
+
const unit = await resolveCompositeUnit(unitsProvider, entry.name);
|
|
304532
|
+
return { unit, label: entry.label };
|
|
304533
|
+
}));
|
|
304534
|
+
}
|
|
304535
|
+
let azimuthBaseUnit, revolutionUnit;
|
|
304536
|
+
const type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(jsonObj.type, formatName);
|
|
304537
|
+
if (type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Azimuth || type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Bearing) {
|
|
304538
|
+
azimuthBaseUnit = await resolveAzimuthBearingUnit(formatName, jsonObj, "azimuthBaseUnit", unitsProvider);
|
|
304539
|
+
revolutionUnit = await resolveAzimuthBearingUnit(formatName, jsonObj, "revolutionUnit", unitsProvider);
|
|
304540
|
+
if (!revolutionUnit) {
|
|
304541
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${formatName} is 'Azimuth' or 'Bearing' type therefore the attribute 'revolutionUnit' is required.`);
|
|
304542
|
+
}
|
|
304543
|
+
if (jsonObj.azimuthBase !== undefined && !azimuthBaseUnit) {
|
|
304544
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${formatName} has an 'azimuthBase' attribute therefore the attribute 'azimuthBaseUnit' is required.`);
|
|
304545
|
+
}
|
|
304546
|
+
}
|
|
304547
|
+
return {
|
|
304548
|
+
...jsonObj,
|
|
304549
|
+
azimuthBaseUnit,
|
|
304550
|
+
revolutionUnit,
|
|
304551
|
+
composite: units ? {
|
|
304552
|
+
...jsonObj.composite,
|
|
304553
|
+
units,
|
|
304554
|
+
} : undefined,
|
|
304555
|
+
};
|
|
304556
|
+
}
|
|
304406
304557
|
|
|
304407
304558
|
|
|
304408
304559
|
/***/ }),
|
|
@@ -307452,10 +307603,10 @@ class Settings {
|
|
|
307452
307603
|
});
|
|
307453
307604
|
}
|
|
307454
307605
|
toString() {
|
|
307455
|
-
return `Configurations:
|
|
307456
|
-
oidc client id: ${this.oidcClientId},
|
|
307457
|
-
oidc scopes: ${this.oidcScopes},
|
|
307458
|
-
applicationId: ${this.gprid},
|
|
307606
|
+
return `Configurations:
|
|
307607
|
+
oidc client id: ${this.oidcClientId},
|
|
307608
|
+
oidc scopes: ${this.oidcScopes},
|
|
307609
|
+
applicationId: ${this.gprid},
|
|
307459
307610
|
log level: ${this.logLevel}`;
|
|
307460
307611
|
}
|
|
307461
307612
|
}
|
|
@@ -320399,7 +320550,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
320399
320550
|
/***/ ((module) => {
|
|
320400
320551
|
|
|
320401
320552
|
"use strict";
|
|
320402
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.2.0-dev.
|
|
320553
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.2.0-dev.31","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","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":{"@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/eslint-plugin":"5.2.2-dev.2","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","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/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^2.3.0","@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"}}');
|
|
320403
320554
|
|
|
320404
320555
|
/***/ })
|
|
320405
320556
|
|