@itwin/rpcinterface-full-stack-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 +12 -12
- package/lib/common/Settings.js.map +1 -1
- package/lib/common/SideChannels.js.map +1 -1
- package/lib/dist/bundled-tests.js +1786 -1635
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/frontend/DevToolsRpc.test.js.map +1 -1
- package/lib/frontend/Elements.test.js.map +1 -1
- package/lib/frontend/IModel.test.js.map +1 -1
- package/lib/frontend/IModelConnection.test.js.map +1 -1
- package/lib/frontend/Models.test.js.map +1 -1
- package/lib/frontend/PresentationRpc.test.js.map +1 -1
- package/lib/frontend/Views.test.js.map +1 -1
- package/lib/frontend/setup/IModelSession.js.map +1 -1
- package/lib/frontend/setup/TestContext.js.map +1 -1
- package/lib/frontend/workflows/BasicScenarios.test.js.map +1 -1
- package/package.json +14 -14
|
@@ -73340,7 +73340,8 @@ class TabRun extends TextBlockComponent {
|
|
|
73340
73340
|
/** A [[Run]] that displays the formatted value of a property of some [Element]($backend).
|
|
73341
73341
|
* When a [[TextBlock]] containing a [[FieldRun]] is written into the iModel as an [ITextAnnotation]($backend) element,
|
|
73342
73342
|
* a dependency is established between the two elements via the [ElementDrivesTextAnnotation]($backend) relationship such that
|
|
73343
|
-
* whenever the source element specified by [[propertyHost]] is modified
|
|
73343
|
+
* whenever the source element specified by [[propertyHost]] is modified or the `ITextAnnotation` element is inserted or updated in the iModel,
|
|
73344
|
+
* the field(s) in the `ITextAnnotation` element are automatically
|
|
73344
73345
|
* recalculated, causing their [[cachedContent]] to update. If the field's display string cannot be evaluated (for example, because the specified element or
|
|
73345
73346
|
* property does not exist), then its cached content is set to [[FieldRun.invalidContentIndicator]].
|
|
73346
73347
|
* A [[FieldRun]] displays its [[cachedContent]] in the same way that [[TextRun]]s display their `content`, including word wrapping where appropriate.
|
|
@@ -73355,8 +73356,10 @@ class FieldRun extends TextBlockComponent {
|
|
|
73355
73356
|
propertyHost;
|
|
73356
73357
|
/** Describes how to obtain the property value from [[propertyHost]]. */
|
|
73357
73358
|
propertyPath;
|
|
73358
|
-
/** Specifies how to format the property value obtained from [[propertyPath]] into a string to be stored in [[cachedContent]].
|
|
73359
|
-
|
|
73359
|
+
/** Specifies how to format the property value obtained from [[propertyPath]] into a string to be stored in [[cachedContent]].
|
|
73360
|
+
* The specific options used depend upon the [[FieldPropertyType]].
|
|
73361
|
+
*/
|
|
73362
|
+
formatOptions;
|
|
73360
73363
|
_cachedContent;
|
|
73361
73364
|
/** The field's most recently evaluated display string. */
|
|
73362
73365
|
get cachedContent() {
|
|
@@ -73371,7 +73374,7 @@ class FieldRun extends TextBlockComponent {
|
|
|
73371
73374
|
this._cachedContent = props.cachedContent ?? FieldRun.invalidContentIndicator;
|
|
73372
73375
|
this.propertyHost = props.propertyHost;
|
|
73373
73376
|
this.propertyPath = props.propertyPath;
|
|
73374
|
-
this.
|
|
73377
|
+
this.formatOptions = props.formatOptions;
|
|
73375
73378
|
}
|
|
73376
73379
|
/** Create a FieldRun from its JSON representation. */
|
|
73377
73380
|
static create(props) {
|
|
@@ -73379,7 +73382,7 @@ class FieldRun extends TextBlockComponent {
|
|
|
73379
73382
|
...props,
|
|
73380
73383
|
propertyHost: { ...props.propertyHost },
|
|
73381
73384
|
propertyPath: structuredClone(props.propertyPath),
|
|
73382
|
-
|
|
73385
|
+
formatOptions: structuredClone(props.formatOptions),
|
|
73383
73386
|
});
|
|
73384
73387
|
}
|
|
73385
73388
|
/** Convert the FieldRun to its JSON representation. */
|
|
@@ -73393,8 +73396,8 @@ class FieldRun extends TextBlockComponent {
|
|
|
73393
73396
|
if (this.cachedContent !== FieldRun.invalidContentIndicator) {
|
|
73394
73397
|
json.cachedContent = this.cachedContent;
|
|
73395
73398
|
}
|
|
73396
|
-
if (this.
|
|
73397
|
-
json.
|
|
73399
|
+
if (this.formatOptions) {
|
|
73400
|
+
json.formatOptions = structuredClone(this.formatOptions);
|
|
73398
73401
|
}
|
|
73399
73402
|
return json;
|
|
73400
73403
|
}
|
|
@@ -73421,24 +73424,20 @@ class FieldRun extends TextBlockComponent {
|
|
|
73421
73424
|
}
|
|
73422
73425
|
const thisAccessors = this.propertyPath.accessors ?? [];
|
|
73423
73426
|
const otherAccessors = other.propertyPath.accessors ?? [];
|
|
73424
|
-
|
|
73425
|
-
const otherJsonAccessors = other.propertyPath.jsonAccessors ?? [];
|
|
73426
|
-
if (thisAccessors.length !== otherAccessors.length || thisJsonAccessors.length !== otherJsonAccessors.length) {
|
|
73427
|
+
if (thisAccessors.length !== otherAccessors.length) {
|
|
73427
73428
|
return false;
|
|
73428
73429
|
}
|
|
73429
73430
|
if (!thisAccessors.every((value, index) => value === otherAccessors[index])) {
|
|
73430
73431
|
return false;
|
|
73431
73432
|
}
|
|
73432
|
-
if (
|
|
73433
|
-
|
|
73434
|
-
|
|
73435
|
-
|
|
73436
|
-
// ###TODO better comparison of formatter objects.
|
|
73437
|
-
if (JSON.stringify(this.formatter) !== JSON.stringify(other.formatter)) {
|
|
73433
|
+
if (this.formatOptions && other.formatOptions) {
|
|
73434
|
+
// We anticipate new formatting options being added in the future.
|
|
73435
|
+
// So to account for properties we don't know about, just compare the string representations.
|
|
73436
|
+
if (JSON.stringify(this.formatOptions) !== JSON.stringify(other.formatOptions)) {
|
|
73438
73437
|
return false;
|
|
73439
73438
|
}
|
|
73440
73439
|
}
|
|
73441
|
-
else if (this.
|
|
73440
|
+
else if (this.formatOptions || other.formatOptions) {
|
|
73442
73441
|
return false;
|
|
73443
73442
|
}
|
|
73444
73443
|
return true;
|
|
@@ -73639,6 +73638,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
73639
73638
|
|
|
73640
73639
|
|
|
73641
73640
|
|
|
73641
|
+
/***/ }),
|
|
73642
|
+
|
|
73643
|
+
/***/ "../../core/common/lib/esm/annotation/TextField.js":
|
|
73644
|
+
/*!*********************************************************!*\
|
|
73645
|
+
!*** ../../core/common/lib/esm/annotation/TextField.js ***!
|
|
73646
|
+
\*********************************************************/
|
|
73647
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
73648
|
+
|
|
73649
|
+
"use strict";
|
|
73650
|
+
__webpack_require__.r(__webpack_exports__);
|
|
73651
|
+
/*----------------------------------------------------------------------------------------
|
|
73652
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
73653
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
73654
|
+
*--------------------------------------------------------------------------------------------*/
|
|
73655
|
+
/** @packageDocumentation
|
|
73656
|
+
* @module Annotation
|
|
73657
|
+
*/
|
|
73658
|
+
|
|
73659
|
+
|
|
73660
|
+
|
|
73642
73661
|
/***/ }),
|
|
73643
73662
|
|
|
73644
73663
|
/***/ "../../core/common/lib/esm/annotation/TextStyle.js":
|
|
@@ -73895,400 +73914,402 @@ deepFreeze(TextStyleSettings.defaults);
|
|
|
73895
73914
|
"use strict";
|
|
73896
73915
|
__webpack_require__.r(__webpack_exports__);
|
|
73897
73916
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
73898
|
-
/* harmony export */ AdditionalTransform: () => (/* reexport safe */
|
|
73899
|
-
/* harmony export */ AffineTransform: () => (/* reexport safe */
|
|
73900
|
-
/* harmony export */ AmbientLight: () => (/* reexport safe */
|
|
73917
|
+
/* harmony export */ AdditionalTransform: () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__.AdditionalTransform),
|
|
73918
|
+
/* harmony export */ AffineTransform: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.AffineTransform),
|
|
73919
|
+
/* harmony export */ AmbientLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.AmbientLight),
|
|
73901
73920
|
/* harmony export */ AmbientOcclusion: () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
73902
73921
|
/* harmony export */ AnalysisStyle: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
73903
73922
|
/* harmony export */ AnalysisStyleDisplacement: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
73904
73923
|
/* harmony export */ AnalysisStyleThematic: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
73905
|
-
/* harmony export */ AreaPattern: () => (/* reexport safe */
|
|
73906
|
-
/* harmony export */ Atmosphere: () => (/* reexport safe */
|
|
73907
|
-
/* harmony export */ B3dmHeader: () => (/* reexport safe */
|
|
73908
|
-
/* harmony export */ BRepEntity: () => (/* reexport safe */
|
|
73909
|
-
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */
|
|
73910
|
-
/* harmony export */ BackendError: () => (/* reexport safe */
|
|
73911
|
-
/* harmony export */ BackgroundFill: () => (/* reexport safe */
|
|
73912
|
-
/* harmony export */ BackgroundMapProvider: () => (/* reexport safe */
|
|
73913
|
-
/* harmony export */ BackgroundMapSettings: () => (/* reexport safe */
|
|
73914
|
-
/* harmony export */ BackgroundMapType: () => (/* reexport safe */
|
|
73915
|
-
/* harmony export */ Base64EncodedString: () => (/* reexport safe */
|
|
73916
|
-
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */
|
|
73917
|
-
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */
|
|
73918
|
-
/* harmony export */ BatchType: () => (/* reexport safe */
|
|
73919
|
-
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */
|
|
73920
|
-
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */
|
|
73921
|
-
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */
|
|
73922
|
-
/* harmony export */ BisCodeSpec: () => (/* reexport safe */
|
|
73923
|
-
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */
|
|
73924
|
-
/* harmony export */ BoundingSphere: () => (/* reexport safe */
|
|
73925
|
-
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */
|
|
73926
|
-
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */
|
|
73927
|
-
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */
|
|
73928
|
-
/* harmony export */ Camera: () => (/* reexport safe */
|
|
73929
|
-
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */
|
|
73930
|
-
/* harmony export */ Cartographic: () => (/* reexport safe */
|
|
73931
|
-
/* harmony export */ CartographicRange: () => (/* reexport safe */
|
|
73932
|
-
/* harmony export */ CatalogError: () => (/* reexport safe */
|
|
73933
|
-
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */
|
|
73934
|
-
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */
|
|
73935
|
-
/* harmony export */ ChangeOpCode: () => (/* reexport safe */
|
|
73936
|
-
/* harmony export */ ChangedValueState: () => (/* reexport safe */
|
|
73937
|
-
/* harmony export */ ChangesetType: () => (/* reexport safe */
|
|
73938
|
-
/* harmony export */ ChannelControlError: () => (/* reexport safe */
|
|
73939
|
-
/* harmony export */ ClipIntersectionStyle: () => (/* reexport safe */
|
|
73940
|
-
/* harmony export */ ClipStyle: () => (/* reexport safe */
|
|
73941
|
-
/* harmony export */ CloudSqliteError: () => (/* reexport safe */
|
|
73942
|
-
/* harmony export */ Code: () => (/* reexport safe */
|
|
73943
|
-
/* harmony export */ CodeScopeSpec: () => (/* reexport safe */
|
|
73944
|
-
/* harmony export */ CodeSpec: () => (/* reexport safe */
|
|
73945
|
-
/* harmony export */ ColorByName: () => (/* reexport safe */
|
|
73946
|
-
/* harmony export */ ColorDef: () => (/* reexport safe */
|
|
73947
|
-
/* harmony export */ ColorIndex: () => (/* reexport safe */
|
|
73948
|
-
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */
|
|
73949
|
-
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */
|
|
73950
|
-
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */
|
|
73951
|
-
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */
|
|
73952
|
-
/* harmony export */ ContentFlags: () => (/* reexport safe */
|
|
73953
|
-
/* harmony export */ ContentIdProvider: () => (/* reexport safe */
|
|
73954
|
-
/* harmony export */ ContextRealityModel: () => (/* reexport safe */
|
|
73955
|
-
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */
|
|
73956
|
-
/* harmony export */ ContextRealityModels: () => (/* reexport safe */
|
|
73957
|
-
/* harmony export */ Contour: () => (/* reexport safe */
|
|
73958
|
-
/* harmony export */ ContourDisplay: () => (/* reexport safe */
|
|
73959
|
-
/* harmony export */ ContourGroup: () => (/* reexport safe */
|
|
73960
|
-
/* harmony export */ ContourStyle: () => (/* reexport safe */
|
|
73961
|
-
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */
|
|
73962
|
-
/* harmony export */ CutStyle: () => (/* reexport safe */
|
|
73963
|
-
/* harmony export */ DbQueryError: () => (/* reexport safe */
|
|
73964
|
-
/* harmony export */ DbRequestKind: () => (/* reexport safe */
|
|
73965
|
-
/* harmony export */ DbResponseKind: () => (/* reexport safe */
|
|
73966
|
-
/* harmony export */ DbResponseStatus: () => (/* reexport safe */
|
|
73967
|
-
/* harmony export */ DbValueFormat: () => (/* reexport safe */
|
|
73968
|
-
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */
|
|
73969
|
-
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */
|
|
73970
|
-
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */
|
|
73971
|
-
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */
|
|
73972
|
-
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */
|
|
73973
|
-
/* harmony export */ DomainOptions: () => (/* reexport safe */
|
|
73974
|
-
/* harmony export */ ECJsNames: () => (/* reexport safe */
|
|
73975
|
-
/* harmony export */ ECSqlReader: () => (/* reexport safe */
|
|
73976
|
-
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */
|
|
73977
|
-
/* harmony export */ ECSqlValueType: () => (/* reexport safe */
|
|
73978
|
-
/* harmony export */ Easing: () => (/* reexport safe */
|
|
73979
|
-
/* harmony export */ EcefLocation: () => (/* reexport safe */
|
|
73980
|
-
/* harmony export */ EdgeArgs: () => (/* reexport safe */
|
|
73981
|
-
/* harmony export */ ElementGeometry: () => (/* reexport safe */
|
|
73982
|
-
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */
|
|
73983
|
-
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */
|
|
73984
|
-
/* harmony export */ EmptyLocalization: () => (/* reexport safe */
|
|
73985
|
-
/* harmony export */ EntityMetaData: () => (/* reexport safe */
|
|
73986
|
-
/* harmony export */ EntityReferenceSet: () => (/* reexport safe */
|
|
73987
|
-
/* harmony export */ Environment: () => (/* reexport safe */
|
|
73988
|
-
/* harmony export */ ExternalSourceAttachmentRole: () => (/* reexport safe */
|
|
73989
|
-
/* harmony export */ Feature: () => (/* reexport safe */
|
|
73990
|
-
/* harmony export */ FeatureAppearance: () => (/* reexport safe */
|
|
73991
|
-
/* harmony export */ FeatureAppearanceProvider: () => (/* reexport safe */
|
|
73992
|
-
/* harmony export */ FeatureIndex: () => (/* reexport safe */
|
|
73993
|
-
/* harmony export */ FeatureIndexType: () => (/* reexport safe */
|
|
73994
|
-
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */
|
|
73995
|
-
/* harmony export */ FeatureOverrides: () => (/* reexport safe */
|
|
73996
|
-
/* harmony export */ FeatureTable: () => (/* reexport safe */
|
|
73997
|
-
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */
|
|
73924
|
+
/* harmony export */ AreaPattern: () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__.AreaPattern),
|
|
73925
|
+
/* harmony export */ Atmosphere: () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_8__.Atmosphere),
|
|
73926
|
+
/* harmony export */ B3dmHeader: () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_150__.B3dmHeader),
|
|
73927
|
+
/* harmony export */ BRepEntity: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.BRepEntity),
|
|
73928
|
+
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.BRepGeometryOperation),
|
|
73929
|
+
/* harmony export */ BackendError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.BackendError),
|
|
73930
|
+
/* harmony export */ BackgroundFill: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.BackgroundFill),
|
|
73931
|
+
/* harmony export */ BackgroundMapProvider: () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapProvider),
|
|
73932
|
+
/* harmony export */ BackgroundMapSettings: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.BackgroundMapSettings),
|
|
73933
|
+
/* harmony export */ BackgroundMapType: () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapType),
|
|
73934
|
+
/* harmony export */ Base64EncodedString: () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_12__.Base64EncodedString),
|
|
73935
|
+
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.BaseLayerSettings),
|
|
73936
|
+
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.BaseMapLayerSettings),
|
|
73937
|
+
/* harmony export */ BatchType: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.BatchType),
|
|
73938
|
+
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__.BentleyCloudRpcConfiguration),
|
|
73939
|
+
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__.BentleyCloudRpcManager),
|
|
73940
|
+
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_144__.BentleyCloudRpcProtocol),
|
|
73941
|
+
/* harmony export */ BisCodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.BisCodeSpec),
|
|
73942
|
+
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.BlobOptionsBuilder),
|
|
73943
|
+
/* harmony export */ BoundingSphere: () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__.BoundingSphere),
|
|
73944
|
+
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.BriefcaseIdValue),
|
|
73945
|
+
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.CURRENT_INVOCATION),
|
|
73946
|
+
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.CURRENT_REQUEST),
|
|
73947
|
+
/* harmony export */ Camera: () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_14__.Camera),
|
|
73948
|
+
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Carto2DDegrees),
|
|
73949
|
+
/* harmony export */ Cartographic: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.Cartographic),
|
|
73950
|
+
/* harmony export */ CartographicRange: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.CartographicRange),
|
|
73951
|
+
/* harmony export */ CatalogError: () => (/* reexport safe */ _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__.CatalogError),
|
|
73952
|
+
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__.CesiumIonAssetId),
|
|
73953
|
+
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__.CesiumTerrainAssetId),
|
|
73954
|
+
/* harmony export */ ChangeOpCode: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangeOpCode),
|
|
73955
|
+
/* harmony export */ ChangedValueState: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangedValueState),
|
|
73956
|
+
/* harmony export */ ChangesetType: () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__.ChangesetType),
|
|
73957
|
+
/* harmony export */ ChannelControlError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ChannelControlError),
|
|
73958
|
+
/* harmony export */ ClipIntersectionStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.ClipIntersectionStyle),
|
|
73959
|
+
/* harmony export */ ClipStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.ClipStyle),
|
|
73960
|
+
/* harmony export */ CloudSqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.CloudSqliteError),
|
|
73961
|
+
/* harmony export */ Code: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.Code),
|
|
73962
|
+
/* harmony export */ CodeScopeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.CodeScopeSpec),
|
|
73963
|
+
/* harmony export */ CodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.CodeSpec),
|
|
73964
|
+
/* harmony export */ ColorByName: () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_21__.ColorByName),
|
|
73965
|
+
/* harmony export */ ColorDef: () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_22__.ColorDef),
|
|
73966
|
+
/* harmony export */ ColorIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.ColorIndex),
|
|
73967
|
+
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__.CommonLoggerCategory),
|
|
73968
|
+
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_151__.CompositeTileHeader),
|
|
73969
|
+
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.ConcreteEntityTypes),
|
|
73970
|
+
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ConflictingLocksError),
|
|
73971
|
+
/* harmony export */ ContentFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.ContentFlags),
|
|
73972
|
+
/* harmony export */ ContentIdProvider: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.ContentIdProvider),
|
|
73973
|
+
/* harmony export */ ContextRealityModel: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModel),
|
|
73974
|
+
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModelProps),
|
|
73975
|
+
/* harmony export */ ContextRealityModels: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModels),
|
|
73976
|
+
/* harmony export */ Contour: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.Contour),
|
|
73977
|
+
/* harmony export */ ContourDisplay: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourDisplay),
|
|
73978
|
+
/* harmony export */ ContourGroup: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourGroup),
|
|
73979
|
+
/* harmony export */ ContourStyle: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__.ContourStyle),
|
|
73980
|
+
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.CurrentImdlVersion),
|
|
73981
|
+
/* harmony export */ CutStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.CutStyle),
|
|
73982
|
+
/* harmony export */ DbQueryError: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbQueryError),
|
|
73983
|
+
/* harmony export */ DbRequestKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbRequestKind),
|
|
73984
|
+
/* harmony export */ DbResponseKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseKind),
|
|
73985
|
+
/* harmony export */ DbResponseStatus: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseStatus),
|
|
73986
|
+
/* harmony export */ DbValueFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbValueFormat),
|
|
73987
|
+
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_95__.DefaultSupportedTypes),
|
|
73988
|
+
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__.DevToolsRpcInterface),
|
|
73989
|
+
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__.DevToolsStatsOptions),
|
|
73990
|
+
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyle3dSettings),
|
|
73991
|
+
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyleSettings),
|
|
73992
|
+
/* harmony export */ DomainOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.DomainOptions),
|
|
73993
|
+
/* harmony export */ ECJsNames: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECJsNames),
|
|
73994
|
+
/* harmony export */ ECSqlReader: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__.ECSqlReader),
|
|
73995
|
+
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlSystemProperty),
|
|
73996
|
+
/* harmony export */ ECSqlValueType: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlValueType),
|
|
73997
|
+
/* harmony export */ Easing: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Easing),
|
|
73998
|
+
/* harmony export */ EcefLocation: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.EcefLocation),
|
|
73999
|
+
/* harmony export */ EdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.EdgeArgs),
|
|
74000
|
+
/* harmony export */ ElementGeometry: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometry),
|
|
74001
|
+
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__.ElementGeometryChange),
|
|
74002
|
+
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometryOpcode),
|
|
74003
|
+
/* harmony export */ EmptyLocalization: () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_80__.EmptyLocalization),
|
|
74004
|
+
/* harmony export */ EntityMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.EntityMetaData),
|
|
74005
|
+
/* harmony export */ EntityReferenceSet: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.EntityReferenceSet),
|
|
74006
|
+
/* harmony export */ Environment: () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_35__.Environment),
|
|
74007
|
+
/* harmony export */ ExternalSourceAttachmentRole: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.ExternalSourceAttachmentRole),
|
|
74008
|
+
/* harmony export */ Feature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.Feature),
|
|
74009
|
+
/* harmony export */ FeatureAppearance: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureAppearance),
|
|
74010
|
+
/* harmony export */ FeatureAppearanceProvider: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureAppearanceProvider),
|
|
74011
|
+
/* harmony export */ FeatureIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.FeatureIndex),
|
|
74012
|
+
/* harmony export */ FeatureIndexType: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.FeatureIndexType),
|
|
74013
|
+
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrideType),
|
|
74014
|
+
/* harmony export */ FeatureOverrides: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureOverrides),
|
|
74015
|
+
/* harmony export */ FeatureTable: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.FeatureTable),
|
|
74016
|
+
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.FeatureTableHeader),
|
|
73998
74017
|
/* harmony export */ FieldRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FieldRun),
|
|
73999
|
-
/* harmony export */ FillDisplay: () => (/* reexport safe */
|
|
74000
|
-
/* harmony export */ FillFlags: () => (/* reexport safe */
|
|
74001
|
-
/* harmony export */ FontMap: () => (/* reexport safe */
|
|
74002
|
-
/* harmony export */ FontType: () => (/* reexport safe */
|
|
74018
|
+
/* harmony export */ FillDisplay: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.FillDisplay),
|
|
74019
|
+
/* harmony export */ FillFlags: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.FillFlags),
|
|
74020
|
+
/* harmony export */ FontMap: () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_39__.FontMap),
|
|
74021
|
+
/* harmony export */ FontType: () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_39__.FontType),
|
|
74003
74022
|
/* harmony export */ FractionRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FractionRun),
|
|
74004
|
-
/* harmony export */ FresnelSettings: () => (/* reexport safe */
|
|
74005
|
-
/* harmony export */ Frustum: () => (/* reexport safe */
|
|
74006
|
-
/* harmony export */ FrustumPlanes: () => (/* reexport safe */
|
|
74007
|
-
/* harmony export */ GenericInstanceFilter: () => (/* reexport safe */
|
|
74008
|
-
/* harmony export */ GenericInstanceFilterRuleValue: () => (/* reexport safe */
|
|
74009
|
-
/* harmony export */ GeoCoordStatus: () => (/* reexport safe */
|
|
74010
|
-
/* harmony export */ GeocentricTransform: () => (/* reexport safe */
|
|
74011
|
-
/* harmony export */ GeodeticDatum: () => (/* reexport safe */
|
|
74012
|
-
/* harmony export */ GeodeticEllipsoid: () => (/* reexport safe */
|
|
74013
|
-
/* harmony export */ GeodeticTransform: () => (/* reexport safe */
|
|
74014
|
-
/* harmony export */ GeodeticTransformPath: () => (/* reexport safe */
|
|
74015
|
-
/* harmony export */ GeographicCRS: () => (/* reexport safe */
|
|
74016
|
-
/* harmony export */ GeometryClass: () => (/* reexport safe */
|
|
74017
|
-
/* harmony export */ GeometryParams: () => (/* reexport safe */
|
|
74018
|
-
/* harmony export */ GeometryStreamBuilder: () => (/* reexport safe */
|
|
74019
|
-
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */
|
|
74020
|
-
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */
|
|
74021
|
-
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */
|
|
74022
|
-
/* harmony export */ GlbHeader: () => (/* reexport safe */
|
|
74023
|
-
/* harmony export */ GlobeMode: () => (/* reexport safe */
|
|
74024
|
-
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */
|
|
74025
|
-
/* harmony export */ GltfVersions: () => (/* reexport safe */
|
|
74026
|
-
/* harmony export */ Gradient: () => (/* reexport safe */
|
|
74027
|
-
/* harmony export */ GraphicParams: () => (/* reexport safe */
|
|
74028
|
-
/* harmony export */ GridFileDefinition: () => (/* reexport safe */
|
|
74029
|
-
/* harmony export */ GridFileTransform: () => (/* reexport safe */
|
|
74030
|
-
/* harmony export */ GridOrientationType: () => (/* reexport safe */
|
|
74031
|
-
/* harmony export */ GroundPlane: () => (/* reexport safe */
|
|
74032
|
-
/* harmony export */ HSLColor: () => (/* reexport safe */
|
|
74033
|
-
/* harmony export */ HSVColor: () => (/* reexport safe */
|
|
74034
|
-
/* harmony export */ HSVConstants: () => (/* reexport safe */
|
|
74035
|
-
/* harmony export */ Helmert2DWithZOffset: () => (/* reexport safe */
|
|
74036
|
-
/* harmony export */ HemisphereLights: () => (/* reexport safe */
|
|
74037
|
-
/* harmony export */ HiddenLine: () => (/* reexport safe */
|
|
74038
|
-
/* harmony export */ Hilite: () => (/* reexport safe */
|
|
74039
|
-
/* harmony export */ HorizontalCRS: () => (/* reexport safe */
|
|
74040
|
-
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */
|
|
74041
|
-
/* harmony export */ I3dmHeader: () => (/* reexport safe */
|
|
74042
|
-
/* harmony export */ IModel: () => (/* reexport safe */
|
|
74043
|
-
/* harmony export */ IModelError: () => (/* reexport safe */
|
|
74044
|
-
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */
|
|
74045
|
-
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */
|
|
74046
|
-
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */
|
|
74047
|
-
/* harmony export */ IModelVersion: () => (/* reexport safe */
|
|
74048
|
-
/* harmony export */ INSTANCE: () => (/* reexport safe */
|
|
74049
|
-
/* harmony export */ ImageBuffer: () => (/* reexport safe */
|
|
74050
|
-
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */
|
|
74051
|
-
/* harmony export */ ImageGraphic: () => (/* reexport safe */
|
|
74052
|
-
/* harmony export */ ImageGraphicCorners: () => (/* reexport safe */
|
|
74053
|
-
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */
|
|
74054
|
-
/* harmony export */ ImageSource: () => (/* reexport safe */
|
|
74055
|
-
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */
|
|
74056
|
-
/* harmony export */ ImdlFlags: () => (/* reexport safe */
|
|
74057
|
-
/* harmony export */ ImdlHeader: () => (/* reexport safe */
|
|
74058
|
-
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */
|
|
74059
|
-
/* harmony export */ Interpolation: () => (/* reexport safe */
|
|
74060
|
-
/* harmony export */ IpcSession: () => (/* reexport safe */
|
|
74061
|
-
/* harmony export */ IpcWebSocket: () => (/* reexport safe */
|
|
74062
|
-
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */
|
|
74063
|
-
/* harmony export */ IpcWebSocketFrontend: () => (/* reexport safe */
|
|
74064
|
-
/* harmony export */ IpcWebSocketMessage: () => (/* reexport safe */
|
|
74065
|
-
/* harmony export */ IpcWebSocketMessageType: () => (/* reexport safe */
|
|
74066
|
-
/* harmony export */ IpcWebSocketTransport: () => (/* reexport safe */
|
|
74067
|
-
/* harmony export */ LightSettings: () => (/* reexport safe */
|
|
74023
|
+
/* harmony export */ FresnelSettings: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.FresnelSettings),
|
|
74024
|
+
/* harmony export */ Frustum: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Frustum),
|
|
74025
|
+
/* harmony export */ FrustumPlanes: () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_49__.FrustumPlanes),
|
|
74026
|
+
/* harmony export */ GenericInstanceFilter: () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__.GenericInstanceFilter),
|
|
74027
|
+
/* harmony export */ GenericInstanceFilterRuleValue: () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__.GenericInstanceFilterRuleValue),
|
|
74028
|
+
/* harmony export */ GeoCoordStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.GeoCoordStatus),
|
|
74029
|
+
/* harmony export */ GeocentricTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeocentricTransform),
|
|
74030
|
+
/* harmony export */ GeodeticDatum: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticDatum),
|
|
74031
|
+
/* harmony export */ GeodeticEllipsoid: () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_51__.GeodeticEllipsoid),
|
|
74032
|
+
/* harmony export */ GeodeticTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticTransform),
|
|
74033
|
+
/* harmony export */ GeodeticTransformPath: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GeodeticTransformPath),
|
|
74034
|
+
/* harmony export */ GeographicCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.GeographicCRS),
|
|
74035
|
+
/* harmony export */ GeometryClass: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.GeometryClass),
|
|
74036
|
+
/* harmony export */ GeometryParams: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.GeometryParams),
|
|
74037
|
+
/* harmony export */ GeometryStreamBuilder: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamBuilder),
|
|
74038
|
+
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamFlags),
|
|
74039
|
+
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamIterator),
|
|
74040
|
+
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__.GeometrySummaryVerbosity),
|
|
74041
|
+
/* harmony export */ GlbHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GlbHeader),
|
|
74042
|
+
/* harmony export */ GlobeMode: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.GlobeMode),
|
|
74043
|
+
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GltfV2ChunkTypes),
|
|
74044
|
+
/* harmony export */ GltfVersions: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__.GltfVersions),
|
|
74045
|
+
/* harmony export */ Gradient: () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_61__.Gradient),
|
|
74046
|
+
/* harmony export */ GraphicParams: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.GraphicParams),
|
|
74047
|
+
/* harmony export */ GridFileDefinition: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileDefinition),
|
|
74048
|
+
/* harmony export */ GridFileTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileTransform),
|
|
74049
|
+
/* harmony export */ GridOrientationType: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.GridOrientationType),
|
|
74050
|
+
/* harmony export */ GroundPlane: () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_63__.GroundPlane),
|
|
74051
|
+
/* harmony export */ HSLColor: () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_66__.HSLColor),
|
|
74052
|
+
/* harmony export */ HSVColor: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVColor),
|
|
74053
|
+
/* harmony export */ HSVConstants: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVConstants),
|
|
74054
|
+
/* harmony export */ Helmert2DWithZOffset: () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__.Helmert2DWithZOffset),
|
|
74055
|
+
/* harmony export */ HemisphereLights: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.HemisphereLights),
|
|
74056
|
+
/* harmony export */ HiddenLine: () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_64__.HiddenLine),
|
|
74057
|
+
/* harmony export */ Hilite: () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_65__.Hilite),
|
|
74058
|
+
/* harmony export */ HorizontalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRS),
|
|
74059
|
+
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRSExtent),
|
|
74060
|
+
/* harmony export */ I3dmHeader: () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_154__.I3dmHeader),
|
|
74061
|
+
/* harmony export */ IModel: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.IModel),
|
|
74062
|
+
/* harmony export */ IModelError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.IModelError),
|
|
74063
|
+
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__.IModelNotFoundResponse),
|
|
74064
|
+
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__.IModelReadRpcInterface),
|
|
74065
|
+
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_139__.IModelTileRpcInterface),
|
|
74066
|
+
/* harmony export */ IModelVersion: () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_71__.IModelVersion),
|
|
74067
|
+
/* harmony export */ INSTANCE: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.INSTANCE),
|
|
74068
|
+
/* harmony export */ ImageBuffer: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBuffer),
|
|
74069
|
+
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBufferFormat),
|
|
74070
|
+
/* harmony export */ ImageGraphic: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphic),
|
|
74071
|
+
/* harmony export */ ImageGraphicCorners: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphicCorners),
|
|
74072
|
+
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ImageMapLayerSettings),
|
|
74073
|
+
/* harmony export */ ImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSource),
|
|
74074
|
+
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSourceFormat),
|
|
74075
|
+
/* harmony export */ ImdlFlags: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.ImdlFlags),
|
|
74076
|
+
/* harmony export */ ImdlHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__.ImdlHeader),
|
|
74077
|
+
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.InternetConnectivityStatus),
|
|
74078
|
+
/* harmony export */ Interpolation: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Interpolation),
|
|
74079
|
+
/* harmony export */ IpcSession: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.IpcSession),
|
|
74080
|
+
/* harmony export */ IpcWebSocket: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocket),
|
|
74081
|
+
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketBackend),
|
|
74082
|
+
/* harmony export */ IpcWebSocketFrontend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketFrontend),
|
|
74083
|
+
/* harmony export */ IpcWebSocketMessage: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketMessage),
|
|
74084
|
+
/* harmony export */ IpcWebSocketMessageType: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketMessageType),
|
|
74085
|
+
/* harmony export */ IpcWebSocketTransport: () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_75__.IpcWebSocketTransport),
|
|
74086
|
+
/* harmony export */ LightSettings: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.LightSettings),
|
|
74068
74087
|
/* harmony export */ LineBreakRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
74069
|
-
/* harmony export */ LinePixels: () => (/* reexport safe */
|
|
74070
|
-
/* harmony export */ LineStyle: () => (/* reexport safe */
|
|
74071
|
-
/* harmony export */ LockState: () => (/* reexport safe */
|
|
74072
|
-
/* harmony export */ MapImagerySettings: () => (/* reexport safe */
|
|
74073
|
-
/* harmony export */ MapLayerSettings: () => (/* reexport safe */
|
|
74074
|
-
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */
|
|
74075
|
-
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */
|
|
74076
|
-
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */
|
|
74077
|
-
/* harmony export */ MeshEdge: () => (/* reexport safe */
|
|
74078
|
-
/* harmony export */ MeshEdges: () => (/* reexport safe */
|
|
74079
|
-
/* harmony export */ MeshPolyline: () => (/* reexport safe */
|
|
74080
|
-
/* harmony export */ ModelClipGroup: () => (/* reexport safe */
|
|
74081
|
-
/* harmony export */ ModelClipGroups: () => (/* reexport safe */
|
|
74082
|
-
/* harmony export */ ModelFeature: () => (/* reexport safe */
|
|
74083
|
-
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */
|
|
74084
|
-
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */
|
|
74085
|
-
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */
|
|
74086
|
-
/* harmony export */ MonochromeMode: () => (/* reexport safe */
|
|
74087
|
-
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */
|
|
74088
|
-
/* harmony export */ NoContentError: () => (/* reexport safe */
|
|
74089
|
-
/* harmony export */ NonUniformColor: () => (/* reexport safe */
|
|
74090
|
-
/* harmony export */ NormalMapFlags: () => (/* reexport safe */
|
|
74091
|
-
/* harmony export */ Npc: () => (/* reexport safe */
|
|
74092
|
-
/* harmony export */ NpcCenter: () => (/* reexport safe */
|
|
74093
|
-
/* harmony export */ NpcCorners: () => (/* reexport safe */
|
|
74094
|
-
/* harmony export */ OPERATION: () => (/* reexport safe */
|
|
74095
|
-
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */
|
|
74096
|
-
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */
|
|
74097
|
-
/* harmony export */ OverriddenBy: () => (/* reexport safe */
|
|
74098
|
-
/* harmony export */ POLICY: () => (/* reexport safe */
|
|
74099
|
-
/* harmony export */ PackedFeature: () => (/* reexport safe */
|
|
74100
|
-
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */
|
|
74101
|
-
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */
|
|
74088
|
+
/* harmony export */ LinePixels: () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_79__.LinePixels),
|
|
74089
|
+
/* harmony export */ LineStyle: () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_54__.LineStyle),
|
|
74090
|
+
/* harmony export */ LockState: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.LockState),
|
|
74091
|
+
/* harmony export */ MapImagerySettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.MapImagerySettings),
|
|
74092
|
+
/* harmony export */ MapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapLayerSettings),
|
|
74093
|
+
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapSubLayerSettings),
|
|
74094
|
+
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.MarshalingBinaryMarker),
|
|
74095
|
+
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_83__.MassPropertiesOperation),
|
|
74096
|
+
/* harmony export */ MeshEdge: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshEdge),
|
|
74097
|
+
/* harmony export */ MeshEdges: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshEdges),
|
|
74098
|
+
/* harmony export */ MeshPolyline: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MeshPolyline),
|
|
74099
|
+
/* harmony export */ ModelClipGroup: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroup),
|
|
74100
|
+
/* harmony export */ ModelClipGroups: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroups),
|
|
74101
|
+
/* harmony export */ ModelFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.ModelFeature),
|
|
74102
|
+
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__.ModelGeometryChanges),
|
|
74103
|
+
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerDrapeTarget),
|
|
74104
|
+
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerSettings),
|
|
74105
|
+
/* harmony export */ MonochromeMode: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.MonochromeMode),
|
|
74106
|
+
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.MultiModelPackedFeatureTable),
|
|
74107
|
+
/* harmony export */ NoContentError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.NoContentError),
|
|
74108
|
+
/* harmony export */ NonUniformColor: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.NonUniformColor),
|
|
74109
|
+
/* harmony export */ NormalMapFlags: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.NormalMapFlags),
|
|
74110
|
+
/* harmony export */ Npc: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Npc),
|
|
74111
|
+
/* harmony export */ NpcCenter: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCenter),
|
|
74112
|
+
/* harmony export */ NpcCorners: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCorners),
|
|
74113
|
+
/* harmony export */ OPERATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.OPERATION),
|
|
74114
|
+
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormal),
|
|
74115
|
+
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormalPair),
|
|
74116
|
+
/* harmony export */ OverriddenBy: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.OverriddenBy),
|
|
74117
|
+
/* harmony export */ POLICY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.POLICY),
|
|
74118
|
+
/* harmony export */ PackedFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.PackedFeature),
|
|
74119
|
+
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PackedFeatureModelTable),
|
|
74120
|
+
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PackedFeatureTable),
|
|
74102
74121
|
/* harmony export */ Paragraph: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
74103
|
-
/* harmony export */ Placement2d: () => (/* reexport safe */
|
|
74104
|
-
/* harmony export */ Placement3d: () => (/* reexport safe */
|
|
74105
|
-
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */
|
|
74106
|
-
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */
|
|
74107
|
-
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */
|
|
74108
|
-
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */
|
|
74109
|
-
/* harmony export */ PntsHeader: () => (/* reexport safe */
|
|
74110
|
-
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */
|
|
74111
|
-
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */
|
|
74112
|
-
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */
|
|
74113
|
-
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */
|
|
74114
|
-
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */
|
|
74115
|
-
/* harmony export */ ProfileOptions: () => (/* reexport safe */
|
|
74116
|
-
/* harmony export */ Projection: () => (/* reexport safe */
|
|
74117
|
-
/* harmony export */ PropertyMetaData: () => (/* reexport safe */
|
|
74118
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */
|
|
74119
|
-
/* harmony export */ QParams2d: () => (/* reexport safe */
|
|
74120
|
-
/* harmony export */ QParams3d: () => (/* reexport safe */
|
|
74121
|
-
/* harmony export */ QPoint2d: () => (/* reexport safe */
|
|
74122
|
-
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */
|
|
74123
|
-
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */
|
|
74124
|
-
/* harmony export */ QPoint2dList: () => (/* reexport safe */
|
|
74125
|
-
/* harmony export */ QPoint3d: () => (/* reexport safe */
|
|
74126
|
-
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */
|
|
74127
|
-
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */
|
|
74128
|
-
/* harmony export */ QPoint3dList: () => (/* reexport safe */
|
|
74129
|
-
/* harmony export */ Quantization: () => (/* reexport safe */
|
|
74130
|
-
/* harmony export */ QueryBinder: () => (/* reexport safe */
|
|
74131
|
-
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */
|
|
74132
|
-
/* harmony export */ QueryParamType: () => (/* reexport safe */
|
|
74133
|
-
/* harmony export */ QueryRowFormat: () => (/* reexport safe */
|
|
74134
|
-
/* harmony export */ REGISTRY: () => (/* reexport safe */
|
|
74135
|
-
/* harmony export */ Rank: () => (/* reexport safe */
|
|
74136
|
-
/* harmony export */ RealityDataFormat: () => (/* reexport safe */
|
|
74137
|
-
/* harmony export */ RealityDataProvider: () => (/* reexport safe */
|
|
74138
|
-
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */
|
|
74139
|
-
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */
|
|
74140
|
-
/* harmony export */ RelatedElement: () => (/* reexport safe */
|
|
74141
|
-
/* harmony export */ RenderMaterial: () => (/* reexport safe */
|
|
74142
|
-
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */
|
|
74143
|
-
/* harmony export */ RenderMode: () => (/* reexport safe */
|
|
74144
|
-
/* harmony export */ RenderSchedule: () => (/* reexport safe */
|
|
74145
|
-
/* harmony export */ RenderTexture: () => (/* reexport safe */
|
|
74146
|
-
/* harmony export */ RenderTextureParams: () => (/* reexport safe */
|
|
74147
|
-
/* harmony export */ ResponseLike: () => (/* reexport safe */
|
|
74148
|
-
/* harmony export */ RgbColor: () => (/* reexport safe */
|
|
74149
|
-
/* harmony export */ RpcConfiguration: () => (/* reexport safe */
|
|
74150
|
-
/* harmony export */ RpcContentType: () => (/* reexport safe */
|
|
74151
|
-
/* harmony export */ RpcControlChannel: () => (/* reexport safe */
|
|
74152
|
-
/* harmony export */ RpcControlResponse: () => (/* reexport safe */
|
|
74153
|
-
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */
|
|
74154
|
-
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */
|
|
74155
|
-
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */
|
|
74156
|
-
/* harmony export */ RpcEndpoint: () => (/* reexport safe */
|
|
74157
|
-
/* harmony export */ RpcInterface: () => (/* reexport safe */
|
|
74158
|
-
/* harmony export */ RpcInvocation: () => (/* reexport safe */
|
|
74159
|
-
/* harmony export */ RpcManager: () => (/* reexport safe */
|
|
74160
|
-
/* harmony export */ RpcMarshaling: () => (/* reexport safe */
|
|
74161
|
-
/* harmony export */ RpcMultipart: () => (/* reexport safe */
|
|
74162
|
-
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */
|
|
74163
|
-
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */
|
|
74164
|
-
/* harmony export */ RpcOperation: () => (/* reexport safe */
|
|
74165
|
-
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */
|
|
74166
|
-
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */
|
|
74167
|
-
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */
|
|
74168
|
-
/* harmony export */ RpcProtocol: () => (/* reexport safe */
|
|
74169
|
-
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */
|
|
74170
|
-
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */
|
|
74171
|
-
/* harmony export */ RpcPushChannel: () => (/* reexport safe */
|
|
74172
|
-
/* harmony export */ RpcPushConnection: () => (/* reexport safe */
|
|
74173
|
-
/* harmony export */ RpcPushService: () => (/* reexport safe */
|
|
74174
|
-
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */
|
|
74175
|
-
/* harmony export */ RpcPushTransport: () => (/* reexport safe */
|
|
74176
|
-
/* harmony export */ RpcRegistry: () => (/* reexport safe */
|
|
74177
|
-
/* harmony export */ RpcRequest: () => (/* reexport safe */
|
|
74178
|
-
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */
|
|
74179
|
-
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */
|
|
74180
|
-
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */
|
|
74181
|
-
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */
|
|
74182
|
-
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */
|
|
74183
|
-
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */
|
|
74184
|
-
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */
|
|
74185
|
-
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */
|
|
74122
|
+
/* harmony export */ Placement2d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement2d),
|
|
74123
|
+
/* harmony export */ Placement3d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement3d),
|
|
74124
|
+
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_93__.PlanProjectionSettings),
|
|
74125
|
+
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskMode),
|
|
74126
|
+
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskPriority),
|
|
74127
|
+
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__.PlanarClipMaskSettings),
|
|
74128
|
+
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_156__.PntsHeader),
|
|
74129
|
+
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__.PointCloudDisplaySettings),
|
|
74130
|
+
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.PolylineEdgeArgs),
|
|
74131
|
+
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _RenderPolyline__WEBPACK_IMPORTED_MODULE_97__.PolylineTypeFlags),
|
|
74132
|
+
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.PositionalVectorTransform),
|
|
74133
|
+
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PrimitiveTypeCode),
|
|
74134
|
+
/* harmony export */ ProfileOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.ProfileOptions),
|
|
74135
|
+
/* harmony export */ Projection: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Projection),
|
|
74136
|
+
/* harmony export */ PropertyMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PropertyMetaData),
|
|
74137
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__.PropertyMetaDataMap),
|
|
74138
|
+
/* harmony export */ QParams2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QParams2d),
|
|
74139
|
+
/* harmony export */ QParams3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QParams3d),
|
|
74140
|
+
/* harmony export */ QPoint2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2d),
|
|
74141
|
+
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dBuffer),
|
|
74142
|
+
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dBufferBuilder),
|
|
74143
|
+
/* harmony export */ QPoint2dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint2dList),
|
|
74144
|
+
/* harmony export */ QPoint3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3d),
|
|
74145
|
+
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dBuffer),
|
|
74146
|
+
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dBufferBuilder),
|
|
74147
|
+
/* harmony export */ QPoint3dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.QPoint3dList),
|
|
74148
|
+
/* harmony export */ Quantization: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_94__.Quantization),
|
|
74149
|
+
/* harmony export */ QueryBinder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryBinder),
|
|
74150
|
+
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryOptionsBuilder),
|
|
74151
|
+
/* harmony export */ QueryParamType: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryParamType),
|
|
74152
|
+
/* harmony export */ QueryRowFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryRowFormat),
|
|
74153
|
+
/* harmony export */ REGISTRY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.REGISTRY),
|
|
74154
|
+
/* harmony export */ Rank: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.Rank),
|
|
74155
|
+
/* harmony export */ RealityDataFormat: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataFormat),
|
|
74156
|
+
/* harmony export */ RealityDataProvider: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataProvider),
|
|
74157
|
+
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataSourceKey),
|
|
74158
|
+
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__.RealityModelDisplaySettings),
|
|
74159
|
+
/* harmony export */ RelatedElement: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.RelatedElement),
|
|
74160
|
+
/* harmony export */ RenderMaterial: () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_98__.RenderMaterial),
|
|
74161
|
+
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.RenderMaterialParams),
|
|
74162
|
+
/* harmony export */ RenderMode: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_121__.RenderMode),
|
|
74163
|
+
/* harmony export */ RenderSchedule: () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_99__.RenderSchedule),
|
|
74164
|
+
/* harmony export */ RenderTexture: () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_100__.RenderTexture),
|
|
74165
|
+
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.RenderTextureParams),
|
|
74166
|
+
/* harmony export */ ResponseLike: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.ResponseLike),
|
|
74167
|
+
/* harmony export */ RgbColor: () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_101__.RgbColor),
|
|
74168
|
+
/* harmony export */ RpcConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcConfiguration),
|
|
74169
|
+
/* harmony export */ RpcContentType: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcContentType),
|
|
74170
|
+
/* harmony export */ RpcControlChannel: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcControlChannel),
|
|
74171
|
+
/* harmony export */ RpcControlResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcControlResponse),
|
|
74172
|
+
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDefaultConfiguration),
|
|
74173
|
+
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDirectProtocol),
|
|
74174
|
+
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcDirectRequest),
|
|
74175
|
+
/* harmony export */ RpcEndpoint: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcEndpoint),
|
|
74176
|
+
/* harmony export */ RpcInterface: () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_142__.RpcInterface),
|
|
74177
|
+
/* harmony export */ RpcInvocation: () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_125__.RpcInvocation),
|
|
74178
|
+
/* harmony export */ RpcManager: () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_102__.RpcManager),
|
|
74179
|
+
/* harmony export */ RpcMarshaling: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.RpcMarshaling),
|
|
74180
|
+
/* harmony export */ RpcMultipart: () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_146__.RpcMultipart),
|
|
74181
|
+
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcNotFoundResponse),
|
|
74182
|
+
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_145__.RpcOpenAPIDescription),
|
|
74183
|
+
/* harmony export */ RpcOperation: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__.RpcOperation),
|
|
74184
|
+
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__.RpcOperationPolicy),
|
|
74185
|
+
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_129__.RpcPendingQueue),
|
|
74186
|
+
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__.RpcPendingResponse),
|
|
74187
|
+
/* harmony export */ RpcProtocol: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcProtocol),
|
|
74188
|
+
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcProtocolEvent),
|
|
74189
|
+
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcProtocolVersion),
|
|
74190
|
+
/* harmony export */ RpcPushChannel: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushChannel),
|
|
74191
|
+
/* harmony export */ RpcPushConnection: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushConnection),
|
|
74192
|
+
/* harmony export */ RpcPushService: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushService),
|
|
74193
|
+
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushSubscription),
|
|
74194
|
+
/* harmony export */ RpcPushTransport: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__.RpcPushTransport),
|
|
74195
|
+
/* harmony export */ RpcRegistry: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__.RpcRegistry),
|
|
74196
|
+
/* harmony export */ RpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.RpcRequest),
|
|
74197
|
+
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcRequestEvent),
|
|
74198
|
+
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__.RpcRequestFulfillment),
|
|
74199
|
+
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcRequestStatus),
|
|
74200
|
+
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.RpcResponseCacheControl),
|
|
74201
|
+
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__.RpcRoutingMap),
|
|
74202
|
+
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_134__.RpcRoutingToken),
|
|
74203
|
+
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__.RpcSerializedValue),
|
|
74204
|
+
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcSessionInvocation),
|
|
74186
74205
|
/* harmony export */ Run: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
74187
|
-
/* harmony export */ SchemaState: () => (/* reexport safe */
|
|
74188
|
-
/* harmony export */ SectionType: () => (/* reexport safe */
|
|
74189
|
-
/* harmony export */ ServerError: () => (/* reexport safe */
|
|
74190
|
-
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */
|
|
74191
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */
|
|
74192
|
-
/* harmony export */ SkyBox: () => (/* reexport safe */
|
|
74193
|
-
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */
|
|
74194
|
-
/* harmony export */ SkyCube: () => (/* reexport safe */
|
|
74195
|
-
/* harmony export */ SkyGradient: () => (/* reexport safe */
|
|
74196
|
-
/* harmony export */ SkySphere: () => (/* reexport safe */
|
|
74197
|
-
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */
|
|
74198
|
-
/* harmony export */ SolarLight: () => (/* reexport safe */
|
|
74199
|
-
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */
|
|
74200
|
-
/* harmony export */ SpatialClassifier: () => (/* reexport safe */
|
|
74201
|
-
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */
|
|
74202
|
-
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */
|
|
74203
|
-
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */
|
|
74204
|
-
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */
|
|
74205
|
-
/* harmony export */ SqliteError: () => (/* reexport safe */
|
|
74206
|
-
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */
|
|
74207
|
-
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */
|
|
74208
|
-
/* harmony export */ SyncMode: () => (/* reexport safe */
|
|
74206
|
+
/* harmony export */ SchemaState: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SchemaState),
|
|
74207
|
+
/* harmony export */ SectionType: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.SectionType),
|
|
74208
|
+
/* harmony export */ ServerError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerError),
|
|
74209
|
+
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerTimeoutError),
|
|
74210
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.SilhouetteEdgeArgs),
|
|
74211
|
+
/* harmony export */ SkyBox: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyBox),
|
|
74212
|
+
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyBoxImageType),
|
|
74213
|
+
/* harmony export */ SkyCube: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyCube),
|
|
74214
|
+
/* harmony export */ SkyGradient: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkyGradient),
|
|
74215
|
+
/* harmony export */ SkySphere: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_104__.SkySphere),
|
|
74216
|
+
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_140__.SnapshotIModelRpcInterface),
|
|
74217
|
+
/* harmony export */ SolarLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.SolarLight),
|
|
74218
|
+
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_106__.SolarShadowSettings),
|
|
74219
|
+
/* harmony export */ SpatialClassifier: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifier),
|
|
74220
|
+
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierFlags),
|
|
74221
|
+
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierInsideDisplay),
|
|
74222
|
+
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierOutsideDisplay),
|
|
74223
|
+
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifiers),
|
|
74224
|
+
/* harmony export */ SqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.SqliteError),
|
|
74225
|
+
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__.SubCategoryAppearance),
|
|
74226
|
+
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__.SubCategoryOverride),
|
|
74227
|
+
/* harmony export */ SyncMode: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SyncMode),
|
|
74209
74228
|
/* harmony export */ TabRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TabRun),
|
|
74210
|
-
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */
|
|
74211
|
-
/* harmony export */ TerrainSettings: () => (/* reexport safe */
|
|
74212
|
-
/* harmony export */ TestRpcManager: () => (/* reexport safe */
|
|
74229
|
+
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__.TerrainHeightOriginMode),
|
|
74230
|
+
/* harmony export */ TerrainSettings: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__.TerrainSettings),
|
|
74231
|
+
/* harmony export */ TestRpcManager: () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_141__.TestRpcManager),
|
|
74213
74232
|
/* harmony export */ TextAnnotation: () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
74214
74233
|
/* harmony export */ TextBlock: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
74215
74234
|
/* harmony export */ TextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
74216
74235
|
/* harmony export */ TextRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextRun),
|
|
74217
|
-
/* harmony export */ TextString: () => (/* reexport safe */
|
|
74218
|
-
/* harmony export */ TextStyleSettings: () => (/* reexport safe */
|
|
74219
|
-
/* harmony export */ TextureMapUnits: () => (/* reexport safe */
|
|
74220
|
-
/* harmony export */ TextureMapping: () => (/* reexport safe */
|
|
74221
|
-
/* harmony export */ TextureTransparency: () => (/* reexport safe */
|
|
74222
|
-
/* harmony export */ ThematicDisplay: () => (/* reexport safe */
|
|
74223
|
-
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */
|
|
74224
|
-
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */
|
|
74225
|
-
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */
|
|
74226
|
-
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */
|
|
74227
|
-
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */
|
|
74228
|
-
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */
|
|
74229
|
-
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */
|
|
74230
|
-
/* harmony export */ TileContentSource: () => (/* reexport safe */
|
|
74231
|
-
/* harmony export */ TileFormat: () => (/* reexport safe */
|
|
74232
|
-
/* harmony export */ TileHeader: () => (/* reexport safe */
|
|
74233
|
-
/* harmony export */ TileMetadataReader: () => (/* reexport safe */
|
|
74234
|
-
/* harmony export */ TileOptions: () => (/* reexport safe */
|
|
74235
|
-
/* harmony export */ TileReadError: () => (/* reexport safe */
|
|
74236
|
-
/* harmony export */ TileReadStatus: () => (/* reexport safe */
|
|
74237
|
-
/* harmony export */ TreeFlags: () => (/* reexport safe */
|
|
74238
|
-
/* harmony export */ Tween: () => (/* reexport safe */
|
|
74239
|
-
/* harmony export */ Tweens: () => (/* reexport safe */
|
|
74240
|
-
/* harmony export */ TxnAction: () => (/* reexport safe */
|
|
74241
|
-
/* harmony export */ TypeDefinition: () => (/* reexport safe */
|
|
74242
|
-
/* harmony export */ TypeOfChange: () => (/* reexport safe */
|
|
74243
|
-
/* harmony export */ VerticalCRS: () => (/* reexport safe */
|
|
74244
|
-
/* harmony export */ ViewDetails: () => (/* reexport safe */
|
|
74245
|
-
/* harmony export */ ViewDetails3d: () => (/* reexport safe */
|
|
74246
|
-
/* harmony export */ ViewFlags: () => (/* reexport safe */
|
|
74247
|
-
/* harmony export */ ViewStoreError: () => (/* reexport safe */
|
|
74248
|
-
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */
|
|
74249
|
-
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */
|
|
74250
|
-
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */
|
|
74251
|
-
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */
|
|
74252
|
-
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */
|
|
74253
|
-
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */
|
|
74254
|
-
/* harmony export */ WorkspaceError: () => (/* reexport safe */
|
|
74255
|
-
/* harmony export */ XyzRotation: () => (/* reexport safe */
|
|
74256
|
-
/* harmony export */ aggregateLoad: () => (/* reexport safe */
|
|
74257
|
-
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */
|
|
74258
|
-
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */
|
|
74259
|
-
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */
|
|
74260
|
-
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */
|
|
74261
|
-
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */
|
|
74262
|
-
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */
|
|
74263
|
-
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */
|
|
74264
|
-
/* harmony export */ computeChildTileProps: () => (/* reexport safe */
|
|
74265
|
-
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */
|
|
74266
|
-
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */
|
|
74267
|
-
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */
|
|
74268
|
-
/* harmony export */ defaultTileOptions: () => (/* reexport safe */
|
|
74269
|
-
/* harmony export */
|
|
74270
|
-
/* harmony export */
|
|
74271
|
-
/* harmony export */
|
|
74272
|
-
/* harmony export */
|
|
74273
|
-
/* harmony export */
|
|
74274
|
-
/* harmony export */
|
|
74275
|
-
/* harmony export */
|
|
74276
|
-
/* harmony export */
|
|
74277
|
-
/* harmony export */
|
|
74278
|
-
/* harmony export */
|
|
74279
|
-
/* harmony export */
|
|
74280
|
-
/* harmony export */
|
|
74281
|
-
/* harmony export */
|
|
74282
|
-
/* harmony export */
|
|
74283
|
-
/* harmony export */
|
|
74284
|
-
/* harmony export */
|
|
74285
|
-
/* harmony export */
|
|
74286
|
-
/* harmony export */
|
|
74287
|
-
/* harmony export */
|
|
74288
|
-
/* harmony export */
|
|
74289
|
-
/* harmony export */
|
|
74290
|
-
/* harmony export */
|
|
74291
|
-
/* harmony export */
|
|
74236
|
+
/* harmony export */ TextString: () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__.TextString),
|
|
74237
|
+
/* harmony export */ TextStyleSettings: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.TextStyleSettings),
|
|
74238
|
+
/* harmony export */ TextureMapUnits: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.TextureMapUnits),
|
|
74239
|
+
/* harmony export */ TextureMapping: () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_112__.TextureMapping),
|
|
74240
|
+
/* harmony export */ TextureTransparency: () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_113__.TextureTransparency),
|
|
74241
|
+
/* harmony export */ ThematicDisplay: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplay),
|
|
74242
|
+
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplayMode),
|
|
74243
|
+
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplaySensor),
|
|
74244
|
+
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicDisplaySensorSettings),
|
|
74245
|
+
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientColorScheme),
|
|
74246
|
+
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientMode),
|
|
74247
|
+
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientSettings),
|
|
74248
|
+
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__.ThematicGradientTransparencyMode),
|
|
74249
|
+
/* harmony export */ TileContentSource: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_117__.TileContentSource),
|
|
74250
|
+
/* harmony export */ TileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileFormat),
|
|
74251
|
+
/* harmony export */ TileHeader: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileHeader),
|
|
74252
|
+
/* harmony export */ TileMetadataReader: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TileMetadataReader),
|
|
74253
|
+
/* harmony export */ TileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TileOptions),
|
|
74254
|
+
/* harmony export */ TileReadError: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileReadError),
|
|
74255
|
+
/* harmony export */ TileReadStatus: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.TileReadStatus),
|
|
74256
|
+
/* harmony export */ TreeFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.TreeFlags),
|
|
74257
|
+
/* harmony export */ Tween: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Tween),
|
|
74258
|
+
/* harmony export */ Tweens: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_118__.Tweens),
|
|
74259
|
+
/* harmony export */ TxnAction: () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_119__.TxnAction),
|
|
74260
|
+
/* harmony export */ TypeDefinition: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.TypeDefinition),
|
|
74261
|
+
/* harmony export */ TypeOfChange: () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_16__.TypeOfChange),
|
|
74262
|
+
/* harmony export */ VerticalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.VerticalCRS),
|
|
74263
|
+
/* harmony export */ ViewDetails: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.ViewDetails),
|
|
74264
|
+
/* harmony export */ ViewDetails3d: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_120__.ViewDetails3d),
|
|
74265
|
+
/* harmony export */ ViewFlags: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_121__.ViewFlags),
|
|
74266
|
+
/* harmony export */ ViewStoreError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ViewStoreError),
|
|
74267
|
+
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_122__.ViewStoreRpc),
|
|
74268
|
+
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__.WEB_RPC_CONSTANTS),
|
|
74269
|
+
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_149__.WebAppRpcLogging),
|
|
74270
|
+
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_147__.WebAppRpcProtocol),
|
|
74271
|
+
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_148__.WebAppRpcRequest),
|
|
74272
|
+
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_160__.WhiteOnWhiteReversalSettings),
|
|
74273
|
+
/* harmony export */ WorkspaceError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.WorkspaceError),
|
|
74274
|
+
/* harmony export */ XyzRotation: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.XyzRotation),
|
|
74275
|
+
/* harmony export */ aggregateLoad: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.aggregateLoad),
|
|
74276
|
+
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.bisectTileRange2d),
|
|
74277
|
+
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.bisectTileRange3d),
|
|
74278
|
+
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarAngles),
|
|
74279
|
+
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirection),
|
|
74280
|
+
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirectionFromAngles),
|
|
74281
|
+
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSunriseOrSunset),
|
|
74282
|
+
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.compareIModelTileTreeIds),
|
|
74283
|
+
/* harmony export */ computeChildTileProps: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeChildTileProps),
|
|
74284
|
+
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeChildTileRanges),
|
|
74285
|
+
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.computeTileChordTolerance),
|
|
74286
|
+
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.decodeTileContentDescription),
|
|
74287
|
+
/* harmony export */ defaultTileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.defaultTileOptions),
|
|
74288
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.formatFieldValue),
|
|
74289
|
+
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.getMaximumMajorTileFormatVersion),
|
|
74290
|
+
/* harmony export */ getPullChangesIpcChannel: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.getPullChangesIpcChannel),
|
|
74291
|
+
/* harmony export */ getTileObjectReference: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_117__.getTileObjectReference),
|
|
74292
|
+
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.iModelTileTreeIdToString),
|
|
74293
|
+
/* harmony export */ iTwinChannel: () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__.iTwinChannel),
|
|
74294
|
+
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__.initializeRpcRequest),
|
|
74295
|
+
/* harmony export */ ipcAppChannels: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.ipcAppChannels),
|
|
74296
|
+
/* harmony export */ isBinaryImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isBinaryImageSource),
|
|
74297
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__.isKnownFieldPropertyType),
|
|
74298
|
+
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.isKnownTileFormat),
|
|
74299
|
+
/* harmony export */ isPlacement2dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement2dProps),
|
|
74300
|
+
/* harmony export */ isPlacement3dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement3dProps),
|
|
74301
|
+
/* harmony export */ isPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isPowerOfTwo),
|
|
74302
|
+
/* harmony export */ isValidImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isValidImageSourceFormat),
|
|
74303
|
+
/* harmony export */ mapToGeoServiceStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.mapToGeoServiceStatus),
|
|
74304
|
+
/* harmony export */ nativeAppIpcStrings: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.nativeAppIpcStrings),
|
|
74305
|
+
/* harmony export */ nextHighestPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.nextHighestPowerOfTwo),
|
|
74306
|
+
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.nextPoint3d64FromByteStream),
|
|
74307
|
+
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.parseTileTreeIdAndContentId),
|
|
74308
|
+
/* harmony export */ readElementMeshes: () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_30__.readElementMeshes),
|
|
74309
|
+
/* harmony export */ readTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__.readTileContentDescription),
|
|
74310
|
+
/* harmony export */ rpcOverIpcStrings: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.rpcOverIpcStrings),
|
|
74311
|
+
/* harmony export */ textAnnotationFrameShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.textAnnotationFrameShapes),
|
|
74312
|
+
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__.tileFormatFromNumber)
|
|
74292
74313
|
/* harmony export */ });
|
|
74293
74314
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
74294
74315
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -74296,161 +74317,162 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
74296
74317
|
/* harmony import */ var _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./annotation/TextBlock */ "../../core/common/lib/esm/annotation/TextBlock.js");
|
|
74297
74318
|
/* harmony import */ var _annotation_TextBlockGeometryProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotation/TextBlockGeometryProps */ "../../core/common/lib/esm/annotation/TextBlockGeometryProps.js");
|
|
74298
74319
|
/* harmony import */ var _annotation_TextBlockLayoutResult__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./annotation/TextBlockLayoutResult */ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js");
|
|
74299
|
-
/* harmony import */ var
|
|
74300
|
-
/* harmony import */ var
|
|
74301
|
-
/* harmony import */ var
|
|
74302
|
-
/* harmony import */ var
|
|
74303
|
-
/* harmony import */ var
|
|
74304
|
-
/* harmony import */ var
|
|
74305
|
-
/* harmony import */ var
|
|
74306
|
-
/* harmony import */ var
|
|
74307
|
-
/* harmony import */ var
|
|
74308
|
-
/* harmony import */ var
|
|
74309
|
-
/* harmony import */ var
|
|
74310
|
-
/* harmony import */ var
|
|
74311
|
-
/* harmony import */ var
|
|
74312
|
-
/* harmony import */ var
|
|
74313
|
-
/* harmony import */ var
|
|
74314
|
-
/* harmony import */ var
|
|
74315
|
-
/* harmony import */ var
|
|
74316
|
-
/* harmony import */ var
|
|
74317
|
-
/* harmony import */ var
|
|
74318
|
-
/* harmony import */ var
|
|
74319
|
-
/* harmony import */ var
|
|
74320
|
-
/* harmony import */ var
|
|
74321
|
-
/* harmony import */ var
|
|
74322
|
-
/* harmony import */ var
|
|
74323
|
-
/* harmony import */ var
|
|
74324
|
-
/* harmony import */ var
|
|
74325
|
-
/* harmony import */ var
|
|
74326
|
-
/* harmony import */ var
|
|
74327
|
-
/* harmony import */ var
|
|
74328
|
-
/* harmony import */ var
|
|
74329
|
-
/* harmony import */ var
|
|
74330
|
-
/* harmony import */ var
|
|
74331
|
-
/* harmony import */ var
|
|
74332
|
-
/* harmony import */ var
|
|
74333
|
-
/* harmony import */ var
|
|
74334
|
-
/* harmony import */ var
|
|
74335
|
-
/* harmony import */ var
|
|
74336
|
-
/* harmony import */ var
|
|
74337
|
-
/* harmony import */ var
|
|
74338
|
-
/* harmony import */ var
|
|
74339
|
-
/* harmony import */ var
|
|
74340
|
-
/* harmony import */ var
|
|
74341
|
-
/* harmony import */ var
|
|
74342
|
-
/* harmony import */ var
|
|
74343
|
-
/* harmony import */ var
|
|
74344
|
-
/* harmony import */ var
|
|
74345
|
-
/* harmony import */ var
|
|
74346
|
-
/* harmony import */ var
|
|
74347
|
-
/* harmony import */ var
|
|
74348
|
-
/* harmony import */ var
|
|
74349
|
-
/* harmony import */ var
|
|
74350
|
-
/* harmony import */ var
|
|
74351
|
-
/* harmony import */ var
|
|
74352
|
-
/* harmony import */ var
|
|
74353
|
-
/* harmony import */ var
|
|
74354
|
-
/* harmony import */ var
|
|
74355
|
-
/* harmony import */ var
|
|
74356
|
-
/* harmony import */ var
|
|
74357
|
-
/* harmony import */ var
|
|
74358
|
-
/* harmony import */ var
|
|
74359
|
-
/* harmony import */ var
|
|
74360
|
-
/* harmony import */ var
|
|
74361
|
-
/* harmony import */ var
|
|
74362
|
-
/* harmony import */ var
|
|
74363
|
-
/* harmony import */ var
|
|
74364
|
-
/* harmony import */ var
|
|
74365
|
-
/* harmony import */ var
|
|
74366
|
-
/* harmony import */ var
|
|
74367
|
-
/* harmony import */ var
|
|
74368
|
-
/* harmony import */ var
|
|
74369
|
-
/* harmony import */ var
|
|
74370
|
-
/* harmony import */ var
|
|
74371
|
-
/* harmony import */ var
|
|
74372
|
-
/* harmony import */ var
|
|
74373
|
-
/* harmony import */ var
|
|
74374
|
-
/* harmony import */ var
|
|
74375
|
-
/* harmony import */ var
|
|
74376
|
-
/* harmony import */ var
|
|
74377
|
-
/* harmony import */ var
|
|
74378
|
-
/* harmony import */ var
|
|
74379
|
-
/* harmony import */ var
|
|
74380
|
-
/* harmony import */ var
|
|
74381
|
-
/* harmony import */ var
|
|
74382
|
-
/* harmony import */ var
|
|
74383
|
-
/* harmony import */ var
|
|
74384
|
-
/* harmony import */ var
|
|
74385
|
-
/* harmony import */ var
|
|
74386
|
-
/* harmony import */ var
|
|
74387
|
-
/* harmony import */ var
|
|
74388
|
-
/* harmony import */ var
|
|
74389
|
-
/* harmony import */ var
|
|
74390
|
-
/* harmony import */ var
|
|
74391
|
-
/* harmony import */ var
|
|
74392
|
-
/* harmony import */ var
|
|
74393
|
-
/* harmony import */ var
|
|
74394
|
-
/* harmony import */ var
|
|
74395
|
-
/* harmony import */ var
|
|
74396
|
-
/* harmony import */ var
|
|
74397
|
-
/* harmony import */ var
|
|
74398
|
-
/* harmony import */ var
|
|
74399
|
-
/* harmony import */ var
|
|
74400
|
-
/* harmony import */ var
|
|
74401
|
-
/* harmony import */ var
|
|
74402
|
-
/* harmony import */ var
|
|
74403
|
-
/* harmony import */ var
|
|
74404
|
-
/* harmony import */ var
|
|
74405
|
-
/* harmony import */ var
|
|
74406
|
-
/* harmony import */ var
|
|
74407
|
-
/* harmony import */ var
|
|
74408
|
-
/* harmony import */ var
|
|
74409
|
-
/* harmony import */ var
|
|
74410
|
-
/* harmony import */ var
|
|
74411
|
-
/* harmony import */ var
|
|
74412
|
-
/* harmony import */ var
|
|
74413
|
-
/* harmony import */ var
|
|
74414
|
-
/* harmony import */ var
|
|
74415
|
-
/* harmony import */ var
|
|
74416
|
-
/* harmony import */ var
|
|
74417
|
-
/* harmony import */ var
|
|
74418
|
-
/* harmony import */ var
|
|
74419
|
-
/* harmony import */ var
|
|
74420
|
-
/* harmony import */ var
|
|
74421
|
-
/* harmony import */ var
|
|
74422
|
-
/* harmony import */ var
|
|
74423
|
-
/* harmony import */ var
|
|
74424
|
-
/* harmony import */ var
|
|
74425
|
-
/* harmony import */ var
|
|
74426
|
-
/* harmony import */ var
|
|
74427
|
-
/* harmony import */ var
|
|
74428
|
-
/* harmony import */ var
|
|
74429
|
-
/* harmony import */ var
|
|
74430
|
-
/* harmony import */ var
|
|
74431
|
-
/* harmony import */ var
|
|
74432
|
-
/* harmony import */ var
|
|
74433
|
-
/* harmony import */ var
|
|
74434
|
-
/* harmony import */ var
|
|
74435
|
-
/* harmony import */ var
|
|
74436
|
-
/* harmony import */ var
|
|
74437
|
-
/* harmony import */ var
|
|
74438
|
-
/* harmony import */ var
|
|
74439
|
-
/* harmony import */ var
|
|
74440
|
-
/* harmony import */ var
|
|
74441
|
-
/* harmony import */ var
|
|
74442
|
-
/* harmony import */ var
|
|
74443
|
-
/* harmony import */ var
|
|
74444
|
-
/* harmony import */ var
|
|
74445
|
-
/* harmony import */ var
|
|
74446
|
-
/* harmony import */ var
|
|
74447
|
-
/* harmony import */ var
|
|
74448
|
-
/* harmony import */ var
|
|
74449
|
-
/* harmony import */ var
|
|
74450
|
-
/* harmony import */ var
|
|
74451
|
-
/* harmony import */ var
|
|
74452
|
-
/* harmony import */ var
|
|
74453
|
-
/* harmony import */ var
|
|
74320
|
+
/* harmony import */ var _annotation_TextField__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./annotation/TextField */ "../../core/common/lib/esm/annotation/TextField.js");
|
|
74321
|
+
/* harmony import */ var _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./annotation/TextStyle */ "../../core/common/lib/esm/annotation/TextStyle.js");
|
|
74322
|
+
/* harmony import */ var _Atmosphere__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Atmosphere */ "../../core/common/lib/esm/Atmosphere.js");
|
|
74323
|
+
/* harmony import */ var _AuthorizationClient__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./AuthorizationClient */ "../../core/common/lib/esm/AuthorizationClient.js");
|
|
74324
|
+
/* harmony import */ var _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./BackgroundMapProvider */ "../../core/common/lib/esm/BackgroundMapProvider.js");
|
|
74325
|
+
/* harmony import */ var _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./BackgroundMapSettings */ "../../core/common/lib/esm/BackgroundMapSettings.js");
|
|
74326
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
74327
|
+
/* harmony import */ var _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./BriefcaseTypes */ "../../core/common/lib/esm/BriefcaseTypes.js");
|
|
74328
|
+
/* harmony import */ var _Camera__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./Camera */ "../../core/common/lib/esm/Camera.js");
|
|
74329
|
+
/* harmony import */ var _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./CatalogIModel */ "../../core/common/lib/esm/CatalogIModel.js");
|
|
74330
|
+
/* harmony import */ var _ChangedElements__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ChangedElements */ "../../core/common/lib/esm/ChangedElements.js");
|
|
74331
|
+
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
74332
|
+
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
74333
|
+
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
74334
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
74335
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
74336
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
74337
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
74338
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
74339
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
74340
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
74341
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
74342
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
74343
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
74344
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
74345
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
74346
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
74347
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
74348
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
74349
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
74350
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
74351
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
74352
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
74353
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
74354
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
74355
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
74356
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
74357
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
74358
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
74359
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
74360
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
74361
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
74362
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
74363
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
74364
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
74365
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
74366
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
74367
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
74368
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
74369
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
74370
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
74371
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
74372
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
74373
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
74374
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
74375
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
74376
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
74377
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
74378
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
74379
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
74380
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
74381
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
74382
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
74383
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
74384
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
74385
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
74386
|
+
/* harmony import */ var _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ITwinCoreErrors */ "../../core/common/lib/esm/ITwinCoreErrors.js");
|
|
74387
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
74388
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
74389
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
74390
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
74391
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
74392
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
74393
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
74394
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
74395
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
74396
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
74397
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
74398
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
74399
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
74400
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
74401
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
74402
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
74403
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
74404
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
74405
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
74406
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
74407
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
74408
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
74409
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
74410
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
74411
|
+
/* harmony import */ var _RenderPolyline__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RenderPolyline */ "../../core/common/lib/esm/RenderPolyline.js");
|
|
74412
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
74413
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
74414
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
74415
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
74416
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
74417
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
74418
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
74419
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
74420
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
74421
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
74422
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
74423
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
74424
|
+
/* harmony import */ var _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./CesiumIonAssets */ "../../core/common/lib/esm/CesiumIonAssets.js");
|
|
74425
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
74426
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
74427
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
74428
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
74429
|
+
/* harmony import */ var _ContourDisplay__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./ContourDisplay */ "../../core/common/lib/esm/ContourDisplay.js");
|
|
74430
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
74431
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
74432
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
74433
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
74434
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
74435
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
74436
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
74437
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
74438
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
74439
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
74440
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
74441
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
74442
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
74443
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
74444
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
74445
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
74446
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
74447
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
74448
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
74449
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
74450
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
74451
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
74452
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
74453
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
74454
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
74455
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
74456
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
74457
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
74458
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
74459
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
74460
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
74461
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
74462
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
74463
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
74464
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
74465
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
74466
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
74467
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
74468
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
74469
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
74470
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
74471
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
74472
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
74473
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
74474
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
74475
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/common/lib/esm/internal/cross-package.js");
|
|
74454
74476
|
/*---------------------------------------------------------------------------------------------
|
|
74455
74477
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
74456
74478
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -74614,6 +74636,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
74614
74636
|
|
|
74615
74637
|
|
|
74616
74638
|
|
|
74639
|
+
|
|
74617
74640
|
|
|
74618
74641
|
|
|
74619
74642
|
/** @docs-package-description
|
|
@@ -84318,6 +84341,83 @@ class RenderTextureParams {
|
|
|
84318
84341
|
}
|
|
84319
84342
|
|
|
84320
84343
|
|
|
84344
|
+
/***/ }),
|
|
84345
|
+
|
|
84346
|
+
/***/ "../../core/common/lib/esm/internal/annotations/FieldFormatter.js":
|
|
84347
|
+
/*!************************************************************************!*\
|
|
84348
|
+
!*** ../../core/common/lib/esm/internal/annotations/FieldFormatter.js ***!
|
|
84349
|
+
\************************************************************************/
|
|
84350
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
84351
|
+
|
|
84352
|
+
"use strict";
|
|
84353
|
+
__webpack_require__.r(__webpack_exports__);
|
|
84354
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
84355
|
+
/* harmony export */ formatFieldValue: () => (/* binding */ formatFieldValue),
|
|
84356
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* binding */ isKnownFieldPropertyType)
|
|
84357
|
+
/* harmony export */ });
|
|
84358
|
+
/*---------------------------------------------------------------------------------------------
|
|
84359
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
84360
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
84361
|
+
*--------------------------------------------------------------------------------------------*/
|
|
84362
|
+
const formatters = {
|
|
84363
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84364
|
+
"string": (v, o) => formatString(v.toString(), o),
|
|
84365
|
+
"datetime": (v, o) => formatString(formatDateTime(v, o?.dateTime), o),
|
|
84366
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84367
|
+
"quantity": (v, o) => formatString(v.toString(), o),
|
|
84368
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84369
|
+
"coordinate": (v, o) => formatString(v.toString(), o),
|
|
84370
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84371
|
+
"boolean": (v, o) => formatString(v.toString(), o),
|
|
84372
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84373
|
+
"int-enum": (v, o) => formatString(v.toString(), o),
|
|
84374
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
84375
|
+
"string-enum": (v, o) => formatString(v.toString(), o),
|
|
84376
|
+
};
|
|
84377
|
+
function formatString(s, o) {
|
|
84378
|
+
if (undefined === s || !o) {
|
|
84379
|
+
return s;
|
|
84380
|
+
}
|
|
84381
|
+
switch (o.case) {
|
|
84382
|
+
case "upper":
|
|
84383
|
+
s = s.toUpperCase();
|
|
84384
|
+
break;
|
|
84385
|
+
case "lower":
|
|
84386
|
+
s = s.toLowerCase();
|
|
84387
|
+
break;
|
|
84388
|
+
}
|
|
84389
|
+
if (o.prefix || o.suffix) {
|
|
84390
|
+
s = `${o.prefix ?? ""}${s}${o.suffix ?? ""}`;
|
|
84391
|
+
}
|
|
84392
|
+
return s;
|
|
84393
|
+
}
|
|
84394
|
+
function formatDateTime(v, o) {
|
|
84395
|
+
if (!(v instanceof Date))
|
|
84396
|
+
return undefined;
|
|
84397
|
+
if (!isNaN(v.getTime())) {
|
|
84398
|
+
if (o?.formatOptions) {
|
|
84399
|
+
const locale = o.locale ?? "en-US";
|
|
84400
|
+
if (!Intl.DateTimeFormat.supportedLocalesOf([locale], { localeMatcher: "lookup" }).includes(locale)) {
|
|
84401
|
+
return undefined;
|
|
84402
|
+
}
|
|
84403
|
+
const formatter = new Intl.DateTimeFormat(locale, o.formatOptions);
|
|
84404
|
+
return formatter.format(v);
|
|
84405
|
+
}
|
|
84406
|
+
return v.toString();
|
|
84407
|
+
}
|
|
84408
|
+
return undefined;
|
|
84409
|
+
}
|
|
84410
|
+
/** @internal */
|
|
84411
|
+
function formatFieldValue(value, options) {
|
|
84412
|
+
const formatter = formatters[value.type];
|
|
84413
|
+
return formatter ? formatter(value.value, options) : undefined;
|
|
84414
|
+
}
|
|
84415
|
+
/** @internal */
|
|
84416
|
+
function isKnownFieldPropertyType(type) {
|
|
84417
|
+
return type in formatters;
|
|
84418
|
+
}
|
|
84419
|
+
|
|
84420
|
+
|
|
84321
84421
|
/***/ }),
|
|
84322
84422
|
|
|
84323
84423
|
/***/ "../../core/common/lib/esm/internal/cross-package.js":
|
|
@@ -84339,12 +84439,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
84339
84439
|
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.PolylineEdgeArgs),
|
|
84340
84440
|
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _RenderMaterialParams__WEBPACK_IMPORTED_MODULE_2__.RenderMaterialParams),
|
|
84341
84441
|
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _RenderTextureParams__WEBPACK_IMPORTED_MODULE_3__.RenderTextureParams),
|
|
84342
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.SilhouetteEdgeArgs)
|
|
84442
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _RenderMesh__WEBPACK_IMPORTED_MODULE_0__.SilhouetteEdgeArgs),
|
|
84443
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__.formatFieldValue),
|
|
84444
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__.isKnownFieldPropertyType)
|
|
84343
84445
|
/* harmony export */ });
|
|
84344
84446
|
/* harmony import */ var _RenderMesh__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RenderMesh */ "../../core/common/lib/esm/internal/RenderMesh.js");
|
|
84345
84447
|
/* harmony import */ var _PackedFeatureTable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PackedFeatureTable */ "../../core/common/lib/esm/internal/PackedFeatureTable.js");
|
|
84346
84448
|
/* harmony import */ var _RenderMaterialParams__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RenderMaterialParams */ "../../core/common/lib/esm/internal/RenderMaterialParams.js");
|
|
84347
84449
|
/* harmony import */ var _RenderTextureParams__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RenderTextureParams */ "../../core/common/lib/esm/internal/RenderTextureParams.js");
|
|
84450
|
+
/* harmony import */ var _annotations_FieldFormatter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotations/FieldFormatter */ "../../core/common/lib/esm/internal/annotations/FieldFormatter.js");
|
|
84348
84451
|
/*---------------------------------------------------------------------------------------------
|
|
84349
84452
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
84350
84453
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -84355,6 +84458,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
84355
84458
|
|
|
84356
84459
|
|
|
84357
84460
|
|
|
84461
|
+
|
|
84358
84462
|
/***/ }),
|
|
84359
84463
|
|
|
84360
84464
|
/***/ "../../core/common/lib/esm/ipc/IpcSession.js":
|
|
@@ -95436,212 +95540,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95436
95540
|
* WITH clauses are broken down into individual variables.
|
|
95437
95541
|
*/
|
|
95438
95542
|
const propertyType = (alias) => {
|
|
95439
|
-
return `
|
|
95440
|
-
CASE
|
|
95441
|
-
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
95442
|
-
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
95443
|
-
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
95444
|
-
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
95445
|
-
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
95446
|
-
ELSE NULL
|
|
95447
|
-
END
|
|
95543
|
+
return `
|
|
95544
|
+
CASE
|
|
95545
|
+
WHEN [${alias}].[Kind] = 0 THEN 'PrimitiveProperty'
|
|
95546
|
+
WHEN [${alias}].[Kind] = 1 THEN 'StructProperty'
|
|
95547
|
+
WHEN [${alias}].[Kind] = 2 THEN 'PrimitiveArrayProperty'
|
|
95548
|
+
WHEN [${alias}].[Kind] = 3 THEN 'StructArrayProperty'
|
|
95549
|
+
WHEN [${alias}].[Kind] = 4 THEN 'NavigationProperty'
|
|
95550
|
+
ELSE NULL
|
|
95551
|
+
END
|
|
95448
95552
|
`;
|
|
95449
95553
|
};
|
|
95450
95554
|
const navigationDirection = (alias) => {
|
|
95451
|
-
return `
|
|
95452
|
-
CASE
|
|
95453
|
-
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
95454
|
-
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
95455
|
-
ELSE NULL
|
|
95456
|
-
END
|
|
95555
|
+
return `
|
|
95556
|
+
CASE
|
|
95557
|
+
WHEN [${alias}].[NavigationDirection] = 1 THEN 'Forward'
|
|
95558
|
+
WHEN [${alias}].[NavigationDirection] = 2 THEN 'Backward'
|
|
95559
|
+
ELSE NULL
|
|
95560
|
+
END
|
|
95457
95561
|
`;
|
|
95458
95562
|
};
|
|
95459
95563
|
const schemaCustomAttribute = (alias) => {
|
|
95460
|
-
return `
|
|
95461
|
-
SELECT
|
|
95462
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95463
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95464
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
95465
|
-
ORDER BY [ca].[Ordinal]
|
|
95564
|
+
return `
|
|
95565
|
+
SELECT
|
|
95566
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95567
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95568
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 1
|
|
95569
|
+
ORDER BY [ca].[Ordinal]
|
|
95466
95570
|
`;
|
|
95467
95571
|
};
|
|
95468
95572
|
/**
|
|
95469
95573
|
* Selects customAttribute data for each class type.
|
|
95470
95574
|
*/
|
|
95471
95575
|
const classCustomAttribute = (alias) => {
|
|
95472
|
-
return `
|
|
95473
|
-
SELECT
|
|
95474
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95475
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95476
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
95477
|
-
ORDER BY [ca].[Ordinal]
|
|
95576
|
+
return `
|
|
95577
|
+
SELECT
|
|
95578
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95579
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95580
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
95581
|
+
ORDER BY [ca].[Ordinal]
|
|
95478
95582
|
`;
|
|
95479
95583
|
};
|
|
95480
95584
|
const propertyCustomAttribute = (alias) => {
|
|
95481
|
-
return `
|
|
95482
|
-
SELECT
|
|
95483
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95484
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95485
|
-
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
95486
|
-
ORDER BY [ca].[Ordinal]
|
|
95585
|
+
return `
|
|
95586
|
+
SELECT
|
|
95587
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95588
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95589
|
+
WHERE [ca].[ContainerId] = [${alias}].[ECInstanceId] AND [ca].[ContainerType] = 992
|
|
95590
|
+
ORDER BY [ca].[Ordinal]
|
|
95487
95591
|
`;
|
|
95488
95592
|
};
|
|
95489
95593
|
/**
|
|
95490
95594
|
* Selects base class data for each class type.
|
|
95491
95595
|
*/
|
|
95492
|
-
const selectBaseClasses = `
|
|
95493
|
-
SELECT
|
|
95494
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
95495
|
-
FROM
|
|
95496
|
-
[meta].[ECClassDef] [baseClass]
|
|
95497
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
95498
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
95499
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
95500
|
-
|
|
95596
|
+
const selectBaseClasses = `
|
|
95597
|
+
SELECT
|
|
95598
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
95599
|
+
FROM
|
|
95600
|
+
[meta].[ECClassDef] [baseClass]
|
|
95601
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
95602
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
95603
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
95604
|
+
ORDER BY [baseClassMap].[Ordinal] ASC
|
|
95605
|
+
LIMIT 1
|
|
95501
95606
|
`;
|
|
95502
95607
|
/**
|
|
95503
95608
|
* Selects class property data for each class type. ClassProperties
|
|
95504
95609
|
* is a common table expression (CTE or WITH clause) defined below.
|
|
95505
95610
|
*/
|
|
95506
|
-
const selectProperties = `
|
|
95507
|
-
SELECT
|
|
95508
|
-
json_group_array(json([classProperties].[property]))
|
|
95509
|
-
FROM
|
|
95510
|
-
[ClassProperties] [classProperties]
|
|
95511
|
-
WHERE
|
|
95512
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
95611
|
+
const selectProperties = `
|
|
95612
|
+
SELECT
|
|
95613
|
+
json_group_array(json([classProperties].[property]))
|
|
95614
|
+
FROM
|
|
95615
|
+
[ClassProperties] [classProperties]
|
|
95616
|
+
WHERE
|
|
95617
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
95513
95618
|
`;
|
|
95514
95619
|
/**
|
|
95515
95620
|
* A CTE used to select AppliesTo from IsMixin CustomAttributes for a given Mixin.
|
|
95516
95621
|
*/
|
|
95517
|
-
const withAppliesTo = `
|
|
95518
|
-
AppliesToCTE AS (
|
|
95519
|
-
SELECT
|
|
95520
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
95521
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
95522
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
95523
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95524
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
95525
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
95526
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
95527
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
95528
|
-
WHERE [ca].[ContainerType] = 30
|
|
95529
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
95530
|
-
)
|
|
95622
|
+
const withAppliesTo = `
|
|
95623
|
+
AppliesToCTE AS (
|
|
95624
|
+
SELECT
|
|
95625
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
95626
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
95627
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
95628
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95629
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
95630
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
95631
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
95632
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
95633
|
+
WHERE [ca].[ContainerType] = 30
|
|
95634
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
95635
|
+
)
|
|
95531
95636
|
`;
|
|
95532
95637
|
/**
|
|
95533
95638
|
* A CTE used to select Schema reference data for a given Schema.
|
|
95534
95639
|
*/
|
|
95535
|
-
const withSchemaReferences = `
|
|
95536
|
-
SchemaReferences as (
|
|
95537
|
-
SELECT
|
|
95538
|
-
[ref].[SourceECInstanceId] as [SchemaId],
|
|
95539
|
-
json_object(
|
|
95540
|
-
'name', [Name],
|
|
95541
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
95542
|
-
) as [reference]
|
|
95543
|
-
FROM
|
|
95544
|
-
[meta].[ECSchemaDef] as [refSchema]
|
|
95545
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
95546
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
95547
|
-
)
|
|
95640
|
+
const withSchemaReferences = `
|
|
95641
|
+
SchemaReferences as (
|
|
95642
|
+
SELECT
|
|
95643
|
+
[ref].[SourceECInstanceId] as [SchemaId],
|
|
95644
|
+
json_object(
|
|
95645
|
+
'name', [Name],
|
|
95646
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor]))
|
|
95647
|
+
) as [reference]
|
|
95648
|
+
FROM
|
|
95649
|
+
[meta].[ECSchemaDef] as [refSchema]
|
|
95650
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
95651
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
95652
|
+
)
|
|
95548
95653
|
`;
|
|
95549
95654
|
/**
|
|
95550
95655
|
* A CTE used to select Relationship constraints for a given RelationshipClass.
|
|
95551
95656
|
*/
|
|
95552
|
-
const withRelationshipConstraints = `
|
|
95553
|
-
ClassRelationshipConstraints as (
|
|
95554
|
-
SELECT
|
|
95555
|
-
[rhc].[SourceECInstanceId] as [ClassId],
|
|
95556
|
-
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
95557
|
-
[RelationshipEnd],
|
|
95558
|
-
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
95559
|
-
[IsPolyMorphic],
|
|
95560
|
-
[RoleLabel],
|
|
95561
|
-
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
95562
|
-
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
95563
|
-
FROM
|
|
95564
|
-
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
95565
|
-
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
95566
|
-
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
95567
|
-
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
95568
|
-
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
95569
|
-
GROUP BY [constraintDef].[ECInstanceId]
|
|
95570
|
-
)
|
|
95657
|
+
const withRelationshipConstraints = `
|
|
95658
|
+
ClassRelationshipConstraints as (
|
|
95659
|
+
SELECT
|
|
95660
|
+
[rhc].[SourceECInstanceId] as [ClassId],
|
|
95661
|
+
[constraintDef].[ECInstanceId] as [ConstraintId],
|
|
95662
|
+
[RelationshipEnd],
|
|
95663
|
+
CONCAT('(', [MultiplicityLowerLimit], '..', IIF([MultiplicityUpperLimit] IS NULL, '*', [MultiplicityUpperLimit]), ')') as [Multiplicity],
|
|
95664
|
+
[IsPolyMorphic],
|
|
95665
|
+
[RoleLabel],
|
|
95666
|
+
IIF([constraintDef].[AbstractConstraintClass] IS NOT NULL, ec_classname([constraintDef].[AbstractConstraintClass].[Id], 's.c'), null) as [AbstractConstraint],
|
|
95667
|
+
IIF ([rchc].[TargetECInstanceId] IS NOT NULL, JSON_GROUP_ARRAY(ec_classname([rchc].[TargetECInstanceId], 's.c')), null) as [ConstraintClasses]
|
|
95668
|
+
FROM
|
|
95669
|
+
[meta].[ECRelationshipConstraintDef] [constraintDef]
|
|
95670
|
+
JOIN [meta].[RelationshipHasConstraints] [rhc]
|
|
95671
|
+
ON [rhc].[TargetECInstanceId] = [constraintDef].[ECInstanceId]
|
|
95672
|
+
JOIN [meta].[RelationshipConstraintHasClasses] [rchc]
|
|
95673
|
+
ON [rchc].[SourceECInstanceId] = [constraintDef].[ECInstanceId]
|
|
95674
|
+
GROUP BY [constraintDef].[ECInstanceId]
|
|
95675
|
+
)
|
|
95571
95676
|
`;
|
|
95572
95677
|
/**
|
|
95573
95678
|
* A CTE used to select Class property data for a given Class.
|
|
95574
95679
|
*/
|
|
95575
|
-
const withClassProperties = `
|
|
95576
|
-
ClassProperties as (
|
|
95577
|
-
SELECT
|
|
95578
|
-
[cop].[SourceECInstanceId] as [ClassId],
|
|
95579
|
-
json_object(
|
|
95580
|
-
'name', [pd].[Name],
|
|
95581
|
-
'label', [pd].[DisplayLabel],
|
|
95582
|
-
'description', [pd].[Description],
|
|
95583
|
-
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
95584
|
-
'priority', [pd].[Priority],
|
|
95585
|
-
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
95586
|
-
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
95587
|
-
'typeName',
|
|
95588
|
-
CASE
|
|
95589
|
-
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
95590
|
-
CASE
|
|
95591
|
-
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
95592
|
-
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
95593
|
-
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
95594
|
-
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
95595
|
-
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
95596
|
-
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
95597
|
-
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
95598
|
-
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
95599
|
-
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
95600
|
-
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
95601
|
-
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
95602
|
-
ELSE null
|
|
95603
|
-
END
|
|
95604
|
-
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
95605
|
-
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
95606
|
-
ELSE null
|
|
95607
|
-
END,
|
|
95608
|
-
'type', ${propertyType("pd")},
|
|
95609
|
-
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
95610
|
-
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
95611
|
-
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
95612
|
-
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
95613
|
-
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
95614
|
-
'minOccurs', [pd].[ArrayMinOccurs],
|
|
95615
|
-
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
95616
|
-
'direction', ${navigationDirection("pd")},
|
|
95617
|
-
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
95618
|
-
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
95619
|
-
) as [property]
|
|
95620
|
-
FROM
|
|
95621
|
-
[meta].[ECPropertyDef] as [pd]
|
|
95622
|
-
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
95623
|
-
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
95624
|
-
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
95625
|
-
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
95626
|
-
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
95627
|
-
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
95628
|
-
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
95629
|
-
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
95630
|
-
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
95631
|
-
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
95632
|
-
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
95633
|
-
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
95634
|
-
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
95635
|
-
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
95636
|
-
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
95637
|
-
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
95638
|
-
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
95639
|
-
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
95640
|
-
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
95641
|
-
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
95642
|
-
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
95643
|
-
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
95644
|
-
)
|
|
95680
|
+
const withClassProperties = `
|
|
95681
|
+
ClassProperties as (
|
|
95682
|
+
SELECT
|
|
95683
|
+
[cop].[SourceECInstanceId] as [ClassId],
|
|
95684
|
+
json_object(
|
|
95685
|
+
'name', [pd].[Name],
|
|
95686
|
+
'label', [pd].[DisplayLabel],
|
|
95687
|
+
'description', [pd].[Description],
|
|
95688
|
+
'isReadOnly', IIF([pd].[IsReadOnly] = 1, json('true'), NULL),
|
|
95689
|
+
'priority', [pd].[Priority],
|
|
95690
|
+
'category', IIF([categoryDef].[Name] IS NULL, NULL, CONCAT([categorySchemaDef].[Name], '.', [categoryDef].[Name])),
|
|
95691
|
+
'kindOfQuantity', IIF([koqDef].[Name] IS NULL, NULL, CONCAT([koqSchemaDef].[Name], '.', [koqDef].[Name])),
|
|
95692
|
+
'typeName',
|
|
95693
|
+
CASE
|
|
95694
|
+
WHEN [pd].[Kind] = 0 OR [pd].[Kind] = 2 Then
|
|
95695
|
+
CASE
|
|
95696
|
+
WHEN [enumDef].[Name] IS NOT NULL Then CONCAT([enumSchemaDef].[Name], '.', [enumDef].[Name])
|
|
95697
|
+
WHEN [pd].[PrimitiveType] = 257 Then 'binary'
|
|
95698
|
+
WHEN [pd].[PrimitiveType] = 513 Then 'boolean'
|
|
95699
|
+
WHEN [pd].[PrimitiveType] = 769 Then 'dateTime'
|
|
95700
|
+
WHEN [pd].[PrimitiveType] = 1025 Then 'double'
|
|
95701
|
+
WHEN [pd].[PrimitiveType] = 1281 Then 'int'
|
|
95702
|
+
WHEN [pd].[PrimitiveType] = 1537 Then 'long'
|
|
95703
|
+
WHEN [pd].[PrimitiveType] = 1793 Then 'point2d'
|
|
95704
|
+
WHEN [pd].[PrimitiveType] = 2049 Then 'point3d'
|
|
95705
|
+
WHEN [pd].[PrimitiveType] = 2305 Then 'string'
|
|
95706
|
+
WHEN [pd].[PrimitiveType] = 2561 Then 'Bentley.Geometry.Common.IGeometry'
|
|
95707
|
+
ELSE null
|
|
95708
|
+
END
|
|
95709
|
+
WHEN [pd].[Kind] = 1 OR [pd].[Kind] = 3 Then
|
|
95710
|
+
CONCAT([structSchemaDef].[Name], '.', [structDef].[Name])
|
|
95711
|
+
ELSE null
|
|
95712
|
+
END,
|
|
95713
|
+
'type', ${propertyType("pd")},
|
|
95714
|
+
'minLength', [pd].[PrimitiveTypeMinLength],
|
|
95715
|
+
'maxLength', [pd].[PrimitiveTypeMaxLength],
|
|
95716
|
+
'minValue', [pd].[PrimitiveTypeMinValue],
|
|
95717
|
+
'maxValue', [pd].[PrimitiveTypeMaxValue],
|
|
95718
|
+
'extendedTypeName', [pd].[ExtendedTypeName],
|
|
95719
|
+
'minOccurs', [pd].[ArrayMinOccurs],
|
|
95720
|
+
'maxOccurs', [pd].[ArrayMaxOccurs],
|
|
95721
|
+
'direction', ${navigationDirection("pd")},
|
|
95722
|
+
'relationshipName', IIF([navRelDef].[Name] IS NULL, NULL, CONCAT([navSchemaDef].[Name], '.', [navRelDef].[Name])),
|
|
95723
|
+
'customAttributes', (${propertyCustomAttribute("pd")})
|
|
95724
|
+
) as [property]
|
|
95725
|
+
FROM
|
|
95726
|
+
[meta].[ECPropertyDef] as [pd]
|
|
95727
|
+
JOIN [meta].[ClassOwnsLocalProperties] [cop]
|
|
95728
|
+
ON cop.[TargetECInstanceId] = [pd].[ECInstanceId]
|
|
95729
|
+
LEFT JOIN [meta].[ECEnumerationDef] [enumDef]
|
|
95730
|
+
ON [enumDef].[ECInstanceId] = [pd].[Enumeration].[Id]
|
|
95731
|
+
LEFT JOIN [meta].[ECSchemaDef] enumSchemaDef
|
|
95732
|
+
ON [enumSchemaDef].[ECInstanceId] = [enumDef].[Schema].[Id]
|
|
95733
|
+
LEFT JOIN [meta].[PropertyCategoryDef] [categoryDef]
|
|
95734
|
+
ON [categoryDef].[ECInstanceId] = [pd].[Category].[Id]
|
|
95735
|
+
LEFT JOIN [meta].[ECSchemaDef] [categorySchemaDef]
|
|
95736
|
+
ON [categorySchemaDef].[ECInstanceId] = [categoryDef].[Schema].[Id]
|
|
95737
|
+
LEFT JOIN [meta].[KindOfQuantityDef] [koqDef]
|
|
95738
|
+
ON [koqDef].[ECInstanceId] = [pd].[KindOfQuantity].[Id]
|
|
95739
|
+
LEFT JOIN [meta].[ECSchemaDef] [koqSchemaDef]
|
|
95740
|
+
ON [koqSchemaDef].[ECInstanceId] = [koqDef].[Schema].[Id]
|
|
95741
|
+
LEFT JOIN [meta].[ECClassDef] [structDef]
|
|
95742
|
+
ON structDef.[ECInstanceId] = [pd].[StructClass].[Id]
|
|
95743
|
+
LEFT JOIN [meta].[ECSchemaDef] [structSchemaDef]
|
|
95744
|
+
ON [structSchemaDef].[ECInstanceId] = [structDef].[Schema].[Id]
|
|
95745
|
+
LEFT JOIN [meta].[ECClassDef] [navRelDef]
|
|
95746
|
+
ON [navRelDef].[ECInstanceId] = [pd].[NavigationRelationshipClass].[Id]
|
|
95747
|
+
LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
95748
|
+
ON [navSchemaDef].[ECInstanceId] = [navRelDef].[Schema].[Id]
|
|
95749
|
+
)
|
|
95645
95750
|
`;
|
|
95646
95751
|
/**
|
|
95647
95752
|
* Query that provides EntityClass data and is shared by two cases:
|
|
@@ -95649,52 +95754,52 @@ LEFT JOIN [meta].[ECSchemaDef] [navSchemaDef]
|
|
|
95649
95754
|
* 2. When querying a full schema with multiple schema item queries or
|
|
95650
95755
|
* when just querying for Entity classes.
|
|
95651
95756
|
*/
|
|
95652
|
-
const baseEntityQuery = `
|
|
95653
|
-
SELECT
|
|
95654
|
-
[sd].[Name] as [schema],
|
|
95655
|
-
json_object (
|
|
95656
|
-
'schemaItemType', 'EntityClass',
|
|
95657
|
-
'name', [class].[Name],
|
|
95658
|
-
'label', [class].[DisplayLabel],
|
|
95659
|
-
'description', [class].[Description],
|
|
95660
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95661
|
-
'baseClass', (
|
|
95662
|
-
${selectBaseClasses}
|
|
95663
|
-
),
|
|
95664
|
-
'mixins', (
|
|
95665
|
-
SELECT
|
|
95666
|
-
json_group_array(
|
|
95667
|
-
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
95668
|
-
)
|
|
95669
|
-
FROM
|
|
95670
|
-
[meta].[ECClassDef] [baseClass]
|
|
95671
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
95672
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
95673
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
95674
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
95675
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
95676
|
-
),
|
|
95677
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
95678
|
-
'properties', (
|
|
95679
|
-
${selectProperties}
|
|
95680
|
-
)
|
|
95681
|
-
) AS [item]
|
|
95682
|
-
FROM [meta].[ECClassDef] [class]
|
|
95683
|
-
JOIN
|
|
95684
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95685
|
-
WHERE [class].[Type] = 0 AND
|
|
95686
|
-
[sd].[Name] = :schemaName
|
|
95687
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
95688
|
-
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
95757
|
+
const baseEntityQuery = `
|
|
95758
|
+
SELECT
|
|
95759
|
+
[sd].[Name] as [schema],
|
|
95760
|
+
json_object (
|
|
95761
|
+
'schemaItemType', 'EntityClass',
|
|
95762
|
+
'name', [class].[Name],
|
|
95763
|
+
'label', [class].[DisplayLabel],
|
|
95764
|
+
'description', [class].[Description],
|
|
95765
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95766
|
+
'baseClass', (
|
|
95767
|
+
${selectBaseClasses}
|
|
95768
|
+
),
|
|
95769
|
+
'mixins', (
|
|
95770
|
+
SELECT
|
|
95771
|
+
json_group_array(
|
|
95772
|
+
ec_classname([baseClass].[ECInstanceId], 's.c')
|
|
95773
|
+
)
|
|
95774
|
+
FROM
|
|
95775
|
+
[meta].[ECClassDef] [baseClass]
|
|
95776
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
95777
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseClass].[ECInstanceId]
|
|
95778
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
95779
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
95780
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
95781
|
+
),
|
|
95782
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
95783
|
+
'properties', (
|
|
95784
|
+
${selectProperties}
|
|
95785
|
+
)
|
|
95786
|
+
) AS [item]
|
|
95787
|
+
FROM [meta].[ECClassDef] [class]
|
|
95788
|
+
JOIN
|
|
95789
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95790
|
+
WHERE [class].[Type] = 0 AND
|
|
95791
|
+
[sd].[Name] = :schemaName
|
|
95792
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
95793
|
+
AND [ca].[CustomAttributeClass].Id Is ([CoreCA].[IsMixin]))
|
|
95689
95794
|
`;
|
|
95690
95795
|
/**
|
|
95691
95796
|
* EntityClass query used to when querying for EntityClass data only. Not used
|
|
95692
95797
|
* for full Schema load via single query.
|
|
95693
95798
|
*/
|
|
95694
|
-
const entityQuery = `
|
|
95695
|
-
WITH
|
|
95696
|
-
${withClassProperties}
|
|
95697
|
-
${baseEntityQuery}
|
|
95799
|
+
const entityQuery = `
|
|
95800
|
+
WITH
|
|
95801
|
+
${withClassProperties}
|
|
95802
|
+
${baseEntityQuery}
|
|
95698
95803
|
`;
|
|
95699
95804
|
/**
|
|
95700
95805
|
* Query that provides Mixin data and is shared by two cases:
|
|
@@ -95702,56 +95807,56 @@ const entityQuery = `
|
|
|
95702
95807
|
* 2. When querying a full schema with multiple schema item queries or
|
|
95703
95808
|
* when just querying for Mixin classes.
|
|
95704
95809
|
*/
|
|
95705
|
-
const baseMixinQuery = `
|
|
95706
|
-
SELECT
|
|
95707
|
-
[sd].[Name] as [schema],
|
|
95708
|
-
json_object (
|
|
95709
|
-
'schemaItemType', 'Mixin',
|
|
95710
|
-
'name', [class].[Name],
|
|
95711
|
-
'label', [class].[DisplayLabel],
|
|
95712
|
-
'description', [class].[Description],
|
|
95713
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95714
|
-
'baseClass', (
|
|
95715
|
-
${selectBaseClasses}
|
|
95716
|
-
),
|
|
95717
|
-
'appliesTo', (
|
|
95718
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
95719
|
-
FROM [AppliesToCTE] [atCTE]
|
|
95720
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
95721
|
-
),
|
|
95722
|
-
'customAttributes', (
|
|
95723
|
-
SELECT
|
|
95724
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95725
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95726
|
-
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
95727
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
95728
|
-
),
|
|
95729
|
-
'properties', (
|
|
95730
|
-
SELECT
|
|
95731
|
-
json_group_array(json([classProperties].[property]))
|
|
95732
|
-
FROM
|
|
95733
|
-
[ClassProperties] [classProperties]
|
|
95734
|
-
WHERE
|
|
95735
|
-
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
95736
|
-
)
|
|
95737
|
-
) AS [item]
|
|
95738
|
-
FROM [meta].[ECClassDef] [class]
|
|
95739
|
-
JOIN
|
|
95740
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95741
|
-
WHERE [class].[Type] = 0 AND
|
|
95742
|
-
[sd].[Name] = :schemaName
|
|
95743
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
95744
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
95810
|
+
const baseMixinQuery = `
|
|
95811
|
+
SELECT
|
|
95812
|
+
[sd].[Name] as [schema],
|
|
95813
|
+
json_object (
|
|
95814
|
+
'schemaItemType', 'Mixin',
|
|
95815
|
+
'name', [class].[Name],
|
|
95816
|
+
'label', [class].[DisplayLabel],
|
|
95817
|
+
'description', [class].[Description],
|
|
95818
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95819
|
+
'baseClass', (
|
|
95820
|
+
${selectBaseClasses}
|
|
95821
|
+
),
|
|
95822
|
+
'appliesTo', (
|
|
95823
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
95824
|
+
FROM [AppliesToCTE] [atCTE]
|
|
95825
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
95826
|
+
),
|
|
95827
|
+
'customAttributes', (
|
|
95828
|
+
SELECT
|
|
95829
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95830
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95831
|
+
WHERE [ca].[ContainerId] = [class].[ECInstanceId] AND [ca].[ContainerType] = 30
|
|
95832
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') <> 'IsMixin'
|
|
95833
|
+
),
|
|
95834
|
+
'properties', (
|
|
95835
|
+
SELECT
|
|
95836
|
+
json_group_array(json([classProperties].[property]))
|
|
95837
|
+
FROM
|
|
95838
|
+
[ClassProperties] [classProperties]
|
|
95839
|
+
WHERE
|
|
95840
|
+
[classProperties].[ClassId] = [class].[ECInstanceId]
|
|
95841
|
+
)
|
|
95842
|
+
) AS [item]
|
|
95843
|
+
FROM [meta].[ECClassDef] [class]
|
|
95844
|
+
JOIN
|
|
95845
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95846
|
+
WHERE [class].[Type] = 0 AND
|
|
95847
|
+
[sd].[Name] = :schemaName
|
|
95848
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
95849
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
95745
95850
|
`;
|
|
95746
95851
|
/**
|
|
95747
95852
|
* Mixin query used to when querying for Mixin data only. Not used
|
|
95748
95853
|
* for full Schema load via single query.
|
|
95749
95854
|
*/
|
|
95750
|
-
const mixinQuery = `
|
|
95751
|
-
WITH
|
|
95752
|
-
${withAppliesTo},
|
|
95753
|
-
${withClassProperties}
|
|
95754
|
-
${baseMixinQuery}
|
|
95855
|
+
const mixinQuery = `
|
|
95856
|
+
WITH
|
|
95857
|
+
${withAppliesTo},
|
|
95858
|
+
${withClassProperties}
|
|
95859
|
+
${baseMixinQuery}
|
|
95755
95860
|
`;
|
|
95756
95861
|
/**
|
|
95757
95862
|
* Query that provides RelationshipClass data and is shared by two cases:
|
|
@@ -95759,82 +95864,82 @@ ${baseMixinQuery}
|
|
|
95759
95864
|
* 2. When querying a full schema with multiple schema item queries or
|
|
95760
95865
|
* when just querying for Relationship classes.
|
|
95761
95866
|
*/
|
|
95762
|
-
const baseRelationshipClassQuery = `
|
|
95763
|
-
SELECT
|
|
95764
|
-
[sd].Name as schema,
|
|
95765
|
-
json_object (
|
|
95766
|
-
'schemaItemType', 'RelationshipClass',
|
|
95767
|
-
'name', [class].[Name],
|
|
95768
|
-
'label', [class].[DisplayLabel],
|
|
95769
|
-
'description', [class].[Description],
|
|
95770
|
-
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
95771
|
-
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
95772
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95773
|
-
'baseClass', (
|
|
95774
|
-
${selectBaseClasses}
|
|
95775
|
-
),
|
|
95776
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
95777
|
-
'properties', (
|
|
95778
|
-
${selectProperties}
|
|
95779
|
-
),
|
|
95780
|
-
'source', (
|
|
95781
|
-
SELECT
|
|
95782
|
-
json_object (
|
|
95783
|
-
'multiplicity', [sourceConst].[Multiplicity],
|
|
95784
|
-
'roleLabel', [sourceConst].[RoleLabel],
|
|
95785
|
-
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
95786
|
-
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
95787
|
-
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
95788
|
-
'customAttributes', (
|
|
95789
|
-
SELECT
|
|
95790
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95791
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95792
|
-
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
95793
|
-
ORDER BY [ca].[Ordinal]
|
|
95794
|
-
)
|
|
95795
|
-
)
|
|
95796
|
-
FROM
|
|
95797
|
-
[ClassRelationshipConstraints] [sourceConst]
|
|
95798
|
-
WHERE [sourceConst].[relationshipEnd] = 0
|
|
95799
|
-
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
95800
|
-
),
|
|
95801
|
-
'target', (
|
|
95802
|
-
SELECT
|
|
95803
|
-
json_object (
|
|
95804
|
-
'multiplicity', [targetConst].[Multiplicity],
|
|
95805
|
-
'roleLabel', [targetConst].[RoleLabel],
|
|
95806
|
-
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
95807
|
-
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
95808
|
-
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
95809
|
-
'customAttributes', (
|
|
95810
|
-
SELECT
|
|
95811
|
-
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95812
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
95813
|
-
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
95814
|
-
ORDER BY [ca].[Ordinal]
|
|
95815
|
-
)
|
|
95816
|
-
)
|
|
95817
|
-
FROM
|
|
95818
|
-
[ClassRelationshipConstraints] [targetConst]
|
|
95819
|
-
WHERE [targetConst].[relationshipEnd] = 1
|
|
95820
|
-
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
95821
|
-
)
|
|
95822
|
-
) AS [item]
|
|
95823
|
-
FROM [meta].[ECClassDef] [class]
|
|
95824
|
-
JOIN
|
|
95825
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95826
|
-
WHERE [class].[Type] = 1 AND
|
|
95827
|
-
[sd].[Name] = :schemaName
|
|
95867
|
+
const baseRelationshipClassQuery = `
|
|
95868
|
+
SELECT
|
|
95869
|
+
[sd].Name as schema,
|
|
95870
|
+
json_object (
|
|
95871
|
+
'schemaItemType', 'RelationshipClass',
|
|
95872
|
+
'name', [class].[Name],
|
|
95873
|
+
'label', [class].[DisplayLabel],
|
|
95874
|
+
'description', [class].[Description],
|
|
95875
|
+
'strength', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strength)("class")},
|
|
95876
|
+
'strengthDirection', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.strengthDirection)("class")},
|
|
95877
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95878
|
+
'baseClass', (
|
|
95879
|
+
${selectBaseClasses}
|
|
95880
|
+
),
|
|
95881
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
95882
|
+
'properties', (
|
|
95883
|
+
${selectProperties}
|
|
95884
|
+
),
|
|
95885
|
+
'source', (
|
|
95886
|
+
SELECT
|
|
95887
|
+
json_object (
|
|
95888
|
+
'multiplicity', [sourceConst].[Multiplicity],
|
|
95889
|
+
'roleLabel', [sourceConst].[RoleLabel],
|
|
95890
|
+
'polymorphic', IIF([sourceConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
95891
|
+
'abstractConstraint', [sourceConst].[AbstractConstraint],
|
|
95892
|
+
'constraintClasses', json([sourceConst].[ConstraintClasses]),
|
|
95893
|
+
'customAttributes', (
|
|
95894
|
+
SELECT
|
|
95895
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95896
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95897
|
+
WHERE [ca].[ContainerId] = [sourceConst].[ConstraintId] AND [ca].[ContainerType] = 1024
|
|
95898
|
+
ORDER BY [ca].[Ordinal]
|
|
95899
|
+
)
|
|
95900
|
+
)
|
|
95901
|
+
FROM
|
|
95902
|
+
[ClassRelationshipConstraints] [sourceConst]
|
|
95903
|
+
WHERE [sourceConst].[relationshipEnd] = 0
|
|
95904
|
+
AND [sourceConst].[ClassId] = [class].[ECInstanceId]
|
|
95905
|
+
),
|
|
95906
|
+
'target', (
|
|
95907
|
+
SELECT
|
|
95908
|
+
json_object (
|
|
95909
|
+
'multiplicity', [targetConst].[Multiplicity],
|
|
95910
|
+
'roleLabel', [targetConst].[RoleLabel],
|
|
95911
|
+
'polymorphic', IIF([targetConst].[IsPolyMorphic] = 1, json('true'), json('false')),
|
|
95912
|
+
'abstractConstraint', [targetConst].[AbstractConstraint],
|
|
95913
|
+
'constraintClasses', json([targetConst].[ConstraintClasses]),
|
|
95914
|
+
'customAttributes', (
|
|
95915
|
+
SELECT
|
|
95916
|
+
json_group_array(json(XmlCAToJson([ca].[Class].[Id], [ca].[Instance])))
|
|
95917
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
95918
|
+
WHERE [ca].[ContainerId] = [targetConst].[ConstraintId] AND [ca].[ContainerType] = 2048
|
|
95919
|
+
ORDER BY [ca].[Ordinal]
|
|
95920
|
+
)
|
|
95921
|
+
)
|
|
95922
|
+
FROM
|
|
95923
|
+
[ClassRelationshipConstraints] [targetConst]
|
|
95924
|
+
WHERE [targetConst].[relationshipEnd] = 1
|
|
95925
|
+
AND [targetConst].[ClassId] = [class].[ECInstanceId]
|
|
95926
|
+
)
|
|
95927
|
+
) AS [item]
|
|
95928
|
+
FROM [meta].[ECClassDef] [class]
|
|
95929
|
+
JOIN
|
|
95930
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95931
|
+
WHERE [class].[Type] = 1 AND
|
|
95932
|
+
[sd].[Name] = :schemaName
|
|
95828
95933
|
`;
|
|
95829
95934
|
/**
|
|
95830
95935
|
* RelationshipClass query used to when querying for RelationshipClass data only. Not used
|
|
95831
95936
|
* for full Schema load via single query.
|
|
95832
95937
|
*/
|
|
95833
|
-
const relationshipClassQuery = `
|
|
95834
|
-
WITH
|
|
95835
|
-
${withClassProperties},
|
|
95836
|
-
${withRelationshipConstraints}
|
|
95837
|
-
${baseRelationshipClassQuery}
|
|
95938
|
+
const relationshipClassQuery = `
|
|
95939
|
+
WITH
|
|
95940
|
+
${withClassProperties},
|
|
95941
|
+
${withRelationshipConstraints}
|
|
95942
|
+
${baseRelationshipClassQuery}
|
|
95838
95943
|
`;
|
|
95839
95944
|
/**
|
|
95840
95945
|
* Query that provides StructClass data and is shared by two cases:
|
|
@@ -95842,37 +95947,37 @@ ${baseRelationshipClassQuery}
|
|
|
95842
95947
|
* 2. When querying a full schema with multiple schema item queries or
|
|
95843
95948
|
* when just querying for Struct classes.
|
|
95844
95949
|
*/
|
|
95845
|
-
const baseStructQuery = `
|
|
95846
|
-
SELECT
|
|
95847
|
-
[sd].Name as schema,
|
|
95848
|
-
json_object (
|
|
95849
|
-
'schemaItemType', 'StructClass',
|
|
95850
|
-
'name', [class].[Name],
|
|
95851
|
-
'label', [class].[DisplayLabel],
|
|
95852
|
-
'description', [class].[Description],
|
|
95853
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95854
|
-
'baseClass', (
|
|
95855
|
-
${selectBaseClasses}
|
|
95856
|
-
),
|
|
95857
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
95858
|
-
'properties', (
|
|
95859
|
-
${selectProperties}
|
|
95860
|
-
)
|
|
95861
|
-
) AS item
|
|
95862
|
-
FROM [meta].[ECClassDef] [class]
|
|
95863
|
-
JOIN
|
|
95864
|
-
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95865
|
-
WHERE [class].[Type] = 2 AND
|
|
95866
|
-
[sd].[Name] = :schemaName
|
|
95950
|
+
const baseStructQuery = `
|
|
95951
|
+
SELECT
|
|
95952
|
+
[sd].Name as schema,
|
|
95953
|
+
json_object (
|
|
95954
|
+
'schemaItemType', 'StructClass',
|
|
95955
|
+
'name', [class].[Name],
|
|
95956
|
+
'label', [class].[DisplayLabel],
|
|
95957
|
+
'description', [class].[Description],
|
|
95958
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95959
|
+
'baseClass', (
|
|
95960
|
+
${selectBaseClasses}
|
|
95961
|
+
),
|
|
95962
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
95963
|
+
'properties', (
|
|
95964
|
+
${selectProperties}
|
|
95965
|
+
)
|
|
95966
|
+
) AS item
|
|
95967
|
+
FROM [meta].[ECClassDef] [class]
|
|
95968
|
+
JOIN
|
|
95969
|
+
[meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95970
|
+
WHERE [class].[Type] = 2 AND
|
|
95971
|
+
[sd].[Name] = :schemaName
|
|
95867
95972
|
`;
|
|
95868
95973
|
/**
|
|
95869
95974
|
* StructClass query used to when querying for StructClass data only. Not used
|
|
95870
95975
|
* for full Schema load via single query.
|
|
95871
95976
|
*/
|
|
95872
|
-
const structQuery = `
|
|
95873
|
-
WITH
|
|
95874
|
-
${withClassProperties}
|
|
95875
|
-
${baseStructQuery}
|
|
95977
|
+
const structQuery = `
|
|
95978
|
+
WITH
|
|
95979
|
+
${withClassProperties}
|
|
95980
|
+
${baseStructQuery}
|
|
95876
95981
|
`;
|
|
95877
95982
|
/**
|
|
95878
95983
|
* Query that provides CustomAttributeClass data and is shared by two cases:
|
|
@@ -95880,141 +95985,141 @@ ${baseStructQuery}
|
|
|
95880
95985
|
* 2. When querying a full schema with multiple schema item queries or
|
|
95881
95986
|
* when just querying for CustomAttribute classes.
|
|
95882
95987
|
*/
|
|
95883
|
-
const baseCustomAttributeQuery = `
|
|
95884
|
-
SELECT
|
|
95885
|
-
[sd].Name as schema,
|
|
95886
|
-
json_object (
|
|
95887
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
95888
|
-
'name', [class].[Name],
|
|
95889
|
-
'label', [class].[DisplayLabel],
|
|
95890
|
-
'description', [class].[Description],
|
|
95891
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
95892
|
-
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95893
|
-
'baseClass', (
|
|
95894
|
-
${selectBaseClasses}
|
|
95895
|
-
),
|
|
95896
|
-
'customAttributes', (${classCustomAttribute("class")}),
|
|
95897
|
-
'properties', (
|
|
95898
|
-
${selectProperties}
|
|
95899
|
-
)
|
|
95900
|
-
) AS [item]
|
|
95901
|
-
FROM [meta].[ECClassDef] [class]
|
|
95902
|
-
JOIN
|
|
95903
|
-
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
95904
|
-
WHERE [class].[Type] = 3 AND
|
|
95905
|
-
[sd].[Name] = :schemaName
|
|
95988
|
+
const baseCustomAttributeQuery = `
|
|
95989
|
+
SELECT
|
|
95990
|
+
[sd].Name as schema,
|
|
95991
|
+
json_object (
|
|
95992
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
95993
|
+
'name', [class].[Name],
|
|
95994
|
+
'label', [class].[DisplayLabel],
|
|
95995
|
+
'description', [class].[Description],
|
|
95996
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
95997
|
+
'modifier', ${(0,_SchemaStubQueries__WEBPACK_IMPORTED_MODULE_1__.modifier)("class")},
|
|
95998
|
+
'baseClass', (
|
|
95999
|
+
${selectBaseClasses}
|
|
96000
|
+
),
|
|
96001
|
+
'customAttributes', (${classCustomAttribute("class")}),
|
|
96002
|
+
'properties', (
|
|
96003
|
+
${selectProperties}
|
|
96004
|
+
)
|
|
96005
|
+
) AS [item]
|
|
96006
|
+
FROM [meta].[ECClassDef] [class]
|
|
96007
|
+
JOIN
|
|
96008
|
+
[meta].[ECSchemaDef] sd ON [sd].[ECInstanceId] = [class].[Schema].[Id]
|
|
96009
|
+
WHERE [class].[Type] = 3 AND
|
|
96010
|
+
[sd].[Name] = :schemaName
|
|
95906
96011
|
`;
|
|
95907
96012
|
/**
|
|
95908
96013
|
* CustomAttributeClass query used to when querying for CustomAttributeClass data only. Not used
|
|
95909
96014
|
* for full Schema load via single query.
|
|
95910
96015
|
*/
|
|
95911
|
-
const customAttributeQuery = `
|
|
95912
|
-
WITH
|
|
95913
|
-
${withClassProperties}
|
|
95914
|
-
${baseCustomAttributeQuery}
|
|
96016
|
+
const customAttributeQuery = `
|
|
96017
|
+
WITH
|
|
96018
|
+
${withClassProperties}
|
|
96019
|
+
${baseCustomAttributeQuery}
|
|
95915
96020
|
`;
|
|
95916
96021
|
/**
|
|
95917
96022
|
* Used by full schema load query via single query. Allows
|
|
95918
96023
|
* all SchemaItemTypes to be queried at once.
|
|
95919
96024
|
*/
|
|
95920
|
-
const withSchemaItems = `
|
|
95921
|
-
SchemaItems AS (
|
|
95922
|
-
${baseEntityQuery}
|
|
95923
|
-
UNION ALL
|
|
95924
|
-
${baseRelationshipClassQuery}
|
|
95925
|
-
UNION ALL
|
|
95926
|
-
${baseStructQuery}
|
|
95927
|
-
UNION ALL
|
|
95928
|
-
${baseMixinQuery}
|
|
95929
|
-
UNION ALL
|
|
95930
|
-
${baseCustomAttributeQuery}
|
|
95931
|
-
UNION ALL
|
|
95932
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
95933
|
-
UNION ALL
|
|
95934
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
95935
|
-
UNION ALL
|
|
95936
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
95937
|
-
UNION ALL
|
|
95938
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
95939
|
-
UNION ALL
|
|
95940
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
95941
|
-
UNION ALL
|
|
95942
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
95943
|
-
UNION ALL
|
|
95944
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
95945
|
-
UNION ALL
|
|
95946
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
95947
|
-
UNION ALL
|
|
95948
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
95949
|
-
)
|
|
96025
|
+
const withSchemaItems = `
|
|
96026
|
+
SchemaItems AS (
|
|
96027
|
+
${baseEntityQuery}
|
|
96028
|
+
UNION ALL
|
|
96029
|
+
${baseRelationshipClassQuery}
|
|
96030
|
+
UNION ALL
|
|
96031
|
+
${baseStructQuery}
|
|
96032
|
+
UNION ALL
|
|
96033
|
+
${baseMixinQuery}
|
|
96034
|
+
UNION ALL
|
|
96035
|
+
${baseCustomAttributeQuery}
|
|
96036
|
+
UNION ALL
|
|
96037
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity(true)}
|
|
96038
|
+
UNION ALL
|
|
96039
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration(true)}
|
|
96040
|
+
UNION ALL
|
|
96041
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory(true)}
|
|
96042
|
+
UNION ALL
|
|
96043
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit(true)}
|
|
96044
|
+
UNION ALL
|
|
96045
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit(true)}
|
|
96046
|
+
UNION ALL
|
|
96047
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem(true)}
|
|
96048
|
+
UNION ALL
|
|
96049
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant(true)}
|
|
96050
|
+
UNION ALL
|
|
96051
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon(true)}
|
|
96052
|
+
UNION ALL
|
|
96053
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format(true)}
|
|
96054
|
+
)
|
|
95950
96055
|
`;
|
|
95951
96056
|
/**
|
|
95952
96057
|
* Query for Schema data without SchemaItems
|
|
95953
96058
|
*/
|
|
95954
|
-
const schemaNoItemsQuery = `
|
|
95955
|
-
WITH
|
|
95956
|
-
${withSchemaReferences}
|
|
95957
|
-
SELECT
|
|
95958
|
-
json_object (
|
|
95959
|
-
'name', [schemaDef].[Name],
|
|
95960
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
95961
|
-
'alias', [schemaDef].[Alias],
|
|
95962
|
-
'label', [schemaDef].[DisplayLabel],
|
|
95963
|
-
'description', [schemaDef].[Description],
|
|
95964
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
95965
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
95966
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
95967
|
-
'references', (
|
|
95968
|
-
SELECT
|
|
95969
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
95970
|
-
FROM
|
|
95971
|
-
[SchemaReferences] [schemaReferences]
|
|
95972
|
-
WHERE
|
|
95973
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
95974
|
-
)
|
|
95975
|
-
) as [schema]
|
|
95976
|
-
FROM
|
|
95977
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
96059
|
+
const schemaNoItemsQuery = `
|
|
96060
|
+
WITH
|
|
96061
|
+
${withSchemaReferences}
|
|
96062
|
+
SELECT
|
|
96063
|
+
json_object (
|
|
96064
|
+
'name', [schemaDef].[Name],
|
|
96065
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
96066
|
+
'alias', [schemaDef].[Alias],
|
|
96067
|
+
'label', [schemaDef].[DisplayLabel],
|
|
96068
|
+
'description', [schemaDef].[Description],
|
|
96069
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
96070
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
96071
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
96072
|
+
'references', (
|
|
96073
|
+
SELECT
|
|
96074
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
96075
|
+
FROM
|
|
96076
|
+
[SchemaReferences] [schemaReferences]
|
|
96077
|
+
WHERE
|
|
96078
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
96079
|
+
)
|
|
96080
|
+
) as [schema]
|
|
96081
|
+
FROM
|
|
96082
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
95978
96083
|
`;
|
|
95979
96084
|
/**
|
|
95980
96085
|
* Query to load a full Schema via a single query.
|
|
95981
96086
|
*/
|
|
95982
|
-
const schemaQuery = `
|
|
95983
|
-
WITH
|
|
95984
|
-
${withAppliesTo},
|
|
95985
|
-
${withSchemaReferences},
|
|
95986
|
-
${withClassProperties},
|
|
95987
|
-
${withRelationshipConstraints},
|
|
95988
|
-
${withSchemaItems}
|
|
95989
|
-
SELECT
|
|
95990
|
-
json_object (
|
|
95991
|
-
'name', [schemaDef].[Name],
|
|
95992
|
-
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
95993
|
-
'alias', [schemaDef].[Alias],
|
|
95994
|
-
'label', [schemaDef].[DisplayLabel],
|
|
95995
|
-
'description', [schemaDef].[Description],
|
|
95996
|
-
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
95997
|
-
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
95998
|
-
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
95999
|
-
'references', (
|
|
96000
|
-
SELECT
|
|
96001
|
-
json_group_array(json([schemaReferences].[reference]))
|
|
96002
|
-
FROM
|
|
96003
|
-
[SchemaReferences] [schemaReferences]
|
|
96004
|
-
WHERE
|
|
96005
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
96006
|
-
),
|
|
96007
|
-
'items', (
|
|
96008
|
-
SELECT
|
|
96009
|
-
json_group_array(json(json_object(
|
|
96010
|
-
'item', json([items].[item])
|
|
96011
|
-
)))
|
|
96012
|
-
FROM
|
|
96013
|
-
[SchemaItems] [items]
|
|
96014
|
-
)
|
|
96015
|
-
) as [schema]
|
|
96016
|
-
FROM
|
|
96017
|
-
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
96087
|
+
const schemaQuery = `
|
|
96088
|
+
WITH
|
|
96089
|
+
${withAppliesTo},
|
|
96090
|
+
${withSchemaReferences},
|
|
96091
|
+
${withClassProperties},
|
|
96092
|
+
${withRelationshipConstraints},
|
|
96093
|
+
${withSchemaItems}
|
|
96094
|
+
SELECT
|
|
96095
|
+
json_object (
|
|
96096
|
+
'name', [schemaDef].[Name],
|
|
96097
|
+
'version', CONCAT(printf('%02d', [VersionMajor]), '.', printf('%02d', [VersionWrite]), '.', printf('%02d', [VersionMinor])),
|
|
96098
|
+
'alias', [schemaDef].[Alias],
|
|
96099
|
+
'label', [schemaDef].[DisplayLabel],
|
|
96100
|
+
'description', [schemaDef].[Description],
|
|
96101
|
+
'ecSpecMajorVersion', [schemaDef].[OriginalECXmlVersionMajor],
|
|
96102
|
+
'ecSpecMinorVersion', [schemaDef].[OriginalECXmlVersionMinor],
|
|
96103
|
+
'customAttributes', (${schemaCustomAttribute("schemaDef")}),
|
|
96104
|
+
'references', (
|
|
96105
|
+
SELECT
|
|
96106
|
+
json_group_array(json([schemaReferences].[reference]))
|
|
96107
|
+
FROM
|
|
96108
|
+
[SchemaReferences] [schemaReferences]
|
|
96109
|
+
WHERE
|
|
96110
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
96111
|
+
),
|
|
96112
|
+
'items', (
|
|
96113
|
+
SELECT
|
|
96114
|
+
json_group_array(json(json_object(
|
|
96115
|
+
'item', json([items].[item])
|
|
96116
|
+
)))
|
|
96117
|
+
FROM
|
|
96118
|
+
[SchemaItems] [items]
|
|
96119
|
+
)
|
|
96120
|
+
) as [schema]
|
|
96121
|
+
FROM
|
|
96122
|
+
[meta].[ECSchemaDef] [schemaDef] WHERE [Name] = :schemaName
|
|
96018
96123
|
`;
|
|
96019
96124
|
/**
|
|
96020
96125
|
* Queries for loading full Schema JSON.
|
|
@@ -96479,7 +96584,7 @@ class KindOfQuantityParser extends SchemaItemParser {
|
|
|
96479
96584
|
}
|
|
96480
96585
|
createOverrideFormatString(overrideFormatProps) {
|
|
96481
96586
|
let formatFullName = this.getQualifiedTypeName(overrideFormatProps.name);
|
|
96482
|
-
if (overrideFormatProps.precision)
|
|
96587
|
+
if (overrideFormatProps.precision !== undefined)
|
|
96483
96588
|
formatFullName += `(${overrideFormatProps.precision.toString()})`;
|
|
96484
96589
|
if (undefined === overrideFormatProps.unitAndLabels)
|
|
96485
96590
|
return formatFullName;
|
|
@@ -96520,281 +96625,281 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
96520
96625
|
* Query for SchemaItemType KindOfQuantity data.
|
|
96521
96626
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96522
96627
|
*/
|
|
96523
|
-
const kindOfQuantity = (singleSchema) => `
|
|
96524
|
-
SELECT
|
|
96525
|
-
[koq].[Schema].[Id] AS [SchemaId],
|
|
96526
|
-
json_object (
|
|
96527
|
-
'schemaItemType', 'KindOfQuantity',
|
|
96528
|
-
'name', [koq].[Name],
|
|
96529
|
-
'label', [koq].[DisplayLabel],
|
|
96530
|
-
'description', [koq].[Description]
|
|
96531
|
-
|
|
96532
|
-
'persistenceUnit', [koq].[PersistenceUnit]
|
|
96533
|
-
${singleSchema ? `
|
|
96534
|
-
,
|
|
96535
|
-
SELECT json_group_array(js."value")
|
|
96536
|
-
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
96537
|
-
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
96538
|
-
) ` : ""}
|
|
96539
|
-
) as [item]
|
|
96540
|
-
FROM
|
|
96541
|
-
[meta].[KindOfQuantityDef] [koq]
|
|
96542
|
-
${singleSchema ? `
|
|
96543
|
-
JOIN
|
|
96544
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
96545
|
-
WHERE [schema].[Name] = :schemaName
|
|
96546
|
-
` : ""}
|
|
96628
|
+
const kindOfQuantity = (singleSchema) => `
|
|
96629
|
+
SELECT
|
|
96630
|
+
[koq].[Schema].[Id] AS [SchemaId],
|
|
96631
|
+
json_object (
|
|
96632
|
+
'schemaItemType', 'KindOfQuantity',
|
|
96633
|
+
'name', [koq].[Name],
|
|
96634
|
+
'label', [koq].[DisplayLabel],
|
|
96635
|
+
'description', [koq].[Description],
|
|
96636
|
+
'relativeError', [koq].[RelativeError],
|
|
96637
|
+
'persistenceUnit', [koq].[PersistenceUnit]
|
|
96638
|
+
${singleSchema ? `
|
|
96639
|
+
,'presentationUnits', (
|
|
96640
|
+
SELECT json_group_array(js."value")
|
|
96641
|
+
FROM [meta].[KindOfQuantityDef] [koq1], json1.json_each([PresentationUnits]) js
|
|
96642
|
+
WHERE [koq1].[ECInstanceId] = [koq].[ECInstanceId]
|
|
96643
|
+
) ` : ""}
|
|
96644
|
+
) as [item]
|
|
96645
|
+
FROM
|
|
96646
|
+
[meta].[KindOfQuantityDef] [koq]
|
|
96647
|
+
${singleSchema ? `
|
|
96648
|
+
JOIN
|
|
96649
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [koq].[Schema].[Id]
|
|
96650
|
+
WHERE [schema].[Name] = :schemaName
|
|
96651
|
+
` : ""}
|
|
96547
96652
|
`;
|
|
96548
96653
|
/**
|
|
96549
96654
|
* Query for SchemaItemType PropertyCategory data.
|
|
96550
96655
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96551
96656
|
*/
|
|
96552
|
-
const propertyCategory = (singleSchema) => `
|
|
96553
|
-
SELECT
|
|
96554
|
-
[pc].[Schema].[Id] AS [SchemaId],
|
|
96555
|
-
json_object (
|
|
96556
|
-
'schemaItemType', 'PropertyCategory',
|
|
96557
|
-
'name', [pc].[Name],
|
|
96558
|
-
'label', [pc].[DisplayLabel],
|
|
96559
|
-
'description', [pc].[Description],
|
|
96560
|
-
'priority', [pc].[Priority]
|
|
96561
|
-
) as [item]
|
|
96562
|
-
FROM
|
|
96563
|
-
[meta].[PropertyCategoryDef] [pc]
|
|
96564
|
-
${singleSchema ? `
|
|
96565
|
-
JOIN
|
|
96566
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
96567
|
-
WHERE [schema].[Name] = :schemaName
|
|
96568
|
-
` : ""}
|
|
96657
|
+
const propertyCategory = (singleSchema) => `
|
|
96658
|
+
SELECT
|
|
96659
|
+
[pc].[Schema].[Id] AS [SchemaId],
|
|
96660
|
+
json_object (
|
|
96661
|
+
'schemaItemType', 'PropertyCategory',
|
|
96662
|
+
'name', [pc].[Name],
|
|
96663
|
+
'label', [pc].[DisplayLabel],
|
|
96664
|
+
'description', [pc].[Description],
|
|
96665
|
+
'priority', [pc].[Priority]
|
|
96666
|
+
) as [item]
|
|
96667
|
+
FROM
|
|
96668
|
+
[meta].[PropertyCategoryDef] [pc]
|
|
96669
|
+
${singleSchema ? `
|
|
96670
|
+
JOIN
|
|
96671
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pc].[Schema].[Id]
|
|
96672
|
+
WHERE [schema].[Name] = :schemaName
|
|
96673
|
+
` : ""}
|
|
96569
96674
|
`;
|
|
96570
96675
|
/**
|
|
96571
96676
|
* Query for SchemaItemType Enumeration data.
|
|
96572
96677
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96573
96678
|
*/
|
|
96574
|
-
const enumeration = (singleSchema) => `
|
|
96575
|
-
SELECT
|
|
96576
|
-
[ed].[Schema].[Id] AS [SchemaId],
|
|
96577
|
-
json_object (
|
|
96578
|
-
'schemaItemType', 'Enumeration',
|
|
96579
|
-
'name', [ed].[Name],
|
|
96580
|
-
'label', [ed].[DisplayLabel],
|
|
96581
|
-
'description', [ed].[Description],
|
|
96582
|
-
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
96583
|
-
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
96584
|
-
'enumerators', (
|
|
96585
|
-
SELECT json_group_array(json(json_object(
|
|
96586
|
-
'name', json_extract(js."value", '$.Name'),
|
|
96587
|
-
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
96588
|
-
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
96589
|
-
'description', json_extract(js."value", '$.Description')
|
|
96590
|
-
)))
|
|
96591
|
-
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
96592
|
-
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
96593
|
-
)
|
|
96594
|
-
) as [item]
|
|
96595
|
-
FROM
|
|
96596
|
-
[meta].[ECEnumerationDef] [ed]
|
|
96597
|
-
${singleSchema ? `
|
|
96598
|
-
JOIN
|
|
96599
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
96600
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96679
|
+
const enumeration = (singleSchema) => `
|
|
96680
|
+
SELECT
|
|
96681
|
+
[ed].[Schema].[Id] AS [SchemaId],
|
|
96682
|
+
json_object (
|
|
96683
|
+
'schemaItemType', 'Enumeration',
|
|
96684
|
+
'name', [ed].[Name],
|
|
96685
|
+
'label', [ed].[DisplayLabel],
|
|
96686
|
+
'description', [ed].[Description],
|
|
96687
|
+
'type', IIF([ed].[Type] = 1281, 'int', IIF([ed].[Type] = 2305, 'string', null)),
|
|
96688
|
+
'isStrict', IIF([ed].[IsStrict] = 1, json('true'), json('false')),
|
|
96689
|
+
'enumerators', (
|
|
96690
|
+
SELECT json_group_array(json(json_object(
|
|
96691
|
+
'name', json_extract(js."value", '$.Name'),
|
|
96692
|
+
'value', IFNULL(json_extract(js."value", '$.StringValue'), (json_extract(js."value", '$.IntValue'))),
|
|
96693
|
+
'label', json_extract(js."value", '$.DisplayLabel'),
|
|
96694
|
+
'description', json_extract(js."value", '$.Description')
|
|
96695
|
+
)))
|
|
96696
|
+
FROM [meta].[ECEnumerationDef] [enumerationDef], json1.json_each([EnumValues]) js
|
|
96697
|
+
WHERE [enumerationDef].[ECInstanceId] = [ed].[ECInstanceId]
|
|
96698
|
+
)
|
|
96699
|
+
) as [item]
|
|
96700
|
+
FROM
|
|
96701
|
+
[meta].[ECEnumerationDef] [ed]
|
|
96702
|
+
${singleSchema ? `
|
|
96703
|
+
JOIN
|
|
96704
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ed].[Schema].[Id]
|
|
96705
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96601
96706
|
`;
|
|
96602
96707
|
/**
|
|
96603
96708
|
* Query for SchemaItemType Unit data.
|
|
96604
96709
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96605
96710
|
*/
|
|
96606
|
-
const unit = (singleSchema) => `
|
|
96607
|
-
SELECT
|
|
96608
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
96609
|
-
json_object (
|
|
96610
|
-
'schemaItemType', 'Unit',
|
|
96611
|
-
'name', [ud].[Name],
|
|
96612
|
-
'label', [ud].[DisplayLabel],
|
|
96613
|
-
'description', [ud].[Description],
|
|
96614
|
-
'definition', [ud].[Definition],
|
|
96615
|
-
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
96616
|
-
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
96617
|
-
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
96618
|
-
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
96619
|
-
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
96620
|
-
) as item
|
|
96621
|
-
FROM
|
|
96622
|
-
[meta].[UnitDef] [ud]
|
|
96623
|
-
${singleSchema ? `
|
|
96624
|
-
JOIN
|
|
96625
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
96626
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
96627
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
96628
|
-
JOIN [meta].[ECSchemaDef] [uss]
|
|
96629
|
-
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
96630
|
-
JOIN [meta].[PhenomenonDef] [pd]
|
|
96631
|
-
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
96632
|
-
JOIN [meta].[ECSchemaDef] [ps]
|
|
96633
|
-
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
96634
|
-
WHERE
|
|
96635
|
-
${singleSchema ? `
|
|
96636
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
96637
|
-
[ud].[IsConstant] = 0 AND
|
|
96638
|
-
[ud].[InvertingUnit] IS NULL
|
|
96711
|
+
const unit = (singleSchema) => `
|
|
96712
|
+
SELECT
|
|
96713
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
96714
|
+
json_object (
|
|
96715
|
+
'schemaItemType', 'Unit',
|
|
96716
|
+
'name', [ud].[Name],
|
|
96717
|
+
'label', [ud].[DisplayLabel],
|
|
96718
|
+
'description', [ud].[Description],
|
|
96719
|
+
'definition', [ud].[Definition],
|
|
96720
|
+
'numerator', IIF([ud].[Numerator] IS NULL, NULL, json(format('%.16g', [ud].[Numerator]))),
|
|
96721
|
+
'denominator', IIF([ud].[Denominator] IS NULL, NULL, json(format('%.16g', [ud].[Denominator]))),
|
|
96722
|
+
'offset', IIF([ud].[Offset] IS NULL, NULL, json(format('%!.15f', [ud].[Offset]))),
|
|
96723
|
+
'unitSystem', CONCAT([uss].[Name],'.', [usd].[Name]),
|
|
96724
|
+
'phenomenon', CONCAT([ps].[Name],'.', [pd].[Name])
|
|
96725
|
+
) as item
|
|
96726
|
+
FROM
|
|
96727
|
+
[meta].[UnitDef] [ud]
|
|
96728
|
+
${singleSchema ? `
|
|
96729
|
+
JOIN
|
|
96730
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
96731
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
96732
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
96733
|
+
JOIN [meta].[ECSchemaDef] [uss]
|
|
96734
|
+
ON [uss].[ECInstanceId] = [usd].[Schema].[Id]
|
|
96735
|
+
JOIN [meta].[PhenomenonDef] [pd]
|
|
96736
|
+
ON [pd].[ECInstanceId] = [ud].[Phenomenon].[Id]
|
|
96737
|
+
JOIN [meta].[ECSchemaDef] [ps]
|
|
96738
|
+
ON [ps].[ECInstanceId] = [pd].[Schema].[Id]
|
|
96739
|
+
WHERE
|
|
96740
|
+
${singleSchema ? `
|
|
96741
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
96742
|
+
[ud].[IsConstant] = 0 AND
|
|
96743
|
+
[ud].[InvertingUnit] IS NULL
|
|
96639
96744
|
`;
|
|
96640
96745
|
/**
|
|
96641
96746
|
* Query for SchemaItemType InvertedUnit data.
|
|
96642
96747
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96643
96748
|
*/
|
|
96644
|
-
const invertedUnit = (singleSchema) => `
|
|
96645
|
-
SELECT
|
|
96646
|
-
[ud].[Schema].[Id] AS [SchemaId],
|
|
96647
|
-
json_object (
|
|
96648
|
-
'schemaItemType', 'InvertedUnit',
|
|
96649
|
-
'name', [ud].[Name],
|
|
96650
|
-
'label', [ud].[DisplayLabel],
|
|
96651
|
-
'description', [ud].[Description],
|
|
96652
|
-
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
96653
|
-
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
96654
|
-
) as [item]
|
|
96655
|
-
FROM
|
|
96656
|
-
[meta].[UnitDef] [ud]
|
|
96657
|
-
${singleSchema ? `
|
|
96658
|
-
JOIN
|
|
96659
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
96660
|
-
JOIN [meta].[UnitSystemDef] [usd]
|
|
96661
|
-
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
96662
|
-
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
96663
|
-
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
96664
|
-
LEFT JOIN [meta].[UnitDef] [iud]
|
|
96665
|
-
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
96666
|
-
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
96667
|
-
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
96668
|
-
WHERE
|
|
96669
|
-
${singleSchema ? `
|
|
96670
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
96671
|
-
[ud].[IsConstant] = 0 AND
|
|
96672
|
-
[ud].[InvertingUnit] IS NOT NULL
|
|
96749
|
+
const invertedUnit = (singleSchema) => `
|
|
96750
|
+
SELECT
|
|
96751
|
+
[ud].[Schema].[Id] AS [SchemaId],
|
|
96752
|
+
json_object (
|
|
96753
|
+
'schemaItemType', 'InvertedUnit',
|
|
96754
|
+
'name', [ud].[Name],
|
|
96755
|
+
'label', [ud].[DisplayLabel],
|
|
96756
|
+
'description', [ud].[Description],
|
|
96757
|
+
'unitSystem', CONCAT([systemSchema].[Name],'.', [usd].[Name]),
|
|
96758
|
+
'invertsUnit', IIF([iud].[Name] IS NULL, null, CONCAT([ius].[Name],'.', [iud].[Name]))
|
|
96759
|
+
) as [item]
|
|
96760
|
+
FROM
|
|
96761
|
+
[meta].[UnitDef] [ud]
|
|
96762
|
+
${singleSchema ? `
|
|
96763
|
+
JOIN
|
|
96764
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [ud].[Schema].[Id]` : ""}
|
|
96765
|
+
JOIN [meta].[UnitSystemDef] [usd]
|
|
96766
|
+
ON [usd].[ECInstanceId] = [ud].[UnitSystem].[Id]
|
|
96767
|
+
JOIN [meta].[ECSchemaDef] [systemSchema]
|
|
96768
|
+
ON [systemSchema].[ECInstanceId] = [usd].[Schema].[Id]
|
|
96769
|
+
LEFT JOIN [meta].[UnitDef] [iud]
|
|
96770
|
+
ON [iud].[ECInstanceId] = [ud].[InvertingUnit].[Id]
|
|
96771
|
+
LEFT JOIN [meta].[ECSchemaDef] [ius]
|
|
96772
|
+
ON [ius].[ECInstanceId] = [iud].[Schema].[Id]
|
|
96773
|
+
WHERE
|
|
96774
|
+
${singleSchema ? `
|
|
96775
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
96776
|
+
[ud].[IsConstant] = 0 AND
|
|
96777
|
+
[ud].[InvertingUnit] IS NOT NULL
|
|
96673
96778
|
`;
|
|
96674
96779
|
/**
|
|
96675
96780
|
* Query for SchemaItemType Constant data.
|
|
96676
96781
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96677
96782
|
*/
|
|
96678
|
-
const constant = (singleSchema) => `
|
|
96679
|
-
SELECT
|
|
96680
|
-
[cd].[Schema].[Id] AS [SchemaId],
|
|
96681
|
-
json_object(
|
|
96682
|
-
'schemaItemType', 'Constant',
|
|
96683
|
-
'name', [cd].[Name],
|
|
96684
|
-
'label', [cd].[DisplayLabel],
|
|
96685
|
-
'description', [cd].[Description],
|
|
96686
|
-
'definition', [cd].[Definition],
|
|
96687
|
-
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
96688
|
-
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
96689
|
-
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
96690
|
-
) as item
|
|
96691
|
-
FROM
|
|
96692
|
-
[meta].[UnitDef] [cd]
|
|
96693
|
-
${singleSchema ? `
|
|
96694
|
-
JOIN
|
|
96695
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
96696
|
-
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
96697
|
-
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
96698
|
-
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
96699
|
-
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
96700
|
-
WHERE
|
|
96701
|
-
${singleSchema ? `
|
|
96702
|
-
[schema].[Name] = :schemaName AND` : ""}
|
|
96703
|
-
[cd].[IsConstant] = 1
|
|
96783
|
+
const constant = (singleSchema) => `
|
|
96784
|
+
SELECT
|
|
96785
|
+
[cd].[Schema].[Id] AS [SchemaId],
|
|
96786
|
+
json_object(
|
|
96787
|
+
'schemaItemType', 'Constant',
|
|
96788
|
+
'name', [cd].[Name],
|
|
96789
|
+
'label', [cd].[DisplayLabel],
|
|
96790
|
+
'description', [cd].[Description],
|
|
96791
|
+
'definition', [cd].[Definition],
|
|
96792
|
+
'numerator', IIF([cd].[Numerator] IS NULL, NULL, json(format('%.16g', [cd].[Numerator]))),
|
|
96793
|
+
'denominator', IIF([cd].[Denominator] IS NULL, NULL, json(format('%.16g', [cd].[Denominator]))),
|
|
96794
|
+
'phenomenon', CONCAT([phenomSchema].[Name],'.', [phenomDef].[Name])
|
|
96795
|
+
) as item
|
|
96796
|
+
FROM
|
|
96797
|
+
[meta].[UnitDef] [cd]
|
|
96798
|
+
${singleSchema ? `
|
|
96799
|
+
JOIN
|
|
96800
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [cd].[Schema].[Id]` : ""}
|
|
96801
|
+
JOIN [meta].[PhenomenonDef] [phenomDef]
|
|
96802
|
+
ON [phenomDef].[ECInstanceId] = [cd].[Phenomenon].[Id]
|
|
96803
|
+
JOIN [meta].[ECSchemaDef] [phenomSchema]
|
|
96804
|
+
ON [phenomSchema].[ECInstanceId] = [phenomDef].[Schema].[Id]
|
|
96805
|
+
WHERE
|
|
96806
|
+
${singleSchema ? `
|
|
96807
|
+
[schema].[Name] = :schemaName AND` : ""}
|
|
96808
|
+
[cd].[IsConstant] = 1
|
|
96704
96809
|
`;
|
|
96705
96810
|
/**
|
|
96706
96811
|
* Query for SchemaItemType UnitSystem data.
|
|
96707
96812
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96708
96813
|
*/
|
|
96709
|
-
const unitSystem = (singleSchema) => `
|
|
96710
|
-
SELECT
|
|
96711
|
-
[us].[Schema].[Id] AS [SchemaId],
|
|
96712
|
-
json_object (
|
|
96713
|
-
'schemaItemType', 'UnitSystem',
|
|
96714
|
-
'name', [us].[Name],
|
|
96715
|
-
'label', [us].[DisplayLabel],
|
|
96716
|
-
'description', [us].[Description]
|
|
96717
|
-
) as [item]
|
|
96718
|
-
FROM
|
|
96719
|
-
[meta].[UnitSystemDef] [us]
|
|
96720
|
-
${singleSchema ? `
|
|
96721
|
-
JOIN
|
|
96722
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
96723
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96814
|
+
const unitSystem = (singleSchema) => `
|
|
96815
|
+
SELECT
|
|
96816
|
+
[us].[Schema].[Id] AS [SchemaId],
|
|
96817
|
+
json_object (
|
|
96818
|
+
'schemaItemType', 'UnitSystem',
|
|
96819
|
+
'name', [us].[Name],
|
|
96820
|
+
'label', [us].[DisplayLabel],
|
|
96821
|
+
'description', [us].[Description]
|
|
96822
|
+
) as [item]
|
|
96823
|
+
FROM
|
|
96824
|
+
[meta].[UnitSystemDef] [us]
|
|
96825
|
+
${singleSchema ? `
|
|
96826
|
+
JOIN
|
|
96827
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [us].[Schema].[Id]
|
|
96828
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96724
96829
|
`;
|
|
96725
96830
|
/**
|
|
96726
96831
|
* Query for SchemaItemType Phenomenon data.
|
|
96727
96832
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96728
96833
|
*/
|
|
96729
|
-
const phenomenon = (singleSchema) => `
|
|
96730
|
-
SELECT
|
|
96731
|
-
[pd].[Schema].[Id] AS [SchemaId],
|
|
96732
|
-
json_object(
|
|
96733
|
-
'schemaItemType', 'Phenomenon',
|
|
96734
|
-
'name', [pd].[Name],
|
|
96735
|
-
'label', [pd].[DisplayLabel],
|
|
96736
|
-
'description', [pd].[Description],
|
|
96737
|
-
'definition', [pd].[Definition]
|
|
96738
|
-
) as [item]
|
|
96739
|
-
FROM
|
|
96740
|
-
[meta].[PhenomenonDef] [pd]
|
|
96741
|
-
${singleSchema ? `
|
|
96742
|
-
JOIN
|
|
96743
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
96744
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96834
|
+
const phenomenon = (singleSchema) => `
|
|
96835
|
+
SELECT
|
|
96836
|
+
[pd].[Schema].[Id] AS [SchemaId],
|
|
96837
|
+
json_object(
|
|
96838
|
+
'schemaItemType', 'Phenomenon',
|
|
96839
|
+
'name', [pd].[Name],
|
|
96840
|
+
'label', [pd].[DisplayLabel],
|
|
96841
|
+
'description', [pd].[Description],
|
|
96842
|
+
'definition', [pd].[Definition]
|
|
96843
|
+
) as [item]
|
|
96844
|
+
FROM
|
|
96845
|
+
[meta].[PhenomenonDef] [pd]
|
|
96846
|
+
${singleSchema ? `
|
|
96847
|
+
JOIN
|
|
96848
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [pd].[Schema].[Id]
|
|
96849
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96745
96850
|
`;
|
|
96746
96851
|
/**
|
|
96747
96852
|
* Query for SchemaItemType Format data.
|
|
96748
96853
|
* @param singleSchema Indicates if a filter and join for a single Schema should be applied.
|
|
96749
96854
|
*/
|
|
96750
|
-
const format = (singleSchema) => `
|
|
96751
|
-
SELECT
|
|
96752
|
-
[fd].[Schema].[Id] AS [SchemaId],
|
|
96753
|
-
json_object(
|
|
96754
|
-
'schemaItemType', 'Format',
|
|
96755
|
-
'name', [fd].[Name],
|
|
96756
|
-
'label', [fd].[DisplayLabel],
|
|
96757
|
-
'description', [fd].[Description],
|
|
96758
|
-
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
96759
|
-
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
96760
|
-
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
96761
|
-
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
96762
|
-
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
96763
|
-
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
96764
|
-
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
96765
|
-
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
96766
|
-
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
96767
|
-
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
96768
|
-
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
96769
|
-
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
96770
|
-
${singleSchema ? `
|
|
96771
|
-
,'composite', (
|
|
96772
|
-
SELECT
|
|
96773
|
-
json_object(
|
|
96774
|
-
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
96775
|
-
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
96776
|
-
'units', (
|
|
96777
|
-
SELECT json_group_array(json(json_object(
|
|
96778
|
-
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
96779
|
-
'label', [fud].[Label]
|
|
96780
|
-
)))
|
|
96781
|
-
FROM [meta].[FormatDef] [fd2]
|
|
96782
|
-
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
96783
|
-
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
96784
|
-
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
96785
|
-
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
96786
|
-
)
|
|
96787
|
-
)
|
|
96788
|
-
FROM [meta].[FormatDef] [fd1]
|
|
96789
|
-
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
96790
|
-
)` : ""}
|
|
96791
|
-
) AS item
|
|
96792
|
-
FROM
|
|
96793
|
-
[meta].[FormatDef] [fd]
|
|
96794
|
-
${singleSchema ? `
|
|
96795
|
-
JOIN
|
|
96796
|
-
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
96797
|
-
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96855
|
+
const format = (singleSchema) => `
|
|
96856
|
+
SELECT
|
|
96857
|
+
[fd].[Schema].[Id] AS [SchemaId],
|
|
96858
|
+
json_object(
|
|
96859
|
+
'schemaItemType', 'Format',
|
|
96860
|
+
'name', [fd].[Name],
|
|
96861
|
+
'label', [fd].[DisplayLabel],
|
|
96862
|
+
'description', [fd].[Description],
|
|
96863
|
+
'type', json_extract([fd].[NumericSpec], '$.type'),
|
|
96864
|
+
'precision', json_extract([fd].[NumericSpec], '$.precision'),
|
|
96865
|
+
'roundFactor', json_extract([fd].[NumericSpec], '$.roundFactor'),
|
|
96866
|
+
'minWidth', json_extract([fd].[NumericSpec], '$.minWidth'),
|
|
96867
|
+
'showSignOption', json_extract([fd].[NumericSpec], '$.showSignOption'),
|
|
96868
|
+
'decimalSeparator', json_extract([fd].[NumericSpec], '$.decimalSeparator'),
|
|
96869
|
+
'thousandSeparator', json_extract([fd].[NumericSpec], '$.thousandSeparator'),
|
|
96870
|
+
'uomSeparator', json_extract([fd].[NumericSpec], '$.uomSeparator'),
|
|
96871
|
+
'scientificType', json_extract([fd].[NumericSpec], '$.scientificType'),
|
|
96872
|
+
'stationOffsetSize', json_extract([fd].[NumericSpec], '$.stationOffsetSize'),
|
|
96873
|
+
'stationSeparator', json_extract([fd].[NumericSpec], '$.stationSeparator'),
|
|
96874
|
+
'formatTraits', json_extract([fd].[NumericSpec], '$.formatTraits')
|
|
96875
|
+
${singleSchema ? `
|
|
96876
|
+
,'composite', (
|
|
96877
|
+
SELECT
|
|
96878
|
+
json_object(
|
|
96879
|
+
'spacer', json_extract([fd1].[CompositeSpec], '$.spacer'),
|
|
96880
|
+
'includeZero', json(IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 1, 'true', IIF(json_extract([fd1].[CompositeSpec], '$.includeZero') = 0, 'false', null))),
|
|
96881
|
+
'units', (
|
|
96882
|
+
SELECT json_group_array(json(json_object(
|
|
96883
|
+
'name', CONCAT([sd].[Name], '.', [ud].[Name]),
|
|
96884
|
+
'label', [fud].[Label]
|
|
96885
|
+
)))
|
|
96886
|
+
FROM [meta].[FormatDef] [fd2]
|
|
96887
|
+
LEFT JOIN [meta].[FormatCompositeUnitDef] [fud] ON [fud].[Format].[Id] = [fd2].[ECInstanceId]
|
|
96888
|
+
LEFT JOIN [meta].[UnitDef] [ud] ON [ud].[ECInstanceId] = [fud].[Unit].[Id]
|
|
96889
|
+
INNER JOIN [meta].[ECSchemaDef] [sd] ON [sd].[ECInstanceId] = [ud].[Schema].[Id]
|
|
96890
|
+
WHERE [fd2].[ECInstanceId] = [fd1].[ECInstanceId]
|
|
96891
|
+
)
|
|
96892
|
+
)
|
|
96893
|
+
FROM [meta].[FormatDef] [fd1]
|
|
96894
|
+
WHERE [fd1].[ECInstanceId]= [fd].[ECInstanceId] AND [fd1].[CompositeSpec] IS NOT NULL
|
|
96895
|
+
)` : ""}
|
|
96896
|
+
) AS item
|
|
96897
|
+
FROM
|
|
96898
|
+
[meta].[FormatDef] [fd]
|
|
96899
|
+
${singleSchema ? `
|
|
96900
|
+
JOIN
|
|
96901
|
+
[meta].[ECSchemaDef] [schema] ON [schema].[ECInstanceId] = [fd].[Schema].[Id]
|
|
96902
|
+
WHERE [schema].[Name] = :schemaName` : ""}
|
|
96798
96903
|
`;
|
|
96799
96904
|
/**
|
|
96800
96905
|
* Queries for each SchemaItemType
|
|
@@ -96960,332 +97065,332 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
96960
97065
|
*--------------------------------------------------------------------------------------------*/
|
|
96961
97066
|
|
|
96962
97067
|
const modifier = (alias) => {
|
|
96963
|
-
return `
|
|
96964
|
-
CASE
|
|
96965
|
-
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
96966
|
-
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
96967
|
-
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
96968
|
-
ELSE NULL
|
|
96969
|
-
END
|
|
97068
|
+
return `
|
|
97069
|
+
CASE
|
|
97070
|
+
WHEN [${alias}].[modifier] = 0 THEN 'None'
|
|
97071
|
+
WHEN [${alias}].[modifier] = 1 THEN 'Abstract'
|
|
97072
|
+
WHEN [${alias}].[modifier] = 2 THEN 'Sealed'
|
|
97073
|
+
ELSE NULL
|
|
97074
|
+
END
|
|
96970
97075
|
`;
|
|
96971
97076
|
};
|
|
96972
97077
|
const strength = (alias) => {
|
|
96973
|
-
return `
|
|
96974
|
-
CASE
|
|
96975
|
-
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
96976
|
-
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
96977
|
-
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
96978
|
-
ELSE NULL
|
|
96979
|
-
END
|
|
97078
|
+
return `
|
|
97079
|
+
CASE
|
|
97080
|
+
WHEN [${alias}].[RelationshipStrength] = 0 THEN 'Referencing'
|
|
97081
|
+
WHEN [${alias}].[RelationshipStrength] = 1 THEN 'Holding'
|
|
97082
|
+
WHEN [${alias}].[RelationshipStrength] = 2 THEN 'Embedding'
|
|
97083
|
+
ELSE NULL
|
|
97084
|
+
END
|
|
96980
97085
|
`;
|
|
96981
97086
|
};
|
|
96982
97087
|
const strengthDirection = (alias) => {
|
|
96983
|
-
return `
|
|
96984
|
-
CASE
|
|
96985
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
96986
|
-
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
96987
|
-
ELSE NULL
|
|
96988
|
-
END
|
|
97088
|
+
return `
|
|
97089
|
+
CASE
|
|
97090
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 1 THEN 'Forward'
|
|
97091
|
+
WHEN [${alias}].[RelationshipStrengthDirection] = 2 THEN 'Backward'
|
|
97092
|
+
ELSE NULL
|
|
97093
|
+
END
|
|
96989
97094
|
`;
|
|
96990
97095
|
};
|
|
96991
|
-
const withAppliesTo = `
|
|
96992
|
-
AppliesToCTE AS (
|
|
96993
|
-
SELECT
|
|
96994
|
-
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
96995
|
-
[appliesToSchema].[name] as [AppliesToSchema],
|
|
96996
|
-
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
96997
|
-
FROM [meta].[CustomAttribute] [ca]
|
|
96998
|
-
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
96999
|
-
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
97000
|
-
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
97001
|
-
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
97002
|
-
WHERE [ca].[ContainerType] = 30
|
|
97003
|
-
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
97004
|
-
)
|
|
97096
|
+
const withAppliesTo = `
|
|
97097
|
+
AppliesToCTE AS (
|
|
97098
|
+
SELECT
|
|
97099
|
+
[mixinAppliesTo].[ECInstanceId] AS [AppliesToId],
|
|
97100
|
+
[appliesToSchema].[name] as [AppliesToSchema],
|
|
97101
|
+
json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.IsMixin.AppliesToEntityClass') AS [AppliesTo]
|
|
97102
|
+
FROM [meta].[CustomAttribute] [ca]
|
|
97103
|
+
JOIN [meta].[ECClassDef] [mixinAppliesTo]
|
|
97104
|
+
ON [mixinAppliesTo].[ECInstanceId] = [ca].[ContainerId]
|
|
97105
|
+
JOIN [meta].[ECSchemaDef] [appliesToSchema]
|
|
97106
|
+
ON [appliesToSchema].[ECInstanceId] = [mixinAppliesTo].[Schema].[Id]
|
|
97107
|
+
WHERE [ca].[ContainerType] = 30
|
|
97108
|
+
AND json_extract(XmlCAToJson([ca].[Class].[Id], [ca].[Instance]), '$.ecClass') = 'IsMixin'
|
|
97109
|
+
)
|
|
97005
97110
|
`;
|
|
97006
|
-
const withSchemaReferences = `
|
|
97007
|
-
SchemaReferences AS (
|
|
97008
|
-
SELECT
|
|
97009
|
-
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
97010
|
-
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
97011
|
-
FROM
|
|
97012
|
-
[meta].[ECSchemaDef] AS [refSchema]
|
|
97013
|
-
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
97014
|
-
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
97015
|
-
)
|
|
97111
|
+
const withSchemaReferences = `
|
|
97112
|
+
SchemaReferences AS (
|
|
97113
|
+
SELECT
|
|
97114
|
+
[ref].[SourceECInstanceId] AS [SchemaId],
|
|
97115
|
+
CONCAT([Name],'.',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [fullName]
|
|
97116
|
+
FROM
|
|
97117
|
+
[meta].[ECSchemaDef] AS [refSchema]
|
|
97118
|
+
INNER JOIN [meta].[SchemaHasSchemaReferences] [ref]
|
|
97119
|
+
ON [ref].[TargetECInstanceId] = [refSchema].[ECInstanceId]
|
|
97120
|
+
)
|
|
97016
97121
|
`;
|
|
97017
|
-
const customAttributeQuery = `
|
|
97018
|
-
SELECT
|
|
97019
|
-
[Schema].[Id] AS [SchemaId],
|
|
97020
|
-
json_object(
|
|
97021
|
-
'name', [class].[Name],
|
|
97022
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
97023
|
-
'modifier', ${modifier("class")},
|
|
97024
|
-
'label', [class].[DisplayLabel],
|
|
97025
|
-
'description', [class].[Description],
|
|
97026
|
-
'appliesTo', [class].[CustomAttributeContainerType],
|
|
97027
|
-
'baseClasses', (
|
|
97028
|
-
SELECT
|
|
97029
|
-
json_group_array(json(json_object(
|
|
97030
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97031
|
-
'name', [baseClass].[Name],
|
|
97032
|
-
'schemaItemType', 'CustomAttributeClass',
|
|
97033
|
-
'modifier', ${modifier("baseClass")},
|
|
97034
|
-
'label', [baseClass].[DisplayLabel],
|
|
97035
|
-
'description', [baseClass].[Description],
|
|
97036
|
-
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
97037
|
-
)))
|
|
97038
|
-
FROM
|
|
97039
|
-
[meta].[ECClassDef] [baseClass]
|
|
97040
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97041
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97042
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97043
|
-
)
|
|
97044
|
-
) AS [item]
|
|
97045
|
-
FROM [meta].[ECClassDef] [class]
|
|
97046
|
-
WHERE [class].[Type] = 3
|
|
97122
|
+
const customAttributeQuery = `
|
|
97123
|
+
SELECT
|
|
97124
|
+
[Schema].[Id] AS [SchemaId],
|
|
97125
|
+
json_object(
|
|
97126
|
+
'name', [class].[Name],
|
|
97127
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
97128
|
+
'modifier', ${modifier("class")},
|
|
97129
|
+
'label', [class].[DisplayLabel],
|
|
97130
|
+
'description', [class].[Description],
|
|
97131
|
+
'appliesTo', [class].[CustomAttributeContainerType],
|
|
97132
|
+
'baseClasses', (
|
|
97133
|
+
SELECT
|
|
97134
|
+
json_group_array(json(json_object(
|
|
97135
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97136
|
+
'name', [baseClass].[Name],
|
|
97137
|
+
'schemaItemType', 'CustomAttributeClass',
|
|
97138
|
+
'modifier', ${modifier("baseClass")},
|
|
97139
|
+
'label', [baseClass].[DisplayLabel],
|
|
97140
|
+
'description', [baseClass].[Description],
|
|
97141
|
+
'appliesTo', [baseClass].[CustomAttributeContainerType]
|
|
97142
|
+
)))
|
|
97143
|
+
FROM
|
|
97144
|
+
[meta].[ECClassDef] [baseClass]
|
|
97145
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97146
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97147
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97148
|
+
)
|
|
97149
|
+
) AS [item]
|
|
97150
|
+
FROM [meta].[ECClassDef] [class]
|
|
97151
|
+
WHERE [class].[Type] = 3
|
|
97047
97152
|
`;
|
|
97048
|
-
const structQuery = `
|
|
97049
|
-
SELECT
|
|
97050
|
-
[Schema].[Id] AS [SchemaId],
|
|
97051
|
-
json_object(
|
|
97052
|
-
'name', [class].[Name],
|
|
97053
|
-
'schemaItemType', 'StructClass',
|
|
97054
|
-
'modifier', ${modifier("class")},
|
|
97055
|
-
'label', [class].[DisplayLabel],
|
|
97056
|
-
'description', [class].[Description],
|
|
97057
|
-
'baseClasses', (
|
|
97058
|
-
SELECT
|
|
97059
|
-
json_group_array(json(json_object(
|
|
97060
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97061
|
-
'name', [baseClass].[Name],
|
|
97062
|
-
'schemaItemType', 'StructClass',
|
|
97063
|
-
'modifier', ${modifier("baseClass")},
|
|
97064
|
-
'label', [baseClass].[DisplayLabel],
|
|
97065
|
-
'description', [baseClass].[Description]
|
|
97066
|
-
)))
|
|
97067
|
-
FROM
|
|
97068
|
-
[meta].[ECClassDef] [baseClass]
|
|
97069
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97070
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97071
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97072
|
-
)
|
|
97073
|
-
) AS [item]
|
|
97074
|
-
FROM [meta].[ECClassDef] [class]
|
|
97075
|
-
WHERE [class].[Type] = 2
|
|
97153
|
+
const structQuery = `
|
|
97154
|
+
SELECT
|
|
97155
|
+
[Schema].[Id] AS [SchemaId],
|
|
97156
|
+
json_object(
|
|
97157
|
+
'name', [class].[Name],
|
|
97158
|
+
'schemaItemType', 'StructClass',
|
|
97159
|
+
'modifier', ${modifier("class")},
|
|
97160
|
+
'label', [class].[DisplayLabel],
|
|
97161
|
+
'description', [class].[Description],
|
|
97162
|
+
'baseClasses', (
|
|
97163
|
+
SELECT
|
|
97164
|
+
json_group_array(json(json_object(
|
|
97165
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97166
|
+
'name', [baseClass].[Name],
|
|
97167
|
+
'schemaItemType', 'StructClass',
|
|
97168
|
+
'modifier', ${modifier("baseClass")},
|
|
97169
|
+
'label', [baseClass].[DisplayLabel],
|
|
97170
|
+
'description', [baseClass].[Description]
|
|
97171
|
+
)))
|
|
97172
|
+
FROM
|
|
97173
|
+
[meta].[ECClassDef] [baseClass]
|
|
97174
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97175
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97176
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97177
|
+
)
|
|
97178
|
+
) AS [item]
|
|
97179
|
+
FROM [meta].[ECClassDef] [class]
|
|
97180
|
+
WHERE [class].[Type] = 2
|
|
97076
97181
|
`;
|
|
97077
|
-
const relationshipQuery = `
|
|
97078
|
-
SELECT
|
|
97079
|
-
[Schema].[Id] AS [SchemaId],
|
|
97080
|
-
json_object(
|
|
97081
|
-
'name', [class].[Name],
|
|
97082
|
-
'schemaItemType', 'RelationshipClass',
|
|
97083
|
-
'modifier', ${modifier("class")},
|
|
97084
|
-
'label', [class].[DisplayLabel],
|
|
97085
|
-
'description', [class].[Description],
|
|
97086
|
-
'strength', ${strength("class")},
|
|
97087
|
-
'strengthDirection', ${strengthDirection("class")},
|
|
97088
|
-
'baseClasses', (
|
|
97089
|
-
SELECT
|
|
97090
|
-
json_group_array(json(json_object(
|
|
97091
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97092
|
-
'name', [baseClass].[Name],
|
|
97093
|
-
'schemaItemType', 'RelationshipClass',
|
|
97094
|
-
'modifier', ${modifier("baseClass")},
|
|
97095
|
-
'label', [baseClass].[DisplayLabel],
|
|
97096
|
-
'description', [baseClass].[Description],
|
|
97097
|
-
'strength', ${strength("baseClass")},
|
|
97098
|
-
'strengthDirection', ${strengthDirection("baseClass")}
|
|
97099
|
-
)))
|
|
97100
|
-
FROM
|
|
97101
|
-
[meta].[ECClassDef] [baseClass]
|
|
97102
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97103
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97104
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97105
|
-
)
|
|
97106
|
-
) AS [item]
|
|
97107
|
-
FROM [meta].[ECClassDef] [class]
|
|
97108
|
-
WHERE [class].[Type] = 1
|
|
97182
|
+
const relationshipQuery = `
|
|
97183
|
+
SELECT
|
|
97184
|
+
[Schema].[Id] AS [SchemaId],
|
|
97185
|
+
json_object(
|
|
97186
|
+
'name', [class].[Name],
|
|
97187
|
+
'schemaItemType', 'RelationshipClass',
|
|
97188
|
+
'modifier', ${modifier("class")},
|
|
97189
|
+
'label', [class].[DisplayLabel],
|
|
97190
|
+
'description', [class].[Description],
|
|
97191
|
+
'strength', ${strength("class")},
|
|
97192
|
+
'strengthDirection', ${strengthDirection("class")},
|
|
97193
|
+
'baseClasses', (
|
|
97194
|
+
SELECT
|
|
97195
|
+
json_group_array(json(json_object(
|
|
97196
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97197
|
+
'name', [baseClass].[Name],
|
|
97198
|
+
'schemaItemType', 'RelationshipClass',
|
|
97199
|
+
'modifier', ${modifier("baseClass")},
|
|
97200
|
+
'label', [baseClass].[DisplayLabel],
|
|
97201
|
+
'description', [baseClass].[Description],
|
|
97202
|
+
'strength', ${strength("baseClass")},
|
|
97203
|
+
'strengthDirection', ${strengthDirection("baseClass")}
|
|
97204
|
+
)))
|
|
97205
|
+
FROM
|
|
97206
|
+
[meta].[ECClassDef] [baseClass]
|
|
97207
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97208
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97209
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97210
|
+
)
|
|
97211
|
+
) AS [item]
|
|
97212
|
+
FROM [meta].[ECClassDef] [class]
|
|
97213
|
+
WHERE [class].[Type] = 1
|
|
97109
97214
|
`;
|
|
97110
|
-
const entityQuery = `
|
|
97111
|
-
SELECT
|
|
97112
|
-
[Schema].[Id] AS [SchemaId],
|
|
97113
|
-
json_object(
|
|
97114
|
-
'name', [class].[Name],
|
|
97115
|
-
'schemaItemType', 'EntityClass',
|
|
97116
|
-
'modifier', ${modifier("class")},
|
|
97117
|
-
'label', [class].[DisplayLabel],
|
|
97118
|
-
'description', [class].[Description],
|
|
97119
|
-
'baseClasses', (
|
|
97120
|
-
SELECT
|
|
97121
|
-
json_group_array(json(json_object(
|
|
97122
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97123
|
-
'name', [baseClass].[Name],
|
|
97124
|
-
'schemaItemType', 'EntityClass',
|
|
97125
|
-
'modifier', ${modifier("baseClass")},
|
|
97126
|
-
'label', [baseClass].[DisplayLabel],
|
|
97127
|
-
'description', [baseClass].[Description]
|
|
97128
|
-
)))
|
|
97129
|
-
FROM
|
|
97130
|
-
[meta].[ECClassDef] [baseClass]
|
|
97131
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97132
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97133
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97134
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97135
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97136
|
-
),
|
|
97137
|
-
'mixins', (
|
|
97138
|
-
SELECT
|
|
97139
|
-
json_group_array(json(json_object(
|
|
97140
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97141
|
-
'name', [baseClass].[Name],
|
|
97142
|
-
'schemaItemType', 'Mixin',
|
|
97143
|
-
'modifier', ${modifier("baseClass")},
|
|
97144
|
-
'label', [baseClass].[DisplayLabel],
|
|
97145
|
-
'description', [baseClass].[Description],
|
|
97146
|
-
'appliesTo', (
|
|
97147
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97148
|
-
FROM [AppliesToCTE] [atCTE]
|
|
97149
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
97150
|
-
),
|
|
97151
|
-
'baseClasses', (
|
|
97152
|
-
SELECT
|
|
97153
|
-
json_group_array(json(json_object(
|
|
97154
|
-
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
97155
|
-
'name', [mixinBaseClass].[Name],
|
|
97156
|
-
'schemaItemType', 'Mixin',
|
|
97157
|
-
'modifier', ${modifier("mixinBaseClass")},
|
|
97158
|
-
'label', [mixinBaseClass].[DisplayLabel],
|
|
97159
|
-
'description', [mixinBaseClass].[Description],
|
|
97160
|
-
'appliesTo', (
|
|
97161
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97162
|
-
FROM [AppliesToCTE] [atCTE]
|
|
97163
|
-
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
97164
|
-
)
|
|
97165
|
-
)))
|
|
97166
|
-
FROM
|
|
97167
|
-
[meta].[ECClassDef] [mixinBaseClass]
|
|
97168
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
97169
|
-
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
97170
|
-
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
97171
|
-
)
|
|
97172
|
-
)))
|
|
97173
|
-
FROM
|
|
97174
|
-
[meta].[ECClassDef] [baseClass]
|
|
97175
|
-
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97176
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97177
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97178
|
-
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97179
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97180
|
-
)
|
|
97181
|
-
) AS [item]
|
|
97182
|
-
FROM [meta].[ECClassDef] [class]
|
|
97183
|
-
WHERE [class].[Type] = 0
|
|
97184
|
-
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97185
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97215
|
+
const entityQuery = `
|
|
97216
|
+
SELECT
|
|
97217
|
+
[Schema].[Id] AS [SchemaId],
|
|
97218
|
+
json_object(
|
|
97219
|
+
'name', [class].[Name],
|
|
97220
|
+
'schemaItemType', 'EntityClass',
|
|
97221
|
+
'modifier', ${modifier("class")},
|
|
97222
|
+
'label', [class].[DisplayLabel],
|
|
97223
|
+
'description', [class].[Description],
|
|
97224
|
+
'baseClasses', (
|
|
97225
|
+
SELECT
|
|
97226
|
+
json_group_array(json(json_object(
|
|
97227
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97228
|
+
'name', [baseClass].[Name],
|
|
97229
|
+
'schemaItemType', 'EntityClass',
|
|
97230
|
+
'modifier', ${modifier("baseClass")},
|
|
97231
|
+
'label', [baseClass].[DisplayLabel],
|
|
97232
|
+
'description', [baseClass].[Description]
|
|
97233
|
+
)))
|
|
97234
|
+
FROM
|
|
97235
|
+
[meta].[ECClassDef] [baseClass]
|
|
97236
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97237
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97238
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97239
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97240
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97241
|
+
),
|
|
97242
|
+
'mixins', (
|
|
97243
|
+
SELECT
|
|
97244
|
+
json_group_array(json(json_object(
|
|
97245
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97246
|
+
'name', [baseClass].[Name],
|
|
97247
|
+
'schemaItemType', 'Mixin',
|
|
97248
|
+
'modifier', ${modifier("baseClass")},
|
|
97249
|
+
'label', [baseClass].[DisplayLabel],
|
|
97250
|
+
'description', [baseClass].[Description],
|
|
97251
|
+
'appliesTo', (
|
|
97252
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97253
|
+
FROM [AppliesToCTE] [atCTE]
|
|
97254
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
97255
|
+
),
|
|
97256
|
+
'baseClasses', (
|
|
97257
|
+
SELECT
|
|
97258
|
+
json_group_array(json(json_object(
|
|
97259
|
+
'schema', ec_classname([mixinBaseClass].[ECInstanceId], 's'),
|
|
97260
|
+
'name', [mixinBaseClass].[Name],
|
|
97261
|
+
'schemaItemType', 'Mixin',
|
|
97262
|
+
'modifier', ${modifier("mixinBaseClass")},
|
|
97263
|
+
'label', [mixinBaseClass].[DisplayLabel],
|
|
97264
|
+
'description', [mixinBaseClass].[Description],
|
|
97265
|
+
'appliesTo', (
|
|
97266
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97267
|
+
FROM [AppliesToCTE] [atCTE]
|
|
97268
|
+
WHERE [atCTE].[AppliesToId] = [mixinBaseClass].[ECInstanceId]
|
|
97269
|
+
)
|
|
97270
|
+
)))
|
|
97271
|
+
FROM
|
|
97272
|
+
[meta].[ECClassDef] [mixinBaseClass]
|
|
97273
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [mixinBaseClassMap]
|
|
97274
|
+
ON [mixinBaseClassMap].[TargetECInstanceId] = [mixinBaseClass].[ECInstanceId]
|
|
97275
|
+
WHERE [mixinBaseClassMap].[SourceECInstanceId] = [baseClass].[ECInstanceId]
|
|
97276
|
+
)
|
|
97277
|
+
)))
|
|
97278
|
+
FROM
|
|
97279
|
+
[meta].[ECClassDef] [baseClass]
|
|
97280
|
+
INNER JOIN [meta].[ClassHasBaseClasses] [baseClassMap]
|
|
97281
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97282
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97283
|
+
AND EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [baseClass].[ECInstanceId] = [ca].[Class].[Id]
|
|
97284
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97285
|
+
)
|
|
97286
|
+
) AS [item]
|
|
97287
|
+
FROM [meta].[ECClassDef] [class]
|
|
97288
|
+
WHERE [class].[Type] = 0
|
|
97289
|
+
AND NOT EXISTS(SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97290
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97186
97291
|
`;
|
|
97187
|
-
const mixinQuery = `
|
|
97188
|
-
SELECT
|
|
97189
|
-
[Schema].[Id] AS [SchemaId],
|
|
97190
|
-
json_object(
|
|
97191
|
-
'name', [class].[Name],
|
|
97192
|
-
'schemaItemType', 'Mixin',
|
|
97193
|
-
'modifier', ${modifier("class")},
|
|
97194
|
-
'label', [class].[DisplayLabel],
|
|
97195
|
-
'description', [class].[Description],
|
|
97196
|
-
'appliesTo', (
|
|
97197
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97198
|
-
FROM [AppliesToCTE] [atCTE]
|
|
97199
|
-
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
97200
|
-
),
|
|
97201
|
-
'baseClasses', (
|
|
97202
|
-
SELECT
|
|
97203
|
-
json_group_array(json(json_object(
|
|
97204
|
-
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97205
|
-
'name', [baseClass].[Name],
|
|
97206
|
-
'schemaItemType', 'Mixin',
|
|
97207
|
-
'modifier', ${modifier("baseClass")},
|
|
97208
|
-
'label', [baseClass].[DisplayLabel],
|
|
97209
|
-
'description', [baseClass].[Description],
|
|
97210
|
-
'appliesTo', (
|
|
97211
|
-
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97212
|
-
FROM [AppliesToCTE] [atCTE]
|
|
97213
|
-
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
97214
|
-
)
|
|
97215
|
-
)))
|
|
97216
|
-
FROM
|
|
97217
|
-
[meta].[ECClassDef] [baseClass]
|
|
97218
|
-
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97219
|
-
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97220
|
-
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97221
|
-
)
|
|
97222
|
-
) AS [item]
|
|
97223
|
-
FROM [meta].[ECClassDef] [class]
|
|
97224
|
-
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97225
|
-
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97292
|
+
const mixinQuery = `
|
|
97293
|
+
SELECT
|
|
97294
|
+
[Schema].[Id] AS [SchemaId],
|
|
97295
|
+
json_object(
|
|
97296
|
+
'name', [class].[Name],
|
|
97297
|
+
'schemaItemType', 'Mixin',
|
|
97298
|
+
'modifier', ${modifier("class")},
|
|
97299
|
+
'label', [class].[DisplayLabel],
|
|
97300
|
+
'description', [class].[Description],
|
|
97301
|
+
'appliesTo', (
|
|
97302
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97303
|
+
FROM [AppliesToCTE] [atCTE]
|
|
97304
|
+
WHERE [atCTE].[AppliesToId] = [class].[ECInstanceId]
|
|
97305
|
+
),
|
|
97306
|
+
'baseClasses', (
|
|
97307
|
+
SELECT
|
|
97308
|
+
json_group_array(json(json_object(
|
|
97309
|
+
'schema', ec_classname([baseClass].[ECInstanceId], 's'),
|
|
97310
|
+
'name', [baseClass].[Name],
|
|
97311
|
+
'schemaItemType', 'Mixin',
|
|
97312
|
+
'modifier', ${modifier("baseClass")},
|
|
97313
|
+
'label', [baseClass].[DisplayLabel],
|
|
97314
|
+
'description', [baseClass].[Description],
|
|
97315
|
+
'appliesTo', (
|
|
97316
|
+
SELECT IIF(instr([atCTE].[AppliesTo], ':') > 1, ec_classname(ec_classId([atCTE].[AppliesTo]), 's.c'), CONCAT([atCTE].[AppliesToSchema], '.', [atCTE].[AppliesTo]))
|
|
97317
|
+
FROM [AppliesToCTE] [atCTE]
|
|
97318
|
+
WHERE [atCTE].[AppliesToId] = [baseClass].[ECInstanceId]
|
|
97319
|
+
)
|
|
97320
|
+
)))
|
|
97321
|
+
FROM
|
|
97322
|
+
[meta].[ECClassDef] [baseClass]
|
|
97323
|
+
INNER JOIN [meta].[ClassHasAllBaseClasses] [baseClassMap]
|
|
97324
|
+
ON [baseClassMap].[TargetECInstanceId] = [baseclass].[ECInstanceId]
|
|
97325
|
+
WHERE [baseClassMap].[SourceECInstanceId] = [class].[ECInstanceId]
|
|
97326
|
+
)
|
|
97327
|
+
) AS [item]
|
|
97328
|
+
FROM [meta].[ECClassDef] [class]
|
|
97329
|
+
WHERE [class].[Type] = 0 AND EXISTS (SELECT 1 FROM [meta].[ClassCustomAttribute] [ca] WHERE [class].[ECInstanceId] = [ca].[Class].[Id]
|
|
97330
|
+
AND [ca].[CustomAttributeClass].[Id] Is ([CoreCA].[IsMixin]))
|
|
97226
97331
|
`;
|
|
97227
|
-
const withSchemaItems = `
|
|
97228
|
-
SchemaItems AS (
|
|
97229
|
-
${customAttributeQuery}
|
|
97230
|
-
UNION ALL
|
|
97231
|
-
${structQuery}
|
|
97232
|
-
UNION ALL
|
|
97233
|
-
${relationshipQuery}
|
|
97234
|
-
UNION ALL
|
|
97235
|
-
${entityQuery}
|
|
97236
|
-
UNION ALL
|
|
97237
|
-
${mixinQuery}
|
|
97238
|
-
UNION ALL
|
|
97239
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
97240
|
-
UNION ALL
|
|
97241
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
97242
|
-
UNION ALL
|
|
97243
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
97244
|
-
UNION ALL
|
|
97245
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
97246
|
-
UNION ALL
|
|
97247
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
97248
|
-
UNION ALL
|
|
97249
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
97250
|
-
UNION ALL
|
|
97251
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
97252
|
-
UNION ALL
|
|
97253
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
97254
|
-
UNION ALL
|
|
97255
|
-
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
97256
|
-
)
|
|
97332
|
+
const withSchemaItems = `
|
|
97333
|
+
SchemaItems AS (
|
|
97334
|
+
${customAttributeQuery}
|
|
97335
|
+
UNION ALL
|
|
97336
|
+
${structQuery}
|
|
97337
|
+
UNION ALL
|
|
97338
|
+
${relationshipQuery}
|
|
97339
|
+
UNION ALL
|
|
97340
|
+
${entityQuery}
|
|
97341
|
+
UNION ALL
|
|
97342
|
+
${mixinQuery}
|
|
97343
|
+
UNION ALL
|
|
97344
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.enumeration()}
|
|
97345
|
+
UNION ALL
|
|
97346
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.kindOfQuantity()}
|
|
97347
|
+
UNION ALL
|
|
97348
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.propertyCategory()}
|
|
97349
|
+
UNION ALL
|
|
97350
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unit()}
|
|
97351
|
+
UNION ALL
|
|
97352
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.invertedUnit()}
|
|
97353
|
+
UNION ALL
|
|
97354
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.constant()}
|
|
97355
|
+
UNION ALL
|
|
97356
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.phenomenon()}
|
|
97357
|
+
UNION ALL
|
|
97358
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.unitSystem()}
|
|
97359
|
+
UNION ALL
|
|
97360
|
+
${_SchemaItemQueries__WEBPACK_IMPORTED_MODULE_0__.SchemaItemQueries.format()}
|
|
97361
|
+
)
|
|
97257
97362
|
`;
|
|
97258
|
-
const schemaStubQuery = `
|
|
97259
|
-
WITH
|
|
97260
|
-
${withAppliesTo},
|
|
97261
|
-
${withSchemaItems}
|
|
97262
|
-
SELECT
|
|
97263
|
-
[items].[item]
|
|
97264
|
-
FROM
|
|
97265
|
-
[SchemaItems] [items]
|
|
97266
|
-
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
97267
|
-
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
97268
|
-
WHERE [schemaDef].[Name] = :schemaName
|
|
97363
|
+
const schemaStubQuery = `
|
|
97364
|
+
WITH
|
|
97365
|
+
${withAppliesTo},
|
|
97366
|
+
${withSchemaItems}
|
|
97367
|
+
SELECT
|
|
97368
|
+
[items].[item]
|
|
97369
|
+
FROM
|
|
97370
|
+
[SchemaItems] [items]
|
|
97371
|
+
JOIN [meta].[ECSchemaDef] [schemaDef]
|
|
97372
|
+
ON [schemaDef].[ECInstanceId] = [items].[SchemaId]
|
|
97373
|
+
WHERE [schemaDef].[Name] = :schemaName
|
|
97269
97374
|
`;
|
|
97270
|
-
const schemaInfoQuery = `
|
|
97271
|
-
WITH
|
|
97272
|
-
${withSchemaReferences}
|
|
97273
|
-
SELECT
|
|
97274
|
-
[Name] as [name],
|
|
97275
|
-
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
97276
|
-
[Alias] as [alias],
|
|
97277
|
-
[DisplayLabel] as [label],
|
|
97278
|
-
[Description] as [description],
|
|
97279
|
-
(
|
|
97280
|
-
SELECT
|
|
97281
|
-
json_group_array([schemaReferences].[fullName])
|
|
97282
|
-
FROM
|
|
97283
|
-
[SchemaReferences] [schemaReferences]
|
|
97284
|
-
WHERE
|
|
97285
|
-
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
97286
|
-
) AS [references]
|
|
97287
|
-
FROM
|
|
97288
|
-
[meta].[ECSchemaDef] [schemaDef]
|
|
97375
|
+
const schemaInfoQuery = `
|
|
97376
|
+
WITH
|
|
97377
|
+
${withSchemaReferences}
|
|
97378
|
+
SELECT
|
|
97379
|
+
[Name] as [name],
|
|
97380
|
+
CONCAT('',[VersionMajor],'.',[VersionWrite],'.',[VersionMinor]) AS [version],
|
|
97381
|
+
[Alias] as [alias],
|
|
97382
|
+
[DisplayLabel] as [label],
|
|
97383
|
+
[Description] as [description],
|
|
97384
|
+
(
|
|
97385
|
+
SELECT
|
|
97386
|
+
json_group_array([schemaReferences].[fullName])
|
|
97387
|
+
FROM
|
|
97388
|
+
[SchemaReferences] [schemaReferences]
|
|
97389
|
+
WHERE
|
|
97390
|
+
[schemaReferences].[SchemaId] = [schemaDef].[ECInstanceId]
|
|
97391
|
+
) AS [references]
|
|
97392
|
+
FROM
|
|
97393
|
+
[meta].[ECSchemaDef] [schemaDef]
|
|
97289
97394
|
`;
|
|
97290
97395
|
/**
|
|
97291
97396
|
* Partial Schema queries.
|
|
@@ -333626,7 +333731,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
333626
333731
|
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Constants */ "../../core/quantity/lib/esm/Constants.js");
|
|
333627
333732
|
/* harmony import */ var _Exception__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Exception */ "../../core/quantity/lib/esm/Exception.js");
|
|
333628
333733
|
/* harmony import */ var _FormatEnums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FormatEnums */ "../../core/quantity/lib/esm/Formatter/FormatEnums.js");
|
|
333629
|
-
/* harmony import */ var _Interfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Interfaces */ "../../core/quantity/lib/esm/Formatter/Interfaces.js");
|
|
333630
333734
|
/*---------------------------------------------------------------------------------------------
|
|
333631
333735
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
333632
333736
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -333637,7 +333741,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
333637
333741
|
|
|
333638
333742
|
|
|
333639
333743
|
|
|
333640
|
-
|
|
333641
333744
|
// cSpell:ignore ZERONORMALIZED, nosign, onlynegative, signalways, negativeparentheses
|
|
333642
333745
|
// cSpell:ignore trailzeroes, keepsinglezero, zeroempty, keepdecimalpoint, applyrounding, fractiondash, showunitlabel, prependunitlabel, exponentonlynegative
|
|
333643
333746
|
/** A base Format class with shared properties and functionality between quantity and ecschema-metadata Format classes
|
|
@@ -333850,19 +333953,6 @@ class Format extends BaseFormat {
|
|
|
333850
333953
|
const traitStr = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.getTraitString)(trait);
|
|
333851
333954
|
return formatTraits.find((traitEntry) => traitStr === traitEntry) ? true : false;
|
|
333852
333955
|
}
|
|
333853
|
-
async createUnit(unitsProvider, name, label) {
|
|
333854
|
-
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
|
|
333855
|
-
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.`);
|
|
333856
|
-
for (const unit of this.units) {
|
|
333857
|
-
const unitObj = unit[0].name;
|
|
333858
|
-
if (unitObj.toLowerCase() === name.toLowerCase()) // duplicate names are not allowed
|
|
333859
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The unit ${unitObj} has a duplicate name.`);
|
|
333860
|
-
}
|
|
333861
|
-
const newUnit = await unitsProvider.findUnitByName(name);
|
|
333862
|
-
if (!newUnit || !newUnit.isValid)
|
|
333863
|
-
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${name}'.`);
|
|
333864
|
-
this.units.push([newUnit, label]);
|
|
333865
|
-
}
|
|
333866
333956
|
/**
|
|
333867
333957
|
* Clone Format
|
|
333868
333958
|
*/
|
|
@@ -333922,9 +334012,12 @@ class Format extends BaseFormat {
|
|
|
333922
334012
|
* Populates this Format with the values from the provided.
|
|
333923
334013
|
*/
|
|
333924
334014
|
async fromJSON(unitsProvider, jsonObj) {
|
|
334015
|
+
const json = await resolveFormatProps(this.name, unitsProvider, jsonObj);
|
|
334016
|
+
return this.fromFullyResolvedJSON(json);
|
|
334017
|
+
}
|
|
334018
|
+
fromFullyResolvedJSON(jsonObj) {
|
|
333925
334019
|
this.loadFormatProperties(jsonObj);
|
|
333926
|
-
|
|
333927
|
-
this._customProps = jsonObj.custom;
|
|
334020
|
+
this._customProps = jsonObj.custom;
|
|
333928
334021
|
if (undefined !== jsonObj.composite) { // optional
|
|
333929
334022
|
this._units = new Array();
|
|
333930
334023
|
if (jsonObj.composite.includeZero !== undefined) {
|
|
@@ -333944,15 +334037,19 @@ class Format extends BaseFormat {
|
|
|
333944
334037
|
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'`);
|
|
333945
334038
|
}
|
|
333946
334039
|
if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
|
|
333947
|
-
|
|
333948
|
-
|
|
333949
|
-
|
|
333950
|
-
|
|
334040
|
+
for (const nextUnit of jsonObj.composite.units) {
|
|
334041
|
+
if (this._units) {
|
|
334042
|
+
for (const existingUnit of this._units) {
|
|
334043
|
+
const unitObj = existingUnit[0].name;
|
|
334044
|
+
if (unitObj.toLowerCase() === nextUnit.unit.name.toLowerCase()) {
|
|
334045
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The unit ${unitObj} has a duplicate name.`);
|
|
334046
|
+
}
|
|
334047
|
+
}
|
|
333951
334048
|
}
|
|
333952
|
-
|
|
333953
|
-
|
|
333954
|
-
|
|
333955
|
-
|
|
334049
|
+
if (undefined === this._units) {
|
|
334050
|
+
this._units = [];
|
|
334051
|
+
}
|
|
334052
|
+
this._units.push([nextUnit.unit, nextUnit.label]);
|
|
333956
334053
|
}
|
|
333957
334054
|
}
|
|
333958
334055
|
}
|
|
@@ -333960,23 +334057,8 @@ class Format extends BaseFormat {
|
|
|
333960
334057
|
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'`);
|
|
333961
334058
|
}
|
|
333962
334059
|
if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Azimuth || this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Bearing) {
|
|
333963
|
-
|
|
333964
|
-
|
|
333965
|
-
if (typeof (jsonObj.azimuthBaseUnit) !== "string")
|
|
333966
|
-
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'.`);
|
|
333967
|
-
const baseUnit = await unitsProvider.findUnitByName(jsonObj.azimuthBaseUnit);
|
|
333968
|
-
if (!baseUnit || !baseUnit.isValid)
|
|
333969
|
-
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}'.`);
|
|
333970
|
-
this._azimuthBaseUnit = baseUnit;
|
|
333971
|
-
}
|
|
333972
|
-
if (undefined !== jsonObj.revolutionUnit) {
|
|
333973
|
-
if (typeof (jsonObj.revolutionUnit) !== "string")
|
|
333974
|
-
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'.`);
|
|
333975
|
-
const revolutionUnit = await unitsProvider.findUnitByName(jsonObj.revolutionUnit);
|
|
333976
|
-
if (!revolutionUnit || !revolutionUnit.isValid)
|
|
333977
|
-
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}'.`);
|
|
333978
|
-
this._revolutionUnit = revolutionUnit;
|
|
333979
|
-
}
|
|
334060
|
+
this._azimuthBaseUnit = jsonObj.azimuthBaseUnit;
|
|
334061
|
+
this._revolutionUnit = jsonObj.revolutionUnit;
|
|
333980
334062
|
if (this._revolutionUnit === undefined)
|
|
333981
334063
|
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.`);
|
|
333982
334064
|
if (this._azimuthBase !== undefined && this._azimuthBaseUnit === undefined)
|
|
@@ -333989,17 +334071,36 @@ class Format extends BaseFormat {
|
|
|
333989
334071
|
await actualFormat.fromJSON(unitsProvider, formatProps);
|
|
333990
334072
|
return actualFormat;
|
|
333991
334073
|
}
|
|
334074
|
+
static createFromFullyResolvedJSON(name, formatProps) {
|
|
334075
|
+
const actualFormat = new Format(name);
|
|
334076
|
+
actualFormat.fromFullyResolvedJSON(formatProps);
|
|
334077
|
+
return actualFormat;
|
|
334078
|
+
}
|
|
333992
334079
|
/**
|
|
333993
334080
|
* Returns a JSON object that contain the specification for this Format.
|
|
333994
334081
|
*/
|
|
333995
334082
|
toJSON() {
|
|
334083
|
+
const json = this.toFullyResolvedJSON();
|
|
334084
|
+
return {
|
|
334085
|
+
...json,
|
|
334086
|
+
azimuthBaseUnit: json.azimuthBaseUnit?.name,
|
|
334087
|
+
revolutionUnit: json.revolutionUnit?.name,
|
|
334088
|
+
composite: json.composite ? {
|
|
334089
|
+
...json.composite,
|
|
334090
|
+
units: json.composite.units.map((unit) => {
|
|
334091
|
+
return undefined !== unit.label ? { name: unit.unit.name, label: unit.label } : { name: unit.unit.name };
|
|
334092
|
+
}),
|
|
334093
|
+
} : undefined,
|
|
334094
|
+
};
|
|
334095
|
+
}
|
|
334096
|
+
toFullyResolvedJSON() {
|
|
333996
334097
|
let composite;
|
|
333997
334098
|
if (this.units) {
|
|
333998
334099
|
const units = this.units.map((value) => {
|
|
333999
334100
|
if (undefined !== value[1])
|
|
334000
|
-
return {
|
|
334101
|
+
return { unit: value[0], label: value[1] };
|
|
334001
334102
|
else
|
|
334002
|
-
return {
|
|
334103
|
+
return { unit: value[0] };
|
|
334003
334104
|
});
|
|
334004
334105
|
composite = {
|
|
334005
334106
|
spacer: this.spacer,
|
|
@@ -334007,8 +334108,8 @@ class Format extends BaseFormat {
|
|
|
334007
334108
|
units,
|
|
334008
334109
|
};
|
|
334009
334110
|
}
|
|
334010
|
-
const azimuthBaseUnit = this.azimuthBaseUnit
|
|
334011
|
-
const revolutionUnit = this.revolutionUnit
|
|
334111
|
+
const azimuthBaseUnit = this.azimuthBaseUnit;
|
|
334112
|
+
const revolutionUnit = this.revolutionUnit;
|
|
334012
334113
|
const baseFormatProps = {
|
|
334013
334114
|
type: this.type,
|
|
334014
334115
|
precision: this.precision,
|
|
@@ -334029,15 +334130,65 @@ class Format extends BaseFormat {
|
|
|
334029
334130
|
azimuthCounterClockwise: this.azimuthCounterClockwise,
|
|
334030
334131
|
revolutionUnit,
|
|
334031
334132
|
composite,
|
|
334133
|
+
custom: this.customProps,
|
|
334032
334134
|
};
|
|
334033
|
-
if (this.customProps)
|
|
334034
|
-
return {
|
|
334035
|
-
...baseFormatProps,
|
|
334036
|
-
custom: this.customProps,
|
|
334037
|
-
};
|
|
334038
334135
|
return baseFormatProps;
|
|
334039
334136
|
}
|
|
334040
334137
|
}
|
|
334138
|
+
async function resolveCompositeUnit(provider, name, label) {
|
|
334139
|
+
if (typeof name !== "string" || (undefined !== label && typeof label !== "string")) {
|
|
334140
|
+
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.`);
|
|
334141
|
+
}
|
|
334142
|
+
const unit = await provider.findUnitByName(name);
|
|
334143
|
+
if (!unit || !unit.isValid) {
|
|
334144
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${name}'.`);
|
|
334145
|
+
}
|
|
334146
|
+
return unit;
|
|
334147
|
+
}
|
|
334148
|
+
async function resolveAzimuthBearingUnit(formatName, jsonObj, key, provider) {
|
|
334149
|
+
const unitName = jsonObj[key];
|
|
334150
|
+
if (undefined !== unitName) {
|
|
334151
|
+
if (typeof unitName !== "string") {
|
|
334152
|
+
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'.`);
|
|
334153
|
+
}
|
|
334154
|
+
const unit = await provider.findUnitByName(unitName);
|
|
334155
|
+
if (!unit || !unit.isValid) {
|
|
334156
|
+
throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `Invalid unit name '${unitName}' for ${key} in Format '${formatName}'.`);
|
|
334157
|
+
}
|
|
334158
|
+
return unit;
|
|
334159
|
+
}
|
|
334160
|
+
return undefined;
|
|
334161
|
+
}
|
|
334162
|
+
async function resolveFormatProps(formatName, unitsProvider, jsonObj) {
|
|
334163
|
+
let units;
|
|
334164
|
+
if (undefined !== jsonObj.composite?.units) {
|
|
334165
|
+
units = await Promise.all(jsonObj.composite.units.map(async (entry) => {
|
|
334166
|
+
const unit = await resolveCompositeUnit(unitsProvider, entry.name);
|
|
334167
|
+
return { unit, label: entry.label };
|
|
334168
|
+
}));
|
|
334169
|
+
}
|
|
334170
|
+
let azimuthBaseUnit, revolutionUnit;
|
|
334171
|
+
const type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(jsonObj.type, formatName);
|
|
334172
|
+
if (type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Azimuth || type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Bearing) {
|
|
334173
|
+
azimuthBaseUnit = await resolveAzimuthBearingUnit(formatName, jsonObj, "azimuthBaseUnit", unitsProvider);
|
|
334174
|
+
revolutionUnit = await resolveAzimuthBearingUnit(formatName, jsonObj, "revolutionUnit", unitsProvider);
|
|
334175
|
+
if (!revolutionUnit) {
|
|
334176
|
+
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.`);
|
|
334177
|
+
}
|
|
334178
|
+
if (jsonObj.azimuthBase !== undefined && !azimuthBaseUnit) {
|
|
334179
|
+
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.`);
|
|
334180
|
+
}
|
|
334181
|
+
}
|
|
334182
|
+
return {
|
|
334183
|
+
...jsonObj,
|
|
334184
|
+
azimuthBaseUnit,
|
|
334185
|
+
revolutionUnit,
|
|
334186
|
+
composite: units ? {
|
|
334187
|
+
...jsonObj.composite,
|
|
334188
|
+
units,
|
|
334189
|
+
} : undefined,
|
|
334190
|
+
};
|
|
334191
|
+
}
|
|
334041
334192
|
|
|
334042
334193
|
|
|
334043
334194
|
/***/ }),
|
|
@@ -337128,18 +337279,18 @@ class Settings {
|
|
|
337128
337279
|
}
|
|
337129
337280
|
}
|
|
337130
337281
|
toString() {
|
|
337131
|
-
return `Configurations:
|
|
337132
|
-
backend location: ${this.Backend.location},
|
|
337133
|
-
backend name: ${this.Backend.name},
|
|
337134
|
-
backend version: ${this.Backend.version},
|
|
337135
|
-
oidc client id: ${this.oidcClientId},
|
|
337136
|
-
oidc scopes: ${this.oidcScopes},
|
|
337137
|
-
applicationId: ${this.gprid},
|
|
337138
|
-
log level: ${this.logLevel},
|
|
337139
|
-
testing iModelTileRpcTests: ${this.runiModelTileRpcTests},
|
|
337140
|
-
testing PresentationRpcTest: ${this.runPresentationRpcTests},
|
|
337141
|
-
testing iModelReadRpcTests: ${this.runiModelReadRpcTests},
|
|
337142
|
-
testing DevToolsRpcTests: ${this.runDevToolsRpcTests},
|
|
337282
|
+
return `Configurations:
|
|
337283
|
+
backend location: ${this.Backend.location},
|
|
337284
|
+
backend name: ${this.Backend.name},
|
|
337285
|
+
backend version: ${this.Backend.version},
|
|
337286
|
+
oidc client id: ${this.oidcClientId},
|
|
337287
|
+
oidc scopes: ${this.oidcScopes},
|
|
337288
|
+
applicationId: ${this.gprid},
|
|
337289
|
+
log level: ${this.logLevel},
|
|
337290
|
+
testing iModelTileRpcTests: ${this.runiModelTileRpcTests},
|
|
337291
|
+
testing PresentationRpcTest: ${this.runPresentationRpcTests},
|
|
337292
|
+
testing iModelReadRpcTests: ${this.runiModelReadRpcTests},
|
|
337293
|
+
testing DevToolsRpcTests: ${this.runDevToolsRpcTests},
|
|
337143
337294
|
testing iModelWriteRpcTests: ${this.runiModelWriteRpcTests}`;
|
|
337144
337295
|
}
|
|
337145
337296
|
}
|
|
@@ -337353,7 +337504,7 @@ class TestContext {
|
|
|
337353
337504
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
337354
337505
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
337355
337506
|
await core_frontend_1.NoRenderApp.startup({
|
|
337356
|
-
applicationVersion: "5.2.0-dev.
|
|
337507
|
+
applicationVersion: "5.2.0-dev.31",
|
|
337357
337508
|
applicationId: this.settings.gprid,
|
|
337358
337509
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
337359
337510
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -350538,13 +350689,13 @@ class FavoritePropertiesManager {
|
|
|
350538
350689
|
if (missingClasses.size === 0) {
|
|
350539
350690
|
return baseClasses;
|
|
350540
350691
|
}
|
|
350541
|
-
const query = `
|
|
350542
|
-
SELECT (derivedSchema.Name || ':' || derivedClass.Name) AS "ClassFullName", (baseSchema.Name || ':' || baseClass.Name) AS "BaseClassFullName"
|
|
350543
|
-
FROM ECDbMeta.ClassHasAllBaseClasses baseClassRels
|
|
350544
|
-
INNER JOIN ECDbMeta.ECClassDef derivedClass ON derivedClass.ECInstanceId = baseClassRels.SourceECInstanceId
|
|
350545
|
-
INNER JOIN ECDbMeta.ECSchemaDef derivedSchema ON derivedSchema.ECInstanceId = derivedClass.Schema.Id
|
|
350546
|
-
INNER JOIN ECDbMeta.ECClassDef baseClass ON baseClass.ECInstanceId = baseClassRels.TargetECInstanceId
|
|
350547
|
-
INNER JOIN ECDbMeta.ECSchemaDef baseSchema ON baseSchema.ECInstanceId = baseClass.Schema.Id
|
|
350692
|
+
const query = `
|
|
350693
|
+
SELECT (derivedSchema.Name || ':' || derivedClass.Name) AS "ClassFullName", (baseSchema.Name || ':' || baseClass.Name) AS "BaseClassFullName"
|
|
350694
|
+
FROM ECDbMeta.ClassHasAllBaseClasses baseClassRels
|
|
350695
|
+
INNER JOIN ECDbMeta.ECClassDef derivedClass ON derivedClass.ECInstanceId = baseClassRels.SourceECInstanceId
|
|
350696
|
+
INNER JOIN ECDbMeta.ECSchemaDef derivedSchema ON derivedSchema.ECInstanceId = derivedClass.Schema.Id
|
|
350697
|
+
INNER JOIN ECDbMeta.ECClassDef baseClass ON baseClass.ECInstanceId = baseClassRels.TargetECInstanceId
|
|
350698
|
+
INNER JOIN ECDbMeta.ECSchemaDef baseSchema ON baseSchema.ECInstanceId = baseClass.Schema.Id
|
|
350548
350699
|
WHERE (derivedSchema.Name || ':' || derivedClass.Name) IN (${[...missingClasses].map((className) => `'${className}'`).join(",")})`;
|
|
350549
350700
|
const reader = imodel.createQueryReader(query, undefined, { rowFormat: core_common_1.QueryRowFormat.UseJsPropertyNames });
|
|
350550
350701
|
while (await reader.step()) {
|
|
@@ -362620,7 +362771,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
362620
362771
|
/***/ ((module) => {
|
|
362621
362772
|
|
|
362622
362773
|
"use strict";
|
|
362623
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.2.0-dev.
|
|
362774
|
+
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"}}');
|
|
362624
362775
|
|
|
362625
362776
|
/***/ }),
|
|
362626
362777
|
|