@itwin/rpcinterface-full-stack-tests 4.0.0-dev.60 → 4.0.0-dev.61

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":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.1\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\6\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.1\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
@@ -82367,18 +82367,14 @@ class AccuSnap {
82367
82367
  onInitialized() { }
82368
82368
  get _searchDistance() { return this.isLocateEnabled ? 1.0 : this._settings.searchDistance; }
82369
82369
  get _hotDistanceInches() { return _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.locateManager.apertureInches * this._settings.hotDistanceFactor; }
82370
- /** Whether locate of elements under the cursor is enabled by the current InteractiveTool.
82371
- * @public
82372
- */
82370
+ /** Whether locate of elements under the cursor is enabled by the current InteractiveTool. */
82373
82371
  get isLocateEnabled() { return this.toolState.locate; }
82374
- /** Whether snapping to elements under the cursor is enabled by the current InteractiveTool.
82375
- * @public
82376
- */
82372
+ /** Whether snapping to elements under the cursor is enabled by the current InteractiveTool. */
82377
82373
  get isSnapEnabled() { return this.toolState.enabled; }
82378
- /** Whether the user setting for snapping is enabled. Snapping is done only when both the user and current InteractiveTool have enabled it.
82379
- * @public
82380
- */
82374
+ /** Whether the user setting for snapping is enabled. Snapping is done only when both the user and current InteractiveTool have enabled it. */
82381
82375
  get isSnapEnabledByUser() { return this._settings.enableFlag; }
82376
+ /** AccuSnap user settings */
82377
+ get userSettings() { return this._settings; }
82382
82378
  isFlashed(view) { return (this.areFlashed.has(view)); }
82383
82379
  needsFlash(view) { return (this.needFlash.has(view)); }
82384
82380
  setNeedsFlash(view) {
@@ -105939,6 +105935,7 @@ const extensionExports = {
105939
105935
  UniformType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.UniformType,
105940
105936
  VaryingType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.VaryingType,
105941
105937
  ViewClipClearTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipClearTool,
105938
+ ViewClipDecoration: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecoration,
105942
105939
  ViewClipDecorationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecorationProvider,
105943
105940
  ViewClipTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipTool,
105944
105941
  ViewCreator2d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewCreator2d,
@@ -164349,14 +164346,22 @@ class ViewClipControlArrow {
164349
164346
  this.name = name;
164350
164347
  }
164351
164348
  }
164352
- /** @internal Controls to modify a view's clip */
164349
+ /** A pickable decoration managed by ViewClipDecorationProvider used to visualize a view's clip and present modification handles.
164350
+ * This class is public to facilitate customization of view clip events by type or selected controls.
164351
+ * @see [[ViewClipDecorationProvider]]
164352
+ * @public
164353
+ * @extensions
164354
+ */
164353
164355
  class ViewClipDecoration extends _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.EditManipulator.HandleProvider {
164354
164356
  constructor(_clipView, _clipEventHandler) {
164355
164357
  super(_clipView.iModel);
164356
164358
  this._clipView = _clipView;
164357
164359
  this._clipEventHandler = _clipEventHandler;
164360
+ /** @internal */
164358
164361
  this._controlIds = [];
164362
+ /** @internal */
164359
164363
  this._controls = [];
164364
+ /** @internal */
164360
164365
  this._suspendDecorator = false;
164361
164366
  if (!this.getClipData())
164362
164367
  return;
@@ -164853,7 +164858,7 @@ class ViewClipDecoration extends _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.E
164853
164858
  const transform = _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.EditManipulator.HandleUtils.getArrowTransform(vp, anchorRay.origin, anchorRay.direction, sizeInches);
164854
164859
  if (undefined === transform)
164855
164860
  continue;
164856
- // deep copy beecause we're using a builder transform w/addLineString...
164861
+ // deep copy because we're using a builder transform w/addLineString...
164857
164862
  const visPts = shapePts.map((pt) => pt.clone());
164858
164863
  const hidPts = shapePts.map((pt) => pt.clone());
164859
164864
  const arrowVisBuilder = context.createGraphicBuilder(_render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_7__.GraphicType.WorldOverlay, transform, this._controlIds[iFace]);
@@ -164973,6 +164978,7 @@ class ViewClipDecorationProvider {
164973
164978
  showDecoration(vp) { ViewClipDecoration.create(vp, this); }
164974
164979
  hideDecoration() { ViewClipDecoration.clear(); }
164975
164980
  async toggleDecoration(vp) { return ViewClipDecoration.toggle(vp, this); }
164981
+ isDecorationActive(vp) { return (undefined !== ViewClipDecoration.get(vp)); }
164976
164982
  static create() {
164977
164983
  if (undefined === ViewClipDecorationProvider._provider) {
164978
164984
  ViewClipDecoration.clear();
@@ -169420,7 +169426,7 @@ class InteractiveTool extends Tool {
169420
169426
  supplyToolSettingsProperties() { return undefined; }
169421
169427
  /** Used to receive property changes from UI. Return false if there was an error applying updatedValue.
169422
169428
  * @see [[changeToolSettingPropertyValue]]
169423
- * @beta
169429
+ * @public
169424
169430
  */
169425
169431
  async applyToolSettingPropertyChange(_updatedValue) { return true; }
169426
169432
  /** Called by tool to synchronize the UI with property changes made by tool. This is typically used to provide user feedback during tool dynamics.
@@ -170136,23 +170142,17 @@ class ToolAdmin {
170136
170142
  div.innerHTML = out;
170137
170143
  return _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.notifications.openMessageBox(_NotificationManager__WEBPACK_IMPORTED_MODULE_7__.MessageBoxType.MediumAlert, div, _NotificationManager__WEBPACK_IMPORTED_MODULE_7__.MessageBoxIconType.Critical);
170138
170144
  }
170139
- /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool.
170140
- * @internal
170141
- */
170145
+ /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool. */
170142
170146
  get toolSettingsChangeHandler() { return this._toolSettingsChangeHandler; }
170143
170147
  set toolSettingsChangeHandler(handler) {
170144
170148
  this._toolSettingsChangeHandler = handler;
170145
170149
  }
170146
- /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool.
170147
- * @internal
170148
- */
170150
+ /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool. */
170149
170151
  get reloadToolSettingsHandler() { return this._reloadToolSettingsHandler; }
170150
170152
  set reloadToolSettingsHandler(handler) {
170151
170153
  this._reloadToolSettingsHandler = handler;
170152
170154
  }
170153
- /** Returns the handler registered by the UI layer that will trigger UiSyncEvent processing that informs UI component to refresh their state.
170154
- * @internal
170155
- */
170155
+ /** Returns the handler registered by the UI layer that will trigger UiSyncEvent processing that informs UI component to refresh their state. */
170156
170156
  get toolSyncUiEventDispatcher() { return this._toolSyncUiEventDispatcher; }
170157
170157
  set toolSyncUiEventDispatcher(handler) {
170158
170158
  this._toolSyncUiEventDispatcher = handler;
@@ -171107,7 +171107,6 @@ class ToolAdmin {
171107
171107
  * To "bump" a setting means to toggle a boolean value or cycle through enum values.
171108
171108
  * If no `settingIndex` param is specified, the first setting is bumped.
171109
171109
  * Returns true if the setting was successfully bumped.
171110
- * @beta
171111
171110
  */
171112
171111
  async bumpToolSetting(settingIndex) {
171113
171112
  return this.currentTool.bumpToolSetting(settingIndex);
@@ -171117,7 +171116,6 @@ class ToolAdmin {
171117
171116
  * more important user interaction processing is required.
171118
171117
  * @param specificSyncEventId Optional sync event id. If not specified then "tool-admin-refresh-ui" is used.
171119
171118
  * @param toolId Optional, will be used if specificSyncEventId is not specified. If used, the resulting sync event Id will be created using `tool-admin-refresh-ui-${toolId}`.toLowerCase()
171120
- * @beta
171121
171119
  */
171122
171120
  dispatchImmediateUiSyncEvent(specificSyncEventId, toolId) {
171123
171121
  const defaultRefreshEventId = "tool-admin-refresh-ui";
@@ -171135,7 +171133,6 @@ class ToolAdmin {
171135
171133
  * to be processed together.
171136
171134
  * @param specificSyncEventId Optional sync event id. If not specified then "tool-admin-refresh-ui" is used.
171137
171135
  * @param toolId Optional, will be used if specificSyncEventId is not specified. If used, the resulting sync event Id will be created using `tool-admin-refresh-ui-${toolId}`.toLowerCase()
171138
- * @beta
171139
171136
  */
171140
171137
  dispatchUiSyncEvent(specificSyncEventId, toolId) {
171141
171138
  const defaultRefreshEventId = "tool-admin-refresh-ui";
@@ -171287,6 +171284,9 @@ class ToolAdmin {
171287
171284
  this.setLocateCircleOn(enableLocate);
171288
171285
  viewManager.invalidateDecorationsAllViews();
171289
171286
  }
171287
+ /** Controls how the button event location is adjusted for the active tool */
171288
+ get coordinateLockOverrides() { return this.toolState.coordLockOvr; }
171289
+ set coordinateLockOverrides(coordLockOvr) { this.toolState.coordLockOvr = coordLockOvr; }
171290
171290
  /** @internal */
171291
171291
  async callOnCleanup() {
171292
171292
  await this.exitViewTool();
@@ -177123,7 +177123,6 @@ __webpack_require__.r(__webpack_exports__);
177123
177123
 
177124
177124
 
177125
177125
 
177126
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
177127
177126
  /**
177128
177127
  * Base class for BSplineCurve3d and BSplineCurve3dH.
177129
177128
  * * A bspline curve consists of a set of knots and a set of poles.
@@ -177824,11 +177823,9 @@ __webpack_require__.r(__webpack_exports__);
177824
177823
  /** @packageDocumentation
177825
177824
  * @module Serialization
177826
177825
  */
177827
- // import { Point2d } from "../Geometry2d";
177828
177826
 
177829
177827
 
177830
177828
 
177831
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
177832
177829
 
177833
177830
 
177834
177831
 
@@ -178246,14 +178243,14 @@ __webpack_require__.r(__webpack_exports__);
178246
178243
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
178247
178244
  /* harmony export */ "BSplineCurveOps": () => (/* binding */ BSplineCurveOps)
178248
178245
  /* harmony export */ });
178246
+ /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
178249
178247
  /* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
178250
178248
  /* harmony import */ var _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/IndexedXYZCollection */ "../../core/geometry/lib/esm/geometry3d/IndexedXYZCollection.js");
178251
- /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
178252
178249
  /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
178250
+ /* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
178253
178251
  /* harmony import */ var _numerics_BandedSystem__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../numerics/BandedSystem */ "../../core/geometry/lib/esm/numerics/BandedSystem.js");
178254
178252
  /* harmony import */ var _BSplineCurve__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
178255
178253
  /* harmony import */ var _KnotVector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
178256
- /* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
178257
178254
  /*---------------------------------------------------------------------------------------------
178258
178255
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
178259
178256
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -178261,7 +178258,6 @@ __webpack_require__.r(__webpack_exports__);
178261
178258
  /** @packageDocumentation
178262
178259
  * @module Bspline
178263
178260
  */
178264
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
178265
178261
 
178266
178262
 
178267
178263
 
@@ -179105,9 +179101,7 @@ __webpack_require__.r(__webpack_exports__);
179105
179101
  /** @packageDocumentation
179106
179102
  * @module Bspline
179107
179103
  */
179108
- // import { Point2d } from "./Geometry2d";
179109
179104
 
179110
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
179111
179105
 
179112
179106
 
179113
179107
 
@@ -180935,7 +180929,6 @@ __webpack_require__.r(__webpack_exports__);
180935
180929
 
180936
180930
 
180937
180931
 
180938
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
180939
180932
  /**
180940
180933
  * Base class for CurvePrimitive (necessarily 3D) with _polygon.
180941
180934
  * * This has a Bezier1dNd polygon as a member, and implements dimension-independent methods
@@ -181470,8 +181463,6 @@ __webpack_require__.r(__webpack_exports__);
181470
181463
  /** @packageDocumentation
181471
181464
  * @module Bspline
181472
181465
  */
181473
- // import { Point2d } from "../Geometry2d";
181474
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
181475
181466
 
181476
181467
 
181477
181468
  /**
@@ -202152,7 +202143,7 @@ class Joint {
202152
202143
  static removeDegeneratePrimitives(start, options, maxTest) {
202153
202144
  /*
202154
202145
  if (Checker.noisy.PolygonOffset)
202155
- console.log("\nENTER removeDegenerates");
202146
+ GeometryCoreTestIO.consoleLog("\nENTER removeDegenerates");
202156
202147
  */
202157
202148
  let jointA = start;
202158
202149
  let numRemoved = 0;
@@ -202174,10 +202165,10 @@ class Joint {
202174
202165
  // f0 and f1 are fractions on the single primitive between these joints.
202175
202166
  /*
202176
202167
  if (Checker.noisy.PolygonOffset) {
202177
- console.log("joint candidate");
202178
- console.log(prettyPrint(jointA.shallowExtract()));
202179
- console.log(prettyPrint(jointB.shallowExtract()));
202180
- console.log("FRACTIONS ", { fA1: f0, fB0: f1 });
202168
+ GeometryCoreTestIO.consoleLog("joint candidate");
202169
+ GeometryCoreTestIO.consoleLog(prettyPrint(jointA.shallowExtract()));
202170
+ GeometryCoreTestIO.consoleLog(prettyPrint(jointB.shallowExtract()));
202171
+ GeometryCoreTestIO.consoleLog("FRACTIONS ", { fA1: f0, fB0: f1 });
202181
202172
  }
202182
202173
  */
202183
202174
  const eliminateF = f0 >= f1 || f0 > 1.0;
@@ -202194,8 +202185,8 @@ class Joint {
202194
202185
  newJoint.nextJoint.annotateJointMode(options);
202195
202186
  /*
202196
202187
  if (Checker.noisy.PolygonOffset) {
202197
- console.log(" NEW DOUBLE CUT");
202198
- console.log(prettyPrint(newJoint.shallowExtract()));
202188
+ GeometryCoreTestIO.consoleLog(" NEW DOUBLE CUT");
202189
+ GeometryCoreTestIO.consoleLog(prettyPrint(newJoint.shallowExtract()));
202199
202190
  }
202200
202191
  */
202201
202192
  }
@@ -202208,8 +202199,8 @@ class Joint {
202208
202199
  newJoint.nextJoint.annotateJointMode(options);
202209
202200
  /*
202210
202201
  if (Checker.noisy.PolygonOffset) {
202211
- console.log(" NEW JOINT");
202212
- console.log(prettyPrint(newJoint.shallowExtract()));
202202
+ GeometryCoreTestIO.consoleLog(" NEW JOINT");
202203
+ GeometryCoreTestIO.consoleLog(prettyPrint(newJoint.shallowExtract()));
202213
202204
  }
202214
202205
  */
202215
202206
  numRemoved++;
@@ -202219,7 +202210,7 @@ class Joint {
202219
202210
  if (numRemoved >= maxRemove) {
202220
202211
  /*
202221
202212
  if (Checker.noisy.PolygonOffset)
202222
- console.log(" EXIT removeDegenerates at maxRemove\n");
202213
+ GeometryCoreTestIO.consoleLog(" EXIT removeDegenerates at maxRemove\n");
202223
202214
  */
202224
202215
  return { newStart: start, numJointRemoved: numRemoved };
202225
202216
  }
@@ -202287,8 +202278,8 @@ class PolygonWireOffsetContext {
202287
202278
  break;
202288
202279
  /*
202289
202280
  if (Checker.noisy.PolygonOffset) {
202290
- console.log(" POST REMOVE DEGENERATES " + state.numJointRemoved);
202291
- Joint.visitJointsOnChain(joint0, (joint: Joint) => { console.log(prettyPrint(joint.shallowExtract())); return true; });
202281
+ GeometryCoreTestIO.consoleLog(" POST REMOVE DEGENERATES " + state.numJointRemoved);
202282
+ Joint.visitJointsOnChain(joint0, (joint: Joint) => { GeometryCoreTestIO.consoleLog(prettyPrint(joint.shallowExtract())); return true; });
202292
202283
  }
202293
202284
  */
202294
202285
  }
@@ -204077,7 +204068,7 @@ class IntegratedSpiral3d extends _TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_0_
204077
204068
  const index0 = Math.trunc(clampedGlobalFraction * numStrokes); // This indexes the point to the left of the query.
204078
204069
  const globalFraction0 = index0 / numStrokes;
204079
204070
  result = this._globalStrokes.packedPoints.getPoint3dAtUncheckedPointIndex(index0, result);
204080
- // console.log(" fractionToPoint ", activeFraction, this.activeFractionInterval, "( global integration " + globalFraction0 + " to " + globalFraction + ")", index0);
204071
+ // GeometryCoreTestIO.consoleLog(" fractionToPoint ", activeFraction, this.activeFractionInterval, "( global integration " + globalFraction0 + " to " + globalFraction + ")", index0);
204081
204072
  this.fullSpiralIncrementalIntegral(result, globalFraction0, targetGlobalFraction, true);
204082
204073
  }
204083
204074
  return result;
@@ -219423,7 +219414,7 @@ class PolygonOps {
219423
219414
  }
219424
219415
  }
219425
219416
  s *= 0.5;
219426
- // console.log ("polygon area ", s, points);
219417
+ // GeometryCoreTestIO.consoleLog("polygon area ", s, points);
219427
219418
  return s;
219428
219419
  }
219429
219420
  /** return a vector which is perpendicular to the polygon and has magnitude equal to the polygon area. */
@@ -230775,7 +230766,7 @@ class TrigPolynomial {
230775
230766
  for (const theta of angles) {
230776
230767
  const c = theta.cos();
230777
230768
  const s = theta.sin();
230778
- console.log({
230769
+ GeometryCoreTestIO.consoleLog({
230779
230770
  angle: theta, co: c, si: s,
230780
230771
  f: axx * c * c + axy * c * s + ayy * s * s + ax * c + ay * s + a1});
230781
230772
  } */
@@ -238489,11 +238480,10 @@ class PolyfaceQuery {
238489
238480
  while (0 < (workCount = await Promise.resolve(PolyfaceQuery.continueAnnounceSweepLinestringToConvexPolyfaceXY(context, visitor, announce)))) {
238490
238481
  workTotal += workCount;
238491
238482
  this.awaitBlockCount++;
238492
- // console.log({ myWorkCount: workCount, myBlockCount: this.awaitBlockCount });
238483
+ // GeometryCoreTestIO.consoleLog({ myWorkCount: workCount, myBlockCount: this.awaitBlockCount });
238493
238484
  }
238494
238485
  }
238495
- // eslint-disable-next-line no-console
238496
- // console.log({ myWorkTotal: workTotal, myBlockCount: this.awaitBlockCount });
238486
+ // GeometryCoreTestIO.consoleLog({ myWorkTotal: workTotal, myBlockCount: this.awaitBlockCount });
238497
238487
  return workTotal;
238498
238488
  }
238499
238489
  /** Search the facets for facet subsets that are connected with at least vertex contact.
@@ -250785,7 +250775,7 @@ class Sample {
250785
250775
  * @param dy3
250786
250776
  * @param dy4
250787
250777
  */
250788
- static creatVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
250778
+ static createVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
250789
250779
  const points = [];
250790
250780
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0));
250791
250781
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(ax + dx1, dy1));
@@ -250796,6 +250786,11 @@ class Sample {
250796
250786
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0));
250797
250787
  return points;
250798
250788
  }
250789
+ // cspell:word creat
250790
+ /** @deprecated in 4.x. Use createVerticalStaggerPolygon instead. */
250791
+ static creatVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
250792
+ return this.createVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4);
250793
+ }
250799
250794
  /**
250800
250795
  * Make line segments for each pair of adjacent points.
250801
250796
  * @param points array of points
@@ -251201,9 +251196,12 @@ __webpack_require__.r(__webpack_exports__);
251201
251196
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
251202
251197
  /* harmony export */ "IModelJson": () => (/* binding */ IModelJson)
251203
251198
  /* harmony export */ });
251199
+ /* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
251204
251200
  /* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
251205
251201
  /* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
251202
+ /* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
251206
251203
  /* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
251204
+ /* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
251207
251205
  /* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
251208
251206
  /* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
251209
251207
  /* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
@@ -251215,6 +251213,7 @@ __webpack_require__.r(__webpack_exports__);
251215
251213
  /* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
251216
251214
  /* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
251217
251215
  /* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
251216
+ /* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
251218
251217
  /* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
251219
251218
  /* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
251220
251219
  /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
@@ -251231,6 +251230,7 @@ __webpack_require__.r(__webpack_exports__);
251231
251230
  /* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
251232
251231
  /* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
251233
251232
  /* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
251233
+ /* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
251234
251234
  /* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
251235
251235
  /* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
251236
251236
  /* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
@@ -251238,15 +251238,13 @@ __webpack_require__.r(__webpack_exports__);
251238
251238
  /* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
251239
251239
  /* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
251240
251240
  /* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
251241
- /* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
251242
- /* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
251243
- /* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
251244
- /* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
251245
- /* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
251246
251241
  /*---------------------------------------------------------------------------------------------
251247
251242
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
251248
251243
  * See LICENSE.md in the project root for license terms and full copyright notice.
251249
251244
  *--------------------------------------------------------------------------------------------*/
251245
+ /** @packageDocumentation
251246
+ * @module Serialization
251247
+ */
251250
251248
 
251251
251249
 
251252
251250
 
@@ -251290,7 +251288,6 @@ __webpack_require__.r(__webpack_exports__);
251290
251288
 
251291
251289
 
251292
251290
  // cspell:word bagof
251293
- /* eslint-disable no-console*/
251294
251291
  /**
251295
251292
  * `ImodelJson` namespace has classes for serializing and deserialization json objects
251296
251293
  * @public
@@ -258825,16 +258822,14 @@ class HalfEdgeGraphMerge {
258825
258822
  const unmatchedNullFaceNodes = [];
258826
258823
  k0 = 0;
258827
258824
  let thetaA, thetaB;
258828
- // eslint-disable-next-line no-console
258829
- // console.log("START VERTEX LINKS");
258825
+ // GeometryCoreTestIO.consoleLog("START VERTEX LINKS");
258830
258826
  // now pinch each neighboring pair together
258831
258827
  for (let k1 = 0; k1 < numK; k1++) {
258832
258828
  if (order[k1] === _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_4__.ClusterableArray.clusterTerminator) {
258833
258829
  // nodes identified in order[k0]..order[k1-1] are properly sorted around a vertex.
258834
258830
  if (k1 > k0) {
258835
258831
  // const xy = clusters.getPoint2d(order[k0]);
258836
- // eslint-disable-next-line no-console
258837
- // console.log({ k0, k1, x: xy.x, y: xy.y });
258832
+ // GeometryCoreTestIO.consoleLog({ k0, k1, x: xy.x, y: xy.y });
258838
258833
  if (k1 > k0 + 1)
258839
258834
  this.secondarySortAroundVertex(clusters, order, allNodes, k0, k1);
258840
258835
  this.doAnnounceVertexNeighborhood(clusters, order, allNodes, k0, k1);
@@ -259050,7 +259045,6 @@ __webpack_require__.r(__webpack_exports__);
259050
259045
  */
259051
259046
 
259052
259047
 
259053
- // /* eslint-disable no-console */
259054
259048
  /**
259055
259049
  * * Context for regularizing single faces.
259056
259050
  * @internal
@@ -259183,7 +259177,7 @@ class RegularizationContext {
259183
259177
  // for horizontal edge cases -- require edges ends to have strict sign change (no zeros!!)
259184
259178
  const cRight = _Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp(node, rightBase);
259185
259179
  const cTop = _Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp(node, rightTop);
259186
- // console.log(node.id, rightBase.id, rightTop.id, cRight, cTop);
259180
+ // GeometryCoreTestIO.consoleLog(node.id, rightBase.id, rightTop.id, cRight, cTop);
259187
259181
  if (cRight * cTop >= 0)
259188
259182
  continue;
259189
259183
  const fraction = _Graph__WEBPACK_IMPORTED_MODULE_1__.HalfEdge.horizontalScanFraction01(rightBase, y0);
@@ -259305,12 +259299,12 @@ class RegularizationContext {
259305
259299
  if (upSweep) {
259306
259300
  this.bottomPeaks.sort(_Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp);
259307
259301
  for (const bottomPeak of this.bottomPeaks) {
259308
- // console.log("SEARCH", bottomPeak.id, [bottomPeak.x, bottomPeak.y]);
259302
+ // GeometryCoreTestIO.consoleLog("SEARCH", bottomPeak.id, [bottomPeak.x, bottomPeak.y]);
259309
259303
  if (!_Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.isDownPeak(bottomPeak))
259310
259304
  continue;
259311
259305
  const target = this.downwardConnectionFromBottomPeak(bottomPeak);
259312
259306
  if (target !== undefined) {
259313
- // console.log("join", bottomPeak.id, [bottomPeak.x, bottomPeak.y], target.id, [target.x, target.y]);
259307
+ // GeometryCoreTestIO.consoleLog("join", bottomPeak.id, [bottomPeak.x, bottomPeak.y], target.id, [target.x, target.y]);
259314
259308
  this.joinNodes(bottomPeak, target, 1);
259315
259309
  }
259316
259310
  }
@@ -281334,7 +281328,7 @@ class TestContext {
281334
281328
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
281335
281329
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
281336
281330
  await core_frontend_1.NoRenderApp.startup({
281337
- applicationVersion: "4.0.0-dev.60",
281331
+ applicationVersion: "4.0.0-dev.61",
281338
281332
  applicationId: this.settings.gprid,
281339
281333
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
281340
281334
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -300907,7 +300901,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
300907
300901
  /***/ ((module) => {
300908
300902
 
300909
300903
  "use strict";
300910
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.60","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 \\"./node_modules/@itwin/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.60","@itwin/core-bentley":"workspace:^4.0.0-dev.60","@itwin/core-common":"workspace:^4.0.0-dev.60","@itwin/core-geometry":"workspace:^4.0.0-dev.60","@itwin/core-orbitgt":"workspace:^4.0.0-dev.60","@itwin/core-quantity":"workspace:^4.0.0-dev.60"},"//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":"^4.0.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.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":"~5.0.2","webpack":"^5.76.0"},"//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","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"}}]}}');
300904
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.61","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 \\"./node_modules/@itwin/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.61","@itwin/core-bentley":"workspace:^4.0.0-dev.61","@itwin/core-common":"workspace:^4.0.0-dev.61","@itwin/core-geometry":"workspace:^4.0.0-dev.61","@itwin/core-orbitgt":"workspace:^4.0.0-dev.61","@itwin/core-quantity":"workspace:^4.0.0-dev.61"},"//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":"^4.0.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.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":"~5.0.2","webpack":"^5.76.0"},"//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","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"}}]}}');
300911
300905
 
300912
300906
  /***/ }),
300913
300907