@itwin/rpcinterface-full-stack-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 +133 -307
- 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 +14 -14
- 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) {
|
|
@@ -103416,6 +103233,7 @@ const UNIT_DATA = [
|
|
|
103416
103233
|
{ name: "Units.SQ_FT", phenomenon: "Units.AREA", system: "Units.USCUSTOM", conversion: { numerator: 1.0, denominator: .09290304, offset: 0.0 }, displayLabel: "ft²" },
|
|
103417
103234
|
{ 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)" },
|
|
103418
103235
|
{ name: "Units.SQ_M", phenomenon: "Units.AREA", system: "Units.SI", conversion: { numerator: 1.0, denominator: 1.0, offset: 0.0 }, displayLabel: "m²" },
|
|
103236
|
+
{ name: "Units.SQ_KM", phenomenon: "Units.AREA", system: "Units.SI", conversion: { numerator: 1.0, denominator: 1000000.0, offset: 0.0 }, displayLabel: "km²" },
|
|
103419
103237
|
// conversion => specified unit to base unit m³
|
|
103420
103238
|
{ name: "Units.CUB_FT", phenomenon: "Units.VOLUME", system: "Units.USCUSTOM", conversion: { numerator: 1.0, denominator: 0.028316847, offset: 0.0 }, displayLabel: "ft³" },
|
|
103421
103239
|
{ name: "Units.CUB_US_SURVEY_FT", phenomenon: "Units.VOLUME", system: "Units.USSURVEY", conversion: { numerator: 1, denominator: 0.0283170164937591, offset: 0.0 }, displayLabel: "ft³" },
|
|
@@ -139644,8 +139462,8 @@ class ContextShareProvider {
|
|
|
139644
139462
|
// Not a valid URL for Context share
|
|
139645
139463
|
return false;
|
|
139646
139464
|
}
|
|
139647
|
-
// If api.bentley.com/realitydata is used, it is context share
|
|
139648
|
-
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata"))
|
|
139465
|
+
// If api.bentley.com/realitydata or api.bentley.com/reality-management is used, it is context share
|
|
139466
|
+
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata") || tilesetUrl.toLowerCase().includes("api.bentley.com/reality-management/reality-data"))
|
|
139649
139467
|
return true;
|
|
139650
139468
|
// detect if it is a RDS url
|
|
139651
139469
|
const formattedUrl1 = attUrl.pathname.replace(/~2F/g, "/").replace(/\\/g, "/");
|
|
@@ -139675,16 +139493,24 @@ class ContextShareProvider {
|
|
|
139675
139493
|
// Not a valid URL and not equal, probably $cesiumAsset
|
|
139676
139494
|
return invalidUrlInfo;
|
|
139677
139495
|
}
|
|
139678
|
-
// If api.bentley.com/realitydata is used, it is context share
|
|
139679
|
-
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata")) {
|
|
139496
|
+
// If api.bentley.com/realitydata or api.bentley.com/reality-management is used, it is context share
|
|
139497
|
+
if (tilesetUrl.toLowerCase().includes("api.bentley.com/realitydata") || tilesetUrl.toLowerCase().includes("api.bentley.com/reality-management/reality-data")) {
|
|
139680
139498
|
const lcTilesetUrl = tilesetUrl.toLowerCase();
|
|
139681
139499
|
// NOTICE: We assume it is a ThreeDTile BUT this could technically be a point cloud (OPC).
|
|
139682
139500
|
// This method was used in typical workflow where format was always ThreeDTile and is here for legacy support.
|
|
139683
139501
|
// 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)
|
|
139684
139502
|
const format = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityDataFormat.ThreeDTile;
|
|
139685
|
-
|
|
139503
|
+
let indexId = -1;
|
|
139504
|
+
let indexProjectId = -1;
|
|
139505
|
+
if (tilesetUrl.toLowerCase().includes("reality-management/reality-data")) {
|
|
139506
|
+
indexId = lcTilesetUrl.indexOf("reality-management/reality-data/") + 32; // length of "reality-management/reality-data/" = 32;
|
|
139507
|
+
indexProjectId = lcTilesetUrl.indexOf("itwinid=") + 8; // length of "itwinid=" = 8;
|
|
139508
|
+
}
|
|
139509
|
+
else if (tilesetUrl.toLowerCase().includes("realitydata")) {
|
|
139510
|
+
indexId = lcTilesetUrl.indexOf("realitydata/") + 12; // length of "realitydata/" = 12;
|
|
139511
|
+
indexProjectId = lcTilesetUrl.indexOf("projectid=") + 10; // length of "projectid=" = 10;
|
|
139512
|
+
}
|
|
139686
139513
|
const id = lcTilesetUrl.substring(indexId, _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Guid.empty.length + indexId);
|
|
139687
|
-
const indexProjectId = lcTilesetUrl.indexOf("projectid=") + 10; // lenght of "projectid=" = 10;
|
|
139688
139514
|
let projectId;
|
|
139689
139515
|
if (indexProjectId && indexProjectId > 0)
|
|
139690
139516
|
projectId = lcTilesetUrl.substring(indexProjectId, _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Guid.empty.length + indexProjectId);
|
|
@@ -141417,7 +141243,7 @@ class GltfReader {
|
|
|
141417
141243
|
if (dracoMeshes.length === 0)
|
|
141418
141244
|
return;
|
|
141419
141245
|
try {
|
|
141420
|
-
const dracoLoader = (await
|
|
141246
|
+
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
141247
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
141422
141248
|
}
|
|
141423
141249
|
catch (err) {
|
|
@@ -144295,7 +144121,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
144295
144121
|
}
|
|
144296
144122
|
async function decodeDracoPointCloud(buf) {
|
|
144297
144123
|
try {
|
|
144298
|
-
const dracoLoader = (await
|
|
144124
|
+
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
144125
|
const mesh = await dracoLoader.parse(buf, {});
|
|
144300
144126
|
if (mesh.topology !== "point-list")
|
|
144301
144127
|
return undefined;
|
|
@@ -280415,7 +280241,7 @@ const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../c
|
|
|
280415
280241
|
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
280242
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
280417
280243
|
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.
|
|
280244
|
+
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
280245
|
class IModelSession {
|
|
280420
280246
|
constructor(iTwinId, imodelId, changesetId) {
|
|
280421
280247
|
this.iTwinId = iTwinId;
|
|
@@ -280507,7 +280333,7 @@ const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../cor
|
|
|
280507
280333
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
280508
280334
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
280509
280335
|
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.
|
|
280336
|
+
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
280337
|
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
280338
|
const Settings_1 = __webpack_require__(/*! ../../common/Settings */ "./lib/common/Settings.js");
|
|
280513
280339
|
const SideChannels_1 = __webpack_require__(/*! ../../common/SideChannels */ "./lib/common/SideChannels.js");
|
|
@@ -280555,7 +280381,7 @@ class TestContext {
|
|
|
280555
280381
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
280556
280382
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
280557
280383
|
await core_frontend_1.NoRenderApp.startup({
|
|
280558
|
-
applicationVersion: "4.3.0-dev.
|
|
280384
|
+
applicationVersion: "4.3.0-dev.4",
|
|
280559
280385
|
applicationId: this.settings.gprid,
|
|
280560
280386
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
280561
280387
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -296263,9 +296089,9 @@ const gBase64 = {
|
|
|
296263
296089
|
|
|
296264
296090
|
/***/ }),
|
|
296265
296091
|
|
|
296266
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296092
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
296267
296093
|
/*!******************************************************************************************************************************!*\
|
|
296268
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296094
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
296269
296095
|
\******************************************************************************************************************************/
|
|
296270
296096
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296271
296097
|
|
|
@@ -296282,9 +296108,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
296282
296108
|
|
|
296283
296109
|
/***/ }),
|
|
296284
296110
|
|
|
296285
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296111
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
296286
296112
|
/*!****************************************************************************************************************************!*\
|
|
296287
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296113
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
296288
296114
|
\****************************************************************************************************************************/
|
|
296289
296115
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296290
296116
|
|
|
@@ -296299,9 +296125,9 @@ function _arrayWithHoles(arr) {
|
|
|
296299
296125
|
|
|
296300
296126
|
/***/ }),
|
|
296301
296127
|
|
|
296302
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296128
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
296303
296129
|
/*!***********************************************************************************************************************************!*\
|
|
296304
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296130
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
296305
296131
|
\***********************************************************************************************************************************/
|
|
296306
296132
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296307
296133
|
|
|
@@ -296319,9 +296145,9 @@ function _assertThisInitialized(self) {
|
|
|
296319
296145
|
|
|
296320
296146
|
/***/ }),
|
|
296321
296147
|
|
|
296322
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296148
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
296323
296149
|
/*!****************************************************************************************************************************!*\
|
|
296324
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296150
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
296325
296151
|
\****************************************************************************************************************************/
|
|
296326
296152
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296327
296153
|
|
|
@@ -296338,9 +296164,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
296338
296164
|
|
|
296339
296165
|
/***/ }),
|
|
296340
296166
|
|
|
296341
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296167
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
296342
296168
|
/*!*************************************************************************************************************************!*\
|
|
296343
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296169
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
296344
296170
|
\*************************************************************************************************************************/
|
|
296345
296171
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296346
296172
|
|
|
@@ -296349,7 +296175,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296349
296175
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296350
296176
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
296351
296177
|
/* harmony export */ });
|
|
296352
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296178
|
+
/* 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
296179
|
|
|
296354
296180
|
function _defineProperties(target, props) {
|
|
296355
296181
|
for (var i = 0; i < props.length; i++) {
|
|
@@ -296371,9 +296197,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
296371
296197
|
|
|
296372
296198
|
/***/ }),
|
|
296373
296199
|
|
|
296374
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296200
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
296375
296201
|
/*!****************************************************************************************************************************!*\
|
|
296376
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296202
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
296377
296203
|
\****************************************************************************************************************************/
|
|
296378
296204
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296379
296205
|
|
|
@@ -296382,7 +296208,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296382
296208
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296383
296209
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
296384
296210
|
/* harmony export */ });
|
|
296385
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296211
|
+
/* 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
296212
|
|
|
296387
296213
|
function _defineProperty(obj, key, value) {
|
|
296388
296214
|
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
@@ -296401,9 +296227,9 @@ function _defineProperty(obj, key, value) {
|
|
|
296401
296227
|
|
|
296402
296228
|
/***/ }),
|
|
296403
296229
|
|
|
296404
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296230
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
296405
296231
|
/*!****************************************************************************************************************************!*\
|
|
296406
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296232
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
296407
296233
|
\****************************************************************************************************************************/
|
|
296408
296234
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296409
296235
|
|
|
@@ -296421,9 +296247,9 @@ function _getPrototypeOf(o) {
|
|
|
296421
296247
|
|
|
296422
296248
|
/***/ }),
|
|
296423
296249
|
|
|
296424
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296250
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
296425
296251
|
/*!**********************************************************************************************************************!*\
|
|
296426
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296252
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
296427
296253
|
\**********************************************************************************************************************/
|
|
296428
296254
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296429
296255
|
|
|
@@ -296432,7 +296258,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296432
296258
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296433
296259
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
296434
296260
|
/* harmony export */ });
|
|
296435
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296261
|
+
/* 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
296262
|
|
|
296437
296263
|
function _inherits(subClass, superClass) {
|
|
296438
296264
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -296453,9 +296279,9 @@ function _inherits(subClass, superClass) {
|
|
|
296453
296279
|
|
|
296454
296280
|
/***/ }),
|
|
296455
296281
|
|
|
296456
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296282
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
296457
296283
|
/*!*****************************************************************************************************************************!*\
|
|
296458
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296284
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
296459
296285
|
\*****************************************************************************************************************************/
|
|
296460
296286
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296461
296287
|
|
|
@@ -296470,9 +296296,9 @@ function _iterableToArray(iter) {
|
|
|
296470
296296
|
|
|
296471
296297
|
/***/ }),
|
|
296472
296298
|
|
|
296473
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296299
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
296474
296300
|
/*!*****************************************************************************************************************************!*\
|
|
296475
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296301
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
296476
296302
|
\*****************************************************************************************************************************/
|
|
296477
296303
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296478
296304
|
|
|
@@ -296487,9 +296313,9 @@ function _nonIterableRest() {
|
|
|
296487
296313
|
|
|
296488
296314
|
/***/ }),
|
|
296489
296315
|
|
|
296490
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296316
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
296491
296317
|
/*!***************************************************************************************************************************************!*\
|
|
296492
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296318
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
296493
296319
|
\***************************************************************************************************************************************/
|
|
296494
296320
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296495
296321
|
|
|
@@ -296498,8 +296324,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296498
296324
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296499
296325
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
296500
296326
|
/* 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.
|
|
296327
|
+
/* 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");
|
|
296328
|
+
/* 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
296329
|
|
|
296504
296330
|
|
|
296505
296331
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -296513,9 +296339,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
296513
296339
|
|
|
296514
296340
|
/***/ }),
|
|
296515
296341
|
|
|
296516
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296342
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
296517
296343
|
/*!****************************************************************************************************************************!*\
|
|
296518
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296344
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
296519
296345
|
\****************************************************************************************************************************/
|
|
296520
296346
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296521
296347
|
|
|
@@ -296534,9 +296360,9 @@ function _setPrototypeOf(o, p) {
|
|
|
296534
296360
|
|
|
296535
296361
|
/***/ }),
|
|
296536
296362
|
|
|
296537
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296363
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
296538
296364
|
/*!*********************************************************************************************************************!*\
|
|
296539
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296365
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
296540
296366
|
\*********************************************************************************************************************/
|
|
296541
296367
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296542
296368
|
|
|
@@ -296545,10 +296371,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296545
296371
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296546
296372
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
296547
296373
|
/* 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.
|
|
296374
|
+
/* 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");
|
|
296375
|
+
/* 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");
|
|
296376
|
+
/* 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");
|
|
296377
|
+
/* 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
296378
|
|
|
296553
296379
|
|
|
296554
296380
|
|
|
@@ -296559,9 +296385,9 @@ function _toArray(arr) {
|
|
|
296559
296385
|
|
|
296560
296386
|
/***/ }),
|
|
296561
296387
|
|
|
296562
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296388
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
296563
296389
|
/*!*************************************************************************************************************************!*\
|
|
296564
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296390
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
296565
296391
|
\*************************************************************************************************************************/
|
|
296566
296392
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296567
296393
|
|
|
@@ -296570,7 +296396,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296570
296396
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296571
296397
|
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
296572
296398
|
/* harmony export */ });
|
|
296573
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296399
|
+
/* 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
296400
|
|
|
296575
296401
|
function _toPrimitive(input, hint) {
|
|
296576
296402
|
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
@@ -296585,9 +296411,9 @@ function _toPrimitive(input, hint) {
|
|
|
296585
296411
|
|
|
296586
296412
|
/***/ }),
|
|
296587
296413
|
|
|
296588
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296414
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
296589
296415
|
/*!***************************************************************************************************************************!*\
|
|
296590
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296416
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
296591
296417
|
\***************************************************************************************************************************/
|
|
296592
296418
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296593
296419
|
|
|
@@ -296596,8 +296422,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296596
296422
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296597
296423
|
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
296598
296424
|
/* 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.
|
|
296425
|
+
/* 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");
|
|
296426
|
+
/* 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
296427
|
|
|
296602
296428
|
|
|
296603
296429
|
function _toPropertyKey(arg) {
|
|
@@ -296607,9 +296433,9 @@ function _toPropertyKey(arg) {
|
|
|
296607
296433
|
|
|
296608
296434
|
/***/ }),
|
|
296609
296435
|
|
|
296610
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296436
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
296611
296437
|
/*!********************************************************************************************************************!*\
|
|
296612
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296438
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
296613
296439
|
\********************************************************************************************************************/
|
|
296614
296440
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296615
296441
|
|
|
@@ -296618,21 +296444,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296618
296444
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296619
296445
|
/* harmony export */ "default": () => (/* binding */ _typeof)
|
|
296620
296446
|
/* harmony export */ });
|
|
296621
|
-
function _typeof(
|
|
296447
|
+
function _typeof(o) {
|
|
296622
296448
|
"@babel/helpers - typeof";
|
|
296623
296449
|
|
|
296624
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (
|
|
296625
|
-
return typeof
|
|
296626
|
-
} : function (
|
|
296627
|
-
return
|
|
296628
|
-
}, _typeof(
|
|
296450
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
296451
|
+
return typeof o;
|
|
296452
|
+
} : function (o) {
|
|
296453
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
296454
|
+
}, _typeof(o);
|
|
296629
296455
|
}
|
|
296630
296456
|
|
|
296631
296457
|
/***/ }),
|
|
296632
296458
|
|
|
296633
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296459
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
296634
296460
|
/*!****************************************************************************************************************************************!*\
|
|
296635
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296461
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.1/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
296636
296462
|
\****************************************************************************************************************************************/
|
|
296637
296463
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
296638
296464
|
|
|
@@ -296641,7 +296467,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
296641
296467
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
296642
296468
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
296643
296469
|
/* harmony export */ });
|
|
296644
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
296470
|
+
/* 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
296471
|
|
|
296646
296472
|
function _unsupportedIterableToArray(o, minLen) {
|
|
296647
296473
|
if (!o) return;
|
|
@@ -297075,15 +296901,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
297075
296901
|
/* harmony export */ t: () => (/* binding */ t),
|
|
297076
296902
|
/* harmony export */ use: () => (/* binding */ use)
|
|
297077
296903
|
/* 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.
|
|
296904
|
+
/* 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");
|
|
296905
|
+
/* 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");
|
|
296906
|
+
/* 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");
|
|
296907
|
+
/* 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");
|
|
296908
|
+
/* 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");
|
|
296909
|
+
/* 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");
|
|
296910
|
+
/* 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");
|
|
296911
|
+
/* 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");
|
|
296912
|
+
/* 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
296913
|
|
|
297088
296914
|
|
|
297089
296915
|
|
|
@@ -299963,7 +299789,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
299963
299789
|
/***/ ((module) => {
|
|
299964
299790
|
|
|
299965
299791
|
"use strict";
|
|
299966
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.3.0-dev.
|
|
299792
|
+
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"}}');
|
|
299967
299793
|
|
|
299968
299794
|
/***/ }),
|
|
299969
299795
|
|