@itwin/rpcinterface-full-stack-tests 3.4.0-dev.3 → 3.4.0-dev.33

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.
@@ -21,9 +21,9 @@
21
21
 
22
22
  /***/ }),
23
23
 
24
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.2.7/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
24
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.3.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
25
25
  /*!********************************************************************************************************************!*\
26
- !*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.2.7/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
26
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.3.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
27
27
  \********************************************************************************************************************/
28
28
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
29
29
 
@@ -2296,7 +2296,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
2296
2296
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2297
2297
  * See LICENSE.md in the project root for license terms and full copyright notice.
2298
2298
  *--------------------------------------------------------------------------------------------*/
2299
- const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.2.7/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
2299
+ const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.3.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
2300
2300
  // Shared by both the frontend and backend side of the tests
2301
2301
  exports.getTokenCallbackName = "getToken";
2302
2302
  async function getAccessTokenFromBackend(user, oidcConfig) {
@@ -21236,9 +21236,9 @@ module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
21236
21236
 
21237
21237
  /***/ }),
21238
21238
 
21239
- /***/ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.4/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js":
21239
+ /***/ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.5/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js":
21240
21240
  /*!****************************************************************************************************************************************************************************!*\
21241
- !*** ../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.4/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js ***!
21241
+ !*** ../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.5/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js ***!
21242
21242
  \****************************************************************************************************************************************************************************/
21243
21243
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
21244
21244
 
@@ -21273,12 +21273,12 @@ var serializeCookie = function serializeCookie(name, val, options) {
21273
21273
  var opt = options || {};
21274
21274
  opt.path = opt.path || '/';
21275
21275
  var value = encodeURIComponent(val);
21276
- var str = name + '=' + value;
21276
+ var str = "".concat(name, "=").concat(value);
21277
21277
 
21278
21278
  if (opt.maxAge > 0) {
21279
21279
  var maxAge = opt.maxAge - 0;
21280
- if (isNaN(maxAge)) throw new Error('maxAge should be a Number');
21281
- str += '; Max-Age=' + Math.floor(maxAge);
21280
+ if (Number.isNaN(maxAge)) throw new Error('maxAge should be a Number');
21281
+ str += "; Max-Age=".concat(Math.floor(maxAge));
21282
21282
  }
21283
21283
 
21284
21284
  if (opt.domain) {
@@ -21286,7 +21286,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
21286
21286
  throw new TypeError('option domain is invalid');
21287
21287
  }
21288
21288
 
21289
- str += '; Domain=' + opt.domain;
21289
+ str += "; Domain=".concat(opt.domain);
21290
21290
  }
21291
21291
 
21292
21292
  if (opt.path) {
@@ -21294,7 +21294,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
21294
21294
  throw new TypeError('option path is invalid');
21295
21295
  }
21296
21296
 
21297
- str += '; Path=' + opt.path;
21297
+ str += "; Path=".concat(opt.path);
21298
21298
  }
21299
21299
 
21300
21300
  if (opt.expires) {
@@ -21302,7 +21302,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
21302
21302
  throw new TypeError('option expires is invalid');
21303
21303
  }
21304
21304
 
21305
- str += '; Expires=' + opt.expires.toUTCString();
21305
+ str += "; Expires=".concat(opt.expires.toUTCString());
21306
21306
  }
21307
21307
 
21308
21308
  if (opt.httpOnly) str += '; HttpOnly';
@@ -21352,7 +21352,7 @@ var cookie = {
21352
21352
  document.cookie = serializeCookie(name, encodeURIComponent(value), cookieOptions);
21353
21353
  },
21354
21354
  read: function read(name) {
21355
- var nameEQ = name + '=';
21355
+ var nameEQ = "".concat(name, "=");
21356
21356
  var ca = document.cookie.split(';');
21357
21357
 
21358
21358
  for (var i = 0; i < ca.length; i++) {
@@ -21562,21 +21562,16 @@ var path = {
21562
21562
  var subdomain = {
21563
21563
  name: 'subdomain',
21564
21564
  lookup: function lookup(options) {
21565
- var found;
21565
+ // If given get the subdomain index else 1
21566
+ var lookupFromSubdomainIndex = typeof options.lookupFromSubdomainIndex === 'number' ? options.lookupFromSubdomainIndex + 1 : 1; // get all matches if window.location. is existing
21567
+ // first item of match is the match itself and the second is the first group macht which sould be the first subdomain match
21568
+ // is the hostname no public domain get the or option of localhost
21566
21569
 
21567
- if (typeof window !== 'undefined') {
21568
- var language = window.location.href.match(/(?:http[s]*\:\/\/)*(.*?)\.(?=[^\/]*\..{2,5})/gi);
21570
+ var language = typeof window !== 'undefined' && window.location && window.location.hostname && window.location.hostname.match(/^(\w{2,5})\.(([a-z0-9-]{1,63}\.[a-z]{2,6})|localhost)/i); // if there is no match (null) return undefined
21569
21571
 
21570
- if (language instanceof Array) {
21571
- if (typeof options.lookupFromSubdomainIndex === 'number') {
21572
- found = language[options.lookupFromSubdomainIndex].replace('http://', '').replace('https://', '').replace('.', '');
21573
- } else {
21574
- found = language[0].replace('http://', '').replace('https://', '').replace('.', '');
21575
- }
21576
- }
21577
- }
21572
+ if (!language) return undefined; // return the given group match
21578
21573
 
21579
- return found;
21574
+ return language[lookupFromSubdomainIndex];
21580
21575
  }
21581
21576
  };
21582
21577
 
@@ -21589,8 +21584,8 @@ function getDefaults() {
21589
21584
  lookupSessionStorage: 'i18nextLng',
21590
21585
  // cache user language
21591
21586
  caches: ['localStorage'],
21592
- excludeCacheFor: ['cimode'] //cookieMinutes: 10,
21593
- //cookieDomain: 'myDomain'
21587
+ excludeCacheFor: ['cimode'] // cookieMinutes: 10,
21588
+ // cookieDomain: 'myDomain'
21594
21589
 
21595
21590
  };
21596
21591
  }
@@ -61497,7 +61492,7 @@ class StopWatch {
61497
61492
  get current() { return BeDuration.fromMilliseconds(BeTimePoint.now().milliseconds - (!!this._start ? this._start.milliseconds : 0)); }
61498
61493
  /** Get the elapsed time, in seconds, since start() on a running timer. */
61499
61494
  get currentSeconds() { return this.current.seconds; }
61500
- /** Get the elapsed time between start() and stop() on this timer. */
61495
+ /** Get the elapsed time between start() and stop() on this timer in milliseconds. */
61501
61496
  get elapsed() { return BeDuration.fromMilliseconds((!!this._stop ? this._stop.milliseconds : BeTimePoint.now().milliseconds) - (!!this._start ? this._start.milliseconds : 0)); }
61502
61497
  /** Get the elapsed time, in seconds, between start() and stop() on this timer. */
61503
61498
  get elapsedSeconds() { return this.elapsed.seconds; }
@@ -61636,7 +61631,10 @@ class Tracing {
61636
61631
  static withOpenTelemetry(base, isError = false) {
61637
61632
  return (category, message, metaData) => {
61638
61633
  var _a, _b;
61639
- (_b = (_a = Tracing._openTelemetry) === null || _a === void 0 ? void 0 : _a.trace.getSpan(Tracing._openTelemetry.context.active())) === null || _b === void 0 ? void 0 : _b.addEvent(message, { ...flattenObject(_Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.getMetaData(metaData)), error: isError });
61634
+ try {
61635
+ (_b = (_a = Tracing._openTelemetry) === null || _a === void 0 ? void 0 : _a.trace.getSpan(Tracing._openTelemetry.context.active())) === null || _b === void 0 ? void 0 : _b.addEvent(message, { ...flattenObject(_Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.getMetaData(metaData)), error: isError });
61636
+ }
61637
+ catch (_e) { } // avoid throwing random errors (with stack trace mangled by async hooks) when openTelemetry collector doesn't work
61640
61638
  base(category, message, metaData);
61641
61639
  };
61642
61640
  }
@@ -63282,7 +63280,8 @@ __webpack_require__.r(__webpack_exports__);
63282
63280
  * @module Codes
63283
63281
  */
63284
63282
 
63285
- /** A three-part structure containing information about the [Code]($docs/bis/guide/fundamentals/codes) of an Element
63283
+ /**
63284
+ * A three-part structure containing information about the [Code]($docs/bis/guide/fundamentals/codes) of an Element
63286
63285
  * @public
63287
63286
  */
63288
63287
  class Code {
@@ -66037,6 +66036,26 @@ class DisplayStyle3dSettings extends DisplayStyleSettings {
66037
66036
  }
66038
66037
 
66039
66038
 
66039
+ /***/ }),
66040
+
66041
+ /***/ "../../core/common/lib/esm/ECSchemaProps.js":
66042
+ /*!**************************************************!*\
66043
+ !*** ../../core/common/lib/esm/ECSchemaProps.js ***!
66044
+ \**************************************************/
66045
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
66046
+
66047
+ "use strict";
66048
+ __webpack_require__.r(__webpack_exports__);
66049
+ /*---------------------------------------------------------------------------------------------
66050
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
66051
+ * See LICENSE.md in the project root for license terms and full copyright notice.
66052
+ *--------------------------------------------------------------------------------------------*/
66053
+ /** @packageDocumentation
66054
+ * @module ECSQL
66055
+ */
66056
+
66057
+
66058
+
66040
66059
  /***/ }),
66041
66060
 
66042
66061
  /***/ "../../core/common/lib/esm/ECSqlReader.js":
@@ -68933,12 +68952,21 @@ var Gradient;
68933
68952
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== imageBuffer);
68934
68953
  return imageBuffer;
68935
68954
  }
68936
- /** Applies this gradient's settings to produce a bitmap image.
68955
+ /** Produces a bitmap image from this gradient.
68937
68956
  * @param width Width of the image
68938
68957
  * @param height Height of the image
68939
- * @returns Bitmap image of the specified dimensions. For thematic gradients with a width > 1, pixels in each column will be identical.
68958
+ * @note If this gradient uses [[Gradient.Mode.Thematic]], then the width of the image will be 1 and the margin color will be included in the top and bottom rows.
68959
+ * @see [[produceImage]] for more customization.
68940
68960
  */
68941
68961
  getImage(width, height) {
68962
+ if (this.mode === Mode.Thematic)
68963
+ width = 1;
68964
+ return this.produceImage({ width, height, includeThematicMargin: true });
68965
+ }
68966
+ /** Produces a bitmap image from this gradient. */
68967
+ produceImage(args) {
68968
+ var _a;
68969
+ const { width, height, includeThematicMargin } = { ...args };
68942
68970
  const thisAngle = (this.angle === undefined) ? 0 : this.angle.radians;
68943
68971
  const cosA = Math.cos(thisAngle);
68944
68972
  const sinA = Math.sin(thisAngle);
@@ -69044,27 +69072,29 @@ var Gradient;
69044
69072
  break;
69045
69073
  }
