@itwin/rpcinterface-full-stack-tests 4.7.0-dev.12 → 4.7.0-dev.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_bea9.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +71 -87
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_1_6_node_modules_loaders_gl_draco_di-0642a6.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_meshoptimizer_0_20_0_node_modules_meshoptimizer_index_m-a5ae61.bundled-tests.js.map +1 -1
- package/package.json +13 -13
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\
|
|
1
|
+
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\486\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.1.6\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
|
|
@@ -93607,7 +93607,7 @@ class SubCategoriesCache {
|
|
|
93607
93607
|
(function (SubCategoriesCache) {
|
|
93608
93608
|
class Request {
|
|
93609
93609
|
get wasCanceled() { return this._canceled || this._imodel.isClosed; }
|
|
93610
|
-
constructor(categoryIds, imodel, maxCategoriesPerQuery =
|
|
93610
|
+
constructor(categoryIds, imodel, maxCategoriesPerQuery = 2500) {
|
|
93611
93611
|
this._categoryIds = [];
|
|
93612
93612
|
this._result = [];
|
|
93613
93613
|
this._canceled = false;
|
|
@@ -209632,11 +209632,12 @@ class Angle {
|
|
|
209632
209632
|
&& dotUV * dotUV <= _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallAngleRadiansSquared * dotUU * dotVV;
|
|
209633
209633
|
}
|
|
209634
209634
|
/**
|
|
209635
|
-
*
|
|
209636
|
-
* * This function assumes the input arguments are related to an angle between -PI and PI
|
|
209637
|
-
* * This function returns an angle between -PI and PI
|
|
209638
|
-
* @param rCos2A cosine value
|
|
209639
|
-
* @param rSin2A sine value
|
|
209635
|
+
* Compute the angle A given r*cos(2A) and r*sin(2A) for some nonnegative scalar r.
|
|
209636
|
+
* * This function assumes the input arguments are related to an angle between -PI and PI.
|
|
209637
|
+
* * This function returns an angle between -PI and PI.
|
|
209638
|
+
* @param rCos2A scaled cosine value of twice the angle A.
|
|
209639
|
+
* @param rSin2A scaled sine value of twice the angle A.
|
|
209640
|
+
* @return cos(A), sin(A) and A in radians
|
|
209640
209641
|
*/
|
|
209641
209642
|
static trigValuesToHalfAngleTrigValues(rCos2A, rSin2A) {
|
|
209642
209643
|
const r = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.hypotenuseXY(rCos2A, rSin2A);
|
|
@@ -209646,41 +209647,25 @@ class Angle {
|
|
|
209646
209647
|
else {
|
|
209647
209648
|
/* If the caller really gave you sine and cosine values, r should be 1. However,
|
|
209648
209649
|
* to allow scaled values -- e.g. the x and y components of any vector -- we normalize
|
|
209649
|
-
* right here. This adds an extra sqrt and
|
|
209650
|
+
* right here. This adds an extra sqrt and two divisions, but improves
|
|
209650
209651
|
* both the usefulness and robustness of the computation.
|
|
209651
209652
|
*/
|
|
209652
209653
|
let cosA;
|
|
209653
209654
|
let sinA = 0.0;
|
|
209654
209655
|
const cos2A = rCos2A / r;
|
|
209655
209656
|
const sin2A = rSin2A / r;
|
|
209656
|
-
//
|
|
209657
|
-
|
|
209658
|
-
|
|
209659
|
-
* We know cos2A = (cosA)^2 - (sinA)^2 and 1 = (cosA)^2 + (sinA)^2
|
|
209660
|
-
* so 1 + cos2A = 2(cosA)^2 and therefore, cosA = sqrt((1+cos2A)/2)
|
|
209661
|
-
* cosine is positive in NE and SE quadrants so we use +sqrt
|
|
209662
|
-
*/
|
|
209663
|
-
cosA = Math.sqrt(0.5 * (1.0 + cos2A));
|
|
209664
|
-
// We know sin2A = 2 sinA cosA so sinA = sin2A/(2*cosA)
|
|
209665
|
-
sinA = sin2A / (2.0 * cosA);
|
|
209657
|
+
if (cos2A >= 0.0) { // 2A is in NE and SE quadrants, A in same quadrant
|
|
209658
|
+
cosA = Math.sqrt(0.5 * (1.0 + cos2A)); // half angle formula. Use +root since cosA >= 0
|
|
209659
|
+
sinA = sin2A / (2.0 * cosA); // double angle formula
|
|
209666
209660
|
}
|
|
209667
209661
|
else {
|
|
209668
|
-
//
|
|
209669
|
-
|
|
209670
|
-
/*
|
|
209671
|
-
* We know cos2A = (cosA)^2 - (sinA)^2 and 1 = (cosA)^2 + (sinA)^2
|
|
209672
|
-
* so 1 - cos2A = 2(sinA)^2 and therefore, sinA = sqrt((1-cos2A)/2)
|
|
209673
|
-
* sine is positive in NE quadrant so we use +sqrt
|
|
209674
|
-
*/
|
|
209675
|
-
sinA = Math.sqrt(0.5 * (1.0 - cos2A));
|
|
209676
|
-
// Original angle in SW quadrant. Half angle in SE quadrant
|
|
209662
|
+
if (sin2A > 0.0) { // 2A in NW quadrant. A in NE quadrant
|
|
209663
|
+
sinA = Math.sqrt(0.5 * (1.0 - cos2A)); // half angle formula. Use +root since sinA > 0
|
|
209677
209664
|
}
|
|
209678
|
-
else {
|
|
209679
|
-
|
|
209680
|
-
sinA = -Math.sqrt(0.5 * (1.0 - cos2A));
|
|
209665
|
+
else { // 2A in SW quadrant. A in SE quadrant
|
|
209666
|
+
sinA = -Math.sqrt(0.5 * (1.0 - cos2A)); // half angle formula. Use -root since sinA <= 0
|
|
209681
209667
|
}
|
|
209682
|
-
|
|
209683
|
-
cosA = sin2A / (2.0 * sinA); // always positive
|
|
209668
|
+
cosA = sin2A / (2.0 * sinA); // double angle formula
|
|
209684
209669
|
}
|
|
209685
209670
|
return { c: cosA, s: sinA, radians: Math.atan2(sinA, cosA) };
|
|
209686
209671
|
}
|
|
@@ -209699,18 +209684,19 @@ class Angle {
|
|
|
209699
209684
|
return value;
|
|
209700
209685
|
}
|
|
209701
209686
|
/**
|
|
209702
|
-
* Return the half angle cosine, sine, and radians for given dot products
|
|
209703
|
-
*
|
|
209704
|
-
*
|
|
209705
|
-
*
|
|
209706
|
-
* * Given ellipse x(t) = c + U cos(t) + V sin(t), find t0 such that radial vector W(t0) = x(t0) - c is
|
|
209707
|
-
* perpendicular to the ellipse.
|
|
209687
|
+
* Return the half angle cosine, sine, and radians for the given vector dot products.
|
|
209688
|
+
* * These values arise e.g. in the computation performed in `Arc3d.toScaledMatrix3d`.
|
|
209689
|
+
* * Let vectors U and V define the ellipse x(t) = c + U cos(t) + V sin(t). We seek an angle t0
|
|
209690
|
+
* such that the radial vector W(t0) := x(t0) - c is perpendicular to the ellipse.
|
|
209708
209691
|
* * Then 0 = W(t0).x'(t0) = (U cos(t0) + V sin(t0)).(V cos(t0) - U sin(t0)) = U.V cos(2t0) + 0.5 (V.V - U.U) sin(2t0)
|
|
209709
|
-
* implies sin(2t0) / cos(2t0) = 2 U.V / (U.U - V.V), i.e., t0 can be computed given the
|
|
209710
|
-
*
|
|
209692
|
+
* implies tan(2t0) = sin(2t0) / cos(2t0) = 2 U.V / (U.U - V.V), i.e., t0 can be computed given the input dot products.
|
|
209693
|
+
* Math details can be found at docs/learning/geometry/Angle.md
|
|
209711
209694
|
* @param dotUU dot product of vectorU with itself
|
|
209712
209695
|
* @param dotVV dot product of vectorV with itself
|
|
209713
209696
|
* @param dotUV dot product of vectorU with vectorV
|
|
209697
|
+
* @param favorZero whether to allow a tight tolerance for returning t0 = 0 (default true).
|
|
209698
|
+
* When dotUV is near zero, U and V are nearly perpendicular, and the returned angle is near zero.
|
|
209699
|
+
* @return the angle t0 and its cosine and sine.
|
|
209714
209700
|
*/
|
|
209715
209701
|
static dotProductsToHalfAngleTrigValues(dotUU, dotVV, dotUV, favorZero = true) {
|
|
209716
209702
|
const cos2t0 = dotUU - dotVV;
|
|
@@ -263134,8 +263120,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
263134
263120
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
263135
263121
|
/* harmony export */ "TorusPipe": () => (/* binding */ TorusPipe)
|
|
263136
263122
|
/* harmony export */ });
|
|
263137
|
-
/* harmony import */ var
|
|
263138
|
-
/* harmony import */ var
|
|
263123
|
+
/* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
|
|
263124
|
+
/* harmony import */ var _curve_Loop__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../curve/Loop */ "../../core/geometry/lib/esm/curve/Loop.js");
|
|
263139
263125
|
/* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
|
|
263140
263126
|
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
263141
263127
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
@@ -263162,23 +263148,27 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
263162
263148
|
|
|
263163
263149
|
|
|
263164
263150
|
/**
|
|
263165
|
-
* A torus pipe is a partial torus (donut).
|
|
263166
|
-
* *
|
|
263167
|
-
* * The "major hoop" arc
|
|
263168
|
-
* * vectorTheta0 = (radiusA, 0, 0)
|
|
263169
|
-
* * vectorTheta90 = (0, radiusA, 0)
|
|
263170
|
-
* *
|
|
263171
|
-
* * The minor hoop
|
|
263172
|
-
*
|
|
263151
|
+
* A torus pipe is a partial torus (donut).
|
|
263152
|
+
* * In its local coordinate system, the z-axis passes through the donut hole.
|
|
263153
|
+
* * The "major hoop" circular arc is defined for theta in the angular sweep. Its formula in local coordinates:
|
|
263154
|
+
* * `vectorTheta0 = (radiusA, 0, 0)`
|
|
263155
|
+
* * `vectorTheta90 = (0, radiusA, 0)`
|
|
263156
|
+
* * `M(theta) = vectorTheta0 * cos(theta) + vectorTheta90 * sin(theta)`
|
|
263157
|
+
* * The "minor hoop" circular arc is defined for phi in [0,2pi]. Its formula, centered at the origin:
|
|
263158
|
+
* * `vectorPhi0 = (radiusB * cos(theta), radiusB * sin(theta), 0)`
|
|
263159
|
+
* * `vectorPhi90 = (0, 0, radiusB)`
|
|
263160
|
+
* * `m(phi) = vectorPhi0 * cos(phi) + vectorPhi90 * sin(phi)`
|
|
263161
|
+
* * Thus the torus pipe in local coordinates has the formula:
|
|
263162
|
+
* * `T(theta, phi) = M(theta) + m(phi)`
|
|
263173
263163
|
* * The stored form of the torus pipe is oriented for positive volume:
|
|
263174
263164
|
* * Both radii are positive, with radiusA >= radiusB > 0
|
|
263175
263165
|
* * The sweep is positive
|
|
263176
263166
|
* * The coordinate system has positive determinant.
|
|
263177
263167
|
* * For uv parameterization,
|
|
263178
|
-
* * u is around the minor hoop, with
|
|
263179
|
-
* * v is along the major hoop with
|
|
263168
|
+
* * u is around the minor hoop, with u in [0,1] mapping to phi in [0, 2pi]
|
|
263169
|
+
* * v is along the major hoop, with v in [0,1] mapping to theta in the angular sweep
|
|
263180
263170
|
* * a constant v section is a full circle
|
|
263181
|
-
* * a constant u section is an arc with sweep
|
|
263171
|
+
* * a constant u section is an arc with the same angular sweep as the torusPipe
|
|
263182
263172
|
* @public
|
|
263183
263173
|
*/
|
|
263184
263174
|
class TorusPipe extends _SolidPrimitive__WEBPACK_IMPORTED_MODULE_0__.SolidPrimitive {
|
|
@@ -263257,14 +263247,22 @@ class TorusPipe extends _SolidPrimitive__WEBPACK_IMPORTED_MODULE_0__.SolidPrimit
|
|
|
263257
263247
|
const frame = _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_2__.Transform.createOriginAndMatrixColumns(center, vectorX, vectorY, vectorZ);
|
|
263258
263248
|
return TorusPipe.createInFrame(frame, majorRadius, minorRadius, sweep, capped);
|
|
263259
263249
|
}
|
|
263260
|
-
/**
|
|
263250
|
+
/**
|
|
263251
|
+
* Create a TorusPipe from major arc and minor radius.
|
|
263252
|
+
* For best results, `arc` should be circular; otherwise, circularity is coerced.
|
|
263253
|
+
*/
|
|
263261
263254
|
static createAlongArc(arc, minorRadius, capped) {
|
|
263262
263255
|
if (!_geometry3d_Angle__WEBPACK_IMPORTED_MODULE_3__.Angle.isAlmostEqualRadiansAllowPeriodShift(0.0, arc.sweep.startRadians))
|
|
263263
263256
|
arc = arc.cloneInRotatedBasis(arc.sweep.startAngle);
|
|
263264
|
-
|
|
263257
|
+
if (!arc.isCircular) { // ensure circularity by squaring the axes and equating their lengths
|
|
263258
|
+
const perpVector90 = arc.perpendicularVector.sizedCrossProduct(arc.vector0, arc.matrixRef.columnXMagnitude());
|
|
263259
|
+
if (!perpVector90)
|
|
263260
|
+
return undefined;
|
|
263261
|
+
arc = _curve_Arc3d__WEBPACK_IMPORTED_MODULE_4__.Arc3d.create(arc.center, arc.vector0, perpVector90, arc.sweep);
|
|
263262
|
+
}
|
|
263265
263263
|
const data = arc.toScaledMatrix3d();
|
|
263266
|
-
const
|
|
263267
|
-
return TorusPipe.createInFrame(
|
|
263264
|
+
const rigidFrame = _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_2__.Transform.createOriginAndMatrix(arc.center, data.axes);
|
|
263265
|
+
return TorusPipe.createInFrame(rigidFrame, data.r0, minorRadius, _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_3__.Angle.createRadians(arc.sweep.sweepRadians), capped);
|
|
263268
263266
|
}
|
|
263269
263267
|
/** Return a coordinate frame (right handed, unit axes)
|
|
263270
263268
|
* * origin at center of major circle
|
|
@@ -263351,7 +263349,7 @@ class TorusPipe extends _SolidPrimitive__WEBPACK_IMPORTED_MODULE_0__.SolidPrimit
|
|
|
263351
263349
|
const center = this._localToWorld.multiplyXYZ(majorRadius * c0, majorRadius * s0, 0);
|
|
263352
263350
|
const vector0 = this._localToWorld.multiplyVectorXYZ(minorRadius * c0, minorRadius * s0, 0);
|
|
263353
263351
|
const vector90 = this._localToWorld.multiplyVectorXYZ(0, 0, minorRadius);
|
|
263354
|
-
return
|
|
263352
|
+
return _curve_Loop__WEBPACK_IMPORTED_MODULE_5__.Loop.create(_curve_Arc3d__WEBPACK_IMPORTED_MODULE_4__.Arc3d.create(center, vector0, vector90));
|
|
263355
263353
|
}
|
|
263356
263354
|
/** Return an arc at constant u, and arc sweep matching this TorusPipe sweep. */
|
|
263357
263355
|
constantUSection(uFraction) {
|
|
@@ -263365,7 +263363,7 @@ class TorusPipe extends _SolidPrimitive__WEBPACK_IMPORTED_MODULE_0__.SolidPrimit
|
|
|
263365
263363
|
const rxy = majorRadius + minorRadius * Math.cos(phiRadians);
|
|
263366
263364
|
const vector0 = axes.multiplyXYZ(rxy, 0, 0);
|
|
263367
263365
|
const vector90 = axes.multiplyXYZ(0, rxy, 0);
|
|
263368
|
-
return _curve_Path__WEBPACK_IMPORTED_MODULE_6__.Path.create(
|
|
263366
|
+
return _curve_Path__WEBPACK_IMPORTED_MODULE_6__.Path.create(_curve_Arc3d__WEBPACK_IMPORTED_MODULE_4__.Arc3d.create(center, vector0, vector90, _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_7__.AngleSweep.createStartEndRadians(0.0, theta1Radians)));
|
|
263369
263367
|
}
|
|
263370
263368
|
/** extend `rangeToExtend` to include this `TorusPipe` */
|
|
263371
263369
|
extendRange(rangeToExtend, transform) {
|
|
@@ -288643,6 +288641,10 @@ class Parser {
|
|
|
288643
288641
|
}
|
|
288644
288642
|
// common case where single value and single label are supplied
|
|
288645
288643
|
if (tokens.length === 2) {
|
|
288644
|
+
// unit specification comes before value (like currency)
|
|
288645
|
+
if (tokens[1].isNumber && tokens[0].isString) {
|
|
288646
|
+
tokens = [tokens[1], tokens[0]];
|
|
288647
|
+
}
|
|
288646
288648
|
if (tokens[0].isNumber && tokens[1].isString) {
|
|
288647
288649
|
const unit = await this.lookupUnitByLabel(tokens[1].value, format, unitsProvider, altUnitLabelsProvider);
|
|
288648
288650
|
if (undefined === defaultUnit)
|
|
@@ -288656,21 +288658,6 @@ class Parser {
|
|
|
288656
288658
|
return new _Quantity__WEBPACK_IMPORTED_MODULE_2__.Quantity(defaultUnit, mag);
|
|
288657
288659
|
}
|
|
288658
288660
|
}
|
|
288659
|
-
else { // unit specification comes before value (like currency)
|
|
288660
|
-
if (tokens[1].isNumber && tokens[0].isString) {
|
|
288661
|
-
const unit = await this.lookupUnitByLabel(tokens[0].value, format, unitsProvider, altUnitLabelsProvider);
|
|
288662
|
-
if (undefined === defaultUnit)
|
|
288663
|
-
defaultUnit = unit;
|
|
288664
|
-
if (defaultUnit && defaultUnit.name === unit.name) {
|
|
288665
|
-
return new _Quantity__WEBPACK_IMPORTED_MODULE_2__.Quantity(defaultUnit, tokens[1].value);
|
|
288666
|
-
}
|
|
288667
|
-
else if (defaultUnit) {
|
|
288668
|
-
const conversion = await unitsProvider.getConversion(unit, defaultUnit);
|
|
288669
|
-
const mag = ((tokens[1].value * conversion.factor)) + conversion.offset;
|
|
288670
|
-
return new _Quantity__WEBPACK_IMPORTED_MODULE_2__.Quantity(defaultUnit, mag);
|
|
288671
|
-
}
|
|
288672
|
-
}
|
|
288673
|
-
}
|
|
288674
288661
|
}
|
|
288675
288662
|
// common case where there are multiple value/label pairs
|
|
288676
288663
|
if (tokens.length % 2 === 0) {
|
|
@@ -288782,8 +288769,16 @@ class Parser {
|
|
|
288782
288769
|
}
|
|
288783
288770
|
// common case where single value and single label are supplied
|
|
288784
288771
|
if (tokens.length === 2) {
|
|
288772
|
+
// unit specification comes before value (like currency)
|
|
288773
|
+
if (tokens[1].isNumber && tokens[0].isString) {
|
|
288774
|
+
tokens = [tokens[1], tokens[0]];
|
|
288775
|
+
}
|
|
288785
288776
|
if (tokens[0].isNumber && tokens[1].isString) {
|
|
288786
|
-
|
|
288777
|
+
let conversion = Parser.tryFindUnitConversion(tokens[1].value, unitsConversions, defaultUnit);
|
|
288778
|
+
// if no conversion, ignore value in second token. If we have defaultUnit, use it.
|
|
288779
|
+
if (!conversion && defaultUnit) {
|
|
288780
|
+
conversion = Parser.tryFindUnitConversion(defaultUnit.label, unitsConversions, defaultUnit);
|
|
288781
|
+
}
|
|
288787
288782
|
if (conversion) {
|
|
288788
288783
|
const value = tokens[0].value * conversion.factor + conversion.offset;
|
|
288789
288784
|
return { ok: true, value };
|
|
@@ -288791,17 +288786,6 @@ class Parser {
|
|
|
288791
288786
|
// if no conversion, just return parsed number and ignore value in second token
|
|
288792
288787
|
return { ok: true, value: tokens[0].value };
|
|
288793
288788
|
}
|
|
288794
|
-
else { // unit specification comes before value (like currency)
|
|
288795
|
-
if (tokens[1].isNumber && tokens[0].isString) {
|
|
288796
|
-
const conversion = Parser.tryFindUnitConversion(tokens[0].value, unitsConversions, defaultUnit);
|
|
288797
|
-
if (conversion) {
|
|
288798
|
-
const value = tokens[1].value * conversion.factor + conversion.offset;
|
|
288799
|
-
return { ok: true, value };
|
|
288800
|
-
}
|
|
288801
|
-
// if no conversion, just return parsed number and ignore value in second token
|
|
288802
|
-
return { ok: true, value: tokens[1].value };
|
|
288803
|
-
}
|
|
288804
|
-
}
|
|
288805
288789
|
}
|
|
288806
288790
|
// common case where there are multiple value/label pairs
|
|
288807
288791
|
if (tokens.length % 2 === 0) {
|
|
@@ -290229,7 +290213,7 @@ class TestContext {
|
|
|
290229
290213
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
290230
290214
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
290231
290215
|
await core_frontend_1.NoRenderApp.startup({
|
|
290232
|
-
applicationVersion: "4.7.0-dev.
|
|
290216
|
+
applicationVersion: "4.7.0-dev.13",
|
|
290233
290217
|
applicationId: this.settings.gprid,
|
|
290234
290218
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
290235
290219
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -314224,7 +314208,7 @@ function __disposeResources(env) {
|
|
|
314224
314208
|
/***/ ((module) => {
|
|
314225
314209
|
|
|
314226
314210
|
"use strict";
|
|
314227
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.7.0-dev.
|
|
314211
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.7.0-dev.13","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","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","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -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 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.7.0-dev.13","@itwin/core-bentley":"workspace:^4.7.0-dev.13","@itwin/core-common":"workspace:^4.7.0-dev.13","@itwin/core-geometry":"workspace:^4.7.0-dev.13","@itwin/core-orbitgt":"workspace:^4.7.0-dev.13","@itwin/core-quantity":"workspace:^4.7.0-dev.13"},"//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.2","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^10.0.6","@types/sinon":"^17.0.2","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.3.10","chai-as-promised":"^7.1.1","cpx2":"^3.0.0","eslint":"^8.56.0","glob":"^10.3.12","mocha":"^10.2.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^17.0.1","source-map-loader":"^4.0.0","typescript":"~5.3.3","typemoq":"^2.1.0","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/cloud-agnostic-core":"^2.1.0","@itwin/object-storage-core":"^2.2.2","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","meshoptimizer":"~0.20.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
314228
314212
|
|
|
314229
314213
|
/***/ }),
|
|
314230
314214
|
|