@itwin/rpcinterface-full-stack-tests 5.1.0-dev.1 → 5.1.0-dev.3

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.
@@ -101522,6 +101522,174 @@ class SchemaGraph {
101522
101522
  }
101523
101523
 
101524
101524
 
101525
+ /***/ }),
101526
+
101527
+ /***/ "../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcInterface.js":
101528
+ /*!**********************************************************************!*\
101529
+ !*** ../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcInterface.js ***!
101530
+ \**********************************************************************/
101531
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
101532
+
101533
+ "use strict";
101534
+ __webpack_require__.r(__webpack_exports__);
101535
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
101536
+ /* harmony export */ ECSchemaRpcInterface: () => (/* binding */ ECSchemaRpcInterface)
101537
+ /* harmony export */ });
101538
+ /* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
101539
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
101540
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
101541
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
101542
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
101543
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
101544
+ };
101545
+ /*---------------------------------------------------------------------------------------------
101546
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
101547
+ * See LICENSE.md in the project root for license terms and full copyright notice.
101548
+ *--------------------------------------------------------------------------------------------*/
101549
+
101550
+ /***
101551
+ * Defines an RPC interface to get schema information from a given iModel context.
101552
+ * Method @see getSchemaNames will return the names of schemas that live in this iModel.
101553
+ * The actual schemas can be downloaded using @see getSchemaJSON to get the schema as JSON props.
101554
+ * @internal
101555
+ */
101556
+ class ECSchemaRpcInterface extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcInterface {
101557
+ /** The version of the RPC Interface. */
101558
+ static version = "2.0.0";
101559
+ static interfaceName = "ECSchemaRpcInterface";
101560
+ static interfaceVersion = ECSchemaRpcInterface.version;
101561
+ /**
101562
+ * Returns the RPC client instance for the frontend.
101563
+ * @returns A client to communicate with the RPC Interface.
101564
+ */
101565
+ static getClient() {
101566
+ return _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcManager.getClientForInterface(ECSchemaRpcInterface);
101567
+ }
101568
+ /**
101569
+ * Returns an array of SchemaKeyProps that exists in the current iModel context. The client can call
101570
+ * SchemaKey.fromJson() to parse the props to a SchemaKey.
101571
+ * @param tokenProps The iModelToken props that hold the information which iModel is used.
101572
+ * @returns An array of SchemaKeyProps.
101573
+ */
101574
+ async getSchemaKeys(_tokenProps) {
101575
+ return this.forward.apply(this, [arguments]);
101576
+ }
101577
+ /**
101578
+ * Gets the schema JSON for the current iModel context and returns the schema as a SchemaProps which
101579
+ * the client can call Schema.fromJson() to return a Schema.
101580
+ * @param tokenProps The iModelToken props that hold the information which iModel is used.
101581
+ * @param schemaName The name of the schema that shall be returned.
101582
+ * @returns The SchemaProps.
101583
+ */
101584
+ async getSchemaJSON(_tokenProps, _schemaName) {
101585
+ return this.forward.apply(this, [arguments]);
101586
+ }
101587
+ }
101588
+ __decorate([
101589
+ _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcOperation.allowResponseCaching(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
101590
+ ], ECSchemaRpcInterface.prototype, "getSchemaKeys", null);
101591
+ __decorate([
101592
+ _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcOperation.allowResponseCaching(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
101593
+ ], ECSchemaRpcInterface.prototype, "getSchemaJSON", null);
101594
+
101595
+
101596
+ /***/ }),
101597
+
101598
+ /***/ "../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcLocater.js":
101599
+ /*!********************************************************************!*\
101600
+ !*** ../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcLocater.js ***!
101601
+ \********************************************************************/
101602
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
101603
+
101604
+ "use strict";
101605
+ __webpack_require__.r(__webpack_exports__);
101606
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
101607
+ /* harmony export */ ECSchemaRpcLocater: () => (/* binding */ ECSchemaRpcLocater)
101608
+ /* harmony export */ });
101609
+ /* harmony import */ var _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/ecschema-metadata */ "../../core/ecschema-metadata/lib/esm/ecschema-metadata.js");
101610
+ /* harmony import */ var _ECSchemaRpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ECSchemaRpcInterface */ "../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcInterface.js");
101611
+ /*---------------------------------------------------------------------------------------------
101612
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
101613
+ * See LICENSE.md in the project root for license terms and full copyright notice.
101614
+ *--------------------------------------------------------------------------------------------*/
101615
+
101616
+
101617
+ /**
101618
+ * Defines a schema locater that retrieves schemas using an RPC interface.
101619
+ * @public @preview
101620
+ */
101621
+ class ECSchemaRpcLocater {
101622
+ /** @internal */
101623
+ token;
101624
+ constructor(token) { this.token = token; }
101625
+ /**
101626
+ * Attempts to get a schema from the schema rpc locater. Yields undefined if no matching schema is found.
101627
+ * @param schemaKey Key to look up
101628
+ * @param matchType How to match key against candidate schemas
101629
+ * @param context The SchemaContext that will control the lifetime of the schema and holds the schema's references, if they exist.
101630
+ */
101631
+ async getSchema(schemaKey, matchType, context) {
101632
+ await this.getSchemaInfo(schemaKey, matchType, context);
101633
+ const schema = await context.getCachedSchema(schemaKey, matchType);
101634
+ return schema;
101635
+ }
101636
+ /**
101637
+ * Gets the schema info which matches the provided SchemaKey. The schema info may be returned before the schema is fully loaded.
101638
+ * The fully loaded schema can be accessed via the schema context using the getCachedSchema method.
101639
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
101640
+ * @param matchType The match type to use when locating the schema
101641
+ */
101642
+ async getSchemaInfo(schemaKey, matchType, context) {
101643
+ const schemaJson = await _ECSchemaRpcInterface__WEBPACK_IMPORTED_MODULE_1__.ECSchemaRpcInterface.getClient().getSchemaJSON(this.token, schemaKey.name);
101644
+ const schemaInfo = await _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_0__.Schema.startLoadingFromJson(schemaJson, context || new _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_0__.SchemaContext());
101645
+ if (schemaInfo !== undefined && schemaInfo.schemaKey.matches(schemaKey, matchType)) {
101646
+ return schemaInfo;
101647
+ }
101648
+ return undefined;
101649
+ }
101650
+ /**
101651
+ * Attempts to get a schema from the schema rpc locater. Yields undefined if no matching schema is found.
101652
+ * @param schemaKey Key to look up
101653
+ * @param matchType How to match key against candidate schemas
101654
+ * @param context The SchemaContext that will control the lifetime of the schema and holds the schema's references, if they exist.
101655
+ */
101656
+ getSchemaSync(schemaKey, matchType, context) {
101657
+ const schemaJson = _ECSchemaRpcInterface__WEBPACK_IMPORTED_MODULE_1__.ECSchemaRpcInterface.getClient().getSchemaJSON(this.token, schemaKey.name).then((props) => {
101658
+ return props;
101659
+ });
101660
+ const schema = _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_0__.Schema.fromJsonSync(schemaJson, context || new _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_0__.SchemaContext());
101661
+ if (schema !== undefined && schema.schemaKey.matches(schemaKey, matchType)) {
101662
+ return schema;
101663
+ }
101664
+ return undefined;
101665
+ }
101666
+ }
101667
+
101668
+
101669
+ /***/ }),
101670
+
101671
+ /***/ "../../core/ecschema-rpc/common/lib/esm/ecschema-rpc-interface.js":
101672
+ /*!************************************************************************!*\
101673
+ !*** ../../core/ecschema-rpc/common/lib/esm/ecschema-rpc-interface.js ***!
101674
+ \************************************************************************/
101675
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
101676
+
101677
+ "use strict";
101678
+ __webpack_require__.r(__webpack_exports__);
101679
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
101680
+ /* harmony export */ ECSchemaRpcInterface: () => (/* reexport safe */ _ECSchemaRpcInterface__WEBPACK_IMPORTED_MODULE_0__.ECSchemaRpcInterface),
101681
+ /* harmony export */ ECSchemaRpcLocater: () => (/* reexport safe */ _ECSchemaRpcLocater__WEBPACK_IMPORTED_MODULE_1__.ECSchemaRpcLocater)
101682
+ /* harmony export */ });
101683
+ /* harmony import */ var _ECSchemaRpcInterface__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ECSchemaRpcInterface */ "../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcInterface.js");
101684
+ /* harmony import */ var _ECSchemaRpcLocater__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ECSchemaRpcLocater */ "../../core/ecschema-rpc/common/lib/esm/ECSchemaRpcLocater.js");
101685
+ /*---------------------------------------------------------------------------------------------
101686
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
101687
+ * See LICENSE.md in the project root for license terms and full copyright notice.
101688
+ *--------------------------------------------------------------------------------------------*/
101689
+
101690
+
101691
+
101692
+
101525
101693
  /***/ }),
