@itwin/rpcinterface-full-stack-tests 5.11.0-dev.5 → 5.11.0-dev.7

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.
@@ -196795,11 +196795,11 @@ class QuantityTypeFormatsProvider {
196795
196795
  ["CivilUnits.LENGTH", QuantityType.LengthEngineering],
196796
196796
  ["AecUnits.LENGTH", QuantityType.LengthEngineering]
196797
196797
  ]);
196798
- async getFormat(name, _system) {
196798
+ async getFormat(name, system) {
196799
196799
  const quantityType = this._kindOfQuantityMap.get(name);
196800
196800
  if (!quantityType)
196801
196801
  return undefined;
196802
- return _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.quantityFormatter.getFormatPropsByQuantityType(quantityType);
196802
+ return _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.quantityFormatter.getFormatPropsByQuantityType(quantityType, system);
196803
196803
  }
196804
196804
  }
196805
196805
  /**
@@ -197612,15 +197612,18 @@ class QuantityFormatter {
197612
197612
  /**
197613
197613
  * @beta
197614
197614
  * Returns a map of [[FormattingSpecEntry]] keyed by persistence unit for a given name, typically a KindOfQuantity full name.
197615
+ * @param name - The KoQ name to look up.
197616
+ * @param options - Optional lookup options. When `options.system` is omitted, the active unit system is used.
197615
197617
  */
