@itwin/ecschema-rpcinterface-tests 4.8.0-dev.10 → 4.8.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 +63 -12
- 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 +16 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\
|
|
1
|
+
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\6\\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":""}
|
|
@@ -36401,9 +36401,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36401
36401
|
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BriefcaseStatus),
|
|
36402
36402
|
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ChangeSetStatus),
|
|
36403
36403
|
/* harmony export */ "ChannelConstraintError": () => (/* binding */ ChannelConstraintError),
|
|
36404
|
+
/* harmony export */ "ConflictingLocksError": () => (/* binding */ ConflictingLocksError),
|
|
36404
36405
|
/* harmony export */ "DbResult": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.DbResult),
|
|
36405
36406
|
/* harmony export */ "IModelError": () => (/* binding */ IModelError),
|
|
36406
36407
|
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus),
|
|
36408
|
+
/* harmony export */ "LockState": () => (/* binding */ LockState),
|
|
36407
36409
|
/* harmony export */ "NoContentError": () => (/* binding */ NoContentError),
|
|
36408
36410
|
/* harmony export */ "ServerError": () => (/* binding */ ServerError),
|
|
36409
36411
|
/* harmony export */ "ServerTimeoutError": () => (/* binding */ ServerTimeoutError)
|
|
@@ -36427,6 +36429,31 @@ class IModelError extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Bentl
|
|
|
36427
36429
|
super(errorNumber, message, getMetaData);
|
|
36428
36430
|
}
|
|
36429
36431
|
}
|
|
36432
|
+
/** The state of a lock. See [Acquiring locks on elements.]($docs/learning/backend/ConcurrencyControl.md#acquiring-locks-on-elements).
|
|
36433
|
+
* @public
|
|
36434
|
+
*/
|
|
36435
|
+
var LockState;
|
|
36436
|
+
(function (LockState) {
|
|
36437
|
+
/** The element is not locked */
|
|
36438
|
+
LockState[LockState["None"] = 0] = "None";
|
|
36439
|
+
/** Holding a shared lock on an element blocks other users from acquiring the Exclusive lock it. More than one user may acquire the shared lock. */
|
|
36440
|
+
LockState[LockState["Shared"] = 1] = "Shared";
|
|
36441
|
+
/** A Lock that permits modifications to an element and blocks other users from making modifications to it.
|
|
36442
|
+
* Holding an exclusive lock on an "owner" (a model or a parent element), implicitly exclusively locks all its members.
|
|
36443
|
+
*/
|
|
36444
|
+
LockState[LockState["Exclusive"] = 2] = "Exclusive";
|
|
36445
|
+
})(LockState || (LockState = {}));
|
|
36446
|
+
/**
|
|
36447
|
+
* An error raised when there is a lock conflict detected.
|
|
36448
|
+
* Typically this error would be thrown by [LockControl.acquireLocks]($backend) when you are requesting a lock on an element that is already held by another briefcase.
|
|
36449
|
+
* @public
|
|
36450
|
+
*/
|
|
36451
|
+
class ConflictingLocksError extends IModelError {
|
|
36452
|
+
constructor(message, getMetaData, conflictingLocks) {
|
|
36453
|
+
super(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelHubStatus.LockOwnedByAnotherBriefcase, message, getMetaData);
|
|
36454
|
+
this.conflictingLocks = conflictingLocks;
|
|
36455
|
+
}
|
|
36456
|
+
}
|
|
36430
36457
|
/** @public */
|
|
36431
36458
|
class ServerError extends IModelError {
|
|
36432
36459
|
constructor(errorNumber, message) {
|
|
@@ -45037,6 +45064,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45037
45064
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__.CommonLoggerCategory),
|
|
45038
45065
|
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__.CompositeTileHeader),
|
|
45039
45066
|
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.ConcreteEntityTypes),
|
|
45067
|
+
/* harmony export */ "ConflictingLocksError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ConflictingLocksError),
|
|
45040
45068
|
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentFlags),
|
|
45041
45069
|
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentIdProvider),
|
|
45042
45070
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModel),
|
|
@@ -45153,6 +45181,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45153
45181
|
/* harmony export */ "LineBreakRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
45154
45182
|
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_76__.LinePixels),
|
|
45155
45183
|
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__.LineStyle),
|
|
45184
|
+
/* harmony export */ "LockState": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.LockState),
|
|
45156
45185
|
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.MapImagerySettings),
|
|
45157
45186
|
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapLayerSettings),
|
|
45158
45187
|
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapSubLayerSettings),
|
|
@@ -57118,7 +57147,7 @@ class RpcRequest {
|
|
|
57118
57147
|
for (const param of this.parameters) {
|
|
57119
57148
|
if (typeof (param) === "object" && param !== null) {
|
|
57120
57149
|
for (const prop of Object.getOwnPropertyNames(requiredProperties)) {
|
|
57121
|
-
if (
|
|
57150
|
+
if (prop in param && typeof (param[prop]) === requiredProperties[prop]) {
|
|
57122
57151
|
return param;
|
|
57123
57152
|
}
|
|
57124
57153
|
}
|
|
@@ -57831,7 +57860,6 @@ class BentleyCloudRpcProtocol extends _WebAppRpcProtocol__WEBPACK_IMPORTED_MODUL
|
|
|
57831
57860
|
*/
|
|
57832
57861
|
inflateToken(tokenFromBody, request) {
|
|
57833
57862
|
const urlPathComponents = request.path.split("/");
|
|
57834
|
-
const iModelKey = tokenFromBody.key;
|
|
57835
57863
|
let iModelId = tokenFromBody.iModelId;
|
|
57836
57864
|
let iTwinId = tokenFromBody.iTwinId;
|
|
57837
57865
|
const changeset = { id: tokenFromBody.changeset?.id ?? "0", index: tokenFromBody.changeset?.index };
|
|
@@ -57854,7 +57882,9 @@ class BentleyCloudRpcProtocol extends _WebAppRpcProtocol__WEBPACK_IMPORTED_MODUL
|
|
|
57854
57882
|
++i;
|
|
57855
57883
|
}
|
|
57856
57884
|
}
|
|
57857
|
-
|
|
57885
|
+
// Overwrite the key if it includes a : because its most likely a guid. We know what it should be based off of the url.
|
|
57886
|
+
// Leave it alone if its a non guid key.
|
|
57887
|
+
return { key: tokenFromBody.key === undefined || tokenFromBody.key.includes(":") ? `${iModelId}:${changeset.id}` : tokenFromBody.key, iTwinId, iModelId, changeset };
|
|
57858
57888
|
}
|
|
57859
57889
|
/** Returns the OpenAPI-compatible URI path parameters for an RPC operation.
|
|
57860
57890
|
* @internal
|
|
@@ -85091,6 +85121,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85091
85121
|
class PlanarClipMaskState {
|
|
85092
85122
|
constructor(settings) {
|
|
85093
85123
|
this._allLoaded = false;
|
|
85124
|
+
this._usingViewportOverrides = false;
|
|
85094
85125
|
this.settings = settings;
|
|
85095
85126
|
}
|
|
85096
85127
|
static create(settings) {
|
|
@@ -85099,6 +85130,8 @@ class PlanarClipMaskState {
|
|
|
85099
85130
|
static fromJSON(props) {
|
|
85100
85131
|
return this.create(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskSettings.fromJSON(props));
|
|
85101
85132
|
}
|
|
85133
|
+
get usingViewportOverrides() { return this._usingViewportOverrides; }
|
|
85134
|
+
;
|
|
85102
85135
|
discloseTileTrees(trees) {
|
|
85103
85136
|
if (this._tileTreeRefs)
|
|
85104
85137
|
this._tileTreeRefs.forEach((treeRef) => treeRef.discloseTileTrees(trees));
|
|
@@ -85129,6 +85162,7 @@ class PlanarClipMaskState {
|
|
|
85129
85162
|
}
|
|
85130
85163
|
// Returns any potential FeatureSymbology overrides for drawing the planar clip mask.
|
|
85131
85164
|
getPlanarClipMaskSymbologyOverrides(view, context) {
|
|
85165
|
+
this._usingViewportOverrides = false;
|
|
85132
85166
|
// First obtain a list of models that will need to be turned off for drawing the planar clip mask (only used for batched tile trees).
|
|
85133
85167
|
const overrideModels = view.getModelsNotInMask(this.settings.modelIds, _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority === this.settings.mode);
|
|
85134
85168
|
const noSubCategoryOrElementIds = !this.settings.subCategoryOrElementIds;
|
|
@@ -85141,6 +85175,7 @@ class PlanarClipMaskState {
|
|
|
85141
85175
|
const appOff = _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.FeatureAppearance.fromTransparency(1.0);
|
|
85142
85176
|
// For Priority or Models mode, we need to start with the current overrides and modify them
|
|
85143
85177
|
if (_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority === this.settings.mode || _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Models === this.settings.mode || noSubCategoryOrElementIds) {
|
|
85178
|
+
this._usingViewportOverrides = true; // Set flag to use listener since context.viewport might change afterwards.
|
|
85144
85179
|
const curOverrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology.Overrides(context.viewport);
|
|
85145
85180
|
curOverrides.addInvisibleElementOverridesToNeverDrawn(); // need this for fully trans element overrides to not participate in mask
|
|
85146
85181
|
overrideModels.forEach((modelId) => {
|
|
@@ -117456,6 +117491,10 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
117456
117491
|
this._maskBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._maskBuffer);
|
|
117457
117492
|
this._classifierCombinedBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._classifierCombinedBuffer);
|
|
117458
117493
|
this._classifierAndMaskCombinedBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._classifierAndMaskCombinedBuffer);
|
|
117494
|
+
if (this._removeMe) {
|
|
117495
|
+
this._removeMe();
|
|
117496
|
+
this._removeMe = undefined;
|
|
117497
|
+
}
|
|
117459
117498
|
}
|
|
117460
117499
|
get texture() {
|
|
117461
117500
|
switch (this._contentMode) {
|
|
@@ -117526,6 +117565,16 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
117526
117565
|
this._frustum = projection.textureFrustum;
|
|
117527
117566
|
this._debugFrustum = projection.debugFrustum;
|
|
117528
117567
|
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides(viewState, context);
|
|
117568
|
+
if (!this._planarClipMask?.usingViewportOverrides && this._removeMe) {
|
|
117569
|
+
this._removeMe();
|
|
117570
|
+
this._removeMe = undefined;
|
|
117571
|
+
}
|
|
117572
|
+
else if (this._planarClipMask?.usingViewportOverrides && !this._removeMe) {
|
|
117573
|
+
this._removeMe = context.viewport.onFeatureOverridesChanged.addListener(() => {
|
|
117574
|
+
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides(viewState, context);
|
|
117575
|
+
context.viewport.requestRedraw();
|
|
117576
|
+
});
|
|
117577
|
+
}
|
|
117529
117578
|
const drawTree = (treeRef, graphics) => {
|
|
117530
117579
|
this._graphics = graphics;
|
|
117531
117580
|
const frustumPlanes = this._frustum ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.fromFrustum(this._frustum) : _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.createEmpty();
|
|
@@ -197478,11 +197527,12 @@ class CurveCurveCloseApproachXY extends _geometry3d_GeometryHandler__WEBPACK_IMP
|
|
|
197478
197527
|
}
|
|
197479
197528
|
/** Solve Newton for 2 arcs and the given newtonEvaluator. */
|
|
197480
197529
|
solveArcArcNewton(curveP, curveQ, reversed, newtonEvaluator) {
|
|
197481
|
-
|
|
197482
|
-
const
|
|
197530
|
+
// HEURISTIC: 2 ellipses have up to 8 perpendiculars and up to 4 intersections
|
|
197531
|
+
const seedDelta = 1 / 10; // denominator 9 fails the unit test
|
|
197532
|
+
const seedStart = seedDelta / 2;
|
|
197483
197533
|
const newtonSearcher = new _numerics_Newton__WEBPACK_IMPORTED_MODULE_6__.Newton2dUnboundedWithDerivative(newtonEvaluator);
|
|
197484
|
-
for (
|
|
197485
|
-
for (
|
|
197534
|
+
for (let seedU = seedStart; seedU < 1; seedU += seedDelta) {
|
|
197535
|
+
for (let seedV = seedStart; seedV < 1; seedV += seedDelta) {
|
|
197486
197536
|
newtonSearcher.setUV(seedU, seedV);
|
|
197487
197537
|
if (newtonSearcher.runIterations()) {
|
|
197488
197538
|
const curvePFraction = newtonSearcher.getU();
|
|
@@ -231134,10 +231184,10 @@ class SmallSystem {
|
|
|
231134
231184
|
return false;
|
|
231135
231185
|
}
|
|
231136
231186
|
/**
|
|
231137
|
-
* Solve a linear system
|
|
231138
|
-
* * x equation: `
|
|
231139
|
-
* * y equation: `
|
|
231140
|
-
* * z equation: `
|
|
231187
|
+
* Solve a linear system:
|
|
231188
|
+
* * x equation: `axx * u + axy * v + axz * w = cx`
|
|
231189
|
+
* * y equation: `ayx * u + ayy * v + ayz * w = cy`
|
|
231190
|
+
* * z equation: `azx * u + azy * v + azz * w = cz`
|
|
231141
231191
|
* @param axx row 0, column 0 coefficient
|
|
231142
231192
|
* @param axy row 0, column 1 coefficient
|
|
231143
231193
|
* @param axz row 0, column 1 coefficient
|
|
@@ -231151,6 +231201,7 @@ class SmallSystem {
|
|
|
231151
231201
|
* @param cy right hand side row 1 coefficient
|
|
231152
231202
|
* @param cz right hand side row 2 coefficient
|
|
231153
231203
|
* @param result optional result.
|
|
231204
|
+
* @returns solution vector (u,v,w) or `undefined` if system is singular.
|
|
231154
231205
|
*/
|
|
231155
231206
|
static linearSystem3d(axx, axy, axz, // first row of matrix
|
|
231156
231207
|
ayx, ayy, ayz, // second row of matrix
|
|
@@ -297834,7 +297885,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
297834
297885
|
/***/ ((module) => {
|
|
297835
297886
|
|
|
297836
297887
|
"use strict";
|
|
297837
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.
|
|
297888
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.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.8.0-dev.13","@itwin/core-bentley":"workspace:^4.8.0-dev.13","@itwin/core-common":"workspace:^4.8.0-dev.13","@itwin/core-geometry":"workspace:^4.8.0-dev.13","@itwin/core-orbitgt":"workspace:^4.8.0-dev.13","@itwin/core-quantity":"workspace:^4.8.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"}}');
|
|
297838
297889
|
|
|
297839
297890
|
/***/ })
|
|
297840
297891
|
|