101526
101694
 
101527
101695
  /***/ "../../core/frontend/lib/esm/AccuDraw.js":
@@ -113608,6 +113776,8 @@ __webpack_require__.r(__webpack_exports__);
113608
113776
  /* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
113609
113777
  /* harmony import */ var _common_internal_Symbols__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./common/internal/Symbols */ "../../core/frontend/lib/esm/common/internal/Symbols.js");
113610
113778
  /* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
113779
+ /* harmony import */ var _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @itwin/ecschema-metadata */ "../../core/ecschema-metadata/lib/esm/ecschema-metadata.js");
113780
+ /* harmony import */ var _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! @itwin/ecschema-rpcinterface-common */ "../../core/ecschema-rpc/common/lib/esm/ecschema-rpc-interface.js");
113611
113781
  /*---------------------------------------------------------------------------------------------
113612
113782
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
113613
113783
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -113630,6 +113800,8 @@ __webpack_require__.r(__webpack_exports__);
113630
113800
 
113631
113801
 
113632
113802
 
113803
+
113804
+
113633
113805
  const loggerCategory = _common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__.FrontendLoggerCategory.IModelConnection;
113634
113806
  /** A connection to a [IModelDb]($backend) hosted on the backend.
113635
113807
  * @public
@@ -113712,6 +113884,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
113712
113884
  * @deprecated in 5.0.0. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
113713
113885
  */