69046
69074
  case Mode.Thematic: {
69047
- let settings = this.thematicSettings;
69048
- if (settings === undefined) {
69049
- settings = _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.defaults;
69050
- }
69075
+ const settings = (_a = this.thematicSettings) !== null && _a !== void 0 ? _a : _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.defaults;
69051
69076
  for (let j = 0; j < height; j++) {
69052
69077
  let f = 1 - j / height;
69053
69078
  let color;
69054
- f = (f - _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.margin) / (_ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.contentRange);
69055
- switch (settings.mode) {
69056
- case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.SteppedWithDelimiter:
69057
- case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.IsoLines:
69058
- case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.Stepped: {
69059
- if (settings.stepCount > 1) {
69060
- const fStep = Math.floor(f * settings.stepCount - 0.00001) / (settings.stepCount - 1);
69061
- color = this.mapColor(fStep);
69079
+ if (includeThematicMargin && (f < _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.margin || f > _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.contentMax)) {
69080
+ color = settings.marginColor;
69081
+ }
69082
+ else {
69083
+ f = (f - _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.margin) / (_ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientSettings.contentRange);
69084
+ switch (settings.mode) {
69085
+ case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.SteppedWithDelimiter:
69086
+ case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.IsoLines:
69087
+ case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.Stepped: {
69088
+ if (settings.stepCount > 1) {
69089
+ const fStep = Math.floor(f * settings.stepCount - 0.00001) / (settings.stepCount - 1);
69090
+ color = this.mapColor(fStep);
69091
+ }
69092
+ break;
69062
69093
  }
69063
- break;
69094
+ case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.Smooth:
69095
+ color = this.mapColor(f);
69096
+ break;
69064
69097
  }
69065
- case _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__.ThematicGradientMode.Smooth:
69066
- color = this.mapColor(f);
69067
- break;
69068
69098
  }
69069
69099
  for (let i = 0; i < width; i++) {
69070
69100
  image[currentIdx--] = color.getAlpha();
@@ -77434,47 +77464,47 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
77434
77464
  "use strict";
77435
77465
  __webpack_require__.r(__webpack_exports__);
77436
77466
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
77437
- /* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.AdditionalTransform),
77438
- /* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.AffineTransform),
77439
- /* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.AmbientLight),
77467
+ /* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_35__.AdditionalTransform),
77468
+ /* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_48__.AffineTransform),
77469
+ /* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.AmbientLight),
77440
77470
  /* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
77441
77471
  /* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
77442
77472
  /* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
77443
77473
  /* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
77444
- /* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__.AreaPattern),
77445
- /* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_138__.B3dmHeader),
77446
- /* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.BRepEntity),
77447
- /* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.BRepGeometryOperation),
77448
- /* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BackendError),
77449
- /* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.BackgroundFill),
77474
+ /* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_36__.AreaPattern),
77475
+ /* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_139__.B3dmHeader),
77476
+ /* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.BRepEntity),
77477
+ /* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.BRepGeometryOperation),
77478
+ /* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BackendError),
77479
+ /* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_51__.BackgroundFill),
77450
77480
  /* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
77451
77481
  /* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
77452
77482
  /* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
77453
77483
  /* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
77454
- /* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.BaseLayerSettings),
77455
- /* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.BaseMapLayerSettings),
77456
- /* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.BatchType),
77457
- /* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_132__.BentleyCloudRpcConfiguration),
77458
- /* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_132__.BentleyCloudRpcManager),
77459
- /* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_133__.BentleyCloudRpcProtocol),
77460
- /* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyError),
77461
- /* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyStatus),
77484
+ /* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_72__.BaseLayerSettings),
77485
+ /* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.BaseMapLayerSettings),
77486
+ /* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.BatchType),
77487
+ /* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_133__.BentleyCloudRpcConfiguration),
77488
+ /* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_133__.BentleyCloudRpcManager),
77489
+ /* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcProtocol),
77490
+ /* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BentleyError),
77491
+ /* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BentleyStatus),
77462
77492
  /* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
77463
- /* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.BlobOptionsBuilder),
77464
- /* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__.BoundingSphere),
77493
+ /* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.BlobOptionsBuilder),
77494
+ /* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_37__.BoundingSphere),
77465
77495
  /* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
77466
- /* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BriefcaseStatus),
77467
- /* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.CURRENT_INVOCATION),
77468
- /* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.CURRENT_REQUEST),
77496
+ /* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BriefcaseStatus),
77497
+ /* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_INVOCATION),
77498
+ /* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_REQUEST),
77469
77499
  /* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
77470
- /* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Carto2DDegrees),
77471
- /* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.Cartographic),
77472
- /* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.CartographicRange),
77500
+ /* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_48__.Carto2DDegrees),
77501
+ /* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_38__.Cartographic),
77502
+ /* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_38__.CartographicRange),
77473
77503
  /* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangeOpCode),
77474
- /* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChangeSetStatus),
77504
+ /* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ChangeSetStatus),
77475
77505
  /* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangedValueState),
77476
77506
  /* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
77477
- /* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChannelConstraintError),
77507
+ /* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ChannelConstraintError),
77478
77508
  /* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
77479
77509
  /* harmony export */ "CloudStorageCache": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageCache),
77480
77510
  /* harmony export */ "CloudStorageContainerUrl": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageContainerUrl),
@@ -77485,312 +77515,312 @@ __webpack_require__.r(__webpack_exports__);
77485
77515
  /* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.CodeSpec),
77486
77516
  /* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_15__.ColorByName),
77487
77517
  /* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
77488
- /* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.ColorIndex),
77518
+ /* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.ColorIndex),
77489
77519
  /* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
77490
- /* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_139__.CompositeTileHeader),
77491
- /* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.ContentFlags),
77492
- /* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.ContentIdProvider),
77520
+ /* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_140__.CompositeTileHeader),
77521
+ /* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.ContentFlags),
77522
+ /* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.ContentIdProvider),
77493
77523
  /* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
77494
77524
  /* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
77495
77525
  /* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
77496
- /* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_143__.CurrentImdlVersion),
77526
+ /* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_144__.CurrentImdlVersion),
77497
77527
  /* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
77498
- /* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbQueryError),
77499
- /* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbRequestKind),
77500
- /* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseKind),
77501
- /* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseStatus),
77502
- /* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.DbResult),
77503
- /* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbValueFormat),
77504
- /* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_85__.DefaultSupportedTypes),
77505
- /* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_92__.DevToolsRpcInterface),
77506
- /* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_92__.DevToolsStatsOptions),
77528
+ /* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbQueryError),
77529
+ /* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbRequestKind),
77530
+ /* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbResponseKind),
77531
+ /* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbResponseStatus),
77532
+ /* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.DbResult),
77533
+ /* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbValueFormat),
77534
+ /* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__.DefaultSupportedTypes),
77535
+ /* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_93__.DevToolsRpcInterface),
77536
+ /* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_93__.DevToolsStatsOptions),
77507
77537
  /* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
77508
77538
  /* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
77509
77539
  /* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
77510
77540
  /* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECJsNames),
77511
- /* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.ECSqlReader),
77541
+ /* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_81__.ECSqlReader),
77512
77542
  /* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
77513
77543
  /* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
77514
- /* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_114__.Easing),
77515
- /* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.EcefLocation),
77516
- /* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.EdgeArgs),
77517
- /* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometry),
77518
- /* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ElementGeometryChange),
77519
- /* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometryOpcode),
77520
- /* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_70__.EmptyLocalization),
77521
- /* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.EntityMetaData),
77522
- /* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_26__.Environment),
77523
- /* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.ExternalSourceAttachmentRole),
77524
- /* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.Feature),
77525
- /* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearance),
77526
- /* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearanceProvider),
77527
- /* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_27__.FeatureGates),
77528
- /* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndex),
77529
- /* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndexType),
77530
- /* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__.FeatureOverrideType),
77531
- /* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureOverrides),
77532
- /* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.FeatureTable),
77533
- /* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_143__.FeatureTableHeader),
77534
- /* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.FillDisplay),
77535
- /* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.FillFlags),
77536
- /* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontMap),
77537
- /* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontType),
77538
- /* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.FresnelSettings),
77539
- /* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Frustum),
77540
- /* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__.FrustumPlanes),
77541
- /* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.GeoCoordStatus),
77542
- /* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeocentricTransform),
77543
- /* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticDatum),
77544
- /* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__.GeodeticEllipsoid),
77545
- /* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransform),
77546
- /* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransformPath),
77547
- /* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.GeographicCRS),
77548
- /* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryClass),
77549
- /* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryParams),
77550
- /* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamBuilder),
77551
- /* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamFlags),
77552
- /* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamIterator),
77553
- /* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__.GeometrySummaryVerbosity),
77554
- /* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_141__.GlbHeader),
77544
+ /* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Easing),
77545
+ /* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_61__.EcefLocation),
77546
+ /* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.EdgeArgs),
77547
+ /* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.ElementGeometry),
77548
+ /* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_83__.ElementGeometryChange),
77549
+ /* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.ElementGeometryOpcode),
77550
+ /* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_71__.EmptyLocalization),
77551
+ /* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.EntityMetaData),
77552
+ /* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_27__.Environment),
77553
+ /* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.ExternalSourceAttachmentRole),
77554
+ /* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.Feature),
77555
+ /* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureAppearance),
77556
+ /* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureAppearanceProvider),
77557
+ /* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_28__.FeatureGates),
77558
+ /* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.FeatureIndex),
77559
+ /* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.FeatureIndexType),
77560
+ /* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__.FeatureOverrideType),
77561
+ /* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrides),
77562
+ /* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.FeatureTable),
77563
+ /* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_144__.FeatureTableHeader),
77564
+ /* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_51__.FillDisplay),
77565
+ /* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_54__.FillFlags),
77566
+ /* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontMap),
77567
+ /* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontType),
77568
+ /* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.FresnelSettings),
77569
+ /* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Frustum),
77570
+ /* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_41__.FrustumPlanes),
77571
+ /* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_34__.GeoCoordStatus),
77572
+ /* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GeocentricTransform),
77573
+ /* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GeodeticDatum),
77574
+ /* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_43__.GeodeticEllipsoid),
77575
+ /* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GeodeticTransform),
77576
+ /* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GeodeticTransformPath),
77577
+ /* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.GeographicCRS),
77578
+ /* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_51__.GeometryClass),
77579
+ /* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_51__.GeometryParams),
77580
+ /* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.GeometryStreamBuilder),
77581
+ /* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.GeometryStreamFlags),
77582
+ /* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.GeometryStreamIterator),
77583
+ /* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_52__.GeometrySummaryVerbosity),
77584
+ /* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_142__.GlbHeader),
77555
77585
  /* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
77556
- /* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_141__.GltfV2ChunkTypes),
77557
- /* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_141__.GltfVersions),
77558
- /* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_52__.Gradient),
77559
- /* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.GraphicParams),
77560
- /* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileDefinition),
77561
- /* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileTransform),
77562
- /* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_116__.GridOrientationType),
77563
- /* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_54__.GroundPlane),
77564
- /* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_57__.HSLColor),
77565
- /* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVColor),
77566
- /* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVConstants),
77567
- /* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.Helmert2DWithZOffset),
77568
- /* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.HemisphereLights),
77569
- /* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_55__.HiddenLine),
77570
- /* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_56__.Hilite),
77571
- /* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRS),
77572
- /* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRSExtent),
77573
- /* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_142__.I3dmHeader),
77574
- /* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.IModel),
77575
- /* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelError),
77576
- /* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_93__.IModelNotFoundResponse),
77577
- /* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_93__.IModelReadRpcInterface),
77578
- /* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelStatus),
77579
- /* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_94__.IModelTileRpcInterface),
77580
- /* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_62__.IModelVersion),
77581
- /* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.INSTANCE),
77582
- /* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBuffer),
77583
- /* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBufferFormat),
77584
- /* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphic),
77585
- /* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphicCorners),
77586
- /* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ImageMapLayerSettings),
77587
- /* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSource),
77588
- /* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSourceFormat),
77589
- /* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_143__.ImdlFlags),
77590
- /* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_143__.ImdlHeader),
77591
- /* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.InternetConnectivityStatus),
77592
- /* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_114__.Interpolation),
77593
- /* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__.IpcAppChannel),
77594
- /* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__.IpcSession),
77595
- /* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocket),
77596
- /* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketBackend),
77597
- /* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketFrontend),
77598
- /* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessage),
77599
- /* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessageType),
77600
- /* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketTransport),
77601
- /* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.LightSettings),
77602
- /* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_69__.LinePixels),
77603
- /* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__.LineStyle),
77604
- /* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.MapImagerySettings),
77605
- /* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapLayerSettings),
77606
- /* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapSubLayerSettings),
77607
- /* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_123__.MarshalingBinaryMarker),
77608
- /* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_73__.MassPropertiesOperation),
77609
- /* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.MeshEdge),
77610
- /* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.MeshEdges),
77611
- /* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.MeshPolyline),
77612
- /* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.MeshPolylineList),
77613
- /* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroup),
77614
- /* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroups),
77615
- /* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ModelGeometryChanges),
77616
- /* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ModelMapLayerSettings),
77586
+ /* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_142__.GltfV2ChunkTypes),
77587
+ /* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_142__.GltfVersions),
77588
+ /* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_53__.Gradient),
77589
+ /* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_54__.GraphicParams),
77590
+ /* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GridFileDefinition),
77591
+ /* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GridFileTransform),
77592
+ /* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.GridOrientationType),
77593
+ /* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_55__.GroundPlane),
77594
+ /* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_58__.HSLColor),
77595
+ /* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_59__.HSVColor),
77596
+ /* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_59__.HSVConstants),
77597
+ /* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_35__.Helmert2DWithZOffset),
77598
+ /* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.HemisphereLights),
77599
+ /* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_56__.HiddenLine),
77600
+ /* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_57__.Hilite),
77601
+ /* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.HorizontalCRS),
77602
+ /* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.HorizontalCRSExtent),
77603
+ /* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_143__.I3dmHeader),
77604
+ /* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_61__.IModel),
77605
+ /* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.IModelError),
77606
+ /* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_94__.IModelNotFoundResponse),
77607
+ /* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_94__.IModelReadRpcInterface),
77608
+ /* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.IModelStatus),
77609
+ /* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_95__.IModelTileRpcInterface),
77610
+ /* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_63__.IModelVersion),
77611
+ /* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.INSTANCE),
77612
+ /* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageBuffer),
77613
+ /* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageBufferFormat),
77614
+ /* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_45__.ImageGraphic),
77615
+ /* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_45__.ImageGraphicCorners),
77616
+ /* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.ImageMapLayerSettings),
77617
+ /* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageSource),
77618
+ /* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageSourceFormat),
77619
+ /* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_144__.ImdlFlags),
77620
+ /* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_144__.ImdlHeader),
77621
+ /* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.InternetConnectivityStatus),
77622
+ /* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Interpolation),
77623
+ /* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_68__.IpcAppChannel),
77624
+ /* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_67__.IpcSession),
77625
+ /* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocket),
77626
+ /* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketBackend),
77627
+ /* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketFrontend),
77628
+ /* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketMessage),
77629
+ /* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketMessageType),
77630
+ /* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketTransport),
77631
+ /* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.LightSettings),
77632
+ /* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_70__.LinePixels),
77633
+ /* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_46__.LineStyle),
77634
+ /* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_72__.MapImagerySettings),
77635
+ /* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.MapLayerSettings),
77636
+ /* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.MapSubLayerSettings),
77637
+ /* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.MarshalingBinaryMarker),
77638
+ /* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_74__.MassPropertiesOperation),
77639
+ /* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.MeshEdge),
77640
+ /* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.MeshEdges),
77641
+ /* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.MeshPolyline),
77642
+ /* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.MeshPolylineList),
77643
+ /* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_76__.ModelClipGroup),
77644
+ /* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_76__.ModelClipGroups),
77645
+ /* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_83__.ModelGeometryChanges),
77646
+ /* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.ModelMapLayerSettings),
77617
77647
  /* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.MonochromeMode),
77618
- /* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.NoContentError),
77619
- /* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.NonUniformColor),
77620
- /* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Npc),
77621
- /* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCenter),
77622
- /* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCorners),
77623
- /* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.OPERATION),
77624
- /* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormal),
77625
- /* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormalPair),
77626
- /* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.OverriddenBy),
77627
- /* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.POLICY),
77628
- /* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeatureTable),
77629
- /* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement2d),
77630
- /* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement3d),
77631
- /* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__.PlanProjectionSettings),
77632
- /* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskMode),
77633
- /* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskPriority),
77634
- /* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskSettings),
77635
- /* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_144__.PntsHeader),
77636
- /* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.PolylineData),
77637
- /* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.PolylineEdgeArgs),
77638
- /* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.PolylineFlags),
77639
- /* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.PolylineTypeFlags),
77640
- /* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.PositionalVectorTransform),
77641
- /* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PrimitiveTypeCode),
77648
+ /* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.NoContentError),
77649
+ /* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.NonUniformColor),
77650
+ /* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Npc),
77651
+ /* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCenter),
77652
+ /* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCorners),
77653
+ /* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.OPERATION),
77654
+ /* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_79__.OctEncodedNormal),
77655
+ /* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_79__.OctEncodedNormalPair),
77656
+ /* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.OverriddenBy),
77657
+ /* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.POLICY),
77658
+ /* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureTable),
77659
+ /* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_47__.Placement2d),
77660
+ /* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_47__.Placement3d),
77661
+ /* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_84__.PlanProjectionSettings),
77662
+ /* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskMode),
77663
+ /* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskPriority),
77664
+ /* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskSettings),
77665
+ /* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_145__.PntsHeader),
77666
+ /* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.PolylineData),
77667
+ /* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.PolylineEdgeArgs),
77668
+ /* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.PolylineFlags),
77669
+ /* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.PolylineTypeFlags),
77670
+ /* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.PositionalVectorTransform),
77671
+ /* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
77642
77672
  /* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
77643
- /* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Projection),
77644
- /* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PropertyMetaData),
77645
- /* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.PropertyMetaDataMap),
77646
- /* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QParams2d),
77647
- /* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QParams3d),
77648
- /* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QPoint2d),
77649
- /* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QPoint2dList),
77650
- /* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QPoint3d),
77651
- /* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.QPoint3dList),
77652
- /* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_84__.Quantization),
77653
- /* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryBinder),
77654
- /* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryOptionsBuilder),
77655
- /* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryRowFormat),
77656
- /* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.REGISTRY),
77657
- /* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.Rank),
77673
+ /* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_48__.Projection),
77674
+ /* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PropertyMetaData),
77675
+ /* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_81__.PropertyMetaDataMap),
77676
+ /* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams2d),
77677
+ /* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams3d),
77678
+ /* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2d),
77679
+ /* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dList),
77680
+ /* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3d),
77681
+ /* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dList),
77682
+ /* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.Quantization),
77683
+ /* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryBinder),
77684
+ /* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryOptionsBuilder),
77685
+ /* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryRowFormat),
77686
+ /* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.REGISTRY),
77687
+ /* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.Rank),
77658
77688
  /* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
77659
77689
  /* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
77660
77690
  /* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
77661
- /* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.RelatedElement),
77662
- /* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_87__.RenderMaterial),
77663
- /* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_117__.RenderMode),
77664
- /* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_88__.RenderSchedule),
77665
- /* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_89__.RenderTexture),
77666
- /* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.RepositoryStatus),
77667
- /* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_128__.ResponseLike),
77668
- /* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_90__.RgbColor),
77669
- /* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__.RpcConfiguration),
77670
- /* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcContentType),
77671
- /* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_120__.RpcControlChannel),
77672
- /* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_120__.RpcControlResponse),
77673
- /* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__.RpcDefaultConfiguration),
77674
- /* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__.RpcDirectProtocol),
77675
- /* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__.RpcDirectRequest),
77676
- /* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcEndpoint),
77677
- /* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_98__.RpcInterface),
77678
- /* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.RpcInterfaceStatus),
77679
- /* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_121__.RpcInvocation),
77680
- /* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_99__.RpcManager),
77681
- /* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_123__.RpcMarshaling),
77682
- /* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_135__.RpcMultipart),
77683
- /* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_120__.RpcNotFoundResponse),
77684
- /* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_134__.RpcOpenAPIDescription),
77685
- /* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_124__.RpcOperation),
77686
- /* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_124__.RpcOperationPolicy),
77687
- /* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_125__.RpcPendingQueue),
77688
- /* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_120__.RpcPendingResponse),
77689
- /* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_126__.RpcProtocol),
77690
- /* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcProtocolEvent),
77691
- /* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_126__.RpcProtocolVersion),
77692
- /* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__.RpcPushChannel),
77693
- /* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__.RpcPushConnection),
77694
- /* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__.RpcPushService),
77695
- /* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__.RpcPushSubscription),
77696
- /* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__.RpcPushTransport),
77697
- /* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__.RpcRegistry),
77698
- /* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_128__.RpcRequest),
77699
- /* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcRequestEvent),
77700
- /* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_126__.RpcRequestFulfillment),
77701
- /* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcRequestStatus),
77702
- /* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.RpcResponseCacheControl),
77703
- /* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__.RpcRoutingMap),
77704
- /* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_130__.RpcRoutingToken),
77705
- /* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_123__.RpcSerializedValue),
77706
- /* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_122__.RpcSessionInvocation),
77691
+ /* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.RelatedElement),
77692
+ /* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_88__.RenderMaterial),
77693
+ /* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.RenderMode),
77694
+ /* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_89__.RenderSchedule),
77695
+ /* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_90__.RenderTexture),
77696
+ /* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.RepositoryStatus),
77697
+ /* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.ResponseLike),
77698
+ /* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_91__.RgbColor),
77699
+ /* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__.RpcConfiguration),
77700
+ /* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcContentType),
77701
+ /* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlChannel),
77702
+ /* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlResponse),
77703
+ /* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__.RpcDefaultConfiguration),
77704
+ /* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__.RpcDirectProtocol),
77705
+ /* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__.RpcDirectRequest),
77706
+ /* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcEndpoint),
77707
+ /* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_99__.RpcInterface),
77708
+ /* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.RpcInterfaceStatus),
77709
+ /* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__.RpcInvocation),
77710
+ /* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_100__.RpcManager),
77711
+ /* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcMarshaling),
77712
+ /* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_136__.RpcMultipart),
77713
+ /* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcNotFoundResponse),
77714
+ /* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_135__.RpcOpenAPIDescription),
77715
+ /* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperation),
77716
+ /* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperationPolicy),
77717
+ /* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__.RpcPendingQueue),
77718
+ /* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcPendingResponse),
77719
+ /* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocol),
77720
+ /* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolEvent),
77721
+ /* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocolVersion),
77722
+ /* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushChannel),
77723
+ /* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushConnection),
77724
+ /* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushService),
77725
+ /* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushSubscription),
77726
+ /* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushTransport),
77727
+ /* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.RpcRegistry),
77728
+ /* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.RpcRequest),
77729
+ /* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestEvent),
77730
+ /* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcRequestFulfillment),
77731
+ /* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestStatus),
77732
+ /* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcResponseCacheControl),
77733
+ /* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__.RpcRoutingMap),
77734
+ /* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__.RpcRoutingToken),
77735
+ /* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcSerializedValue),
77736
+ /* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__.RpcSessionInvocation),
77707
77737
  /* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
77708
- /* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.SectionType),
77709
- /* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerError),
77710
- /* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerTimeoutError),
77711
- /* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_86__.SilhouetteEdgeArgs),
77712
- /* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_101__.SkyBox),
77713
- /* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_101__.SkyBoxImageType),
77714
- /* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_101__.SkyCube),
77715
- /* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_101__.SkyGradient),
77716
- /* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_101__.SkySphere),
77717
- /* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_95__.SnapshotIModelRpcInterface),
77718
- /* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.SolarLight),
77719
- /* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_104__.SolarShadowSettings),
77720
- /* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__.SpatialClassifier),
77721
- /* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__.SpatialClassifierFlags),
77722
- /* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__.SpatialClassifierInsideDisplay),
77723
- /* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__.SpatialClassifierOutsideDisplay),
77724
- /* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__.SpatialClassifiers),
77725
- /* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_106__.SubCategoryAppearance),
77726
- /* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_107__.SubCategoryOverride),
77738
+ /* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.SectionType),
77739
+ /* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ServerError),
77740
+ /* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ServerTimeoutError),
77741
+ /* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_87__.SilhouetteEdgeArgs),
77742
+ /* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBox),
77743
+ /* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBoxImageType),
77744
+ /* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyCube),
77745
+ /* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyGradient),
77746
+ /* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkySphere),
77747
+ /* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_96__.SnapshotIModelRpcInterface),
77748
+ /* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.SolarLight),
77749
+ /* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_105__.SolarShadowSettings),
77750
+ /* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifier),
77751
+ /* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierFlags),
77752
+ /* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierInsideDisplay),
77753
+ /* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierOutsideDisplay),
77754
+ /* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifiers),
77755
+ /* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__.SubCategoryAppearance),
77756
+ /* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__.SubCategoryOverride),
77727
77757
  /* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
77728
- /* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_108__.TerrainHeightOriginMode),
77729
- /* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_108__.TerrainSettings),
77730
- /* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_96__.TestRpcManager),
77731
- /* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__.TextString),
77732
- /* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_74__.TextureMapUnits),
77733
- /* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_109__.TextureMapping),
77734
- /* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_110__.TextureTransparency),
77735
- /* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicDisplay),
77736
- /* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicDisplayMode),
77737
- /* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicDisplaySensor),
77738
- /* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicDisplaySensorSettings),
77739
- /* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicGradientColorScheme),
77740
- /* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicGradientMode),
77741
- /* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__.ThematicGradientSettings),
77742
- /* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_113__.TileContentSource),
77743
- /* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.TileFormat),
77744
- /* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.TileHeader),
77745
- /* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.TileMetadataReader),
77746
- /* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.TileOptions),
77747
- /* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.TileReadError),
77748
- /* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.TileReadStatus),
77749
- /* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.TreeFlags),
77750
- /* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_114__.Tween),
77751
- /* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_114__.Tweens),
77752
- /* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_115__.TxnAction),
77753
- /* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.TypeDefinition),
77758
+ /* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainHeightOriginMode),
77759
+ /* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainSettings),
77760
+ /* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_97__.TestRpcManager),
77761
+ /* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_49__.TextString),
77762
+ /* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_75__.TextureMapUnits),
77763
+ /* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_110__.TextureMapping),
77764
+ /* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_111__.TextureTransparency),
77765
+ /* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplay),
77766
+ /* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplayMode),
77767
+ /* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensor),
77768
+ /* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensorSettings),
77769
+ /* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientColorScheme),
77770
+ /* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientMode),
77771
+ /* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientSettings),
77772
+ /* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.TileContentSource),
77773
+ /* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.TileFormat),
77774
+ /* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.TileHeader),
77775
+ /* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.TileMetadataReader),
77776
+ /* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.TileOptions),
77777
+ /* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.TileReadError),
77778
+ /* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.TileReadStatus),
77779
+ /* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.TreeFlags),
77780
+ /* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tween),
77781
+ /* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tweens),
77782
+ /* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_116__.TxnAction),
77783
+ /* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.TypeDefinition),
77754
77784
  /* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
77755
- /* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.VerticalCRS),
77756
- /* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_116__.ViewDetails),
77757
- /* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_116__.ViewDetails3d),
77758
- /* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_117__.ViewFlags),
77759
- /* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__.WEB_RPC_CONSTANTS),
77760
- /* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_136__.WebAppRpcProtocol),
77761
- /* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_137__.WebAppRpcRequest),
77762
- /* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_147__.WhiteOnWhiteReversalSettings),
77763
- /* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_97__.WipRpcInterface),
77764
- /* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.XyzRotation),
77765
- /* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_128__.aggregateLoad),
77766
- /* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.bisectTileRange2d),
77767
- /* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.bisectTileRange3d),
77768
- /* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_103__.calculateSolarAngles),
77769
- /* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_103__.calculateSolarDirection),
77770
- /* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_103__.calculateSolarDirectionFromAngles),
77771
- /* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_103__.calculateSunriseOrSunset),
77772
- /* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.compareIModelTileTreeIds),
77773
- /* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.computeChildTileProps),
77774
- /* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.computeChildTileRanges),
77775
- /* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.computeTileChordTolerance),
77776
- /* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.defaultTileOptions),
77777
- /* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.getMaximumMajorTileFormatVersion),
77778
- /* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.iModelTileTreeIdToString),
77779
- /* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__.iTwinChannel),
77780
- /* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_128__.initializeRpcRequest),
77781
- /* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.isKnownTileFormat),
77782
- /* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement2dProps),
77783
- /* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement3dProps),
77784
- /* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isPowerOfTwo),
77785
- /* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isValidImageSourceFormat),
77786
- /* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.mapToGeoServiceStatus),
77787
- /* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppChannel),
77788
- /* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppNotify),
77789
- /* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.nextHighestPowerOfTwo),
77790
- /* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.nextPoint3d64FromByteStream),
77791
- /* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.parseTileTreeIdAndContentId),
77792
- /* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__.readTileContentDescription),
77793
- /* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__.tileFormatFromNumber)
77785
+ /* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.VerticalCRS),
77786
+ /* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails),
77787
+ /* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails3d),
77788
+ /* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.ViewFlags),
77789
+ /* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.WEB_RPC_CONSTANTS),
77790
+ /* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_137__.WebAppRpcProtocol),
77791
+ /* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_138__.WebAppRpcRequest),
77792
+ /* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_148__.WhiteOnWhiteReversalSettings),
77793
+ /* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_98__.WipRpcInterface),
77794
+ /* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.XyzRotation),
77795
+ /* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.aggregateLoad),
77796
+ /* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.bisectTileRange2d),
77797
+ /* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.bisectTileRange3d),
77798
+ /* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarAngles),
77799
+ /* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirection),
77800
+ /* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirectionFromAngles),
77801
+ /* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSunriseOrSunset),
77802
+ /* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.compareIModelTileTreeIds),
77803
+ /* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.computeChildTileProps),
77804
+ /* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.computeChildTileRanges),
77805
+ /* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.computeTileChordTolerance),
77806
+ /* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.defaultTileOptions),
77807
+ /* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.getMaximumMajorTileFormatVersion),
77808
+ /* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.iModelTileTreeIdToString),
77809
+ /* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_64__.iTwinChannel),
77810
+ /* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.initializeRpcRequest),
77811
+ /* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.isKnownTileFormat),
77812
+ /* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement2dProps),
77813
+ /* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement3dProps),
77814
+ /* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.isPowerOfTwo),
77815
+ /* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.isValidImageSourceFormat),
77816
+ /* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_34__.mapToGeoServiceStatus),
77817
+ /* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.nativeAppChannel),
77818
+ /* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.nativeAppNotify),
77819
+ /* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.nextHighestPowerOfTwo),
77820
+ /* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.nextPoint3d64FromByteStream),
77821
+ /* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.parseTileTreeIdAndContentId),
77822
+ /* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__.readTileContentDescription),
77823
+ /* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__.tileFormatFromNumber)
77794
77824
  /* harmony export */ });
77795
77825
  /* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
77796
77826
  /* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
@@ -77815,131 +77845,132 @@ __webpack_require__.r(__webpack_exports__);
77815
77845
  /* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
77816
77846
  /* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
77817
77847
  /* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
77818
- /* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
77819
- /* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
77820
- /* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
77821
- /* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
77822
- /* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
77823
- /* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
77824
- /* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
77825
- /* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
77826
- /* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
77827
- /* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
77828
- /* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
77829
- /* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
77830
- /* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
77831
- /* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
77832
- /* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
77833
- /* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
77834
- /* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
77835
- /* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
77836
- /* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
77837
- /* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
77838
- /* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
77839
- /* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
77840
- /* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
77841
- /* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
77842
- /* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
77843
- /* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
77844
- /* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
77845
- /* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
77846
- /* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
77847
- /* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
77848
- /* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
77849
- /* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
77850
- /* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
77851
- /* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
77852
- /* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
77853
- /* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
77854
- /* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
77855
- /* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
77856
- /* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
77857
- /* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
77858
- /* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
77859
- /* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
77860
- /* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
77861
- /* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
77862
- /* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
77863
- /* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
77864
- /* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
77865
- /* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
77866
- /* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
77867
- /* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
77868
- /* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
77869
- /* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
77870
- /* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
77871
- /* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
77872
- /* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
77873
- /* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
77874
- /* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
77875
- /* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
77876
- /* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
77877
- /* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
77878
- /* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
77879
- /* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
77880
- /* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
77881
- /* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
77882
- /* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
77883
- /* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
77884
- /* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
77885
- /* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
77886
- /* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
77887
- /* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
77888
- /* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
77889
- /* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
77890
- /* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
77891
- /* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
77892
- /* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
77893
- /* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
77894
- /* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
77895
- /* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
77896
- /* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
77897
- /* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
77898
- /* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
77899
- /* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
77900
- /* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
77901
- /* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
77902
- /* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
77903
- /* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
77904
- /* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
77905
- /* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
77906
- /* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
77907
- /* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
77908
- /* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
77909
- /* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
77910
- /* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
77911
- /* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
77912
- /* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
77913
- /* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
77914
- /* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
77915
- /* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
77916
- /* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
77917
- /* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
77918
- /* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
77919
- /* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
77920
- /* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
77921
- /* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
77922
- /* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
77923
- /* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
77924
- /* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
77925
- /* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
77926
- /* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
77927
- /* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
77928
- /* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
77929
- /* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
77930
- /* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
77931
- /* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
77932
- /* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
77933
- /* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
77934
- /* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
77935
- /* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
77936
- /* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
77937
- /* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
77938
- /* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
77939
- /* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
77940
- /* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
77941
- /* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
77942
- /* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
77848
+ /* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
77849
+ /* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
77850
+ /* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
77851
+ /* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
77852
+ /* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
77853
+ /* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
77854
+ /* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
77855
+ /* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
77856
+ /* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
77857
+ /* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
77858
+ /* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
77859
+ /* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
77860
+ /* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
77861
+ /* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
77862
+ /* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
77863
+ /* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
77864
+ /* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
77865
+ /* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
77866
+ /* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
77867
+ /* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
77868
+ /* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
77869
+ /* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
77870
+ /* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
77871
+ /* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
77872
+ /* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
77873
+ /* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
77874
+ /* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
77875
+ /* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
77876
+ /* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
77877
+ /* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
77878
+ /* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
77879
+ /* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
77880
+ /* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
77881
+ /* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
77882
+ /* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
77883
+ /* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
77884
+ /* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
77885
+ /* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
77886
+ /* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
77887
+ /* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
77888
+ /* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
77889
+ /* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
77890
+ /* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
77891
+ /* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
77892
+ /* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
77893
+ /* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
77894
+ /* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
77895
+ /* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
77896
+ /* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
77897
+ /* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
77898
+ /* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
77899
+ /* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
77900
+ /* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
77901
+ /* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
77902
+ /* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
77903
+ /* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
77904
+ /* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
77905
+ /* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
77906
+ /* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
77907
+ /* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
77908
+ /* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
77909
+ /* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
77910
+ /* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
77911
+ /* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
77912
+ /* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
77913
+ /* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
77914
+ /* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
77915
+ /* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
77916
+ /* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
77917
+ /* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
77918
+ /* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
77919
+ /* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
77920
+ /* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
77921
+ /* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
77922
+ /* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
77923
+ /* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
77924
+ /* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
77925
+ /* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
77926
+ /* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
77927
+ /* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
77928
+ /* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
77929
+ /* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
77930
+ /* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
77931
+ /* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
77932
+ /* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
77933
+ /* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
77934
+ /* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
77935
+ /* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
77936
+ /* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
77937
+ /* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
77938
+ /* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
77939
+ /* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
77940
+ /* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
77941
+ /* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
77942
+ /* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
77943
+ /* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
77944
+ /* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
77945
+ /* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
77946
+ /* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
77947
+ /* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
77948
+ /* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
77949
+ /* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
77950
+ /* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
77951
+ /* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
77952
+ /* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
77953
+ /* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
77954
+ /* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
77955
+ /* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
77956
+ /* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
77957
+ /* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
77958
+ /* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
77959
+ /* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
77960
+ /* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
77961
+ /* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
77962
+ /* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
77963
+ /* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
77964
+ /* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
77965
+ /* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
77966
+ /* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
77967
+ /* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
77968
+ /* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
77969
+ /* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
77970
+ /* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
77971
+ /* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
77972
+ /* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
77973
+ /* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
77943
77974
  /*---------------------------------------------------------------------------------------------
77944
77975
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
77945
77976
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -78090,6 +78121,7 @@ __webpack_require__.r(__webpack_exports__);
78090
78121
 
78091
78122
 
78092
78123
 
78124
+
78093
78125
 
78094
78126
 
78095
78127
  /** @docs-package-description
@@ -86791,6 +86823,7 @@ class IpcWebSocketBackend extends IpcWebSocket {
86791
86823
  constructor() {
86792
86824
  super();
86793
86825
  this._handlers = new Map();
86826
+ this._processingQueue = [];
86794
86827
  IpcWebSocket.receivers.add(async (e, m) => this.dispatch(e, m));
86795
86828
  }
86796
86829
  send(channel, ...data) {
@@ -86804,22 +86837,35 @@ class IpcWebSocketBackend extends IpcWebSocket {
86804
86837
  };
86805
86838
  }
86806
86839
  async dispatch(_evt, message) {
86807
- if (message.type !== IpcWebSocketMessageType.Invoke || !message.method)
86840
+ if (message.type !== IpcWebSocketMessageType.Invoke)
86808
86841
  return;
86809
- const handler = this._handlers.get(message.channel);
86810
- if (!handler)
86842
+ this._processingQueue.push(message);
86843
+ await this.processMessages();
86844
+ }
86845
+ async processMessages() {
86846
+ if (this._processing || !this._processingQueue.length) {
86811
86847
  return;
86812
- let args = message.data;
86813
- if (typeof (args) === "undefined")
86814
- args = [];
86815
- const response = await handler({}, message.method, ...args);
86816
- IpcWebSocket.transport.send({
86817
- type: IpcWebSocketMessageType.Response,
86818
- channel: message.channel,
86819
- response: message.request,
86820
- data: response,
86821
- sequence: -1,
86822
- });
86848
+ }
86849
+ const message = this._processingQueue.shift();
86850
+ if (message && message.method) {
86851
+ const handler = this._handlers.get(message.channel);
86852
+ if (handler) {
86853
+ this._processing = message;
86854
+ let args = message.data;
86855
+ if (typeof (args) === "undefined")
86856
+ args = [];
86857
+ const response = await handler({}, message.method, ...args);
86858
+ IpcWebSocket.transport.send({
86859
+ type: IpcWebSocketMessageType.Response,
86860
+ channel: message.channel,
86861
+ response: message.request,
86862
+ data: response,
86863
+ sequence: -1,
86864
+ });
86865
+ this._processing = undefined;
86866
+ }
86867
+ }
86868
+ await this.processMessages();
86823
86869
  }
86824
86870
  }
86825
86871
 
@@ -89923,6 +89969,9 @@ class BentleyCloudRpcProtocol extends _WebAppRpcProtocol__WEBPACK_IMPORTED_MODUL
89923
89969
  const components = url.pathname.split("/").filter((x) => x); // filter out empty segments
89924
89970
  const operationComponent = components.slice(-1)[0];
89925
89971
  const encodedRequest = url.searchParams.get("parameters") || "";
89972
+ // The encodedRequest should be base64 - fail now if any other characters detected.
89973
+ if (/[^A-z0-9=+\/]/.test(encodedRequest))
89974
+ throw new _IModelError__WEBPACK_IMPORTED_MODULE_1__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyStatus.ERROR, `Invalid request: Malformed URL parameters detected.`);
89926
89975
  const firstHyphen = operationComponent.indexOf("-");
89927
89976
  const lastHyphen = operationComponent.lastIndexOf("-");
89928
89977
  const interfaceDefinition = operationComponent.slice(0, firstHyphen);
@@ -90314,11 +90363,13 @@ __webpack_require__.r(__webpack_exports__);
90314
90363
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
90315
90364
  /* harmony export */ "WebAppRpcProtocol": () => (/* binding */ WebAppRpcProtocol)
90316
90365
  /* harmony export */ });
