@itwin/rpcinterface-full-stack-tests 4.3.0-dev.0 → 4.3.0-dev.2
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 +118 -301
- 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 +13 -13
- 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) {
|
|
@@ -9891,7 +9891,7 @@ function BufferBigIntNotDefined () {
|
|
|
9891
9891
|
"use strict";
|
|
9892
9892
|
|
|
9893
9893
|
/* eslint-disable no-invalid-this */
|
|
9894
|
-
let checkError = __webpack_require__(/*! check-error */ "../../common/temp/node_modules/.pnpm/check-error@1.0.
|
|
9894
|
+
let checkError = __webpack_require__(/*! check-error */ "../../common/temp/node_modules/.pnpm/check-error@1.0.3/node_modules/check-error/index.js");
|
|
9895
9895
|
|
|
9896
9896
|
module.exports = (chai, utils) => {
|
|
9897
9897
|
const Assertion = chai.Assertion;
|
|
@@ -19634,189 +19634,6 @@ module.exports = function transferFlags(assertion, object, includeAll) {
|
|
|
19634
19634
|
};
|
|
19635
19635
|
|
|
19636
19636
|
|
|
19637
|
-
/***/ }),
|
|
19638
|
-
|
|
19639
|
-
/***/ "../../common/temp/node_modules/.pnpm/check-error@1.0.2/node_modules/check-error/index.js":
|
|
19640
|
-
/*!************************************************************************************************!*\
|
|
19641
|
-
!*** ../../common/temp/node_modules/.pnpm/check-error@1.0.2/node_modules/check-error/index.js ***!
|
|
19642
|
-
\************************************************************************************************/
|
|
19643
|
-
/***/ ((module) => {
|
|
19644
|
-
|
|
19645
|
-
"use strict";
|
|
19646
|
-
|
|
19647
|
-
|
|
19648
|
-
/* !
|
|
19649
|
-
* Chai - checkError utility
|
|
19650
|
-
* Copyright(c) 2012-2016 Jake Luer <jake@alogicalparadox.com>
|
|
19651
|
-
* MIT Licensed
|
|
19652
|
-
*/
|
|
19653
|
-
|
|
19654
|
-
/**
|
|
19655
|
-
* ### .checkError
|
|
19656
|
-
*
|
|
19657
|
-
* Checks that an error conforms to a given set of criteria and/or retrieves information about it.
|
|
19658
|
-
*
|
|
19659
|
-
* @api public
|
|
19660
|
-
*/
|
|
19661
|
-
|
|
19662
|
-
/**
|
|
19663
|
-
* ### .compatibleInstance(thrown, errorLike)
|
|
19664
|
-
*
|
|
19665
|
-
* Checks if two instances are compatible (strict equal).
|
|
19666
|
-
* Returns false if errorLike is not an instance of Error, because instances
|
|
19667
|
-
* can only be compatible if they're both error instances.
|
|
19668
|
-
*
|
|
19669
|
-
* @name compatibleInstance
|
|
19670
|
-
* @param {Error} thrown error
|
|
19671
|
-
* @param {Error|ErrorConstructor} errorLike object to compare against
|
|
19672
|
-
* @namespace Utils
|
|
19673
|
-
* @api public
|
|
19674
|
-
*/
|
|
19675
|
-
|
|
19676
|
-
function compatibleInstance(thrown, errorLike) {
|
|
19677
|
-
return errorLike instanceof Error && thrown === errorLike;
|
|
19678
|
-
}
|
|
19679
|
-
|
|
19680
|
-
/**
|
|
19681
|
-
* ### .compatibleConstructor(thrown, errorLike)
|
|
19682
|
-
*
|
|
19683
|
-
* Checks if two constructors are compatible.
|
|
19684
|
-
* This function can receive either an error constructor or
|
|
19685
|
-
* an error instance as the `errorLike` argument.
|
|
19686
|
-
* Constructors are compatible if they're the same or if one is
|
|
19687
|
-
* an instance of another.
|
|
19688
|
-
*
|
|
19689
|
-
* @name compatibleConstructor
|
|
19690
|
-
* @param {Error} thrown error
|
|
19691
|
-
* @param {Error|ErrorConstructor} errorLike object to compare against
|
|
19692
|
-
* @namespace Utils
|
|
19693
|
-
* @api public
|
|
19694
|
-
*/
|
|
19695
|
-
|
|
19696
|
-
function compatibleConstructor(thrown, errorLike) {
|
|
19697
|
-
if (errorLike instanceof Error) {
|
|
19698
|
-
// If `errorLike` is an instance of any error we compare their constructors
|
|
19699
|
-
return thrown.constructor === errorLike.constructor || thrown instanceof errorLike.constructor;
|
|
19700
|
-
} else if (errorLike.prototype instanceof Error || errorLike === Error) {
|
|
19701
|
-
// If `errorLike` is a constructor that inherits from Error, we compare `thrown` to `errorLike` directly
|
|
19702
|
-
return thrown.constructor === errorLike || thrown instanceof errorLike;
|
|
19703
|
-
}
|
|
19704
|
-
|
|
19705
|
-
return false;
|
|
19706
|
-
}
|
|
19707
|
-
|
|
19708
|
-
/**
|
|
19709
|
-
* ### .compatibleMessage(thrown, errMatcher)
|
|
19710
|
-
*
|
|
19711
|
-
* Checks if an error's message is compatible with a matcher (String or RegExp).
|
|
19712
|
-
* If the message contains the String or passes the RegExp test,
|
|
19713
|
-
* it is considered compatible.
|
|
19714
|
-
*
|
|
19715
|
-
* @name compatibleMessage
|
|
19716
|
-
* @param {Error} thrown error
|
|
19717
|
-
* @param {String|RegExp} errMatcher to look for into the message
|
|
19718
|
-
* @namespace Utils
|
|
19719
|
-
* @api public
|
|
19720
|
-
*/
|
|
19721
|
-
|
|
19722
|
-
function compatibleMessage(thrown, errMatcher) {
|
|
19723
|
-
var comparisonString = typeof thrown === 'string' ? thrown : thrown.message;
|
|
19724
|
-
if (errMatcher instanceof RegExp) {
|
|
19725
|
-
return errMatcher.test(comparisonString);
|
|
19726
|
-
} else if (typeof errMatcher === 'string') {
|
|
19727
|
-
return comparisonString.indexOf(errMatcher) !== -1; // eslint-disable-line no-magic-numbers
|
|
19728
|
-
}
|
|
19729
|
-
|
|
19730
|
-
return false;
|
|
19731
|
-
}
|
|
19732
|
-
|
|
19733
|
-
/**
|
|
19734
|
-
* ### .getFunctionName(constructorFn)
|
|
19735
|
-
*
|
|
19736
|
-
* Returns the name of a function.
|
|
19737
|
-
* This also includes a polyfill function if `constructorFn.name` is not defined.
|
|
19738
|
-
*
|
|
19739
|
-
* @name getFunctionName
|
|
19740
|
-
* @param {Function} constructorFn
|
|
19741
|
-
* @namespace Utils
|
|
19742
|
-
* @api private
|
|
19743
|
-
*/
|
|
19744
|
-
|
|
19745
|
-
var functionNameMatch = /\s*function(?:\s|\s*\/\*[^(?:*\/)]+\*\/\s*)*([^\(\/]+)/;
|
|
19746
|
-
function getFunctionName(constructorFn) {
|
|
19747
|
-
var name = '';
|
|
19748
|
-
if (typeof constructorFn.name === 'undefined') {
|
|
19749
|
-
// Here we run a polyfill if constructorFn.name is not defined
|
|
19750
|
-
var match = String(constructorFn).match(functionNameMatch);
|
|
19751
|
-
if (match) {
|
|
19752
|
-
name = match[1];
|
|
19753
|
-
}
|
|
19754
|
-
} else {
|
|
19755
|
-
name = constructorFn.name;
|
|
19756
|
-
}
|
|
19757
|
-
|
|
19758
|
-
return name;
|
|
19759
|
-
}
|
|
19760
|
-
|
|
19761
|
-
/**
|
|
19762
|
-
* ### .getConstructorName(errorLike)
|
|
19763
|
-
*
|
|
19764
|
-
* Gets the constructor name for an Error instance or constructor itself.
|
|
19765
|
-
*
|
|
19766
|
-
* @name getConstructorName
|
|
19767
|
-
* @param {Error|ErrorConstructor} errorLike
|
|
19768
|
-
* @namespace Utils
|
|
19769
|
-
* @api public
|
|
19770
|
-
*/
|
|
19771
|
-
|
|
19772
|
-
function getConstructorName(errorLike) {
|
|
19773
|
-
var constructorName = errorLike;
|
|
19774
|
-
if (errorLike instanceof Error) {
|
|
19775
|
-
constructorName = getFunctionName(errorLike.constructor);
|
|
19776
|
-
} else if (typeof errorLike === 'function') {
|
|
19777
|
-
// If `err` is not an instance of Error it is an error constructor itself or another function.
|
|
19778
|
-
// If we've got a common function we get its name, otherwise we may need to create a new instance
|
|
19779
|
-
// of the error just in case it's a poorly-constructed error. Please see chaijs/chai/issues/45 to know more.
|
|
19780
|
-
constructorName = getFunctionName(errorLike).trim() ||
|
|
19781
|
-
getFunctionName(new errorLike()); // eslint-disable-line new-cap
|
|
19782
|
-
}
|
|
19783
|
-
|
|
19784
|
-
return constructorName;
|
|
19785
|
-
}
|
|
19786
|
-
|
|
19787
|
-
/**
|
|
19788
|
-
* ### .getMessage(errorLike)
|
|
19789
|
-
*
|
|
19790
|
-
* Gets the error message from an error.
|
|
19791
|
-
* If `err` is a String itself, we return it.
|
|
19792
|
-
* If the error has no message, we return an empty string.
|
|
19793
|
-
*
|
|
19794
|
-
* @name getMessage
|
|
19795
|
-
* @param {Error|String} errorLike
|
|
19796
|
-
* @namespace Utils
|
|
19797
|
-
* @api public
|
|
19798
|
-
*/
|
|
19799
|
-
|
|
19800
|
-
function getMessage(errorLike) {
|
|
19801
|
-
var msg = '';
|
|
19802
|
-
if (errorLike && errorLike.message) {
|
|
19803
|
-
msg = errorLike.message;
|
|
19804
|
-
} else if (typeof errorLike === 'string') {
|
|
19805
|
-
msg = errorLike;
|
|
19806
|
-
}
|
|
19807
|
-
|
|
19808
|
-
return msg;
|
|
19809
|
-
}
|
|
19810
|
-
|
|
19811
|
-
module.exports = {
|
|
19812
|
-
compatibleInstance: compatibleInstance,
|
|
19813
|
-
compatibleConstructor: compatibleConstructor,
|
|
19814
|
-
compatibleMessage: compatibleMessage,
|
|
19815
|
-
getMessage: getMessage,
|
|
19816
|
-
getConstructorName: getConstructorName,
|
|
19817
|
-
};
|
|
19818
|
-
|
|
19819
|
-
|
|
19820
19637
|
/***/ }),
|
|
19821
19638
|
|
|
19822
19639
|
/***/ "../../common/temp/node_modules/.pnpm/check-error@1.0.3/node_modules/check-error/index.js":
|
|
@@ -21138,8 +20955,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21138
20955
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21139
20956
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
21140
20957
|
/* harmony export */ });
|
|
21141
|
-
/* 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.
|
|
21142
|
-
/* 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.
|
|
20958
|
+
/* 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");
|
|
20959
|
+
/* 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");
|
|
21143
20960
|
|
|
21144
20961
|
|
|
21145
20962
|
|
|
@@ -87514,7 +87331,7 @@ class RealityDataSourceTilesetUrlImpl {
|
|
|
87514
87331
|
return (0,_request_Request__WEBPACK_IMPORTED_MODULE_2__.request)(tileUrl, "json");
|
|
87515
87332
|
}
|
|
87516
87333
|
getTileContentType(url) {
|
|
87517
|
-
return url.endsWith("json") ? "tileset" : "tile";
|
|
87334
|
+
return new URL(url, "https://localhost/").pathname.toLowerCase().endsWith("json") ? "tileset" : "tile";
|
|
87518
87335
|
}
|
|
87519
87336
|
/**
|
|
87520
87337
|
* Gets spatial location and extents of this reality data source
|
|
@@ -98303,7 +98120,7 @@ class GltfParser {
|
|
|
98303
98120
|
if (dracoMeshes.length === 0)
|
|
98304
98121
|
return;
|
|
98305
98122
|
try {
|
|
98306
|
-
const dracoLoader = (await
|
|
98123
|
+
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;
|
|
98307
98124
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
98308
98125
|
}
|
|
98309
98126
|
catch (err) {
|
|
@@ -141417,7 +141234,7 @@ class GltfReader {
|
|
|
141417
141234
|
if (dracoMeshes.length === 0)
|
|
141418
141235
|
return;
|
|
141419
141236
|
try {
|
|
141420
|
-
const dracoLoader = (await
|
|
141237
|
+
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;
|
|
141421
141238
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
141422
141239
|
}
|
|
141423
141240
|
catch (err) {
|
|
@@ -144295,7 +144112,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
144295
144112
|
}
|
|
144296
144113
|
async function decodeDracoPointCloud(buf) {
|
|
144297
144114
|
try {
|
|
144298
|
-
const dracoLoader = (await
|
|
144115
|
+
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;
|
|
144299
144116
|
const mesh = await dracoLoader.parse(buf, {});
|
|
144300
144117
|
if (mesh.topology !== "point-list")
|
|
144301
144118
|
return undefined;
|
|
@@ -280415,7 +280232,7 @@ const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../c
|
|
|
280415
280232
|
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");
|
|
280416
280233
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
280417
280234
|
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");
|
|
280418
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
280235
|
+
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");
|
|
280419
280236
|
class IModelSession {
|
|
280420
280237
|
constructor(iTwinId, imodelId, changesetId) {
|
|
280421
280238
|
this.iTwinId = iTwinId;
|
|
@@ -280507,7 +280324,7 @@ const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../cor
|
|
|
280507
280324
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
280508
280325
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
280509
280326
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.6.1_mdtbcqczpmeuv6yjzfaigjndwi/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
280510
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@3.1.
|
|
280327
|
+
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");
|
|
280511
280328
|
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");
|
|
280512
280329
|
const Settings_1 = __webpack_require__(/*! ../../common/Settings */ "./lib/common/Settings.js");
|
|
280513
280330
|
const SideChannels_1 = __webpack_require__(/*! ../../common/SideChannels */ "./lib/common/SideChannels.js");
|
|
@@ -280555,7 +280372,7 @@ class TestContext {
|
|
|
280555
280372
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
280556
280373
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
280557
280374
|
await core_frontend_1.NoRenderApp.startup({
|
|
280558
|
-
applicationVersion: "4.3.0-dev.
|
|
280375
|
+
applicationVersion: "4.3.0-dev.2",
|
|
280559
280376
|
applicationId: this.settings.gprid,
|
|
280560
280377
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
280561
280378
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -296263,9 +296080,9 @@ const gBase64 = {
|
|
|
296263
296080
|
|
|
296264
296081
|
/***/ }),
|
|
296265
296082
|
|
|
296266
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296083
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
296267
296084
|
/*!******************************************************************************************************************************!*\
|
|
296268
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296085
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
296269
296086
|
\******************************************************************************************************************************/
|
|
296270
296087
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296271
296088
|
|
|
@@ -296282,9 +296099,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
296282
296099
|
|
|
296283
296100
|
/***/ }),
|
|
296284
296101
|
|
|
296285
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296102
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
296286
296103
|
/*!****************************************************************************************************************************!*\
|
|
296287
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296104
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
296288
296105
|
\****************************************************************************************************************************/
|
|
296289
296106
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296290
296107
|
|
|
@@ -296299,9 +296116,9 @@ function _arrayWithHoles(arr) {
|
|
|
296299
296116
|
|
|
296300
296117
|
/***/ }),
|
|
296301
296118
|
|
|
296302
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296119
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
296303
296120
|
/*!***********************************************************************************************************************************!*\
|
|
296304
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296121
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
296305
296122
|
\***********************************************************************************************************************************/
|
|
296306
296123
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296307
296124
|
|
|
@@ -296319,9 +296136,9 @@ function _assertThisInitialized(self) {
|
|
|
296319
296136
|
|
|
296320
296137
|
/***/ }),
|
|
296321
296138
|
|
|
296322
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296139
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
296323
296140
|
/*!****************************************************************************************************************************!*\
|
|
296324
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296141
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
296325
296142
|
\****************************************************************************************************************************/
|
|
296326
296143
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296327
296144
|
|
|
@@ -296338,9 +296155,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
296338
296155
|
|
|
296339
296156
|
/***/ }),
|
|
296340
296157
|
|
|
296341
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296158
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
296342
296159
|
/*!*************************************************************************************************************************!*\
|
|
296343
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296160
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
296344
296161
|
\*************************************************************************************************************************/
|
|
296345
296162
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296346
296163
|
|
|
@@ -296349,7 +296166,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296349
296166
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296350
296167
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
296351
296168
|
/* harmony export */ });
|
|
296352
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296169
|
+
/* 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");
|
|
296353
296170
|
|
|
296354
296171
|
function _defineProperties(target, props) {
|
|
296355
296172
|
for (var i = 0; i < props.length; i++) {
|
|
@@ -296371,9 +296188,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
296371
296188
|
|
|
296372
296189
|
/***/ }),
|
|
296373
296190
|
|
|
296374
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296191
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
296375
296192
|
/*!****************************************************************************************************************************!*\
|
|
296376
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296193
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
296377
296194
|
\****************************************************************************************************************************/
|
|
296378
296195
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296379
296196
|
|
|
@@ -296382,7 +296199,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296382
296199
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296383
296200
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
296384
296201
|
/* harmony export */ });
|
|
296385
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296202
|
+
/* 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");
|
|
296386
296203
|
|
|
296387
296204
|
function _defineProperty(obj, key, value) {
|
|
296388
296205
|
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
@@ -296401,9 +296218,9 @@ function _defineProperty(obj, key, value) {
|
|
|
296401
296218
|
|
|
296402
296219
|
/***/ }),
|
|
296403
296220
|
|
|
296404
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296221
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
296405
296222
|
/*!****************************************************************************************************************************!*\
|
|
296406
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296223
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
296407
296224
|
\****************************************************************************************************************************/
|
|
296408
296225
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296409
296226
|
|
|
@@ -296421,9 +296238,9 @@ function _getPrototypeOf(o) {
|
|
|
296421
296238
|
|
|
296422
296239
|
/***/ }),
|
|
296423
296240
|
|
|
296424
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296241
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
296425
296242
|
/*!**********************************************************************************************************************!*\
|
|
296426
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296243
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
296427
296244
|
\**********************************************************************************************************************/
|
|
296428
296245
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296429
296246
|
|
|
@@ -296432,7 +296249,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296432
296249
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296433
296250
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
296434
296251
|
/* harmony export */ });
|
|
296435
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296252
|
+
/* 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");
|
|
296436
296253
|
|
|
296437
296254
|
function _inherits(subClass, superClass) {
|
|
296438
296255
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -296453,9 +296270,9 @@ function _inherits(subClass, superClass) {
|
|
|
296453
296270
|
|
|
296454
296271
|
/***/ }),
|
|
296455
296272
|
|
|
296456
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296273
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
296457
296274
|
/*!*****************************************************************************************************************************!*\
|
|
296458
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296275
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
296459
296276
|
\*****************************************************************************************************************************/
|
|
296460
296277
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296461
296278
|
|
|
@@ -296470,9 +296287,9 @@ function _iterableToArray(iter) {
|
|
|
296470
296287
|
|
|
296471
296288
|
/***/ }),
|
|
296472
296289
|
|
|
296473
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296290
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
296474
296291
|
/*!*****************************************************************************************************************************!*\
|
|
296475
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296292
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
296476
296293
|
\*****************************************************************************************************************************/
|
|
296477
296294
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296478
296295
|
|
|
@@ -296487,9 +296304,9 @@ function _nonIterableRest() {
|
|
|
296487
296304
|
|
|
296488
296305
|
/***/ }),
|
|
296489
296306
|
|
|
296490
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296307
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
296491
296308
|
/*!***************************************************************************************************************************************!*\
|
|
296492
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296309
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
296493
296310
|
\***************************************************************************************************************************************/
|
|
296494
296311
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296495
296312
|
|
|
@@ -296498,8 +296315,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296498
296315
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296499
296316
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
296500
296317
|
/* harmony export */ });
|
|
296501
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296502
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296318
|
+
/* 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");
|
|
296319
|
+
/* 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");
|
|
296503
296320
|
|
|
296504
296321
|
|
|
296505
296322
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -296513,9 +296330,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
296513
296330
|
|
|
296514
296331
|
/***/ }),
|
|
296515
296332
|
|
|
296516
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296333
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
296517
296334
|
/*!****************************************************************************************************************************!*\
|
|
296518
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296335
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
296519
296336
|
\****************************************************************************************************************************/
|
|
296520
296337
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296521
296338
|
|
|
@@ -296534,9 +296351,9 @@ function _setPrototypeOf(o, p) {
|
|
|
296534
296351
|
|
|
296535
296352
|
/***/ }),
|
|
296536
296353
|
|
|
296537
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296354
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
296538
296355
|
/*!*********************************************************************************************************************!*\
|
|
296539
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296356
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
296540
296357
|
\*********************************************************************************************************************/
|
|
296541
296358
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296542
296359
|
|
|
@@ -296545,10 +296362,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296545
296362
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296546
296363
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
296547
296364
|
/* harmony export */ });
|
|
296548
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296549
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296550
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296551
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296365
|
+
/* 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");
|
|
296366
|
+
/* 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");
|
|
296367
|
+
/* 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");
|
|
296368
|
+
/* 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");
|
|
296552
296369
|
|
|
296553
296370
|
|
|
296554
296371
|
|
|
@@ -296559,9 +296376,9 @@ function _toArray(arr) {
|
|
|
296559
296376
|
|
|
296560
296377
|
/***/ }),
|
|
296561
296378
|
|
|
296562
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296379
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
296563
296380
|
/*!*************************************************************************************************************************!*\
|
|
296564
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296381
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
296565
296382
|
\*************************************************************************************************************************/
|
|
296566
296383
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296567
296384
|
|
|
@@ -296570,7 +296387,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296570
296387
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296571
296388
|
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
296572
296389
|
/* harmony export */ });
|
|
296573
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296390
|
+
/* 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");
|
|
296574
296391
|
|
|
296575
296392
|
function _toPrimitive(input, hint) {
|
|
296576
296393
|
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
@@ -296585,9 +296402,9 @@ function _toPrimitive(input, hint) {
|
|
|
296585
296402
|
|
|
296586
296403
|
/***/ }),
|
|
296587
296404
|
|
|
296588
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296405
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
296589
296406
|
/*!***************************************************************************************************************************!*\
|
|
296590
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296407
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
296591
296408
|
\***************************************************************************************************************************/
|
|
296592
296409
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296593
296410
|
|
|
@@ -296596,8 +296413,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296596
296413
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296597
296414
|
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
296598
296415
|
/* harmony export */ });
|
|
296599
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296600
|
-
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296416
|
+
/* 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");
|
|
296417
|
+
/* 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");
|
|
296601
296418
|
|
|
296602
296419
|
|
|
296603
296420
|
function _toPropertyKey(arg) {
|
|
@@ -296607,9 +296424,9 @@ function _toPropertyKey(arg) {
|
|
|
296607
296424
|
|
|
296608
296425
|
/***/ }),
|
|
296609
296426
|
|
|
296610
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296427
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
296611
296428
|
/*!********************************************************************************************************************!*\
|
|
296612
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296429
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
296613
296430
|
\********************************************************************************************************************/
|
|
296614
296431
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296615
296432
|
|
|
@@ -296618,21 +296435,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296618
296435
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296619
296436
|
/* harmony export */ "default": () => (/* binding */ _typeof)
|
|
296620
296437
|
/* harmony export */ });
|
|
296621
|
-
function _typeof(
|
|
296438
|
+
function _typeof(o) {
|
|
296622
296439
|
"@babel/helpers - typeof";
|
|
296623
296440
|
|
|
296624
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (
|
|
296625
|
-
return typeof
|
|
296626
|
-
} : function (
|
|
296627
|
-
return
|
|
296628
|
-
}, _typeof(
|
|
296441
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
296442
|
+
return typeof o;
|
|
296443
|
+
} : function (o) {
|
|
296444
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
296445
|
+
}, _typeof(o);
|
|
296629
296446
|
}
|
|
296630
296447
|
|
|
296631
296448
|
/***/ }),
|
|
296632
296449
|
|
|
296633
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296450
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
296634
296451
|
/*!****************************************************************************************************************************************!*\
|
|
296635
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296452
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
296636
296453
|
\****************************************************************************************************************************************/
|
|
296637
296454
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296638
296455
|
|
|
@@ -296641,7 +296458,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296641
296458
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296642
296459
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
296643
296460
|
/* harmony export */ });
|
|
296644
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296461
|
+
/* 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");
|
|
296645
296462
|
|
|
296646
296463
|
function _unsupportedIterableToArray(o, minLen) {
|
|
296647
296464
|
if (!o) return;
|
|
@@ -297075,15 +296892,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
297075
296892
|
/* harmony export */ t: () => (/* binding */ t),
|
|
297076
296893
|
/* harmony export */ use: () => (/* binding */ use)
|
|
297077
296894
|
/* harmony export */ });
|
|
297078
|
-
/* 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.
|
|
297079
|
-
/* 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.
|
|
297080
|
-
/* 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.
|
|
297081
|
-
/* 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.
|
|
297082
|
-
/* 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.
|
|
297083
|
-
/* 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.
|
|
297084
|
-
/* 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.
|
|
297085
|
-
/* 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.
|
|
297086
|
-
/* 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.
|
|
296895
|
+
/* 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");
|
|
296896
|
+
/* 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");
|
|
296897
|
+
/* 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");
|
|
296898
|
+
/* 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");
|
|
296899
|
+
/* 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");
|
|
296900
|
+
/* 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");
|
|
296901
|
+
/* 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");
|
|
296902
|
+
/* 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");
|
|
296903
|
+
/* 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");
|
|
297087
296904
|
|
|
297088
296905
|
|
|
297089
296906
|
|
|
@@ -299963,7 +299780,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
299963
299780
|
/***/ ((module) => {
|
|
299964
299781
|
|
|
299965
299782
|
"use strict";
|
|
299966
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.3.0-dev.
|
|
299783
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.3.0-dev.2","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.2","@itwin/core-bentley":"workspace:^4.3.0-dev.2","@itwin/core-common":"workspace:^4.3.0-dev.2","@itwin/core-geometry":"workspace:^4.3.0-dev.2","@itwin/core-orbitgt":"workspace:^4.3.0-dev.2","@itwin/core-quantity":"workspace:^4.3.0-dev.2"},"//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"}}');
|
|
299967
299784
|
|
|
299968
299785
|
/***/ }),
|
|
299969
299786
|
|