113714
113886
  fontMap; // eslint-disable-line @typescript-eslint/no-deprecated
113887
+ _schemaContext;
113715
113888
  /** Load the FontMap for this IModelConnection.
113716
113889
  * @returns Returns a Promise<FontMap> that is fulfilled when the FontMap member of this IModelConnection is valid.
113717
113890
  * @deprecated in 5.0.0. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
@@ -114100,6 +114273,24 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
114100
114273
  }
114101
114274
  return ("number" === typeof this._projectCenterAltitude) ? this._projectCenterAltitude : undefined;
114102
114275
  }
114276
+ /**
114277
+ * Gets the context that allows accessing the metadata (see `@itwin/ecschema-metadata` package) of this iModel.
114278
+ * The context is created lazily when this property is accessed for the first time, with an `ECSchemaRpcLocater` registered as a fallback locater, enabling users to register their own locater that'd take more priority.
114279
+ * This means to correctly access schema context, client-side applications must register `ECSchemaRpcInterface` following instructions for [RPC configuration]($docs/learning/rpcinterface/#client-side-configuration).
114280
+ * Server-side applications would also [configure RPC]($docs/learning/rpcinterface/#server-side-configuration) as needed.
114281
+ *
114282
+ * @note While a `BlankConnection` returns a valid `schemaContext`, it has an invalid locater registered by default, and will throw an error when trying to call it's methods.
114283
+ * @beta
114284
+ */
114285
+ get schemaContext() {
114286
+ if (this._schemaContext === undefined) {
114287
+ const context = new _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_15__.SchemaContext();
114288
+ const locater = new _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_16__.ECSchemaRpcLocater(this._getRpcProps());
114289
+ context.addFallbackLocater(locater);
114290
+ this._schemaContext = context;
114291
+ }
114292
+ return this._schemaContext;
114293
+ }
114103
114294
  }