90317
- /* harmony import */ var _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
90318
- /* harmony import */ var _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
90319
- /* harmony import */ var _OpenAPI__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
90320
- /* harmony import */ var _WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
90321
- /* harmony import */ var _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
90366
+ /* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
90367
+ /* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
90368
+ /* harmony import */ var _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
90369
+ /* harmony import */ var _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
90370
+ /* harmony import */ var _OpenAPI__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
90371
+ /* harmony import */ var _WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
90372
+ /* harmony import */ var _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
90322
90373
  /*---------------------------------------------------------------------------------------------
90323
90374
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
90324
90375
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -90331,10 +90382,12 @@ __webpack_require__.r(__webpack_exports__);
90331
90382
 
90332
90383
 
90333
90384
 
90385
+
90386
+
90334
90387
  /** The HTTP application protocol.
90335
90388
  * @internal
90336
90389
  */
90337
- class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__.RpcProtocol {
90390
+ class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_3__.RpcProtocol {
90338
90391
  /** Constructs an HTTP protocol. */
90339
90392
  constructor(configuration) {
90340
90393
  super(configuration);
@@ -90342,9 +90395,9 @@ class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__.R
90342
90395
  /** An optional prefix for RPC operation URI paths. */
90343
90396
  this.pathPrefix = "";
90344
90397
  /** The RPC request class for this protocol. */
90345
- this.requestType = _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_4__.WebAppRpcRequest;
90398
+ this.requestType = _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_6__.WebAppRpcRequest;
90346
90399
  this.supportsStatusCategory = true;
90347
- this.events.addListener(_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_3__.WebAppRpcLogging.logProtocolEvent);
90400
+ this.events.addListener(_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_5__.WebAppRpcLogging.logProtocolEvent);
90348
90401
  }
90349
90402
  /** Convenience handler for an RPC operation get request for an HTTP server. */
90350
90403
  async handleOperationGetRequest(req, res) {
@@ -90352,9 +90405,19 @@ class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__.R
90352
90405
  }
90353
90406
  /** Convenience handler for an RPC operation post request for an HTTP server. */
90354
90407
  async handleOperationPostRequest(req, res) {
90355
- const request = await _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_4__.WebAppRpcRequest.parseRequest(this, req);
90408
+ let request;
90409
+ try {
90410
+ request = await _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_6__.WebAppRpcRequest.parseRequest(this, req);
90411
+ }
90412
+ catch (error) {
90413
+ const message = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMessage(error);
90414
+ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logError(_CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_1__.CommonLoggerCategory.RpcInterfaceBackend, `Failed to parse request: ${message}`, _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMetadata(error));
90415
+ res.status(400);
90416
+ res.send(JSON.stringify({ message, isError: true }));
90417
+ return;
90418
+ }
90356
90419
  const fulfillment = await this.fulfill(request);
90357
- await _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_4__.WebAppRpcRequest.sendResponse(this, request, fulfillment, req, res);
90420
+ await _WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_6__.WebAppRpcRequest.sendResponse(this, request, fulfillment, req, res);
90358
90421
  }
90359
90422
  /** Convenience handler for an OpenAPI description request for an HTTP server. */
90360
90423
  handleOpenApiDescriptionRequest(_req, res) {
@@ -90364,45 +90427,45 @@ class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__.R
90364
90427
  /** Converts an HTTP content type value to an RPC content type value. */
90365
90428
  static computeContentType(httpType) {
90366
90429
  if (!httpType)
90367
- return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcContentType.Unknown;
90368
- if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.WEB_RPC_CONSTANTS.ANY_TEXT) === 0) {
90369
- return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcContentType.Text;
90430
+ return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Unknown;
90431
+ if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.WEB_RPC_CONSTANTS.ANY_TEXT) === 0) {
90432
+ return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Text;
90370
90433
  }
90371
- else if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.WEB_RPC_CONSTANTS.BINARY) === 0) {
90372
- return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcContentType.Binary;
90434
+ else if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.WEB_RPC_CONSTANTS.BINARY) === 0) {
90435
+ return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Binary;
90373
90436
  }
