@itwin/rpcinterface-full-stack-tests 4.0.0-dev.94 → 4.0.0-dev.95

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":"_a8a9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\6\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.3\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"_a8a9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.3\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
@@ -41819,6 +41819,23 @@ class FeatureTable extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Inde
41819
41819
  getArray() { return this._array; }
41820
41820
  }
41821
41821
  const scratchPackedFeature = PackedFeature.create();
41822
+ function populateAnimationNodeIds(table, computeNodeId, maxNodeId) {
41823
+ (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(maxNodeId > 0);
41824
+ let nodeIds;
41825
+ const outputFeature = PackedFeature.createWithIndex();
41826
+ for (const feature of table.iterable(outputFeature)) {
41827
+ const nodeId = computeNodeId(feature);
41828
+ (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(nodeId <= maxNodeId);
41829
+ if (0 !== nodeId) {
41830
+ if (!nodeIds) {
41831
+ const size = table.numFeatures;
41832
+ nodeIds = maxNodeId < 0x100 ? new Uint8Array(size) : (maxNodeId < 0x10000 ? new Uint16Array(size) : new Uint32Array(size));
41833
+ }
41834
+ nodeIds[feature.index] = nodeId;
41835
+ }
41836
+ }
41837
+ return nodeIds;
41838
+ }
41822
41839
  /**
41823
41840
  * An immutable, packed representation of a [[FeatureTable]]. The features are packed into a single array of 32-bit integer values,
41824
41841
  * wherein each feature occupies 3 32-bit integers.
@@ -41827,6 +41844,11 @@ const scratchPackedFeature = PackedFeature.create();
41827
41844
  class PackedFeatureTable {
41828
41845
  get byteLength() { return this._data.byteLength; }
41829
41846
  get animationNodeIds() { return this._animationNodeIds; }
41847
+ /** @internal for use by MultiModelPackedFeatureTable */
41848
+ setAnimationNodeIds(nodeIds) {
41849
+ (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._animationNodeIds);
41850
+ this._animationNodeIds = nodeIds;
41851
+ }
41830
41852
  /** Construct a PackedFeatureTable from the packed binary data.
41831
41853
  * This is used internally when deserializing Tiles in iMdl format.
41832
41854
  * @internal
@@ -41960,22 +41982,7 @@ class PackedFeatureTable {
41960
41982
  }
41961
41983
  populateAnimationNodeIds(computeNodeId, maxNodeId) {
41962
41984
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._animationNodeIds);
41963
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(maxNodeId > 0);
41964
- const pair = { lower: 0, upper: 0 };
41965
- let haveNodes = false;
41966
- const size = this.numFeatures;
41967
- const nodeIds = maxNodeId < 0x100 ? new Uint8Array(size) : (maxNodeId < 0x10000 ? new Uint16Array(size) : new Uint32Array(size));
41968
- for (let i = 0; i < this.numFeatures; i++) {
41969
- this.getElementIdPair(i, pair);
41970
- const nodeId = computeNodeId(pair, i);
41971
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(nodeId <= maxNodeId);
41972
- if (0 !== nodeId) {
41973
- nodeIds[i] = nodeId;
41974
- haveNodes = true;
41975
- }
41976
- }
41977
- if (haveNodes)
41978
- this._animationNodeIds = nodeIds;
41985
+ this._animationNodeIds = populateAnimationNodeIds(this, computeNodeId, maxNodeId);
41979
41986
  }
41980
41987
  *iterator(output) {
41981
41988
  for (let i = 0; i < this.numFeatures; i++) {
@@ -42080,6 +42087,7 @@ class MultiModelPackedFeatureTable {
42080
42087
  get batchModelIdPair() { return this._features.batchModelIdPair; }
42081
42088
  get numFeatures() { return this._features.numFeatures; }
42082
42089
  get type() { return this._features.type; }
42090
+ get animationNodeIds() { return this._features.animationNodeIds; }
42083
42091
  get byteLength() {
42084
42092
  return this._features.byteLength + this._models.byteLength;
42085
42093
  }
@@ -42120,6 +42128,12 @@ class MultiModelPackedFeatureTable {
42120
42128
  [Symbol.iterator]: () => this.iterator(output),
42121
42129
  };
42122
42130
  }
42131
+ getAnimationNodeId(featureIndex) {
42132
+ return this._features.getAnimationNodeId(featureIndex);
42133
+ }
42134
+ populateAnimationNodeIds(computeNodeId, maxNodeId) {
42135
+ this._features.setAnimationNodeIds(populateAnimationNodeIds(this, computeNodeId, maxNodeId));
42136
+ }
42123
42137
  }
42124
42138
 
42125
42139
 
@@ -48201,6 +48215,12 @@ var RenderSchedule;
48201
48215
  }
48202
48216
  return this._discreteBatchIds;
48203
48217
  }
48218
+ /** @internal see ImdlReader.readAnimationBranches */
48219
+ getBatchIdForFeature(feature) {
48220
+ (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(feature.modelId) === this.modelId);
48221
+ const elementTimeline = this.getTimelineForElement(feature.elementId.lower, feature.elementId.upper);
48222
+ return elementTimeline?.batchId ?? 0;
48223
+ }
48204
48224
  }
48205
48225
  RenderSchedule.ModelTimeline = ModelTimeline;
48206
48226
  /** Specifies how to animate the contents of a [ViewState]($frontend) over time. The script contains any number of [[RenderSchedule.ModelTimeline]]s, each describing how
@@ -48301,6 +48321,36 @@ var RenderSchedule;
48301
48321
  // Only if the script contains animation (cutting plane, transform or visibility by node ID) do we require separate tilesets for animations.
48302
48322
  return this.requiresBatching && this.modelTimelines.some((x) => x.modelId === modelId && x.requiresBatching);
48303
48323
  }
48324
+ /** The batch Ids of the subset of [[elementTimelines]] that apply a transform and/or cutting plane.
48325
+ * @alpha
48326
+ */
48327
+ get discreteBatchIds() {
48328
+ if (this._discreteBatchIds)
48329
+ return this._discreteBatchIds;
48330
+ this._discreteBatchIds = new Set();
48331
+ for (const timeline of this.modelTimelines)
48332
+ for (const batchId of timeline.discreteBatchIds)
48333
+ this._discreteBatchIds.add(batchId);
48334
+ return this._discreteBatchIds;
48335
+ }
48336
+ /** @internal see ImdlReader.readAnimationBranches. */
48337
+ getBatchIdForFeature(feature) {
48338
+ let timeline;
48339
+ const prev = this._lastFeatureModelTimeline;
48340
+ if (prev && prev.idLower === feature.modelId.lower && prev.idUpper === feature.modelId.upper) {
48341
+ timeline = prev.timeline;
48342
+ }
48343
+ else {
48344
+ const modelId = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(feature.modelId);
48345
+ timeline = this.find(modelId);
48346
+ this._lastFeatureModelTimeline = { timeline, idLower: feature.modelId.lower, idUpper: feature.modelId.upper };
48347
+ }
48348
+ return timeline?.getBatchIdForFeature(feature) ?? 0;
48349
+ }
48350
+ /** @alpha */
48351
+ get maxBatchId() {
48352
+ return this._maxBatchId ?? (this._maxBatchId = this.modelTimelines.reduce((accum, timeline) => Math.max(accum, timeline.maxBatchId), 0));
48353
+ }
48304
48354
  }