197616
- getSpecsByName(name) {
197618
+ getSpecsByName(name, options) {
197619
+ const effectiveSystem = options?.system ?? this._activeUnitSystem;
197617
197620
  const unitMap = this._formatSpecsRegistry.get(name);
197618
197621
  if (!unitMap)
197619
197622
  return undefined;
197620
- // Return active-system projection
197623
+ // Return projection for the effective system
197621
197624
  const result = new Map();
197622
197625
  for (const [persistenceUnit, systemMap] of unitMap) {
197623
- const entry = systemMap.get(this._activeUnitSystem);
197626
+ const entry = systemMap.get(effectiveSystem);
197624
197627
  if (entry)
197625
197628
  result.set(persistenceUnit, entry);
197626
197629
  }
@@ -245808,9 +245811,9 @@ class CurveFactory {
245808
245811
  * * If there are 2 connected arcs, add a zero-length line segment between them.
245809
245812
  * * If there is a pair of arc and line segment/string with non-parallel tangents, add a zero-length line segment
245810
245813
  * between them.
245811
- * * If there is an arc with sweep degrees in [180, 360), break the arc into 2 pieces separated by a zero-length
245812
- * line segment. Similarly, break a 360-degree arc into 3 pieces separated by 2 zero-length line segments. Return
245813
- * `undefined` if there is an arc with sweep greater than 360 degrees.
245814
+ * * If there is an arc with sweep degrees in (120, 240], break the arc into 2 pieces separated by a zero-length
245815
+ * line segment. Similarly, break arcs with sweep in (240, 360] into 3 pieces separated by 2 zero-length line segments.
245816
+ * Return `undefined` if there is an arc with sweep greater than 360 degrees.
245814
245817
  */
245815
245818
  static updatePathForRelaxedValidation(filletedLineString, isClosed, parallelOptions) {
245816
245819
  const newFilletedLineString = new _Path__WEBPACK_IMPORTED_MODULE_7__.Path();
@@ -245839,10 +245842,11 @@ class CurveFactory {
245839
245842
  const linePoint = child.startPoint();
245840
245843
  newFilletedLineString.tryAddChild(_LineSegment3d__WEBPACK_IMPORTED_MODULE_2__.LineSegment3d.create(linePoint, linePoint));
245841
245844
  }
245842
- if (arcSweep !== undefined && arcSweep > 180 - sweepTol && arcSweep <= 360 - sweepTol) {
245845
+ // to avoid PI too far from the arc, split arcs so that no sub-arc has sweep greater than 120 degrees
245846
+ if (arcSweep !== undefined && arcSweep > 120 && arcSweep <= 240) {
245843
245847
  CurveFactory.splitAndAppendArc(newFilletedLineString, child, [0, 0.5, 1]); // 2 pieces
245844
245848
  }
245845
- else if (arcSweep !== undefined && arcSweep > 360 - sweepTol && arcSweep <= 360 + sweepTol) {
245849
+ else if (arcSweep !== undefined && arcSweep > 240 && arcSweep <= 360 + sweepTol) {
245846
245850
  CurveFactory.splitAndAppendArc(newFilletedLineString, child, [0, 1 / 3, 2 / 3, 1]); // 3 pieces
245847
245851
  }
245848
245852
  else {
@@ -245932,12 +245936,11 @@ class CurveFactory {
245932
245936
  * tangent direction.
245933
245937
  * * To treat more input chains as valid, pass `options.relaxedValidation = true`. Internally, this setting performs
245934
245938
  * several transformations on the input to produce a valid filleted linestring:
245935
- * * Each `Arc3d` whose sweep is between 180 and 360 degrees is split into 2 arcs of equal sweep separated by a
245936
- * zero-length `LineSegment3d`. A 360-degree arc is split into 3 arcs of equal sweep separated by 2 zero-length
245937
- * `LineSegment3d`s. Arcs with sweep greater than 360 degrees are not allowed.
245939
+ * * `Arc3d`s with large sweep are uniformly split into 2 or 3 smaller arcs to improve the proximity of their _PI_
245940
+ * points (cf. {@link Arc3d.computeTangentIntersection}). Arcs with sweep greater than 360 degrees are not allowed.
245938
245941
  * * Adjacent `Arc3d`s are separated by a zero-length `LineSegment3d`.
245939
- * * An `Arc3d` that is not G1 continuous with its neighbor is separated from its neighbor by a zero-length
245940
- * `LineSegment3d`.
245942
+ * * An `Arc3d` that is not G1 continuous with its linear neighbor is separated from it by a zero-length
245943
+ * `LineSegment3d` to preserve the corner.
245941
245944
  * @param filletedLineString A linestring with corner fillets, e.g., as created by {@link CurveFactory.createFilletsInLineString}.
245942
245945
  * @param options optional validation settings.
245943
245946
  * @returns Array of [point, radius] pairs extracted from input, or `undefined` if the input is not valid. A radius
@@ -257670,14 +257673,14 @@ class CurveCurveIntersectXY extends _geometry3d_GeometryHandler__WEBPACK_IMPORTE
257670
257673
  const cosines = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_9__.GrowableFloat64Array(2);
257671
257674
  const sines = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_9__.GrowableFloat64Array(2);
257672
257675
  const radians = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_9__.GrowableFloat64Array(2);
257673
- // Arc: X = C + cU + sV
257676
+ // Arc: X(theta) = C + cos(theta)·U + sin(theta)·V
257674
257677
  // Line: contains points A0,A1
257675
- // Arc point colinear with line if det (A0, A1, X) = 0
257676
- // with homogeneous xyw points and vectors.
257677
- // With equational X: det (A0, A1, C) + c det (A0, A1,U) + s det (A0, A1, V) = 0.
257678
- // solve for theta.
257679
- // evaluate points.
257680
- // project back to line.
257678
+ // Arc point X is colinear (intersects) with line if det(A0, A1, X) = 0 with homogeneous xyw points and vectors
257679
+ // This leads to
257680
+ // det(A0, A1, C) + cos(theta) det(A0, A1, U) + sin(theta) det(A0, A1, V) = 0
257681
+ // or
257682
+ // alpha + beta cos(theta) + gamma sin(theta) = 0
257683
+ // solve for theta; evaluate points; project back to line
257681
257684
  if (this._worldToLocalPerspective) {
257682
257685
  const data = arc.toTransformedPoint4d(this._worldToLocalPerspective);
257683
257686
  const radians0 = data.sweep.fractionToRadians(0);
@@ -257689,7 +257692,7 @@ class CurveCurveIntersectXY extends _geometry3d_GeometryHandler__WEBPACK_IMPORTE
257689
257692
  const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductPoint4dXYW(pointA0H, pointA1H, data.center);
257690
257693
  const beta = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductPoint4dXYW(pointA0H, pointA1H, data.vector0);
257691
257694
  const gamma = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductPoint4dXYW(pointA0H, pointA1H, data.vector90);
257692
- let numRoots = _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_10__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, cosines, sines, radians);
257695
+ let numRoots = _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_10__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, cosines, sines, radians, tol2);
257693
257696
  const closeApproach = (0 === numRoots);
257694
257697
  if (closeApproach)
257695
257698
  numRoots = 1; // we returned the arc's closest approach as the first "root"; if within tolerance and at endpoints, we record it
@@ -257730,7 +257733,7 @@ class CurveCurveIntersectXY extends _geometry3d_GeometryHandler__WEBPACK_IMPORTE
257730
257733
  const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductXYW(pointA0Local, 1, pointA1Local, 1, data.center, 1);
257731
257734
  const beta = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductXYW(pointA0Local, 1, pointA1Local, 1, data.vector0, 0);
257732
257735
  const gamma = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.tripleProductXYW(pointA0Local, 1, pointA1Local, 1, data.vector90, 0);
257733
- let numRoots = _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_10__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, cosines, sines, radians);
257736
+ let numRoots = _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_10__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, cosines, sines, radians, tol2);
257734
257737
  const closeApproach = (0 === numRoots);
257735
257738
  if (closeApproach)
257736
257739
  numRoots = 1; // we returned the arc's closest approach as the first "root"; if within tolerance and at endpoints, we record it
@@ -289863,12 +289866,12 @@ class Matrix4d {
289863
289866
  result._coffs[i] = this._coffs[i];
289864
289867
  return result;
289865
289868
  }
289866
- /** zero this matrix4d in place. */
289869
+ /** Zero this matrix4d in place. */
289867
289870
  setZero() {
289868
289871
  for (let i = 0; i < 16; i++)
289869
289872
  this._coffs[i] = 0;
289870
289873
  }
289871
- /** set to identity. */
289874
+ /** Set to identity. */
289872
289875
  setIdentity() {
289873
289876
  for (let i = 0; i < 16; i++)
289874
289877
  this._coffs[i] = 0;
@@ -289880,14 +289883,14 @@ class Matrix4d {
289880
289883
  && Math.abs(c) <= tol
289881
289884
  && Math.abs(d) <= tol;
289882
289885
  }
289883
- /** set to identity. */
289886
+ /** Check if this matrix is identity. */
289884
289887
  isIdentity(tol = 1.0e-10) {
289885
289888
  return Matrix4d.is1000(this._coffs[0], this._coffs[1], this._coffs[2], this._coffs[3], tol)
289886
289889
  && Matrix4d.is1000(this._coffs[5], this._coffs[6], this._coffs[7], this._coffs[4], tol)
289887
289890
  && Matrix4d.is1000(this._coffs[10], this._coffs[11], this._coffs[8], this._coffs[9], tol)
289888
289891
  && Matrix4d.is1000(this._coffs[15], this._coffs[12], this._coffs[13], this._coffs[14], tol);
289889
289892
  }
289890
- /** create a Matrix4d filled with zeros. */
289893
+ /** Create a Matrix4d filled with zeros. */
289891
289894
  static createZero(result) {
289892
289895
  if (result) {
289893
289896
  result.setZero();
@@ -289895,7 +289898,7 @@ class Matrix4d {
289895
289898
  }
289896
289899
  return new Matrix4d(); // this is zero.
289897
289900
  }
289898
- /** create a Matrix4d with values supplied "across the rows" */
289901
+ /** Create a Matrix4d with values supplied "across the rows" */
289899
289902
  static createRowValues(cxx, cxy, cxz, cxw, cyx, cyy, cyz, cyw, czx, czy, czz, czw, cwx, cwy, cwz, cww, result) {
289900
289903
  result = result ? result : new Matrix4d();
289901
289904
  result._coffs[0] = cxx;
@@ -289920,10 +289923,10 @@ class Matrix4d {
289920
289923
  static createRows(rowX, rowY, rowZ, rowW, result) {
289921
289924
  return this.createRowValues(rowX.x, rowX.y, rowX.z, rowX.w, rowY.x, rowY.y, rowY.z, rowY.w, rowZ.x, rowZ.y, rowZ.z, rowZ.w, rowW.x, rowW.y, rowW.z, rowW.w, result);
289922
289925
  }
289923
- /** directly set columns from typical 3d data:
289924
- *
289926
+ /**
289927
+ * Directly set columns from typical 3d data:
289925
289928
  * * vectorX, vectorY, vectorZ as columns 0,1,2, with weight0.
289926
- * * origin as column3, with weight 1
289929
+ * * origin as column3, with weight 1.
289927
289930
  */
289928
289931
  setOriginAndVectors(origin, vectorX, vectorY, vectorZ) {
289929
289932
  this._coffs[0] = vectorX.x;
@@ -289943,13 +289946,13 @@ class Matrix4d {
289943
289946
  this._coffs[14] = 0.0;
289944
289947
  this._coffs[15] = 1.0;
289945
289948
  }
289946
- /** promote a transform to full Matrix4d (with 0001 in final row) */
289949
+ /** Promote a transform to full Matrix4d (with 0001 in final row) */
289947
289950
  static createTransform(source, result) {
289948
289951
  const matrix = source.matrix;
289949
289952
  const point = source.origin;
289950
289953
  return Matrix4d.createRowValues(matrix.coffs[0], matrix.coffs[1], matrix.coffs[2], point.x, matrix.coffs[3], matrix.coffs[4], matrix.coffs[5], point.y, matrix.coffs[6], matrix.coffs[7], matrix.coffs[8], point.z, 0, 0, 0, 1, result);
289951
289954
  }
289952
- /** return an identity matrix. */
289955
+ /** Return an identity matrix. */
289953
289956
  static createIdentity(result) {
289954
289957
  result = Matrix4d.createZero(result);
289955
289958
  result._coffs[0] = 1.0;
@@ -289958,7 +289961,7 @@ class Matrix4d {
289958
289961
  result._coffs[15] = 1.0;
289959
289962
  return result;
289960
289963
  }
289961
- /** return matrix with translation directly inserted (along with 1 on diagonal) */
289964
+ /** Return matrix with translation directly inserted (along with 1 on diagonal) */
289962
289965
  static createTranslationXYZ(x, y, z, result) {
289963
289966
  result = Matrix4d.createZero(result);
289964
289967
  result._coffs[0] = 1.0;
@@ -289970,7 +289973,7 @@ class Matrix4d {
289970
289973
  result._coffs[11] = z;
289971
289974
  return result;
289972
289975
  }
289973
- /** return this matrix plus scale times matrixB. */
289976
+ /** Return this matrix plus scale times matrixB. */
289974
289977
  plusScaled(matrixB, scale, result) {
289975
289978
  // If result is undefined, a real clone is created.
289976
289979
  // If result is "this" we get the pointer to this right back.
@@ -289989,7 +289992,7 @@ class Matrix4d {
289989
289992
  * @param scaleX x diagonal entry
289990
289993
  * @param scaleY y diagonal entry
289991
289994
  * @param scaleZ z diagonal entry
289992
- * @param result optional result.
289995
+ * @param result optional result
289993
289996
  */
289994
289997
  static createTranslationAndScaleXYZ(tx, ty, tz, scaleX, scaleY, scaleZ, result) {
289995
289998
  return Matrix4d.createRowValues(scaleX, 0, 0, tx, 0, scaleY, 0, ty, 0, 0, scaleZ, tz, 0, 0, 0, 1, result);
@@ -354892,7 +354895,7 @@ class TestContext {
354892
354895
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
354893
354896
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
354894
354897
  await core_frontend_1.NoRenderApp.startup({
354895
- applicationVersion: "5.11.0-dev.5",
354898
+ applicationVersion: "5.11.0-dev.7",
354896
354899
  applicationId: this.settings.gprid,
354897
354900
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
354898
354901
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -382635,7 +382638,7 @@ var loadLanguages = instance.loadLanguages;
382635
382638
  /***/ ((module) => {
382636
382639
 
382637
382640
  "use strict";
382638
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.5","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
382641
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.7","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
382639
382642
 
382640
382643
  /***/ }),
382641
382644