90374
- else if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.WEB_RPC_CONSTANTS.MULTIPART) === 0) {
90375
- return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcContentType.Multipart;
90437
+ else if (httpType.indexOf(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.WEB_RPC_CONSTANTS.MULTIPART) === 0) {
90438
+ return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Multipart;
90376
90439
  }
90377
90440
  else {
90378
- return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcContentType.Unknown;
90441
+ return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Unknown;
90379
90442
  }
90380
90443
  }
90381
90444
  /** Supplies the status corresponding to a protocol-specific code value. */
90382
90445
  getStatus(code) {
90383
90446
  switch (code) {
90384
- case 404: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.NotFound;
90385
- case 202: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Pending;
90386
- case 200: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Resolved;
90387
- case 500: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Rejected;
90388
- case 204: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.NoContent;
90389
- case 502: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.BadGateway;
90390
- case 503: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.ServiceUnavailable;
90391
- case 504: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.GatewayTimeout;
90392
- default: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Unknown;
90447
+ case 404: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.NotFound;
90448
+ case 202: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Pending;
90449
+ case 200: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Resolved;
90450
+ case 500: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Rejected;
90451
+ case 204: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.NoContent;
90452
+ case 502: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.BadGateway;
90453
+ case 503: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.ServiceUnavailable;
90454
+ case 504: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.GatewayTimeout;
90455
+ default: return _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Unknown;
90393
90456
  }
90394
90457
  }