48305
48355
  RenderSchedule.Script = Script;
48306
48356
  /** A reference to a [[RenderSchedule.Script]], optionally identifying the source of the script.
@@ -111135,7 +111185,6 @@ class VertexTableSplitter {
111135
111185
  const vertSize = this._input.vertices.numRgbaPerVertex;
111136
111186
  const vertex = new Uint32Array(vertSize);
111137
111187
  const vertexTable = new Uint32Array(this._input.vertices.data.buffer, this._input.vertices.data.byteOffset, this._input.vertices.numVertices * vertSize);
111138
- const elemIdPair = { lower: 0, upper: 0 };
111139
111188
  for (const index of this._input.indices) {
111140
111189
  // Extract the data for this vertex without allocating new typed arrays.
111141
111190
  const vertexOffset = index * vertSize;
@@ -111145,8 +111194,7 @@ class VertexTableSplitter {
111145
111194
  const featureIndex = vertex[2] & 0x00ffffff;
111146
111195
  if (curState.featureIndex !== featureIndex) {
111147
111196
  curState.featureIndex = featureIndex;
111148
- this._input.featureTable.getElementIdPair(featureIndex, elemIdPair);
111149
- const nodeId = this._computeNodeId(elemIdPair, featureIndex);
111197
+ const nodeId = this._computeNodeId(featureIndex);
111150
111198
  let node = this._nodes.get(nodeId);
111151
111199
  if (undefined === node)
111152
111200
  this._nodes.set(nodeId, node = new Node(this._input.vertices, this._input.atlasOffset));
@@ -145494,9 +145542,7 @@ class ImdlReader {
145494
145542
  this._patternGeometry.set(patternName, geometry);
145495
145543
  return geometry;
145496
145544
  }
145497
- readAnimationBranches(output, mesh, featureTable) {
145498
- const timeline = this._timeline;
145499
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== timeline);
145545
+ readAnimationBranches(output, mesh, featureTable, timeline) {
145500
145546
  const primitives = mesh.primitives;
145501
145547
  if (!primitives)
145502
145548
  return;
@@ -145510,12 +145556,9 @@ class ImdlReader {
145510
145556
  }
145511
145557
  return branch;
145512
145558
  };
145513
- featureTable.populateAnimationNodeIds((elemIdPair) => {
145514
- const elementTimeline = timeline.getTimelineForElement(elemIdPair.lower, elemIdPair.upper);
145515
- return elementTimeline?.batchId ?? 0;
145516
- }, timeline.maxBatchId);
145559
+ featureTable.populateAnimationNodeIds((feature) => timeline.getBatchIdForFeature(feature), timeline.maxBatchId);
145517
145560
  const discreteNodeIds = timeline.discreteBatchIds;
145518
- const computeNodeId = (_id, featureIndex) => {
145561
+ const computeNodeId = (featureIndex) => {
145519
145562
  const nodeId = featureTable.getAnimationNodeId(featureIndex);
145520
145563
  return 0 !== nodeId && discreteNodeIds.has(nodeId) ? nodeId : 0;
145521
145564
  };
@@ -145617,8 +145660,7 @@ class ImdlReader {
145617
145660
  if ("Node_Root" === nodeKey) {
145618
145661
  if (this._timeline) {
145619
145662
  // Split up the root node into transform nodes.
145620
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(featureTable instanceof _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PackedFeatureTable, "multi-model feature tables never include animation branches");
145621
- this.readAnimationBranches(graphics, meshValue, featureTable);
145663
+ this.readAnimationBranches(graphics, meshValue, featureTable, this._timeline);
145622
145664
  }
145623
145665
  else if (this._containsTransformNodes) {
145624
145666
  // If transform nodes exist in the tile tree, then we need to create a branch for Node_Root so that elements not associated with
@@ -204761,6 +204803,7 @@ class BarycentricTriangle {
204761
204803
  * * `d.isValid` returns true if and only if `this.normal()` is defined.
204762
204804
  * * `d.classify` can be used to determine where P lies with respect to the triangle.
204763
204805
  * * `d.a` is the signed projection distance: `P = p + a * this.normal()`.
204806
+ * * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/BarycentricTriangle
204764
204807
  * @see [[fractionToPoint]]
204765
204808
  */
