@itwin/rpcinterface-full-stack-tests 4.0.0-dev.15 → 4.0.0-dev.18

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.
@@ -1 +1 @@
1
- {"version":3,"file":"_07c5.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\7\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.2.13\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"_07c5.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.2.13\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
@@ -56521,7 +56521,7 @@ __webpack_require__.r(__webpack_exports__);
56521
56521
  /* eslint-disable deprecation/deprecation */
56522
56522
  /**
56523
56523
  * @beta
56524
- * @deprecated in 3.x.
56524
+ * @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
56525
56525
  */
56526
56526
  var CloudStorageProvider;
56527
56527
  (function (CloudStorageProvider) {
@@ -56533,7 +56533,7 @@ var CloudStorageProvider;
56533
56533
  })(CloudStorageProvider || (CloudStorageProvider = {}));
56534
56534
  /**
56535
56535
  * @beta
56536
- * @deprecated in 3.x.
56536
+ * @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
56537
56537
  */
56538
56538
  var CloudStorageContainerUrl;
56539
56539
  (function (CloudStorageContainerUrl) {
@@ -56549,7 +56549,7 @@ var CloudStorageContainerUrl;
56549
56549
  })(CloudStorageContainerUrl || (CloudStorageContainerUrl = {}));
56550
56550
  /**
56551
56551
  * @beta
56552
- * @deprecated in 3.x.
56552
+ * @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
56553
56553
  */
56554
56554
  class CloudStorageCache {
56555
56555
  constructor() {
@@ -56648,7 +56648,7 @@ __webpack_require__.r(__webpack_exports__);
56648
56648
 
56649
56649
  /**
56650
56650
  * @beta
56651
- * @deprecated in 3.x.
56651
+ * @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
56652
56652
  */
56653
56653
  class CloudStorageTileCache extends _CloudStorage__WEBPACK_IMPORTED_MODULE_0__.CloudStorageCache {
56654
56654
  constructor() {
@@ -79147,8 +79147,7 @@ __webpack_require__.r(__webpack_exports__);
79147
79147
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
79148
79148
  /* harmony export */ "FrustumPlanes": () => (/* binding */ FrustumPlanes)
79149
79149
  /* harmony export */ });
79150
- /* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
79151
- /* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
79150
+ /* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
79152
79151
  /*---------------------------------------------------------------------------------------------
79153
79152
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
79154
79153
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -79157,7 +79156,6 @@ __webpack_require__.r(__webpack_exports__);
79157
79156
  * @module Geometry
79158
79157
  */
79159
79158
 
79160
-
79161
79159
  const planePointIndices = [
79162
79160
  [1, 3, 5],
79163
79161
  [0, 4, 2],
@@ -79172,14 +79170,13 @@ function computeFrustumPlanes(frustum) {
79172
79170
  const expandPlaneDistance = 1e-6;
79173
79171
  for (const indices of planePointIndices) {
79174
79172
  const i0 = indices[0], i1 = indices[1], i2 = indices[2];
79175
- const normal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createCrossProductToPoints(points[i2], points[i1], points[i0]);
79173
+ const normal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.createCrossProductToPoints(points[i2], points[i1], points[i0]);
79176
79174
  normal.normalizeInPlace();
79177
- const plane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.ClipPlane.createNormalAndDistance(normal, normal.dotProduct(points[i0]) - expandPlaneDistance);
79175
+ const plane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.ClipPlane.createNormalAndDistance(normal, normal.dotProduct(points[i0]) - expandPlaneDistance);
79178
79176
  if (!plane)
79179
79177
  return [];
79180
79178
  planes.push(plane);
79181
79179
  }
79182
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(planes.length === 6);
79183
79180
  return planes;
79184
79181
  }
79185
79182
  // Scratch variable used by FrustumPlanes.computeContainment.
@@ -79257,7 +79254,6 @@ class FrustumPlanes {
79257
79254
  * @returns the degree to which all of the points are contained within the clipping planes.
79258
79255
  */
79259
79256
  computeContainment(points, sphere, tolerance = 1.0e-8) {
79260
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(this.isValid);
79261
79257
  if (undefined === this._planes)
79262
79258
  return FrustumPlanes.Containment.Outside;
79263
79259
  // Do the cheap test against bounding sphere first.
@@ -79295,7 +79291,6 @@ class FrustumPlanes {
79295
79291
  * @returns true if the ray extending from `origin` in the specified `direction` intersects at least one of the clipping planes.
79296
79292
  */
79297
79293
  intersectsRay(origin, direction) {
79298
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(this.isValid);
79299
79294
  if (undefined === this._planes) {
79300
79295
  return false;
79301
79296
  }
@@ -81468,7 +81463,11 @@ class DevToolsRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_0__.Rp
81468
81463
  // Returns JSON object with backend performance and memory statistics
81469
81464
  async stats(_iModelToken, _options) { return this.forward(arguments); }
81470
81465
  // Returns JSON object with backend versions (application and iModelJs)
81471
- async versions(_iModelToken) { return this.forward(arguments); }
81466
+ async versions(_iModelToken) {
81467
+ const versions = await this.forward(arguments) || {};
81468
+ versions.availableRpcs = await _RpcManager__WEBPACK_IMPORTED_MODULE_1__.RpcManager.describeAvailableEndpoints();
81469
+ return versions;
81470
+ }
81472
81471
  // Sets a new log level for the specified category and returns the old log level
81473
81472
  async setLogLevel(_iModelToken, _loggerCategory, _logLevel) { return this.forward(arguments); }
81474
81473
  }
@@ -81477,7 +81476,7 @@ DevToolsRpcInterface.interfaceName = "DevToolsRpcInterface";
81477
81476
  /** The semantic version of the interface.
81478
81477
  * @note The DevToolsRpcInterface will remain at 0.x since it is for testing only and not intended for production.
81479
81478
  */
81480
- DevToolsRpcInterface.interfaceVersion = "0.6.0";
81479
+ DevToolsRpcInterface.interfaceVersion = "0.7.0";
81481
81480
 
81482
81481
 
81483
81482
  /***/ }),
@@ -81558,7 +81557,7 @@ class IModelReadRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
81558
81557
  async getViewStateData(_iModelToken, _viewDefinitionId, _options) { return this.forward(arguments); }
81559
81558
  async readFontJson(_iModelToken) { return this.forward(arguments); }
81560
81559
  async getToolTipMessage(_iModelToken, _elementId) { return this.forward(arguments); }
81561
- /** @deprecated in 3.x. */
81560
+ /** @deprecated in 3.x with no replacement; thumbnails are rarely added to the iModel. */
81562
81561
  async getViewThumbnail(_iModelToken, _viewId) { return this.forward(arguments); }
81563
81562
  async getDefaultViewId(_iModelToken) { return this.forward(arguments); }
81564
81563
  async getCustomViewState3dData(_iModelToken, _options) { return this.forward(arguments); }
@@ -81670,13 +81669,13 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
81670
81669
  /**
81671
81670
  * Returns connection information for external tile cache or an empty `CloudStorageContainerUrl` if no external tile cache is configured on the backend.
81672
81671
  * @beta
81673
- * @deprecated in 3.x.
81672
+ * @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
81674
81673
  */
81675
81674
  async getTileCacheContainerUrl(_tokenProps, _id) {
81676
81675
  return this.forward(arguments);
81677
81676
  }
81678
81677
  /** Returns true if an external tile cache is configured on the backend.
81679
- * @internal @deprecated in 3.x.
81678
+ * @internal @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
81680
81679
  */
81681
81680
  async isUsingExternalTileCache() {
81682
81681
  return this.forward(arguments);
@@ -97351,9 +97350,7 @@ class IModelApp {
97351
97350
  * @internal
97352
97351
  */
97353
97352
  static get mapLayerFormatRegistry() { return this._mapLayerFormatRegistry; }
97354
- /** The [[TerrainProviderRegistry]] for this session.
97355
- * @beta
97356
- */
97353
+ /** The [[TerrainProviderRegistry]] for this session. */
97357
97354
  static get terrainProviderRegistry() { return this._terrainProviderRegistry; }
97358
97355
  /** The [[RealityDataSourceProviderRegistry]] for this session.
97359
97356
  * @alpha
@@ -98770,7 +98767,7 @@ class SnapshotConnection extends IModelConnection {
98770
98767
  * @param viewId The id of the view of the thumbnail.
98771
98768
  * @returns A Promise of the ThumbnailProps.
98772
98769
  * @throws "No content" error if invalid thumbnail.
98773
- * @deprecated in 3.x.
98770
+ * @deprecated in 3.x with no replacement; thumbnails are rarely added to the iModel.
98774
98771
  */
98775
98772
  async getThumbnail(_viewId) {
98776
98773
  // eslint-disable-next-line deprecation/deprecation
@@ -116914,7 +116911,7 @@ function precondition(condition, message) {
116914
116911
  message = message();
116915
116912
  throw new Error(`Logic Error: ${message}`);
116916
116913
  }
116917
- /** @beta */
116914
+ /** @public */
116918
116915
  var RealityMeshParams;
116919
116916
  (function (RealityMeshParams) {
116920
116917
  /** @internal */
@@ -157346,7 +157343,7 @@ const additiveRefinementThreshold = 10000; // Additive tiles (Cesium OSM tileset
157346
157343
  const additiveRefinementDepthLimit = 20;
157347
157344
  const scratchFrustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Frustum();
157348
157345
  /** A [[Tile]] within a [[RealityTileTree]], representing part of a reality model (e.g., a point cloud or photogrammetry mesh) or 3d terrain with map imagery.
157349
- * @beta
157346
+ * @public
157350
157347
  */
157351
157348
  class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
157352
157349
  /** @internal */
@@ -158120,7 +158117,7 @@ const scratchX = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.crea
158120
158117
  const scratchMatrix = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createZero(), scratchTransform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.createZero();
158121
158118
  /** Base class for a [[TileTree]] representing a reality model (e.g., a point cloud or photogrammetry mesh) or 3d terrain with map imagery.
158122
158119
  * The tiles within the tree are instances of [[RealityTile]]s.
158123
- * @beta
158120
+ * @public
158124
158121
  */
158125
158122
  class RealityTileTree extends _internal__WEBPACK_IMPORTED_MODULE_6__.TileTree {
158126
158123
  /** @internal */
@@ -159331,7 +159328,7 @@ class TileAdmin {
159331
159328
  this._tileStoragePromise = (async () => {
159332
159329
  await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3").then(__webpack_require__.t.bind(__webpack_require__, /*! reflect-metadata */ "../../common/temp/node_modules/.pnpm/reflect-metadata@0.1.13/node_modules/reflect-metadata/Reflect.js", 23));
159333
159330
  // eslint-disable-next-line @typescript-eslint/naming-convention
159334
- const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = await Promise.all(/*! import() | object-storage */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3"), __webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6"), __webpack_require__.e("object-storage")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@1.4.0/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
159331
+ const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = await Promise.all(/*! import() | object-storage */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3"), __webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_5_0_node_modules_itwin_obj-e3e81d"), __webpack_require__.e("object-storage")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@1.5.0/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
159335
159332
  const azureStorage = new AzureFrontendStorage(new FrontendBlockBlobClientWrapperFactory());
159336
159333
  this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
159337
159334
  return this._tileStorage;
@@ -160528,6 +160525,7 @@ class TileRequest {
160528
160525
  return;
160529
160526
  }
160530
160527
  try {
160528
+ const start = Date.now();
160531
160529
  if (!content) {
160532
160530
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== data);
160533
160531
  content = await this.tile.readContent(data, _IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.renderSystem, () => this.isCanceled);
@@ -160537,7 +160535,7 @@ class TileRequest {
160537
160535
  this._state = TileRequest.State.Completed;
160538
160536
  this.tile.setContent(content);
160539
160537
  this.notifyAndClear();
160540
- this.channel.recordCompletion(this.tile, content);
160538
+ this.channel.recordCompletion(this.tile, content, Date.now() - start);
160541
160539
  }
160542
160540
  catch (_err) {
160543
160541
  this.setFailed();
@@ -160632,6 +160630,15 @@ class TileRequestChannelStatistics {
160632
160630
  this.totalDispatchedRequests = 0;
160633
160631
  /** The total number of tiles for which content requests were dispatched and then canceled on the backend before completion. */
160634
160632
  this.totalAbortedRequests = 0;
160633
+ /** Statistics summarizing time spent decoding tile content.
160634
+ * @beta
160635
+ */
160636
+ this.decoding = {
160637
+ total: 0,
160638
+ mean: 0,
160639
+ max: Number.MIN_SAFE_INTEGER,
160640
+ min: Number.MAX_SAFE_INTEGER,
160641
+ };
160635
160642
  }
160636
160643
  /** @internal */
160637
160644
  addTo(stats) {
@@ -160639,11 +160646,27 @@ class TileRequestChannelStatistics {
160639
160646
  const key = propName;
160640
160647
  const val = this[key];
160641
160648
  if (typeof val === "number") {
160642
- // This type guard ought to suffice but doesn't.
160643
160649
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(typeof stats[key] === "number");
160644
160650
  stats[key] += val;
160645
160651
  }
160646
160652
  }
160653
+ stats.decoding.total += this.decoding.total;
160654
+ stats.decoding.max = Math.max(this.decoding.max, stats.decoding.max);
160655
+ stats.decoding.min = Math.min(this.decoding.min, stats.decoding.min);
160656
+ if (stats.totalCompletedRequests > 0)
160657
+ stats.decoding.mean = (stats.decoding.total) / stats.totalCompletedRequests;
160658
+ }
160659
+ /** @internal */
160660
+ recordCompletion(tile, elapsedMilliseconds) {
160661
+ ++this.totalCompletedRequests;
160662
+ if (tile.isEmpty)
160663
+ ++this.totalEmptyTiles;
160664
+ else if (!tile.isDisplayable)
160665
+ ++this.totalUndisplayableTiles;
160666
+ this.decoding.total += elapsedMilliseconds;
160667
+ this.decoding.mean = this.decoding.total / this.totalCompletedRequests;
160668
+ this.decoding.max = Math.max(this.decoding.max, elapsedMilliseconds);
160669
+ this.decoding.min = Math.min(this.decoding.min, elapsedMilliseconds);
160647
160670
  }
160648
160671
  }
160649
160672
  /** A channel over which requests for tile content can be made. The channel may request content over HTTP, calls to the backend via IPC or RPC, or any other method like generating the content
@@ -160717,12 +160740,8 @@ class TileRequestChannel {
160717
160740
  /** Invoked by [[TileRequest]] after a request completes.
160718
160741
  * @internal
160719
160742
  */
160720
- recordCompletion(tile, content) {
160721
- ++this._statistics.totalCompletedRequests;
160722
- if (tile.isEmpty)
160723
- ++this._statistics.totalEmptyTiles;
160724
- else if (!tile.isDisplayable)
160725
- ++this._statistics.totalUndisplayableTiles;
160743
+ recordCompletion(tile, content, elapsedMilliseconds) {
160744
+ this._statistics.recordCompletion(tile, elapsedMilliseconds);
160726
160745
  if (this.contentCallback)
160727
160746
  this.contentCallback(tile, content);
160728
160747
  }
@@ -163323,21 +163342,31 @@ const scratchPoint2d = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point2d
163323
163342
  const scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.createZero();
163324
163343
  const scratchEllipsoid = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Ellipsoid.create(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.createIdentity());
163325
163344
  const scratchZeroRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range1d.createXX(0, 0);
163326
- /** Terrain provider that produces geometry that represents a smooth ellipsoid without any height perturbations.
163345
+ /** A terrain mesh provider that produces geometry that represents a smooth ellipsoid without any height perturbations.
163327
163346
  * The area within the project extents are represented as planar tiles and other tiles are facetted approximations
163328
163347
  * of the WGS84 ellipsoid.
163329
- * @see [[TerrainMeshProvider]]
163330
- * @internal
163348
+ * This is the terrain provider used when the background map is enabled but 3d terrain is disabled.
163349
+ * @public
163331
163350
  */
163332
163351
  class EllipsoidTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_3__.TerrainMeshProvider {
163352
+ /** Construct a new terrain provider.
163353
+ * @note [[TerrainMeshProviderOptions.wantNormals]] is ignored - no normals are produced.
163354
+ */
163333
163355
  constructor(opts) {
163334
163356
  super();
163335
163357
  this._tilingScheme = new _internal__WEBPACK_IMPORTED_MODULE_3__.WebMercatorTilingScheme();
163336
163358
  this._wantSkirts = opts.wantSkirts;
163337
163359
  }
163360
+ /** @internal override */
163338
163361
  get maxDepth() { return 22; }
163339
- getChildHeightRange(_quadId, _rectangle, _parent) { return scratchZeroRange; }
163340
- get tilingScheme() { return this._tilingScheme; }
163362
+ /** @internal override */
163363
+ getChildHeightRange(_quadId, _rectangle, _parent) {
163364
+ return scratchZeroRange;
163365
+ }
163366
+ /** @internal override */
163367
+ get tilingScheme() {
163368
+ return this._tilingScheme;
163369
+ }
163341
163370
  createSkirtlessPlanarMesh(tile) {
163342
163371
  const projection = tile.getProjection();
163343
163372
  const builder = new _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_2__.RealityMeshParamsBuilder({
@@ -163385,6 +163414,7 @@ class EllipsoidTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_3__.Te
163385
163414
  }
163386
163415
  return builder.finish();
163387
163416
  }
163417
+ /** @internal override */
163388
163418
  async readMesh(args) {
163389
163419
  const tile = args.tile;
163390
163420
  if (tile.isPlanar)
@@ -163452,6 +163482,7 @@ class EllipsoidTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_3__.Te
163452
163482
  }
163453
163483
  return builder.finish();
163454
163484
  }
163485
+ /** @internal override */
163455
163486
  async requestMeshData() {
163456
163487
  return "";
163457
163488
  }
@@ -164986,7 +165017,7 @@ const scratchPoint2d = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point2d
164986
165017
  * The `y` components of the `low` and `high` points refer to the southern and northern latitudes, respectively.
164987
165018
  * Longitudes are stored in radians in the range [-pi, pi].
164988
165019
  * Latitudes are stored in radians in the range [-pi/2, pi/2].
164989
- * @beta
165020
+ * @public
164990
165021
  */
164991
165022
  class MapCartoRectangle extends _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range2d {
164992
165023
  /** Construct a new rectangle with angles specified in radians.
@@ -166092,7 +166123,7 @@ class PlanarTilePatch {
166092
166123
  }
166093
166124
  /** Projects points within the rectangular region of a [[MapTile]] into 3d space.
166094
166125
  * @see [[MapTile.getProjection]] to obtain the projection for a [[MapTile]].
166095
- * @beta
166126
+ * @public
166096
166127
  */
166097
166128
  class MapTileProjection {
166098
166129
  /** @alpha */
@@ -166144,7 +166175,7 @@ const scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.c
166144
166175
  const scratchClipPlanes = [_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.ClipPlane.createNormalAndPoint(scratchNormal, scratchPoint), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.ClipPlane.createNormalAndPoint(scratchNormal, scratchPoint), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.ClipPlane.createNormalAndPoint(scratchNormal, scratchPoint), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.ClipPlane.createNormalAndPoint(scratchNormal, scratchPoint)];
166145
166176
  const scratchCorners = [_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero(), _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Point3d.createZero()];
166146
166177
  /** A [[Tile]] belonging to a [[MapTileTree]] representing a rectangular region of a map of the Earth.
166147
- * @beta
166178
+ * @public
166148
166179
  */
166149
166180
  class MapTile extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTile {
166150
166181
  /** @internal */
@@ -167150,7 +167181,7 @@ var MapTileTreeScaleRangeVisibility;
167150
167181
  *
167151
167182
  * The map or globe may be smooth, or feature 3d geometry supplied by a [[TerrainProvider]].
167152
167183
  * The terrain displayed in a [[Viewport]] is determined by its [TerrainSettings]($common).
167153
- * @beta
167184
+ * @public
167154
167185
  */
167155
167186
  class MapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTileTree {
167156
167187
  /** @internal */
@@ -168231,7 +168262,7 @@ __webpack_require__.r(__webpack_exports__);
168231
168262
  * An X fraction of 0 corresponds to the easternmost longitude and an X fraction of 1 to the westernmost longitude.
168232
168263
  * The scheme can choose to correlate a Y fraction of 0 with either the north or south pole, as specified by [[rowZeroAtNorthPole]].
168233
168264
  * Implementing a tiling scheme only requires implementing the abstract method [[yFractionToLatitude]] and its inverse, [[latitudeToYFraction]].
168234
- * @beta
168265
+ * @public
168235
168266
  */
168236
168267
  class MapTilingScheme {
168237
168268
  constructor(numberOfLevelZeroTilesX, numberOfLevelZeroTilesY, rowZeroAtNorthPole) {
@@ -168477,7 +168508,7 @@ const scratchCartographic2 = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Car
168477
168508
  /** Identifies a node within a [quad tree](https://en.wikipedia.org/wiki/Quadtree), such as a [[MapTile]] within a [[MapTileTree]].
168478
168509
  * A quad tree recursively sub-divides a two-dimensional space along the X and Y axes such that each node on level L has four child nodes on
168479
168510
  * level L+1.
168480
- * @beta
168511
+ * @public
168481
168512
  */
168482
168513
  class QuadId {
168483
168514
  /** Construct a new QuadId. The inputs are expected to be non-negative integers. */
@@ -168590,7 +168621,12 @@ __webpack_require__.r(__webpack_exports__);
168590
168621
  * Each mesh represents the terrain within a rectangular region of the Earth associated with a [[MapTile]].
168591
168622
  * The display system drapes background map imagery onto these meshes.
168592
168623
  * `TerrainMeshProvider`s are obtained from [[TerrainProvider]]s.
168593
- * @beta
168624
+ * @note A terrain mesh provider is expected to produce terrain for all areas of the globe. If it lacks terrain data for an area of the globe,
168625
+ * it might choose to fall back to producing smooth terrain using an [[EllipsoidTerrainProvider]].
168626
+ * @see [[EllipsoidTerrainProvider]] for an example implementation that provides smooth terrain meshes.
168627
+ * @see [BingTerrainMeshProvider](https://github.com/iTwin/itwinjs-core/blob/master/test-apps/display-test-app/src/frontend/BingTerrainProvider.ts) for an example
168628
+ * implementation that produces 3d terrain meshes from elevations provided by [[BingElevationProvider]].
168629
+ * @public
168594
168630
  */
168595
168631
  class TerrainMeshProvider {
168596
168632
  /** Add attribution logo cards for the terrain data supplied by this provider to the [[Viewport]]'s logo div.
@@ -168647,7 +168683,7 @@ __webpack_require__.r(__webpack_exports__);
168647
168683
  * Any number of additional providers can be [[register]]ed.
168648
168684
  *
168649
168685
  * When terrain is enabled for a [[Viewport]], the display system will attempt to look up the [[TerrainProvider]] corresponding to the [TerrainSettings.providerName]($common) specified by the [[Viewport]]'s [DisplayStyleSettings]($common). If a provider by that name is registered, it will be used to obtain terrain meshes; otherwise, the display system will produce flat terrain meshes.
168650
- * @beta
168686
+ * @public
168651
168687
  */
168652
168688
  class TerrainProviderRegistry {
168653
168689
  /** @internal */
@@ -287175,7 +287211,7 @@ class TestContext {
287175
287211
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
287176
287212
  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` } });
287177
287213
  await core_frontend_1.NoRenderApp.startup({
287178
- applicationVersion: "4.0.0-dev.15",
287214
+ applicationVersion: "4.0.0-dev.18",
287179
287215
  applicationId: this.settings.gprid,
287180
287216
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
287181
287217
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -290811,10 +290847,7 @@ class Field {
290811
290847
  category: Field.getCategoryFromFieldJson(json, categories),
290812
290848
  });
290813
290849
  }
290814
- /**
290815
- * Deserialize a [[Field]] from compressed JSON.
290816
- * @public
290817
- */
290850
+ /** Deserialize a [[Field]] from compressed JSON. */
290818
290851
  static fromCompressedJSON(json, classesMap, categories) {
290819
290852
  if (!json)
290820
290853
  return undefined;
@@ -290833,11 +290866,11 @@ class Field {
290833
290866
  throw new _Error__WEBPACK_IMPORTED_MODULE_2__.PresentationError(_Error__WEBPACK_IMPORTED_MODULE_2__.PresentationStatus.InvalidArgument, `Invalid content field category`);
290834
290867
  return category;
290835
290868
  }
290836
- /** @internal */
290869
+ /** Resets field's parent. */
290837
290870
  resetParentship() {
290838
290871
  this._parent = undefined;
290839
290872
  }
290840
- /** @internal */
290873
+ /** Sets provided [[NestedContentField]] as parent of this field. */
290841
290874
  rebuildParentship(parentField) {
290842
290875
  this._parent = parentField;
290843
290876
  }
@@ -291000,10 +291033,7 @@ class NestedContentField extends Field {
291000
291033
  .filter((nestedField) => !!nestedField),
291001
291034
  });
291002
291035
  }
291003
- /**
291004
- * Deserialize a [[NestedContentField]] from compressed JSON.
291005
- * @public
291006
- */
291036
+ /** Deserialize a [[NestedContentField]] from compressed JSON. */
291007
291037
  static fromCompressedJSON(json, classesMap, categories) {
291008
291038
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(classesMap.hasOwnProperty(json.contentClassInfo));
291009
291039
  const field = Object.create(NestedContentField.prototype);
@@ -291025,13 +291055,16 @@ class NestedContentField extends Field {
291025
291055
  autoExpand: json.autoExpand,
291026
291056
  };
291027
291057
  }
291028
- /** @internal */
291058
+ /** Resets parent of this field and all nested fields. */
291029
291059
  resetParentship() {
291030
291060
  super.resetParentship();
291031
291061
  for (const nestedField of this.nestedFields)
291032
291062
  nestedField.resetParentship();
291033
291063
  }
291034
- /** @internal */
291064
+ /**
291065
+ * Sets provided [[NestedContentField]] as parent of this fields and recursively updates
291066
+ * all nested fields parents.
291067
+ */
291035
291068
  rebuildParentship(parentField) {
291036
291069
  super.rebuildParentship(parentField);
291037
291070
  for (const nestedField of this.nestedFields)
@@ -293534,8 +293567,6 @@ class Presentation {
293534
293567
  /**
293535
293568
  * Registers an additional handler which will be invoked during Presentation library frontend
293536
293569
  * initialization.
293537
- *
293538
- * @internal
293539
293570
  */
293540
293571
  static registerInitializationHandler(handler) {
293541
293572
  initializationHandlers.push(handler);
@@ -295668,7 +295699,10 @@ __webpack_require__.r(__webpack_exports__);
295668
295699
  * @module UnifiedSelection
295669
295700
  */
295670
295701
 
295671
- /** @internal */
295702
+ /**
295703
+ * Helper class for working with selection.
295704
+ * @public
295705
+ */
295672
295706
  class SelectionHelper {
295673
295707
  // istanbul ignore next
295674
295708
  constructor() { }
@@ -296206,10 +296240,10 @@ class SelectionScopesManager {
296206
296240
  }
296207
296241
  }
296208
296242
  /**
296209
- * Normalizes given scope options and returns [[ComputeSelectionScopeProps]] that can be used for
296243
+ * Normalizes given scope options and returns [[SelectionScopeProps]] that can be used for
296210
296244
  * calculating selection with scope.
296211
296245
  *
296212
- * @internal
296246
+ * @public
296213
296247
  */
296214
296248
  function createSelectionScopeProps(scope) {
296215
296249
  if (!scope)
@@ -299521,7 +299555,7 @@ __webpack_require__.r(__webpack_exports__);
299521
299555
  class IconSpecUtilities {
299522
299556
  /** Create an IconSpec for an SVG loaded into web component with sprite loader
299523
299557
  * This method is deprecated -- use createWebComponentIconSpec()
299524
- * @public @deprecated in 3.2.
299558
+ * @public @deprecated in 3.2. Please avoid using the Sprite loader and use IconSpecUtilities.createWebComponentIconSpec() instead.
299525
299559
  */
299526
299560
  static createSvgIconSpec(svgSrc) {
299527
299561
  return `${IconSpecUtilities.SVG_PREFIX}${svgSrc}`;
@@ -299534,7 +299568,7 @@ class IconSpecUtilities {
299534
299568
  }
299535
299569
  /** Get the SVG Source from an sprite IconSpec
299536
299570
  * This method is deprecated -- use getWebComponentSource()
299537
- * @public @deprecated in 3.2.
299571
+ * @public @deprecated in 3.2. avoid using the Sprite loader and use IconSpecUtilities.getWebComponentSource() instead.
299538
299572
  */
299539
299573
  static getSvgSource(iconSpec) {
299540
299574
  if (iconSpec.startsWith(IconSpecUtilities.SVG_PREFIX) && iconSpec.length > 4) {
@@ -301169,7 +301203,7 @@ __webpack_require__.r(__webpack_exports__);
301169
301203
  * @module Widget
301170
301204
  */
301171
301205
  /** Enum for AppUi 1 `Zone` locations that can have widgets added to them at run-time via [[UiItemsProvider]].
301172
- * @public @deprecated in 3.0.
301206
+ * @public @deprecated in 3.0. UI 1.0 support will be removed in AppUi 4.0.
301173
301207
  */
301174
301208
  var AbstractZoneLocation;
301175
301209
  (function (AbstractZoneLocation) {
@@ -301185,12 +301219,12 @@ var AbstractZoneLocation;
301185
301219
  var StagePanelLocation;
301186
301220
  (function (StagePanelLocation) {
301187
301221
  StagePanelLocation[StagePanelLocation["Top"] = 101] = "Top";
301188
- /** @deprecated Used in UI1.0 only. */
301222
+ /** @deprecated in 3.6 UI 1.0 support will be removed in AppUi 4.0. */
301189
301223
  StagePanelLocation[StagePanelLocation["TopMost"] = 102] = "TopMost";
301190
301224
  StagePanelLocation[StagePanelLocation["Left"] = 103] = "Left";
301191
301225
  StagePanelLocation[StagePanelLocation["Right"] = 104] = "Right";
301192
301226
  StagePanelLocation[StagePanelLocation["Bottom"] = 105] = "Bottom";
301193
- /** @deprecated Used in UI1.0 only. */
301227
+ /** @deprecated in 3.6 UI 1.0 support will be removed in AppUi 4.0. */
301194
301228
  StagePanelLocation[StagePanelLocation["BottomMost"] = 106] = "BottomMost";
301195
301229
  })(StagePanelLocation || (StagePanelLocation = {}));
301196
301230
  /** Enum for Stage Panel Sections
@@ -306609,7 +306643,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
306609
306643
  /***/ ((module) => {
306610
306644
 
306611
306645
  "use strict";
306612
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.15","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":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","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:^4.0.0-dev.8","@itwin/core-bentley":"workspace:^4.0.0-dev.15","@itwin/core-common":"workspace:^4.0.0-dev.15","@itwin/core-geometry":"workspace:^4.0.0-dev.15","@itwin/core-orbitgt":"workspace:^4.0.0-dev.15","@itwin/core-quantity":"workspace:^4.0.0-dev.15"},"//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":"18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","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/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"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.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"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"}}]}}');
306646
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.18","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":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","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:^4.0.0-dev.8","@itwin/core-bentley":"workspace:^4.0.0-dev.18","@itwin/core-common":"workspace:^4.0.0-dev.18","@itwin/core-geometry":"workspace:^4.0.0-dev.18","@itwin/core-orbitgt":"workspace:^4.0.0-dev.18","@itwin/core-quantity":"workspace:^4.0.0-dev.18"},"//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":"^18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","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/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"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.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"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"}}]}}');
306613
306647
 
306614
306648
  /***/ }),
306615
306649