90395
90458
  /** Supplies the protocol-specific code corresponding to a status value. */
90396
90459
  getCode(status) {
90397
90460
  switch (status) {
90398
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.NotFound: return 404;
90399
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Pending: return 202;
90400
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Resolved: return 200;
90401
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.Rejected: return 500;
90402
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.NoContent: return 204;
90403
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.BadGateway: return 502;
90404
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.ServiceUnavailable: return 503;
90405
- case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcRequestStatus.GatewayTimeout: return 504;
90461
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.NotFound: return 404;
90462
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Pending: return 202;
90463
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Resolved: return 200;
90464
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.Rejected: return 500;
90465
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.NoContent: return 204;
90466
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.BadGateway: return 502;
90467
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.ServiceUnavailable: return 503;
90468
+ case _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcRequestStatus.GatewayTimeout: return 504;
90406
90469
  default: return 501;
90407
90470
  }
90408
90471
  }
@@ -90413,7 +90476,7 @@ class WebAppRpcProtocol extends _core_RpcProtocol__WEBPACK_IMPORTED_MODULE_1__.R
90413
90476
  /** An OpenAPI-compatible description of this protocol.
90414
90477
  * @internal
90415
90478
  */
90416
- get openAPIDescription() { return new _OpenAPI__WEBPACK_IMPORTED_MODULE_2__.RpcOpenAPIDescription(this); }
90479
+ get openAPIDescription() { return new _OpenAPI__WEBPACK_IMPORTED_MODULE_4__.RpcOpenAPIDescription(this); }
90417
90480
  }