114104
114295
  /** A connection that exists without an iModel. Useful for connecting to Reality Data services.
114105
114296
  * @note This class exists because our display system requires an IModelConnection type even if only reality data is drawn.
@@ -137627,12 +137818,7 @@ __webpack_require__.r(__webpack_exports__);
137627
137818
  * @internal
137628
137819
  */
137629
137820
  async function loadScript(jsUrl) {
137630
- // const module = await import(/* webpackIgnore: true */jsUrl);
137631
- // Webpack gives a warning:
137632
- // "Critical dependency: the request of a dependency is an expression"
137633
- // Because tsc transpiles "await import" to "require" (when compiled to is CommonJS).
137634
- // So use FunctionConstructor to avoid tsc.
137635
- const module = await Function("x", "return import(x)")(jsUrl);
137821
+ const module = await __webpack_require__("../../core/frontend/lib/esm/extension/providers lazy recursive")(jsUrl);
137636
137822
  return execute(module);
137637
137823
  }
137638
137824
  /** attempts to execute an extension module */
@@ -147425,7 +147611,7 @@ class MeshGraphic extends _Graphic__WEBPACK_IMPORTED_MODULE_2__.Graphic {
147425
147611
  }
147426
147612
  unionRange(range) {
147427
147613
  if (this._instances)
147428
- range.extendRange(range);
147614
+ range.extendRange(this._instances.range);
147429
147615
  else
147430
147616
  range.extendRange(this._meshRange);
147431
147617
  }
@@ -329231,7 +329417,7 @@ class TestContext {
329231
329417
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
329232
329418
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
329233
329419
  await core_frontend_1.NoRenderApp.startup({
329234
- applicationVersion: "5.1.0-dev.1",
329420
+ applicationVersion: "5.1.0-dev.3",
329235
329421
  applicationId: this.settings.gprid,
329236
329422
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
329237
329423
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -331771,6 +331957,28 @@ const getClassName = (obj) => {
331771
331957
  };
331772
331958
 
331773
331959
 
331960
+ /***/ }),
331961
+
331962
+ /***/ "../../core/frontend/lib/esm/extension/providers lazy recursive":
331963
+ /*!******************************************************************************!*\
331964
+ !*** ../../core/frontend/lib/esm/extension/providers/ lazy namespace object ***!
331965
+ \******************************************************************************/
331966
+ /***/ ((module) => {
331967
+
331968
+ function webpackEmptyAsyncContext(req) {
331969
+ // Here Promise.resolve().then() is used instead of new Promise() to prevent
331970
+ // uncaught exception popping up in devtools
331971
+ return Promise.resolve().then(() => {
331972
+ var e = new Error("Cannot find module '" + req + "'");
331973
+ e.code = 'MODULE_NOT_FOUND';
331974
+ throw e;
331975
+ });
331976
+ }
331977
+ webpackEmptyAsyncContext.keys = () => ([]);
331978
+ webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext;
331979
+ webpackEmptyAsyncContext.id = "../../core/frontend/lib/esm/extension/providers lazy recursive";
331980
+ module.exports = webpackEmptyAsyncContext;
331981
+
331774
331982
  /***/ }),
331775
331983
 
331776
331984
  /***/ "?088e":
@@ -354277,7 +354485,7 @@ var loadLanguages = instance.loadLanguages;
354277
354485
  /***/ ((module) => {
354278
354486
 
354279
354487
  "use strict";
354280
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.1","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 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","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","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","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:*"},"//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/eslint-plugin":"5.0.0-dev.1","@types/chai-as-promised":"^7","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.13.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","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/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^2.3.0","@itwin/core-i18n":"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"}}');
354488
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.3","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 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","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","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","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":{"@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/eslint-plugin":"5.0.0-dev.1","@types/chai-as-promised":"^7","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.13.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","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/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^2.3.0","@itwin/core-i18n":"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"}}');
354281
354489
 
354282
354490
  /***/ }),
354283
354491