204766
204809
  pointToFraction(point, result) {
@@ -204997,6 +205040,7 @@ class BarycentricTriangle {
204997
205040
  * * The ray intersects the triangle if and only if `d.isValid` returns true, `d.a` >= 0, and `d.isInsideOrOn`
204998
205041
  * returns true.
204999
205042
  * * `d.classify` can be used to determine where the intersection lies with respect to the triangle.
205043
+ * * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/RayTriangleIntersection
205000
205044
  * @see [[pointToFraction]]
205001
205045
  */
205002
205046
  intersectRay3d(ray, result) {
@@ -221222,7 +221266,13 @@ class Ray3d {
221222
221266
  isAlmostEqual(other) {
221223
221267
  return this.origin.isAlmostEqual(other.origin) && this.direction.isAlmostEqual(other.direction);
221224
221268
  }
221225
- /** Return the dot product of the ray's direction vector with a vector from the ray origin to the `spacePoint`. */
221269
+ /**
221270
+ * Return the dot product of the ray's direction vector with a vector from the ray origin
221271
+ * to the `spacePoint`.
221272
+ * * If the instance is the unit normal of a plane, then this method returns the (signed) altitude
221273
+ * of `spacePoint` with respect to the plane.
221274
+ * * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/ProjectVectorOnPlane
221275
+ */
221226
221276
  dotProductToPoint(spacePoint) {
221227
221277
  return this.direction.dotProductStartEnd(this.origin, spacePoint);
221228
221278
  }
@@ -280060,7 +280110,7 @@ class TestContext {
280060
280110
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
280061
280111
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
280062
280112
  await core_frontend_1.NoRenderApp.startup({
280063
- applicationVersion: "4.0.0-dev.94",
280113
+ applicationVersion: "4.0.0-dev.95",
280064
280114
  applicationId: this.settings.gprid,
280065
280115
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
280066
280116
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -299504,7 +299554,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
299504
299554
  /***/ ((module) => {
299505
299555
 
299506
299556
  "use strict";
299507
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.94","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","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.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.0.0-dev.94","@itwin/core-bentley":"workspace:^4.0.0-dev.94","@itwin/core-common":"workspace:^4.0.0-dev.94","@itwin/core-geometry":"workspace:^4.0.0-dev.94","@itwin/core-orbitgt":"workspace:^4.0.0-dev.94","@itwin/core-quantity":"workspace:^4.0.0-dev.94"},"//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.33","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@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":"^8.36.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","fuse.js":"^3.3.0","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"}}]}}');
299557
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.95","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","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.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.0.0-dev.95","@itwin/core-bentley":"workspace:^4.0.0-dev.95","@itwin/core-common":"workspace:^4.0.0-dev.95","@itwin/core-geometry":"workspace:^4.0.0-dev.95","@itwin/core-orbitgt":"workspace:^4.0.0-dev.95","@itwin/core-quantity":"workspace:^4.0.0-dev.95"},"//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.33","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@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":"^8.36.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","fuse.js":"^3.3.0","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"}}]}}');
299508
299558
 
299509
299559
  /***/ }),
299510
299560