90418
90481
 
90419
90482
 
@@ -90514,7 +90577,7 @@ class WebAppRpcRequest extends _core_RpcRequest__WEBPACK_IMPORTED_MODULE_6__.Rpc
90514
90577
  }
90515
90578
  }
90516
90579
  if (!request.id) {
90517
- throw new _IModelError__WEBPACK_IMPORTED_MODULE_2__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyStatus.ERROR, `Invalid request.`);
90580
+ throw new _IModelError__WEBPACK_IMPORTED_MODULE_2__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyStatus.ERROR, `Invalid request: Missing required activity ID.`);
90518
90581
  }
90519
90582
  return request;
90520
90583
  }
@@ -136633,8 +136696,6 @@ class RealityMeshGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_7__.I
136633
136696
  }
136634
136697
  get techniqueId() { return 7 /* RealityMesh */; }
136635
136698
  getPass(target) {
136636
- if (target.isDrawingShadowMap)
136637
- return "none";
136638
136699
  if (this._baseIsTransparent || (target.wantThematicDisplay && target.uniforms.thematic.wantIsoLines))
136639
136700
  return "translucent";
136640
136701
  return "opaque";
@@ -142248,6 +142309,7 @@ class SolarShadowMap {
142248
142309
  this.onGraphicsChanged(this._graphics);
142249
142310
  }
142250
142311
  update(context) {
142312
+ var _a;
142251
142313
  this._isReady = false;
142252
142314
  this.clearGraphics(false);
142253
142315
  if (undefined === context || !context.viewport.view.isSpatialView()) {
@@ -142257,9 +142319,7 @@ class SolarShadowMap {
142257
142319
  }
142258
142320
  const view = context.viewport.view;
142259
142321
  const style = view.getDisplayStyle3d();
142260
- let sunDirection = style.sunDirection;
142261
- if (undefined === sunDirection)
142262
- sunDirection = defaultSunDirection;
142322
+ const sunDirection = (_a = style.sunDirection) !== null && _a !== void 0 ? _a : defaultSunDirection;
142263
142323
  const minimumHorizonDirection = -.01;
142264
142324
  if (sunDirection.z > minimumHorizonDirection) {
142265
142325
  this.notifyGraphicsChanged();
@@ -142281,8 +142341,21 @@ class SolarShadowMap {
142281
142341
  // Limit the map to only displayed models.
142282
142342
  const viewTileRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d.createNull();
142283
142343
  view.forEachTileTreeRef((ref) => {
142284
- if (ref.castsShadows)
142285
- ref.accumulateTransformedRange(viewTileRange, worldToMap, undefined);
142344
+ if (ref.castsShadows) {
142345
+ if (ref.isGlobal) {
142346
+ // A shadow-casting tile tree that spans the globe. Limit its range to the viewed extents.
142347
+ for (const p3 of viewFrustum.points) {
142348
+ const p4 = worldToMap.multiplyPoint3d(p3, 1);
142349
+ if (p4.w > 0.0001)
142350
+ viewTileRange.extendXYZW(p4.x, p4.y, p4.z, p4.w);
142351
+ else
142352
+ viewTileRange.high.z = Math.max(1.0, viewTileRange.high.z); // behind eye plane.
142353
+ }
142354
+ }
142355
+ else {
142356
+ ref.accumulateTransformedRange(viewTileRange, worldToMap, undefined);
142357
+ }
142358
+ }
142286
142359
  });
142287
142360
  if (!viewTileRange.isNull)
142288
142361
  viewTileRange.clone(shadowRange);
@@ -143513,7 +143586,15 @@ class System extends _RenderSystem__WEBPACK_IMPORTED_MODULE_7__.RenderSystem {
143513
143586
  }
143514
143587
  /** Attempt to create a texture using gradient symbology. */
143515
143588
  getGradientTexture(symb, iModel) {
143516
- const source = symb.getImage(0x100, 0x100);
143589
+ let width = 0x100;
143590
+ let height = 0x100;
143591
+ if (symb.mode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Gradient.Mode.Thematic) {
143592
+ // Pixels in each row are identical, no point in having width > 1.
143593
+ width = 1;
143594
+ // We want maximum height to minimize bleeding of margin color.
143595
+ height = this.maxTextureSize;
143596
+ }
143597
+ const source = symb.produceImage({ width, height, includeThematicMargin: true });
143517
143598
  return this.createTexture({
143518
143599
  image: {
143519
143600
  source,
@@ -157748,7 +157829,7 @@ class GltfReader {
157748
157829
  if (dracoMeshes.length === 0)
157749
157830
  return;
157750
157831
  try {
157751
- const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_6_node_modules_loaders_gl_draco_di-b6a763"), __webpack_require__.e("_b43d")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.6/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
157832
+ const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_7_node_modules_loaders_gl_draco_di-a586d9"), __webpack_require__.e("_c5fe")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.7/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
157752
157833
  await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
157753
157834
  }
157754
157835
  catch (err) {
@@ -160875,7 +160956,7 @@ function readPnts(stream, dataOffset, pnts) {
160875
160956
  async function decodeDracoPointCloud(buf) {
160876
160957
  var _a, _b, _c, _d, _e, _f;
160877
160958
  try {
160878
- const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_6_node_modules_loaders_gl_draco_di-b6a763"), __webpack_require__.e("_b43d")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.6/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
160959
+ const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_7_node_modules_loaders_gl_draco_di-a586d9"), __webpack_require__.e("_c5fe")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.7/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
160879
160960
  const mesh = await dracoLoader.parse(buf, {});
160880
160961
  if (mesh.topology !== "point-list")
160881
160962
  return undefined;
@@ -163060,6 +163141,7 @@ class RealityTileTree extends _internal__WEBPACK_IMPORTED_MODULE_6__.TileTree {
163060
163141
  const preloadDebugBuilder = (debugControl && debugControl.displayRealityTilePreload) ? args.context.createSceneGraphicBuilder() : undefined;
163061
163142
  const graphicTypeBranches = new Map();
163062
163143
  const selectedTiles = this.selectRealityTiles(args, displayedTileDescendants, preloadDebugBuilder);
163144
+ args.processSelectedTiles(selectedTiles);
163063
163145
  let sortIndices;
163064
163146
  if (!this.parentsAndChildrenExclusive) {
163065
163147
  sortIndices = selectedTiles.map((_x, i) => i);
@@ -167320,28 +167402,6 @@ class ArcGisUtilities {
167320
167402
  return undefined;
167321
167403
  }
167322
167404
  }
167323
- static async getFootprintJson(url, credentials) {
167324
- const cached = ArcGisUtilities._footprintCache.get(url);
167325
- if (cached !== undefined)
167326
- return cached;
167327
- try {
167328
- const tmpUrl = new URL(url);
167329
- tmpUrl.searchParams.append("f", "json");
167330
- tmpUrl.searchParams.append("option", "footprints");
167331
- tmpUrl.searchParams.append("outSR", "4326");
167332
- const accessClient = _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.mapLayerFormatRegistry.getAccessClient("ArcGIS");
167333
- if (accessClient) {
167334
- await ArcGisUtilities.appendSecurityToken(tmpUrl, accessClient, { mapLayerUrl: new URL(url), userName: credentials === null || credentials === void 0 ? void 0 : credentials.user, password: credentials === null || credentials === void 0 ? void 0 : credentials.password });
167335
- }
167336
- const json = await (0,_request_Request__WEBPACK_IMPORTED_MODULE_1__.getJson)(tmpUrl.toString());
167337
- ArcGisUtilities._footprintCache.set(url, json);
167338
- return json;
167339
- }
167340
- catch (_error) {
167341
- ArcGisUtilities._footprintCache.set(url, undefined);
167342
- return undefined;
167343
- }
167344
- }
167345
167405
  // return the appended access token if available.
167346
167406
  static async appendSecurityToken(url, accessClient, accessTokenParams) {
167347
167407
  // Append security token if available
@@ -167358,7 +167418,6 @@ class ArcGisUtilities {
167358
167418
  }
167359
167419
  }
167360
167420
  ArcGisUtilities._serviceCache = new Map();
167361
- ArcGisUtilities._footprintCache = new Map();
167362
167421
 
167363
167422
 
167364
167423
  /***/ }),
@@ -168237,18 +168296,9 @@ class ArcGISMapLayerImageryProvider extends _internal__WEBPACK_IMPORTED_MODULE_4
168237
168296
  if (this._usesCachedTiles && this._tileMapSupported) {
168238
168297
  this._tileMap = new _internal__WEBPACK_IMPORTED_MODULE_4__.ArcGISTileMap(this._settings.url, (_d = (_c = json.tileInfo) === null || _c === void 0 ? void 0 : _c.lods) === null || _d === void 0 ? void 0 : _d.length);
168239
168298
  }
168240
- const footprintJson = await _internal__WEBPACK_IMPORTED_MODULE_4__.ArcGisUtilities.getFootprintJson(this._settings.url, this.getRequestAuthorization());
168241
- if (undefined !== footprintJson && undefined !== footprintJson.featureCollection && Array.isArray(footprintJson.featureCollection.layers)) {
168242
- for (const layer of footprintJson.featureCollection.layers) {
168243
- if (layer.layerDefinition && layer.layerDefinition.extent) {
168244
- this.cartoRange = _internal__WEBPACK_IMPORTED_MODULE_4__.MapCartoRectangle.createFromDegrees(layer.layerDefinition.extent.xmin, layer.layerDefinition.extent.ymin, layer.layerDefinition.extent.xmax, layer.layerDefinition.extent.ymax);
168245
- break;
168246
- }
168247
- }
168248
- }
168249
- // Sometimes footprint request doesnt work, fallback to dataset fullextent
168250
- if (this.cartoRange === undefined && json.fullExtent) {
168251
- if (json.fullExtent.spatialReference.latestWkid === 3857) {
168299
+ // Read range using fullextent from service metadata
168300
+ if (json.fullExtent) {
168301
+ if (json.fullExtent.spatialReference.latestWkid === 3857 || json.fullExtent.spatialReference.wkid === 102100) {
168252
168302
  const range3857 = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_6__.Range2d.createFrom({
168253
168303
  low: { x: json.fullExtent.xmin, y: json.fullExtent.ymin },
168254
168304
  high: { x: json.fullExtent.xmax, y: json.fullExtent.ymax }
@@ -194580,8 +194630,8 @@ var ClipMaskXYZRangePlanes;
194580
194630
  * * isMask === true means the plane sets should cover the outside of its polygon.
194581
194631
  * * Note that the ClipShape's `isMask` property and the ClipPrimitive's `isInvisible` property are distinct controls.
194582
194632
  * * In normal usage, callers get "outside" clip behavior using ONLY the ClipShape isMask property.
194583
- * * The ClipShape happens to pass the _invisible bit down to ClipPlane's that it creates.
194584
- * * At that level, it controls whether the cut edges are produce on the plane
194633
+ * * The ClipShape happens to pass the _invisible bit down to ClipPlanes that it creates.
194634
+ * * At that level, the flag controls whether the cut edges are produced on the plane
194585
194635
  * * This seems like an confused overloading of the meaning.
194586
194636
  * @public
194587
194637
  */
@@ -194600,7 +194650,7 @@ class ClipPrimitive {
194600
194650
  /**
194601
194651
  * Create a ClipPrimitive, capturing the supplied plane set as the clip planes.
194602
194652
  * @param planes clipper
194603
- * @param isInvisible true to invert sense of the test
194653
+ * @param isInvisible set the invisible flag on the ClipPrimitive
194604
194654
  */
194605
194655
  static createCapture(planes, isInvisible = false) {
194606
194656
  let planeData;
@@ -195486,7 +195536,7 @@ class ClipUtilities {
195486
195536
  * * `ClipVector` -- intersection of the ranges of its `ClipPrimitive`.
195487
195537
  * * `undefined` -- entire input range.
195488
195538
  * * If `observeInvisibleFlag` is false, the "invisible" properties are ignored, and this effectively returns the range of the edge work of the members
195489
- * * If `observeInvisibleFlag` is false, the "invisible" properties are observed, and "invisible" parts do not restrict the range.
195539
+ * * If `observeInvisibleFlag` is true, the "invisible" properties are observed, and "invisible" parts do not restrict the range.
195490
195540
  * @param clipper
195491
195541
  * @param range non-null range.
195492
195542
  * @param observeInvisibleFlag indicates how "invisible" bit is applied for ClipPrimitive.
@@ -196048,7 +196098,7 @@ __webpack_require__.r(__webpack_exports__);
196048
196098
 
196049
196099
  /** Class holding an array structure of shapes defined by `ClipPrimitive`
196050
196100
  * * The `ClipVector` defines an intersection of the member `ClipPrimitive` regions.
196051
- * * In the most common usage, one of the `ClipPrimitive` will be an outer region, and all others are holes with marker flag indicating that they outside of each hole is live.
196101
+ * * In the most common usage, one of the `ClipPrimitive` will be an outer region, and all others are holes with marker flag indicating that the outside of each hole is live.
196052
196102
  * @public
196053
196103
  */
196054
196104
  class ClipVector {
@@ -196479,7 +196529,7 @@ __webpack_require__.r(__webpack_exports__);
196479
196529
  /* harmony export */ });
196480
196530
  /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
196481
196531
  /* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
196482
- /* harmony import */ var _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../geometry3d/GrowableFloat64Array */ "../../core/geometry/lib/esm/geometry3d/GrowableFloat64Array.js");
196532
+ /* harmony import */ var _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../geometry3d/GrowableFloat64Array */ "../../core/geometry/lib/esm/geometry3d/GrowableFloat64Array.js");
196483
196533
  /* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
196484
196534
  /* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
196485
196535
  /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
@@ -196487,6 +196537,8 @@ __webpack_require__.r(__webpack_exports__);
196487
196537
  /* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
196488
196538
  /* harmony import */ var _ClipPlane__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ClipPlane */ "../../core/geometry/lib/esm/clipping/ClipPlane.js");
196489
196539
  /* harmony import */ var _ClipUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
196540
+ /* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
196541
+ /* harmony import */ var _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../polyface/PolyfaceQuery */ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js");
196490
196542
  /*---------------------------------------------------------------------------------------------
196491
196543
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
196492
196544
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -196501,6 +196553,8 @@ __webpack_require__.r(__webpack_exports__);
196501
196553
 
196502
196554
 
196503
196555
 
196556
+
196557
+
196504
196558
  /**
196505
196559
  * A ConvexClipPlaneSet is a collection of ClipPlanes, often used for bounding regions of space.
196506
196560
  * @public
@@ -196782,7 +196836,7 @@ class ConvexClipPlaneSet {
196782
196836
  return true;
196783
196837
  }
196784
196838
  /** Return true if `point` satisfies `point.isPointOnOrInside` for all planes */
196785
- isPointOnOrInside(point, tolerance) {
196839
+ isPointOnOrInside(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.smallMetricDistance) {
196786
196840
  const interiorTolerance = Math.abs(tolerance); // Interior tolerance should always be positive. (TFS# 246598).
196787
196841
  for (const plane of this._planes) {
196788
196842
  if (!plane.isPointOnOrInside(point, (plane.interior ? interiorTolerance : tolerance)))
@@ -197178,10 +197232,50 @@ class ConvexClipPlaneSet {
197178
197232
  if (newInside)
197179
197233
  insideFragments.push(newInside);
197180
197234
  }
197235
+ /** Create a convex clip set from a convex mesh.
197236
+ * * Create a plane for each facet.
197237
+ * * Assemble the planes as a single clip plane set.
197238
+ * * If the facets are closed by edge pairing, use the sign of the computed volume to point the plane normals inward.
197239
+ * * If the facets are not closed, the facet orientation determines plane orientation.
197240
+ * * The implication of this is that if the facets are a convex volume, the returned clip plane set is convex.
197241
+ * @param convexMesh input mesh. For best results, the mesh should be closed and convex.
197242
+ * @param result optional preallocated result to reuse and return
197243
+ * @return clipper and volume (zero if mesh is not closed)
197244
+ */
197245
+ static createConvexPolyface(convexMesh, result) {
197246
+ result = this.createEmpty(result);
197247
+ let vol = 0;
197248
+ let myMesh;
197249
+ let myVisitor;
197250
+ if (convexMesh instanceof _polyface_Polyface__WEBPACK_IMPORTED_MODULE_9__.Polyface) {
197251
+ myMesh = convexMesh;
197252
+ myVisitor = convexMesh.createVisitor(0);
197253
+ }
197254
+ else {
197255
+ myMesh = convexMesh.clientPolyface();
197256
+ myVisitor = convexMesh;
197257
+ }
197258
+ if (myMesh && myVisitor) {
197259
+ if (_polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_10__.PolyfaceQuery.isPolyfaceClosedByEdgePairing(myMesh))
197260
+ vol = _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_10__.PolyfaceQuery.sumTetrahedralVolumes(myVisitor);
197261
+ const scale = vol > 0.0 ? -1.0 : 1.0; // point clipper normals inward if mesh normals point outward
197262
+ const normal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create();
197263
+ const plane = _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.createXYPlane();
197264
+ myVisitor.reset();
197265
+ while (myVisitor.moveToNextFacet()) {
197266
+ if (undefined !== _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_6__.PolygonOps.areaNormalGo(myVisitor.point, normal)) {
197267
+ normal.scaleInPlace(scale);
197268
+ if (undefined !== _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.create(myVisitor.point.front(), normal, plane))
197269
+ result.addPlaneToConvexSet(plane);
197270
+ }
197271
+ }
197272
+ }
197273
+ return { clipper: result, volume: vol };
197274
+ }
197181
197275
  }
197182
197276
  /** Value acting as "at infinity" for coordinates along a ray. */
197183
197277
  ConvexClipPlaneSet.hugeVal = 1e37;
197184
- ConvexClipPlaneSet._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_9__.GrowableFloat64Array();
197278
+ ConvexClipPlaneSet._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_11__.GrowableFloat64Array();
197185
197279
 
197186
197280
 
197187
197281
  /***/ }),
@@ -225120,10 +225214,12 @@ class XYZ {
225120
225214
  }
225121
225215
  return index;
225122
225216
  }
225123
- /** Return true if the if x,y,z components are all nearly zero to tolerance Geometry.smallMetricDistance */
225217
+ /** Return true if the x,y,z components are all nearly zero to tolerance Geometry.smallMetricDistance */
225124
225218
  get isAlmostZero() {
225125
225219
  return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(this.x) && _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(this.y) && _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(this.z);
225126
225220
  }
225221
+ /** Return true if the x,y,z components are all exactly zero */
225222
+ get isZero() { return this.x === 0.0 && this.y === 0.0 && this.z === 0.0; }
225127
225223
  /** Return the largest absolute value of any component */
225128
225224
  maxAbs() { return Math.max(Math.abs(this.x), Math.abs(this.y), Math.abs(this.z)); }
225129
225225
  /** Return the sqrt of the sum of squared x,y,z parts */
@@ -227569,12 +227665,13 @@ class PolygonOps {
227569
227665
  static areaNormalGo(points, result) {
227570
227666
  if (!result)
227571
227667
  result = new _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d();
227668
+ else
227669
+ result.setZero();
227572
227670
  const n = points.length;
227573
227671
  if (n === 3) {
227574
227672
  points.crossProductIndexIndexIndex(0, 1, 2, result);
227575
227673
  }
227576
- else if (n >= 3) {
227577
- result.setZero();
227674
+ else if (n > 3) {
227578
227675
  // This will work with or without closure edge. If closure is given, the last vector is 000.
227579
227676
  for (let i = 2; i < n; i++) {
227580
227677
  points.accumulateCrossProductIndexIndexIndex(0, i - 1, i, result);
@@ -227582,7 +227679,7 @@ class PolygonOps {
227582
227679
  }
227583
227680
  // ALL BRANCHES SUM FULL CROSS PRODUCTS AND EXPECT SCALE HERE
227584
227681
  result.scaleInPlace(0.5);
227585
- return result;
227682
+ return result.isZero ? undefined : result;
227586
227683
  }
227587
227684
  /** return a vector which is perpendicular to the polygon and has magnitude equal to the polygon area. */
227588
227685
  static areaNormal(points, result) {
@@ -227722,8 +227819,10 @@ class PolygonOps {
227722
227819
  * Return a unit normal to the plane of the polygon.
227723
227820
  * @param points array of points around the polygon.
227724
227821
  * @param result caller-allocated result vector.
227822
+ * @return true if and only if result has unit length
227725
227823
  */
227726
227824
  static unitNormal(points, result) {
227825
+ result.setZero();
227727
227826
  let n = points.length;
227728
227827
  if (n > 1 && points.getPoint3dAtUncheckedPointIndex(0).isExactEqual(points.getPoint3dAtUncheckedPointIndex(n - 1)))
227729
227828
  --n; // ignore closure point
@@ -243664,7 +243763,7 @@ class PolyfaceBuilder extends _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODU
243664
243763
  * * Circular or elliptical pipe cross sections can be specified by supplying either a radius, a pair of semi-axis lengths, or a full Arc3d.
243665
243764
  * * For semi-axis length input, x corresponds to an ellipse local axis nominally situated parallel to the xy-plane.
243666
243765
  * * The center of Arc3d input is translated to the centerline start point to act as initial cross section.
243667
- * @param centerline centerline of pipe
243766
+ * @param centerline centerline of pipe. If curved, it will be stroked using the builder's StrokeOptions.
243668
243767
  * @param sectionData circle radius, ellipse semi-axis lengths, or full Arc3d
243669
243768
  * @param numFacetAround how many equal parameter-space chords around each section
243670
243769
  */
@@ -243683,7 +243782,7 @@ class PolyfaceBuilder extends _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODU
243683
243782
  }
243684
243783
  else if (centerline instanceof _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_32__.GeometryQuery) {
243685
243784
  const linestring = _curve_LineString3d__WEBPACK_IMPORTED_MODULE_11__.LineString3d.create();
243686
- centerline.emitStrokes(linestring);
243785
+ centerline.emitStrokes(linestring, this._options);
243687
243786
  this.addMiteredPipesFromPoints(linestring.packedPoints, sectionData, numFacetAround);
243688
243787
  }
243689
243788
  }
@@ -254727,6 +254826,26 @@ class Sample {
254727
254826
  }
254728
254827
  return result;
254729
254828
  }
254829
+ /** Create various orders of non-rational B-spline curves with helical poles */
254830
+ static createBsplineCurveHelices(radius, height, numTurns, numSamplesPerTurn) {
254831
+ const pts = [];
254832
+ const zDelta = (height / numTurns) / numSamplesPerTurn;
254833
+ const aDelta = 2 * Math.PI / numSamplesPerTurn;
254834
+ for (let iTurn = 0; iTurn < numTurns; ++iTurn) {
254835
+ for (let iSample = 0; iSample < numSamplesPerTurn; iSample++) {
254836
+ pts.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(radius * Math.cos(iSample * aDelta), radius * Math.sin(iSample * aDelta), pts.length * zDelta));
254837
+ }
254838
+ }
254839
+ const result = [];
254840
+ for (const order of [2, 3, 4, 9, 16, 25]) {
254841
+ if (order > pts.length)
254842
+ continue;
254843
+ const curve = _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_9__.BSplineCurve3d.createUniformKnots(pts, order);
254844
+ if (curve !== undefined)
254845
+ result.push(curve);
254846
+ }
254847
+ return result;
254848
+ }
254730
254849
  /** Create weighted bsplines for circular arcs.
254731
254850
  */
254732
254851
  static createBspline3dHArcs() {
@@ -265702,8 +265821,8 @@ __webpack_require__.r(__webpack_exports__);
265702
265821
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
265703
265822
  /* harmony export */ "ITwinLocalization": () => (/* binding */ ITwinLocalization)
265704
265823
  /* harmony export */ });
265705
- /* harmony import */ var i18next__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.8.16/node_modules/i18next/dist/esm/i18next.js");
265706
- /* harmony import */ var i18next_browser_languagedetector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! i18next-browser-languagedetector */ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.4/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js");
265824
+ /* harmony import */ var i18next__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/esm/i18next.js");
265825
+ /* harmony import */ var i18next_browser_languagedetector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! i18next-browser-languagedetector */ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.5/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js");
265707
265826
  /* harmony import */ var i18next_xhr_backend__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! i18next-xhr-backend */ "../../common/temp/node_modules/.pnpm/i18next-xhr-backend@3.2.2/node_modules/i18next-xhr-backend/dist/esm/i18nextXHRBackend.js");
265708
265827
  /* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
265709
265828
  /*---------------------------------------------------------------------------------------------
@@ -287100,7 +287219,7 @@ class TestContext {
287100
287219
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
287101
287220
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${(_a = process.env.IMJS_URL_PREFIX) !== null && _a !== void 0 ? _a : ""}api.bentley.com/imodels` } });
287102
287221
  await core_frontend_1.NoRenderApp.startup({
287103
- applicationVersion: "3.4.0-dev.3",
287222
+ applicationVersion: "3.4.0-dev.33",
287104
287223
  applicationId: this.settings.gprid,
287105
287224
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
287106
287225
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -287167,12 +287286,6 @@ describe("Basic Scenarios", async () => {
287167
287286
  const iModelId = testContext.iModelWithChangesets.iModelId;
287168
287287
  await openIModelAndQueryPage(iTwinId, iModelId);
287169
287288
  });
287170
- // imodeljs does not allow this -- changesetid must be non-empty for routing purposes.
287171
- it.skip("should successfully open a new IModel without changesets for read and Get Properties for an Element TestCase:872675", async () => {
287172
- const iTwinId = testContext.iTwinId;
287173
- const iModelId = testContext.iModelWithChangesets.iModelId;
287174
- await openIModelAndQueryPage(iTwinId, iModelId);
287175
- });
287176
287289
  it("should open iModel and Execute Query TestCase:819343", async () => {
287177
287290
  var e_1, _a;
287178
287291
  const iModel = await testContext.iModelWithChangesets.getConnection();
@@ -287192,52 +287305,6 @@ describe("Basic Scenarios", async () => {
287192
287305
  }
287193
287306
  expect(rows).not.to.be.empty;
287194
287307
  });
287195
- /* This test is wrong. If two users open the same imodel using the same mode in the same backend, then they
287196
- will share a single briefcase in the backend. When either user closes the imodel, then the briefcase will
287197
- be closed. The backend does not maintain some kind of ref count that would keep the briefcase open
287198
- for the second connection.
287199
- it("should not affect other users when iModel is closed TestCase:819344 #orchestrator", async () => {
287200
- const iModelId = testContext.iModelWithChangesets.iModelId;
287201
- const iTwinId = testContext.iModelWithChangesets.iTwinId;
287202
- const openMode = OpenMode.Readonly;
287203
-
287204
- const originalAppAuth = TestRpcClientManager.configuration.applicationAuthorizationValue;
287205
-
287206
- try {
287207
- // Get access token of user that does not have permission to read given iModel
287208
- const user1accessToken = await testContext.regularUser1.getAccessToken();
287209
- const user1accessTokenString = user1accessToken.toTokenString() || "";
287210
-
287211
- TestRpcClientManager.configuration.applicationAuthorizationValue = user1accessTokenString;
287212
- const iModel1 = await IModelConnection.open(user1accessToken, iTwinId, iModelId, openMode);
287213
-
287214
- // Open the same imodel for another user
287215
- const user2accessToken = await testContext.regularUser2.getAccessToken();
287216
- const user2accessTokenString = user2accessToken.toTokenString() || "";
287217
-
287218
- TestRpcClientManager.configuration.applicationAuthorizationValue = user2accessTokenString;
287219
- const iModel2 = await IModelConnection.open(user2accessToken, iTwinId, iModelId, openMode);
287220
- const query = "SELECT ECInstanceId AS id FROM BisCore.Element";
287221
-
287222
- // Act: Close the iModel for the same user
287223
- {
287224
- TestRpcClientManager.configuration.applicationAuthorizationValue = user1accessTokenString;
287225
- const rows = await iModel1.queryPage(query);
287226
- expect(rows).to.exist.and.be.not.empty;
287227
- await iModel1.close(user1accessToken);
287228
- }
287229
-
287230
- // Assert: Previous session close should not affect other users
287231
- {
287232
- TestRpcClientManager.configuration.applicationAuthorizationValue = user2accessTokenString;
287233
- const rows = await iModel2.queryPage(query);
287234
- expect(rows).to.exist.and.be.not.empty;
287235
- }
287236
- } finally {
287237
- TestRpcClientManager.configuration.applicationAuthorizationValue = originalAppAuth;
287238
- }
287239
- });
287240
- */
287241
287308
  });
287242
287309
 
287243
287310
 
@@ -287622,7 +287689,10 @@ __webpack_require__.r(__webpack_exports__);
287622
287689
  /** @packageDocumentation
287623
287690
  * @module Core
287624
287691
  */
287625
- /** @alpha */
287692
+ /**
287693
+ * Functions related to diagnostics log entry.
287694
+ * @beta
287695
+ */
287626
287696
  var DiagnosticsLogEntry;
287627
287697
  (function (DiagnosticsLogEntry) {
287628
287698
  function isMessage(entry) {
@@ -292753,7 +292823,8 @@ __webpack_require__.r(__webpack_exports__);
292753
292823
  */
292754
292824
 
292755
292825
  /**
292756
- * @alpha
292826
+ * A function which logs messages to the console.
292827
+ * @beta
292757
292828
  */
292758
292829
  function consoleDiagnosticsHandler(diagnostics) {
292759
292830
  // eslint-disable-next-line no-console
@@ -292768,7 +292839,8 @@ function consoleDiagnosticsHandler(diagnostics) {
292768
292839
  });
292769
292840
  }
292770
292841
  /**
292771
- * @alpha
292842
+ * A function which calls all diagnostics handlers passed to it.
292843
+ * @beta
292772
292844
  */
292773
292845
  function createCombinedDiagnosticsHandler(handlers) {
292774
292846
  return (diagnostics) => {
@@ -302699,10 +302771,10 @@ function _unsupportedIterableToArray(o, minLen) {
302699
302771
 
302700
302772
  /***/ }),
302701
302773
 
302702
- /***/ "../../common/temp/node_modules/.pnpm/i18next@21.8.16/node_modules/i18next/dist/esm/i18next.js":
302703
- /*!*****************************************************************************************************!*\
302704
- !*** ../../common/temp/node_modules/.pnpm/i18next@21.8.16/node_modules/i18next/dist/esm/i18next.js ***!
302705
- \*****************************************************************************************************/
302774
+ /***/ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/esm/i18next.js":
302775
+ /*!****************************************************************************************************!*\
302776
+ !*** ../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/esm/i18next.js ***!
302777
+ \****************************************************************************************************/
302706
302778
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
302707
302779
 
302708
302780
  "use strict";
@@ -304603,6 +304675,8 @@ var Connector = function (_EventEmitter) {
304603
304675
  _this.waitingReads = [];
304604
304676
  _this.maxParallelReads = options.maxParallelReads || 10;
304605
304677
  _this.readingCalls = 0;
304678
+ _this.maxRetries = options.maxRetries >= 0 ? options.maxRetries : 5;
304679
+ _this.retryTimeout = options.retryTimeout >= 1 ? options.retryTimeout : 350;
304606
304680
  _this.state = {};
304607
304681
  _this.queue = [];
304608
304682
 
@@ -304709,7 +304783,7 @@ var Connector = function (_EventEmitter) {
304709
304783
  var _this3 = this;
304710
304784
 
304711
304785
  var tried = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;
304712
- var wait = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 350;
304786
+ var wait = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : this.retryTimeout;
304713
304787
  var callback = arguments.length > 5 ? arguments[5] : undefined;
304714
304788
  if (!lng.length) return callback(null, {});
304715
304789
 
@@ -304735,7 +304809,7 @@ var Connector = function (_EventEmitter) {
304735
304809
  _this3.read(next.lng, next.ns, next.fcName, next.tried, next.wait, next.callback);
304736
304810
  }
304737
304811
 
304738
- if (err && data && tried < 5) {
304812
+ if (err && data && tried < _this3.maxRetries) {
304739
304813
  setTimeout(function () {
304740
304814
  _this3.read.call(_this3, lng, ns, fcName, tried + 1, wait * 2, callback);
304741
304815
  }, wait);
@@ -304977,7 +305051,7 @@ var I18n = function (_EventEmitter) {
304977
305051
  options = {};
304978
305052
  }
304979
305053
 
304980
- if (!options.defaultNS && options.ns) {
305054
+ if (!options.defaultNS && options.defaultNS !== false && options.ns) {
304981
305055
  if (typeof options.ns === 'string') {
304982
305056
  options.defaultNS = options.ns;
304983
305057
  } else if (options.ns.indexOf('translation') < 0) {
@@ -305557,7 +305631,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
305557
305631
  /***/ ((module) => {
305558
305632
 
305559
305633
  "use strict";
305560
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.4.0-dev.3","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","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"tsc 1>&2 --outDir lib/cjs","build:esm":"tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/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-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.4.0-dev.3","@itwin/core-bentley":"workspace:^3.4.0-dev.3","@itwin/core-common":"workspace:^3.4.0-dev.3","@itwin/core-geometry":"workspace:^3.4.0-dev.3","@itwin/core-orbitgt":"workspace:^3.4.0-dev.3","@itwin/core-quantity":"workspace:^3.4.0-dev.3","@itwin/webgl-compatibility":"workspace:^3.4.0-dev.3"},"//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/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"16.11.7","@types/qs":"^6.5.0","@types/semver":"^7.3.9","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
305634
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.4.0-dev.33","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","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"tsc 1>&2 --outDir lib/cjs","build:esm":"tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/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-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.4.0-dev.33","@itwin/core-bentley":"workspace:^3.4.0-dev.33","@itwin/core-common":"workspace:^3.4.0-dev.33","@itwin/core-geometry":"workspace:^3.4.0-dev.33","@itwin/core-orbitgt":"workspace:^3.4.0-dev.33","@itwin/core-quantity":"workspace:^3.4.0-dev.33","@itwin/webgl-compatibility":"workspace:^3.4.0-dev.33"},"//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/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"16.11.7","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
305561
305635
 
305562
305636
  /***/ }),
305563
305637