@itwin/rpcinterface-full-stack-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 +64 -13
- 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:\\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":""}
|
|
@@ -42657,9 +42657,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42657
42657
|
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BriefcaseStatus),
|
|
42658
42658
|
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ChangeSetStatus),
|
|
42659
42659
|
/* harmony export */ "ChannelConstraintError": () => (/* binding */ ChannelConstraintError),
|
|
42660
|
+
/* harmony export */ "ConflictingLocksError": () => (/* binding */ ConflictingLocksError),
|
|
42660
42661
|
/* harmony export */ "DbResult": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.DbResult),
|
|
42661
42662
|
/* harmony export */ "IModelError": () => (/* binding */ IModelError),
|
|
42662
42663
|
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus),
|
|
42664
|
+
/* harmony export */ "LockState": () => (/* binding */ LockState),
|
|
42663
42665
|
/* harmony export */ "NoContentError": () => (/* binding */ NoContentError),
|
|
42664
42666
|
/* harmony export */ "ServerError": () => (/* binding */ ServerError),
|
|
42665
42667
|
/* harmony export */ "ServerTimeoutError": () => (/* binding */ ServerTimeoutError)
|
|
@@ -42683,6 +42685,31 @@ class IModelError extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Bentl
|
|
|
42683
42685
|
super(errorNumber, message, getMetaData);
|
|
42684
42686
|
}
|
|
42685
42687
|
}
|
|
42688
|
+
/** The state of a lock. See [Acquiring locks on elements.]($docs/learning/backend/ConcurrencyControl.md#acquiring-locks-on-elements).
|
|
42689
|
+
* @public
|
|
42690
|
+
*/
|
|
42691
|
+
var LockState;
|
|
42692
|
+
(function (LockState) {
|
|
42693
|
+
/** The element is not locked */
|
|
42694
|
+
LockState[LockState["None"] = 0] = "None";
|
|
42695
|
+
/** 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. */
|
|
42696
|
+
LockState[LockState["Shared"] = 1] = "Shared";
|
|
42697
|
+
/** A Lock that permits modifications to an element and blocks other users from making modifications to it.
|
|
42698
|
+
* Holding an exclusive lock on an "owner" (a model or a parent element), implicitly exclusively locks all its members.
|
|
42699
|
+
*/
|
|
42700
|
+
LockState[LockState["Exclusive"] = 2] = "Exclusive";
|
|
42701
|
+
})(LockState || (LockState = {}));
|
|
42702
|
+
/**
|
|
42703
|
+
* An error raised when there is a lock conflict detected.
|
|
42704
|
+
* 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.
|
|
42705
|
+
* @public
|
|
42706
|
+
*/
|
|
42707
|
+
class ConflictingLocksError extends IModelError {
|
|
42708
|
+
constructor(message, getMetaData, conflictingLocks) {
|
|
42709
|
+
super(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelHubStatus.LockOwnedByAnotherBriefcase, message, getMetaData);
|
|
42710
|
+
this.conflictingLocks = conflictingLocks;
|
|
42711
|
+
}
|
|
42712
|
+
}
|
|
42686
42713
|
/** @public */
|
|
42687
42714
|
class ServerError extends IModelError {
|
|
42688
42715
|
constructor(errorNumber, message) {
|
|
@@ -51293,6 +51320,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51293
51320
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__.CommonLoggerCategory),
|
|
51294
51321
|
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__.CompositeTileHeader),
|
|
51295
51322
|
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.ConcreteEntityTypes),
|
|
51323
|
+
/* harmony export */ "ConflictingLocksError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ConflictingLocksError),
|
|
51296
51324
|
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentFlags),
|
|
51297
51325
|
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentIdProvider),
|
|
51298
51326
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModel),
|
|
@@ -51409,6 +51437,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51409
51437
|
/* harmony export */ "LineBreakRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
51410
51438
|
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_76__.LinePixels),
|
|
51411
51439
|
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__.LineStyle),
|
|
51440
|
+
/* harmony export */ "LockState": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.LockState),
|
|
51412
51441
|
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.MapImagerySettings),
|
|
51413
51442
|
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapLayerSettings),
|
|
51414
51443
|
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapSubLayerSettings),
|
|
@@ -63374,7 +63403,7 @@ class RpcRequest {
|
|
|
63374
63403
|
for (const param of this.parameters) {
|
|
63375
63404
|
if (typeof (param) === "object" && param !== null) {
|
|
63376
63405
|
for (const prop of Object.getOwnPropertyNames(requiredProperties)) {
|
|
63377
|
-
if (
|
|
63406
|
+
if (prop in param && typeof (param[prop]) === requiredProperties[prop]) {
|
|
63378
63407
|
return param;
|
|
63379
63408
|
}
|
|
63380
63409
|
}
|
|
@@ -64087,7 +64116,6 @@ class BentleyCloudRpcProtocol extends _WebAppRpcProtocol__WEBPACK_IMPORTED_MODUL
|
|
|
64087
64116
|
*/
|
|
64088
64117
|
inflateToken(tokenFromBody, request) {
|
|
64089
64118
|
const urlPathComponents = request.path.split("/");
|
|
64090
|
-
const iModelKey = tokenFromBody.key;
|
|
64091
64119
|
let iModelId = tokenFromBody.iModelId;
|
|
64092
64120
|
let iTwinId = tokenFromBody.iTwinId;
|
|
64093
64121
|
const changeset = { id: tokenFromBody.changeset?.id ?? "0", index: tokenFromBody.changeset?.index };
|
|
@@ -64110,7 +64138,9 @@ class BentleyCloudRpcProtocol extends _WebAppRpcProtocol__WEBPACK_IMPORTED_MODUL
|
|
|
64110
64138
|
++i;
|
|
64111
64139
|
}
|
|
64112
64140
|
}
|
|
64113
|
-
|
|
64141
|
+
// Overwrite the key if it includes a : because its most likely a guid. We know what it should be based off of the url.
|
|
64142
|
+
// Leave it alone if its a non guid key.
|
|
64143
|
+
return { key: tokenFromBody.key === undefined || tokenFromBody.key.includes(":") ? `${iModelId}:${changeset.id}` : tokenFromBody.key, iTwinId, iModelId, changeset };
|
|
64114
64144
|
}
|
|
64115
64145
|
/** Returns the OpenAPI-compatible URI path parameters for an RPC operation.
|
|
64116
64146
|
* @internal
|
|
@@ -91187,6 +91217,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91187
91217
|
class PlanarClipMaskState {
|
|
91188
91218
|
constructor(settings) {
|
|
91189
91219
|
this._allLoaded = false;
|
|
91220
|
+
this._usingViewportOverrides = false;
|
|
91190
91221
|
this.settings = settings;
|
|
91191
91222
|
}
|
|
91192
91223
|
static create(settings) {
|
|
@@ -91195,6 +91226,8 @@ class PlanarClipMaskState {
|
|
|
91195
91226
|
static fromJSON(props) {
|
|
91196
91227
|
return this.create(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskSettings.fromJSON(props));
|
|
91197
91228
|
}
|
|
91229
|
+
get usingViewportOverrides() { return this._usingViewportOverrides; }
|
|
91230
|
+
;
|
|
91198
91231
|
discloseTileTrees(trees) {
|
|
91199
91232
|
if (this._tileTreeRefs)
|
|
91200
91233
|
this._tileTreeRefs.forEach((treeRef) => treeRef.discloseTileTrees(trees));
|
|
@@ -91225,6 +91258,7 @@ class PlanarClipMaskState {
|
|
|
91225
91258
|
}
|
|
91226
91259
|
// Returns any potential FeatureSymbology overrides for drawing the planar clip mask.
|
|
91227
91260
|
getPlanarClipMaskSymbologyOverrides(view, context) {
|
|
91261
|
+
this._usingViewportOverrides = false;
|
|
91228
91262
|
// 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).
|
|
91229
91263
|
const overrideModels = view.getModelsNotInMask(this.settings.modelIds, _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority === this.settings.mode);
|
|
91230
91264
|
const noSubCategoryOrElementIds = !this.settings.subCategoryOrElementIds;
|
|
@@ -91237,6 +91271,7 @@ class PlanarClipMaskState {
|
|
|
91237
91271
|
const appOff = _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.FeatureAppearance.fromTransparency(1.0);
|
|
91238
91272
|
// For Priority or Models mode, we need to start with the current overrides and modify them
|
|
91239
91273
|
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) {
|
|
91274
|
+
this._usingViewportOverrides = true; // Set flag to use listener since context.viewport might change afterwards.
|
|
91240
91275
|
const curOverrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology.Overrides(context.viewport);
|
|
91241
91276
|
curOverrides.addInvisibleElementOverridesToNeverDrawn(); // need this for fully trans element overrides to not participate in mask
|
|
91242
91277
|
overrideModels.forEach((modelId) => {
|
|
@@ -123552,6 +123587,10 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
123552
123587
|
this._maskBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._maskBuffer);
|
|
123553
123588
|
this._classifierCombinedBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._classifierCombinedBuffer);
|
|
123554
123589
|
this._classifierAndMaskCombinedBuffer = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._classifierAndMaskCombinedBuffer);
|
|
123590
|
+
if (this._removeMe) {
|
|
123591
|
+
this._removeMe();
|
|
123592
|
+
this._removeMe = undefined;
|
|
123593
|
+
}
|
|
123555
123594
|
}
|
|
123556
123595
|
get texture() {
|
|
123557
123596
|
switch (this._contentMode) {
|
|
@@ -123622,6 +123661,16 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
123622
123661
|
this._frustum = projection.textureFrustum;
|
|
123623
123662
|
this._debugFrustum = projection.debugFrustum;
|
|
123624
123663
|
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides(viewState, context);
|
|
123664
|
+
if (!this._planarClipMask?.usingViewportOverrides && this._removeMe) {
|
|
123665
|
+
this._removeMe();
|
|
123666
|
+
this._removeMe = undefined;
|
|
123667
|
+
}
|
|
123668
|
+
else if (this._planarClipMask?.usingViewportOverrides && !this._removeMe) {
|
|
123669
|
+
this._removeMe = context.viewport.onFeatureOverridesChanged.addListener(() => {
|
|
123670
|
+
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides(viewState, context);
|
|
123671
|
+
context.viewport.requestRedraw();
|
|
123672
|
+
});
|
|
123673
|
+
}
|
|
123625
123674
|
const drawTree = (treeRef, graphics) => {
|
|
123626
123675
|
this._graphics = graphics;
|
|
123627
123676
|
const frustumPlanes = this._frustum ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.fromFrustum(this._frustum) : _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.createEmpty();
|
|
@@ -203574,11 +203623,12 @@ class CurveCurveCloseApproachXY extends _geometry3d_GeometryHandler__WEBPACK_IMP
|
|
|
203574
203623
|
}
|
|
203575
203624
|
/** Solve Newton for 2 arcs and the given newtonEvaluator. */
|
|
203576
203625
|
solveArcArcNewton(curveP, curveQ, reversed, newtonEvaluator) {
|
|
203577
|
-
|
|
203578
|
-
const
|
|
203626
|
+
// HEURISTIC: 2 ellipses have up to 8 perpendiculars and up to 4 intersections
|
|
203627
|
+
const seedDelta = 1 / 10; // denominator 9 fails the unit test
|
|
203628
|
+
const seedStart = seedDelta / 2;
|
|
203579
203629
|
const newtonSearcher = new _numerics_Newton__WEBPACK_IMPORTED_MODULE_6__.Newton2dUnboundedWithDerivative(newtonEvaluator);
|
|
203580
|
-
for (
|
|
203581
|
-
for (
|
|
203630
|
+
for (let seedU = seedStart; seedU < 1; seedU += seedDelta) {
|
|
203631
|
+
for (let seedV = seedStart; seedV < 1; seedV += seedDelta) {
|
|
203582
203632
|
newtonSearcher.setUV(seedU, seedV);
|
|
203583
203633
|
if (newtonSearcher.runIterations()) {
|
|
203584
203634
|
const curvePFraction = newtonSearcher.getU();
|
|
@@ -237230,10 +237280,10 @@ class SmallSystem {
|
|
|
237230
237280
|
return false;
|
|
237231
237281
|
}
|
|
237232
237282
|
/**
|
|
237233
|
-
* Solve a linear system
|
|
237234
|
-
* * x equation: `
|
|
237235
|
-
* * y equation: `
|
|
237236
|
-
* * z equation: `
|
|
237283
|
+
* Solve a linear system:
|
|
237284
|
+
* * x equation: `axx * u + axy * v + axz * w = cx`
|
|
237285
|
+
* * y equation: `ayx * u + ayy * v + ayz * w = cy`
|
|
237286
|
+
* * z equation: `azx * u + azy * v + azz * w = cz`
|
|
237237
237287
|
* @param axx row 0, column 0 coefficient
|
|
237238
237288
|
* @param axy row 0, column 1 coefficient
|
|
237239
237289
|
* @param axz row 0, column 1 coefficient
|
|
@@ -237247,6 +237297,7 @@ class SmallSystem {
|
|
|
237247
237297
|
* @param cy right hand side row 1 coefficient
|
|
237248
237298
|
* @param cz right hand side row 2 coefficient
|
|
237249
237299
|
* @param result optional result.
|
|
237300
|
+
* @returns solution vector (u,v,w) or `undefined` if system is singular.
|
|
237250
237301
|
*/
|
|
237251
237302
|
static linearSystem3d(axx, axy, axz, // first row of matrix
|
|
237252
237303
|
ayx, ayy, ayz, // second row of matrix
|
|
@@ -290684,7 +290735,7 @@ class TestContext {
|
|
|
290684
290735
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
290685
290736
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
290686
290737
|
await core_frontend_1.NoRenderApp.startup({
|
|
290687
|
-
applicationVersion: "4.8.0-dev.
|
|
290738
|
+
applicationVersion: "4.8.0-dev.13",
|
|
290688
290739
|
applicationId: this.settings.gprid,
|
|
290689
290740
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
290690
290741
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -314677,7 +314728,7 @@ function __disposeResources(env) {
|
|
|
314677
314728
|
/***/ ((module) => {
|
|
314678
314729
|
|
|
314679
314730
|
"use strict";
|
|
314680
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.
|
|
314731
|
+
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"}}');
|
|
314681
314732
|
|
|
314682
314733
|
/***/ }),
|
|
314683
314734
|
|