@itwin/ecschema-rpcinterface-tests 4.3.0-dev.1 → 4.3.0-dev.4
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/bundled-tests.js +131 -122
- 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_4_7_node_modules_loaders_gl_draco_di-02c2bd.bundled-tests.js → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_14_node_modules_loaders_gl_draco_d-aa4ff5.bundled-tests.js} +142 -122
- package/lib/dist/{vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_7_node_modules_loaders_gl_draco_di-02c2bd.bundled-tests.js.map → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_14_node_modules_loaders_gl_draco_d-aa4ff5.bundled-tests.js.map} +1 -1
- package/package.json +16 -16
- package/lib/dist/_0062.bundled-tests.js +0 -14
- package/lib/dist/_0062.bundled-tests.js.map +0 -1
|
@@ -21,53 +21,53 @@
|
|
|
21
21
|
|
|
22
22
|
/***/ }),
|
|
23
23
|
|
|
24
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.
|
|
24
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.14/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
|
|
25
25
|
/*!*********************************************************************************************************************!*\
|
|
26
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.
|
|
26
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.14/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
|
|
27
27
|
\*********************************************************************************************************************/
|
|
28
28
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
29
29
|
|
|
30
30
|
"use strict";
|
|
31
|
-
|
|
32
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
-
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
-
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
-
/** @internal */
|
|
36
|
-
function getCallbacksRegisteredOnBackend() {
|
|
37
|
-
if (isFrontend)
|
|
38
|
-
throw new Error("This should only be called on the backend!");
|
|
39
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
-
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
-
}
|
|
42
|
-
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
-
/** @internal */
|
|
44
|
-
function executeRegisteredCallback(name, args) {
|
|
45
|
-
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
-
if (!(name in registeredCallbacks))
|
|
47
|
-
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
-
return registeredCallbacks[name](...args);
|
|
49
|
-
}
|
|
50
|
-
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
-
function registerBackendCallback(name, cb) {
|
|
52
|
-
if (isFrontend)
|
|
53
|
-
throw new Error("This should only be called on the backend!");
|
|
54
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
-
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
-
}
|
|
57
|
-
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
-
async function executeBackendCallback(name, ...args) {
|
|
59
|
-
if (!isFrontend)
|
|
60
|
-
return executeRegisteredCallback(name, args);
|
|
61
|
-
return window._CertaSendToBackend(name, args);
|
|
62
|
-
}
|
|
63
|
-
exports.executeBackendCallback = executeBackendCallback;
|
|
31
|
+
|
|
32
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
+
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
+
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
+
/** @internal */
|
|
36
|
+
function getCallbacksRegisteredOnBackend() {
|
|
37
|
+
if (isFrontend)
|
|
38
|
+
throw new Error("This should only be called on the backend!");
|
|
39
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
+
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
+
}
|
|
42
|
+
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
+
/** @internal */
|
|
44
|
+
function executeRegisteredCallback(name, args) {
|
|
45
|
+
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
+
if (!(name in registeredCallbacks))
|
|
47
|
+
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
+
return registeredCallbacks[name](...args);
|
|
49
|
+
}
|
|
50
|
+
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
+
function registerBackendCallback(name, cb) {
|
|
52
|
+
if (isFrontend)
|
|
53
|
+
throw new Error("This should only be called on the backend!");
|
|
54
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
+
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
+
}
|
|
57
|
+
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
+
async function executeBackendCallback(name, ...args) {
|
|
59
|
+
if (!isFrontend)
|
|
60
|
+
return executeRegisteredCallback(name, args);
|
|
61
|
+
return window._CertaSendToBackend(name, args);
|
|
62
|
+
}
|
|
63
|
+
exports.executeBackendCallback = executeBackendCallback;
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
/***/ }),
|
|
67
67
|
|
|
68
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
68
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js":
|
|
69
69
|
/*!*****************************************************************************************************************************************************************************************!*\
|
|
70
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
70
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js ***!
|
|
71
71
|
\*****************************************************************************************************************************************************************************************/
|
|
72
72
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
73
73
|
|
|
@@ -80,7 +80,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
80
80
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
81
81
|
/* harmony import */ var _itwin_core_frontend__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
82
82
|
/* harmony import */ var _itwin_imodels_client_management__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@3.1.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
83
|
-
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
83
|
+
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js");
|
|
84
84
|
/*---------------------------------------------------------------------------------------------
|
|
85
85
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
86
86
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -186,9 +186,9 @@ class FrontendIModelsAccess {
|
|
|
186
186
|
|
|
187
187
|
/***/ }),
|
|
188
188
|
|
|
189
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
189
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js":
|
|
190
190
|
/*!*************************************************************************************************************************************************************************!*\
|
|
191
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
191
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js ***!
|
|
192
192
|
\*************************************************************************************************************************************************************************/
|
|
193
193
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
194
194
|
|
|
@@ -198,8 +198,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
198
198
|
/* harmony export */ AccessTokenAdapter: () => (/* reexport safe */ _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__.AccessTokenAdapter),
|
|
199
199
|
/* harmony export */ FrontendIModelsAccess: () => (/* reexport safe */ _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__.FrontendIModelsAccess)
|
|
200
200
|
/* harmony export */ });
|
|
201
|
-
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
202
|
-
/* harmony import */ var _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FrontendIModelsAccess */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
201
|
+
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js");
|
|
202
|
+
/* harmony import */ var _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FrontendIModelsAccess */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js");
|
|
203
203
|
/*---------------------------------------------------------------------------------------------
|
|
204
204
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
205
205
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -210,9 +210,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
210
210
|
|
|
211
211
|
/***/ }),
|
|
212
212
|
|
|
213
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
213
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js":
|
|
214
214
|
/*!*********************************************************************************************************************************************************************************************************!*\
|
|
215
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
215
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js ***!
|
|
216
216
|
\*********************************************************************************************************************************************************************************************************/
|
|
217
217
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
218
218
|
|
|
@@ -3195,7 +3195,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
|
|
|
3195
3195
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3196
3196
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
3197
3197
|
*--------------------------------------------------------------------------------------------*/
|
|
3198
|
-
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.
|
|
3198
|
+
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.7.14/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
|
|
3199
3199
|
// Shared by both the frontend and backend side of the tests
|
|
3200
3200
|
exports.getTokenCallbackName = "getToken";
|
|
3201
3201
|
async function getAccessTokenFromBackend(user, oidcConfig) {
|
|
@@ -18305,8 +18305,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18305
18305
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18306
18306
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
18307
18307
|
/* harmony export */ });
|
|
18308
|
-
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
18309
|
-
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
18308
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
18309
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
18310
18310
|
|
|
18311
18311
|
|
|
18312
18312
|
|
|
@@ -84755,7 +84755,7 @@ class RealityDataSourceTilesetUrlImpl {
|
|
|
84755
84755
|
return (0,_request_Request__WEBPACK_IMPORTED_MODULE_2__.request)(tileUrl, "json");
|
|
84756
84756
|
}
|
|
84757
84757
|
getTileContentType(url) {
|
|
84758
|
-
return url.endsWith("json") ? "tileset" : "tile";
|
|
84758
|
+
return new URL(url, "https://localhost/").pathname.toLowerCase().endsWith("json") ? "tileset" : "tile";
|
|
84759
84759
|
}
|
|
84760
84760
|
/**
|
|
84761
84761
|
* Gets spatial location and extents of this reality data source
|
|
@@ -95544,7 +95544,7 @@ class GltfParser {
|
|
|
95544
95544
|
if (dracoMeshes.length === 0)
|
|
95545
95545
|
return;
|
|
95546
95546
|
try {
|
|
95547
|
-
const dracoLoader = (await
|
|
95547
|
+
const dracoLoader = (await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_14_node_modules_loaders_gl_draco_d-aa4ff5").then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.4.14/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
95548
95548
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
95549
95549
|
}
|
|
95550
95550
|
catch (err) {
|
|
@@ -100657,6 +100657,7 @@ const UNIT_DATA = [
|
|
|
100657
100657
|
{ name: "Units.SQ_FT", phenomenon: "Units.AREA", system: "Units.USCUSTOM", conversion: { numerator: 1.0, denominator: .09290304, offset: 0.0 }, displayLabel: "ft²" },
|
|
100658
100658
|
{ name: "Units.SQ_US_SURVEY_FT", phenomenon: "Units.AREA", system: "Units.USCUSTOM", conversion: { numerator: 15499969.0, denominator: 1440000, offset: 0.0 }, displayLabel: "ft² (US Survey)" },
|
|
100659
100659
|
{ name: "Units.SQ_M", phenomenon: "Units.AREA", system: "Units.SI", conversion: { numerator: 1.0, denominator: 1.0, offset: 0.0 }, displayLabel: "m²" },
|
|
100660
|
+
{ name: "Units.SQ_KM", phenomenon: "Units.AREA", system: "Units.SI", conversion: { numerator: 1.0, denominator: 1000000.0, offset: 0.0 }, displayLabel: "km²" },
|
|
100660
100661
|
// conversion => specified unit to base unit m³
|
|
100661
100662
|
{ name: "Units.CUB_FT", phenomenon: "Units.VOLUME", system: "Units.USCUSTOM", conversion: { numerator: 1.0, denominator: 0.028316847, offset: 0.0 }, displayLabel: "ft³" },
|
|
100662
100663
|
{ name: "Units.CUB_US_SURVEY_FT", phenomenon: "Units.VOLUME", system: "Units.USSURVEY", conversion: { numerator: 1, denominator: 0.0283170164937591, offset: 0.0 }, displayLabel: "ft³" },
|
|
@@ -136885,8 +136886,8 @@ class ContextShareProvider {
|
|
|
136885
136886
|
// Not a valid URL for Context share
|
|
136886
136887
|
return false;
|
|
136887
136888
|
}
|
|
136888
|
-
// If api.bentley.com/realitydata is used, it is context share
|
|
136889
|
-
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata"))
|
|
136889
|
+
// If api.bentley.com/realitydata or api.bentley.com/reality-management is used, it is context share
|
|
136890
|
+
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata") || tilesetUrl.toLowerCase().includes("api.bentley.com/reality-management/reality-data"))
|
|
136890
136891
|
return true;
|
|
136891
136892
|
// detect if it is a RDS url
|
|
136892
136893
|
const formattedUrl1 = attUrl.pathname.replace(/~2F/g, "/").replace(/\\/g, "/");
|
|
@@ -136916,16 +136917,24 @@ class ContextShareProvider {
|
|
|
136916
136917
|
// Not a valid URL and not equal, probably $cesiumAsset
|
|
136917
136918
|
return invalidUrlInfo;
|
|
136918
136919
|
}
|
|
136919
|
-
// If api.bentley.com/realitydata is used, it is context share
|
|
136920
|
-
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata")) {
|
|
136920
|
+
// If api.bentley.com/realitydata or api.bentley.com/reality-management is used, it is context share
|
|
136921
|
+
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata") || tilesetUrl.toLowerCase().includes("api.bentley.com/reality-management/reality-data")) {
|
|
136921
136922
|
const lcTilesetUrl = tilesetUrl.toLowerCase();
|
|
136922
136923
|
// NOTICE: We assume it is a ThreeDTile BUT this could technically be a point cloud (OPC).
|
|
136923
136924
|
// This method was used in typical workflow where format was always ThreeDTile and is here for legacy support.
|
|
136924
136925
|
// We don't want to make a call to RDS to resolve format since this method must not be async (it is used in workflow that are not async)
|
|
136925
136926
|
const format = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityDataFormat.ThreeDTile;
|
|
136926
|
-
|
|
136927
|
+
let indexId = -1;
|
|
136928
|
+
let indexProjectId = -1;
|
|
136929
|
+
if (tilesetUrl.toLowerCase().includes("reality-management/reality-data")) {
|
|
136930
|
+
indexId = lcTilesetUrl.indexOf("reality-management/reality-data/") + 32; // length of "reality-management/reality-data/" = 32;
|
|
136931
|
+
indexProjectId = lcTilesetUrl.indexOf("itwinid=") + 8; // length of "itwinid=" = 8;
|
|
136932
|
+
}
|
|
136933
|
+
else if (tilesetUrl.toLowerCase().includes("realitydata")) {
|
|
136934
|
+
indexId = lcTilesetUrl.indexOf("realitydata/") + 12; // length of "realitydata/" = 12;
|
|
136935
|
+
indexProjectId = lcTilesetUrl.indexOf("projectid=") + 10; // length of "projectid=" = 10;
|
|
136936
|
+
}
|
|
136927
136937
|
const id = lcTilesetUrl.substring(indexId, _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Guid.empty.length + indexId);
|
|
136928
|
-
const indexProjectId = lcTilesetUrl.indexOf("projectid=") + 10; // lenght of "projectid=" = 10;
|
|
136929
136938
|
let projectId;
|
|
136930
136939
|
if (indexProjectId && indexProjectId > 0)
|
|
136931
136940
|
projectId = lcTilesetUrl.substring(indexProjectId, _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Guid.empty.length + indexProjectId);
|
|
@@ -138658,7 +138667,7 @@ class GltfReader {
|
|
|
138658
138667
|
if (dracoMeshes.length === 0)
|
|
138659
138668
|
return;
|
|
138660
138669
|
try {
|
|
138661
|
-
const dracoLoader = (await
|
|
138670
|
+
const dracoLoader = (await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_14_node_modules_loaders_gl_draco_d-aa4ff5").then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.4.14/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
138662
138671
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
138663
138672
|
}
|
|
138664
138673
|
catch (err) {
|
|
@@ -141536,7 +141545,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
141536
141545
|
}
|
|
141537
141546
|
async function decodeDracoPointCloud(buf) {
|
|
141538
141547
|
try {
|
|
141539
|
-
const dracoLoader = (await
|
|
141548
|
+
const dracoLoader = (await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_14_node_modules_loaders_gl_draco_d-aa4ff5").then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.4.14/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
141540
141549
|
const mesh = await dracoLoader.parse(buf, {});
|
|
141541
141550
|
if (mesh.topology !== "point-list")
|
|
141542
141551
|
return undefined;
|
|
@@ -277599,7 +277608,7 @@ const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.
|
|
|
277599
277608
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
277600
277609
|
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@3.1.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
277601
277610
|
const itwins_client_1 = __webpack_require__(/*! @itwin/itwins-client */ "../../common/temp/node_modules/.pnpm/@itwin+itwins-client@1.2.0/node_modules/@itwin/itwins-client/lib/esm/itwins-client.js");
|
|
277602
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
277611
|
+
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js");
|
|
277603
277612
|
class IModelSession {
|
|
277604
277613
|
constructor(iModelId, iTwinId, changesetId) {
|
|
277605
277614
|
this.iTwinId = iTwinId;
|
|
@@ -277691,7 +277700,7 @@ const Settings_1 = __webpack_require__(/*! ../../common/Settings */ "./lib/commo
|
|
|
277691
277700
|
const SideChannels_1 = __webpack_require__(/*! ../../common/SideChannels */ "./lib/common/SideChannels.js");
|
|
277692
277701
|
const IModelSession_1 = __webpack_require__(/*! ./IModelSession */ "./lib/frontend/setup/IModelSession.js");
|
|
277693
277702
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
277694
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
277703
|
+
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.1_ueafa4slb6ohrhyf7kbp6egmha/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js");
|
|
277695
277704
|
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@3.1.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
277696
277705
|
class TestContext {
|
|
277697
277706
|
constructor(env) {
|
|
@@ -284376,9 +284385,9 @@ const gBase64 = {
|
|
|
284376
284385
|
|
|
284377
284386
|
/***/ }),
|
|
284378
284387
|
|
|
284379
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284388
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
284380
284389
|
/*!******************************************************************************************************************************!*\
|
|
284381
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284390
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
284382
284391
|
\******************************************************************************************************************************/
|
|
284383
284392
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284384
284393
|
|
|
@@ -284395,9 +284404,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
284395
284404
|
|
|
284396
284405
|
/***/ }),
|
|
284397
284406
|
|
|
284398
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284407
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
284399
284408
|
/*!****************************************************************************************************************************!*\
|
|
284400
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284409
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
284401
284410
|
\****************************************************************************************************************************/
|
|
284402
284411
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284403
284412
|
|
|
@@ -284412,9 +284421,9 @@ function _arrayWithHoles(arr) {
|
|
|
284412
284421
|
|
|
284413
284422
|
/***/ }),
|
|
284414
284423
|
|
|
284415
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284424
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
284416
284425
|
/*!***********************************************************************************************************************************!*\
|
|
284417
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284426
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
284418
284427
|
\***********************************************************************************************************************************/
|
|
284419
284428
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284420
284429
|
|
|
@@ -284432,9 +284441,9 @@ function _assertThisInitialized(self) {
|
|
|
284432
284441
|
|
|
284433
284442
|
/***/ }),
|
|
284434
284443
|
|
|
284435
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284444
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
284436
284445
|
/*!****************************************************************************************************************************!*\
|
|
284437
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284446
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
284438
284447
|
\****************************************************************************************************************************/
|
|
284439
284448
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284440
284449
|
|
|
@@ -284451,9 +284460,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
284451
284460
|
|
|
284452
284461
|
/***/ }),
|
|
284453
284462
|
|
|
284454
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284463
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
284455
284464
|
/*!*************************************************************************************************************************!*\
|
|
284456
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284465
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
284457
284466
|
\*************************************************************************************************************************/
|
|
284458
284467
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284459
284468
|
|
|
@@ -284462,7 +284471,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284462
284471
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284463
284472
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
284464
284473
|
/* harmony export */ });
|
|
284465
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284474
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
284466
284475
|
|
|
284467
284476
|
function _defineProperties(target, props) {
|
|
284468
284477
|
for (var i = 0; i < props.length; i++) {
|
|
@@ -284484,9 +284493,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
284484
284493
|
|
|
284485
284494
|
/***/ }),
|
|
284486
284495
|
|
|
284487
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284496
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
284488
284497
|
/*!****************************************************************************************************************************!*\
|
|
284489
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284498
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
284490
284499
|
\****************************************************************************************************************************/
|
|
284491
284500
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284492
284501
|
|
|
@@ -284495,7 +284504,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284495
284504
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284496
284505
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
284497
284506
|
/* harmony export */ });
|
|
284498
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284507
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
284499
284508
|
|
|
284500
284509
|
function _defineProperty(obj, key, value) {
|
|
284501
284510
|
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
@@ -284514,9 +284523,9 @@ function _defineProperty(obj, key, value) {
|
|
|
284514
284523
|
|
|
284515
284524
|
/***/ }),
|
|
284516
284525
|
|
|
284517
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284526
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
284518
284527
|
/*!****************************************************************************************************************************!*\
|
|
284519
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284528
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
284520
284529
|
\****************************************************************************************************************************/
|
|
284521
284530
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284522
284531
|
|
|
@@ -284534,9 +284543,9 @@ function _getPrototypeOf(o) {
|
|
|
284534
284543
|
|
|
284535
284544
|
/***/ }),
|
|
284536
284545
|
|
|
284537
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284546
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
284538
284547
|
/*!**********************************************************************************************************************!*\
|
|
284539
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284548
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
284540
284549
|
\**********************************************************************************************************************/
|
|
284541
284550
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284542
284551
|
|
|
@@ -284545,7 +284554,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284545
284554
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284546
284555
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
284547
284556
|
/* harmony export */ });
|
|
284548
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284557
|
+
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js");
|
|
284549
284558
|
|
|
284550
284559
|
function _inherits(subClass, superClass) {
|
|
284551
284560
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -284566,9 +284575,9 @@ function _inherits(subClass, superClass) {
|
|
|
284566
284575
|
|
|
284567
284576
|
/***/ }),
|
|
284568
284577
|
|
|
284569
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284578
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
284570
284579
|
/*!*****************************************************************************************************************************!*\
|
|
284571
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284580
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
284572
284581
|
\*****************************************************************************************************************************/
|
|
284573
284582
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284574
284583
|
|
|
@@ -284583,9 +284592,9 @@ function _iterableToArray(iter) {
|
|
|
284583
284592
|
|
|
284584
284593
|
/***/ }),
|
|
284585
284594
|
|
|
284586
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284595
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
284587
284596
|
/*!*****************************************************************************************************************************!*\
|
|
284588
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284597
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
284589
284598
|
\*****************************************************************************************************************************/
|
|
284590
284599
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284591
284600
|
|
|
@@ -284600,9 +284609,9 @@ function _nonIterableRest() {
|
|
|
284600
284609
|
|
|
284601
284610
|
/***/ }),
|
|
284602
284611
|
|
|
284603
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284612
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
284604
284613
|
/*!***************************************************************************************************************************************!*\
|
|
284605
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284614
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
284606
284615
|
\***************************************************************************************************************************************/
|
|
284607
284616
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284608
284617
|
|
|
@@ -284611,8 +284620,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284611
284620
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284612
284621
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
284613
284622
|
/* harmony export */ });
|
|
284614
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284615
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284623
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
284624
|
+
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
284616
284625
|
|
|
284617
284626
|
|
|
284618
284627
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -284626,9 +284635,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
284626
284635
|
|
|
284627
284636
|
/***/ }),
|
|
284628
284637
|
|
|
284629
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284638
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
284630
284639
|
/*!****************************************************************************************************************************!*\
|
|
284631
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284640
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
284632
284641
|
\****************************************************************************************************************************/
|
|
284633
284642
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284634
284643
|
|
|
@@ -284647,9 +284656,9 @@ function _setPrototypeOf(o, p) {
|
|
|
284647
284656
|
|
|
284648
284657
|
/***/ }),
|
|
284649
284658
|
|
|
284650
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284659
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
284651
284660
|
/*!*********************************************************************************************************************!*\
|
|
284652
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284661
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
284653
284662
|
\*********************************************************************************************************************/
|
|
284654
284663
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284655
284664
|
|
|
@@ -284658,10 +284667,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284658
284667
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284659
284668
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
284660
284669
|
/* harmony export */ });
|
|
284661
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284662
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284663
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284664
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284670
|
+
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js");
|
|
284671
|
+
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js");
|
|
284672
|
+
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js");
|
|
284673
|
+
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js");
|
|
284665
284674
|
|
|
284666
284675
|
|
|
284667
284676
|
|
|
@@ -284672,9 +284681,9 @@ function _toArray(arr) {
|
|
|
284672
284681
|
|
|
284673
284682
|
/***/ }),
|
|
284674
284683
|
|
|
284675
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284684
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
284676
284685
|
/*!*************************************************************************************************************************!*\
|
|
284677
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284686
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
284678
284687
|
\*************************************************************************************************************************/
|
|
284679
284688
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284680
284689
|
|
|
@@ -284683,7 +284692,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284683
284692
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284684
284693
|
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
284685
284694
|
/* harmony export */ });
|
|
284686
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284695
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
284687
284696
|
|
|
284688
284697
|
function _toPrimitive(input, hint) {
|
|
284689
284698
|
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
@@ -284698,9 +284707,9 @@ function _toPrimitive(input, hint) {
|
|
|
284698
284707
|
|
|
284699
284708
|
/***/ }),
|
|
284700
284709
|
|
|
284701
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284710
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
284702
284711
|
/*!***************************************************************************************************************************!*\
|
|
284703
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284712
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
284704
284713
|
\***************************************************************************************************************************/
|
|
284705
284714
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284706
284715
|
|
|
@@ -284709,8 +284718,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284709
284718
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284710
284719
|
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
284711
284720
|
/* harmony export */ });
|
|
284712
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284713
|
-
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284721
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
284722
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
284714
284723
|
|
|
284715
284724
|
|
|
284716
284725
|
function _toPropertyKey(arg) {
|
|
@@ -284720,9 +284729,9 @@ function _toPropertyKey(arg) {
|
|
|
284720
284729
|
|
|
284721
284730
|
/***/ }),
|
|
284722
284731
|
|
|
284723
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284732
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
284724
284733
|
/*!********************************************************************************************************************!*\
|
|
284725
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284734
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
284726
284735
|
\********************************************************************************************************************/
|
|
284727
284736
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284728
284737
|
|
|
@@ -284731,21 +284740,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284731
284740
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284732
284741
|
/* harmony export */ "default": () => (/* binding */ _typeof)
|
|
284733
284742
|
/* harmony export */ });
|
|
284734
|
-
function _typeof(
|
|
284743
|
+
function _typeof(o) {
|
|
284735
284744
|
"@babel/helpers - typeof";
|
|
284736
284745
|
|
|
284737
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (
|
|
284738
|
-
return typeof
|
|
284739
|
-
} : function (
|
|
284740
|
-
return
|
|
284741
|
-
}, _typeof(
|
|
284746
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
284747
|
+
return typeof o;
|
|
284748
|
+
} : function (o) {
|
|
284749
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
284750
|
+
}, _typeof(o);
|
|
284742
284751
|
}
|
|
284743
284752
|
|
|
284744
284753
|
/***/ }),
|
|
284745
284754
|
|
|
284746
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284755
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
284747
284756
|
/*!****************************************************************************************************************************************!*\
|
|
284748
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284757
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
284749
284758
|
\****************************************************************************************************************************************/
|
|
284750
284759
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
284751
284760
|
|
|
@@ -284754,7 +284763,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284754
284763
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
284755
284764
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
284756
284765
|
/* harmony export */ });
|
|
284757
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
284766
|
+
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js");
|
|
284758
284767
|
|
|
284759
284768
|
function _unsupportedIterableToArray(o, minLen) {
|
|
284760
284769
|
if (!o) return;
|
|
@@ -285188,15 +285197,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
285188
285197
|
/* harmony export */ t: () => (/* binding */ t),
|
|
285189
285198
|
/* harmony export */ use: () => (/* binding */ use)
|
|
285190
285199
|
/* harmony export */ });
|
|
285191
|
-
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285192
|
-
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285193
|
-
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285194
|
-
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285195
|
-
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285196
|
-
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285197
|
-
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285198
|
-
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285199
|
-
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
285200
|
+
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
285201
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
285202
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
285203
|
+
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
285204
|
+
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
285205
|
+
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
285206
|
+
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
285207
|
+
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
285208
|
+
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js");
|
|
285200
285209
|
|
|
285201
285210
|
|
|
285202
285211
|
|
|
@@ -288076,7 +288085,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
288076
288085
|
/***/ ((module) => {
|
|
288077
288086
|
|
|
288078
288087
|
"use strict";
|
|
288079
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.3.0-dev.
|
|
288088
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.3.0-dev.4","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 -c extraction.eslint.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 && 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.3.0-dev.4","@itwin/core-bentley":"workspace:^4.3.0-dev.4","@itwin/core-common":"workspace:^4.3.0-dev.4","@itwin/core-geometry":"workspace:^4.3.0-dev.4","@itwin/core-orbitgt":"workspace:^4.3.0-dev.4","@itwin/core-quantity":"workspace:^4.3.0-dev.4"},"//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.44","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"18.16.1","@types/sinon":"^10.0.15","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.3.10","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^8.44.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^15.0.4","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/cloud-agnostic-core":"^2.1.0","@itwin/object-storage-core":"^2.1.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"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
288080
288089
|
|
|
288081
288090
|
/***/ })
|
|
288082
288091
|
|