@itwin/rpcinterface-full-stack-tests 3.5.0-dev.61 → 3.5.0-dev.63
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/{_554f.bundled-tests.js → _cb67.bundled-tests.js} +3 -3
- package/lib/dist/_cb67.bundled-tests.js.map +1 -0
- package/lib/dist/bundled-tests.js +1127 -734
- 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/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js +84 -69
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js.map +1 -1
- package/lib/dist/{vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_10_node_modules_loaders_gl_draco_d-13469a.bundled-tests.js → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815.bundled-tests.js} +72 -72
- package/lib/dist/{vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_10_node_modules_loaders_gl_draco_d-13469a.bundled-tests.js.map → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815.bundled-tests.js.map} +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +14 -14
- package/lib/dist/_554f.bundled-tests.js.map +0 -1
|
@@ -21,46 +21,46 @@
|
|
|
21
21
|
|
|
22
22
|
/***/ }),
|
|
23
23
|
|
|
24
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
24
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
|
|
25
25
|
/*!********************************************************************************************************************!*\
|
|
26
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
26
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/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
|
/***/ }),
|
|
@@ -2772,7 +2772,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
|
|
|
2772
2772
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2773
2773
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
2774
2774
|
*--------------------------------------------------------------------------------------------*/
|
|
2775
|
-
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
2775
|
+
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
|
|
2776
2776
|
// Shared by both the frontend and backend side of the tests
|
|
2777
2777
|
exports.getTokenCallbackName = "getToken";
|
|
2778
2778
|
async function getAccessTokenFromBackend(user, oidcConfig) {
|
|
@@ -9709,9 +9709,9 @@ if ($defineProperty) {
|
|
|
9709
9709
|
|
|
9710
9710
|
/***/ }),
|
|
9711
9711
|
|
|
9712
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
9712
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js":
|
|
9713
9713
|
/*!************************************************************************************************************************************!*\
|
|
9714
|
-
!*** ../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
9714
|
+
!*** ../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js ***!
|
|
9715
9715
|
\************************************************************************************************************************************/
|
|
9716
9716
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9717
9717
|
|
|
@@ -10081,20 +10081,20 @@ module.exports.transformAsserterArgs = values => values;
|
|
|
10081
10081
|
|
|
10082
10082
|
/***/ }),
|
|
10083
10083
|
|
|
10084
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10084
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js":
|
|
10085
10085
|
/*!**********************************************************************************!*\
|
|
10086
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10086
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js ***!
|
|
10087
10087
|
\**********************************************************************************/
|
|
10088
10088
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
10089
10089
|
|
|
10090
|
-
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10090
|
+
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
10091
10091
|
|
|
10092
10092
|
|
|
10093
10093
|
/***/ }),
|
|
10094
10094
|
|
|
10095
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10095
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js":
|
|
10096
10096
|
/*!*************************************************************************************!*\
|
|
10097
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10097
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js ***!
|
|
10098
10098
|
\*************************************************************************************/
|
|
10099
10099
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
10100
10100
|
|
|
@@ -10122,7 +10122,7 @@ exports.AssertionError = __webpack_require__(/*! assertion-error */ "../../commo
|
|
|
10122
10122
|
* Utils for plugins (not exported)
|
|
10123
10123
|
*/
|
|
10124
10124
|
|
|
10125
|
-
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10125
|
+
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js");
|
|
10126
10126
|
|
|
10127
10127
|
/**
|
|
10128
10128
|
* # .use(function)
|
|
@@ -10153,50 +10153,50 @@ exports.util = util;
|
|
|
10153
10153
|
* Configuration
|
|
10154
10154
|
*/
|
|
10155
10155
|
|
|
10156
|
-
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10156
|
+
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
10157
10157
|
exports.config = config;
|
|
10158
10158
|
|
|
10159
10159
|
/*!
|
|
10160
10160
|
* Primary `Assertion` prototype
|
|
10161
10161
|
*/
|
|
10162
10162
|
|
|
10163
|
-
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10163
|
+
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js");
|
|
10164
10164
|
exports.use(assertion);
|
|
10165
10165
|
|
|
10166
10166
|
/*!
|
|
10167
10167
|
* Core Assertions
|
|
10168
10168
|
*/
|
|
10169
10169
|
|
|
10170
|
-
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10170
|
+
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js");
|
|
10171
10171
|
exports.use(core);
|
|
10172
10172
|
|
|
10173
10173
|
/*!
|
|
10174
10174
|
* Expect interface
|
|
10175
10175
|
*/
|
|
10176
10176
|
|
|
10177
|
-
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10177
|
+
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js");
|
|
10178
10178
|
exports.use(expect);
|
|
10179
10179
|
|
|
10180
10180
|
/*!
|
|
10181
10181
|
* Should interface
|
|
10182
10182
|
*/
|
|
10183
10183
|
|
|
10184
|
-
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10184
|
+
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js");
|
|
10185
10185
|
exports.use(should);
|
|
10186
10186
|
|
|
10187
10187
|
/*!
|
|
10188
10188
|
* Assert interface
|
|
10189
10189
|
*/
|
|
10190
10190
|
|
|
10191
|
-
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10191
|
+
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js");
|
|
10192
10192
|
exports.use(assert);
|
|
10193
10193
|
|
|
10194
10194
|
|
|
10195
10195
|
/***/ }),
|
|
10196
10196
|
|
|
10197
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10197
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js":
|
|
10198
10198
|
/*!***********************************************************************************************!*\
|
|
10199
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10199
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js ***!
|
|
10200
10200
|
\***********************************************************************************************/
|
|
10201
10201
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
10202
10202
|
|
|
@@ -10207,7 +10207,7 @@ exports.use(assert);
|
|
|
10207
10207
|
* MIT Licensed
|
|
10208
10208
|
*/
|
|
10209
10209
|
|
|
10210
|
-
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10210
|
+
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
10211
10211
|
|
|
10212
10212
|
module.exports = function (_chai, util) {
|
|
10213
10213
|
/*!
|
|
@@ -10379,9 +10379,9 @@ module.exports = function (_chai, util) {
|
|
|
10379
10379
|
|
|
10380
10380
|
/***/ }),
|
|
10381
10381
|
|
|
10382
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10382
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js":
|
|
10383
10383
|
/*!********************************************************************************************!*\
|
|
10384
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10384
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js ***!
|
|
10385
10385
|
\********************************************************************************************/
|
|
10386
10386
|
/***/ ((module) => {
|
|
10387
10387
|
|
|
@@ -10483,9 +10483,9 @@ module.exports = {
|
|
|
10483
10483
|
|
|
10484
10484
|
/***/ }),
|
|
10485
10485
|
|
|
10486
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10486
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js":
|
|
10487
10487
|
/*!*****************************************************************************************************!*\
|
|
10488
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10488
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js ***!
|
|
10489
10489
|
\*****************************************************************************************************/
|
|
10490
10490
|
/***/ ((module) => {
|
|
10491
10491
|
|
|
@@ -14346,9 +14346,9 @@ module.exports = function (chai, _) {
|
|
|
14346
14346
|
|
|
14347
14347
|
/***/ }),
|
|
14348
14348
|
|
|
14349
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14349
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js":
|
|
14350
14350
|
/*!******************************************************************************************************!*\
|
|
14351
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14351
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js ***!
|
|
14352
14352
|
\******************************************************************************************************/
|
|
14353
14353
|
/***/ ((module) => {
|
|
14354
14354
|
|
|
@@ -17469,9 +17469,9 @@ module.exports = function (chai, util) {
|
|
|
17469
17469
|
|
|
17470
17470
|
/***/ }),
|
|
17471
17471
|
|
|
17472
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17472
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js":
|
|
17473
17473
|
/*!******************************************************************************************************!*\
|
|
17474
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17474
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js ***!
|
|
17475
17475
|
\******************************************************************************************************/
|
|
17476
17476
|
/***/ ((module) => {
|
|
17477
17477
|
|
|
@@ -17526,9 +17526,9 @@ module.exports = function (chai, util) {
|
|
|
17526
17526
|
|
|
17527
17527
|
/***/ }),
|
|
17528
17528
|
|
|
17529
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17529
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js":
|
|
17530
17530
|
/*!******************************************************************************************************!*\
|
|
17531
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17531
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js ***!
|
|
17532
17532
|
\******************************************************************************************************/
|
|
17533
17533
|
/***/ ((module) => {
|
|
17534
17534
|
|
|
@@ -17755,9 +17755,9 @@ module.exports = function (chai, util) {
|
|
|
17755
17755
|
|
|
17756
17756
|
/***/ }),
|
|
17757
17757
|
|
|
17758
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17758
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js":
|
|
17759
17759
|
/*!**************************************************************************************************************!*\
|
|
17760
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17760
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js ***!
|
|
17761
17761
|
\**************************************************************************************************************/
|
|
17762
17762
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17763
17763
|
|
|
@@ -17771,11 +17771,11 @@ module.exports = function (chai, util) {
|
|
|
17771
17771
|
* Module dependencies
|
|
17772
17772
|
*/
|
|
17773
17773
|
|
|
17774
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17775
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17776
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17777
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17778
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17774
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17775
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17776
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17777
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17778
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17779
17779
|
|
|
17780
17780
|
/*!
|
|
17781
17781
|
* Module variables
|
|
@@ -17917,9 +17917,9 @@ module.exports = function addChainableMethod(ctx, name, method, chainingBehavior
|
|
|
17917
17917
|
|
|
17918
17918
|
/***/ }),
|
|
17919
17919
|
|
|
17920
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17920
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js":
|
|
17921
17921
|
/*!**********************************************************************************************************!*\
|
|
17922
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17922
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js ***!
|
|
17923
17923
|
\**********************************************************************************************************/
|
|
17924
17924
|
/***/ ((module) => {
|
|
17925
17925
|
|
|
@@ -17987,9 +17987,9 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17987
17987
|
|
|
17988
17988
|
/***/ }),
|
|
17989
17989
|
|
|
17990
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17990
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js":
|
|
17991
17991
|
/*!*****************************************************************************************************!*\
|
|
17992
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17992
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js ***!
|
|
17993
17993
|
\*****************************************************************************************************/
|
|
17994
17994
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17995
17995
|
|
|
@@ -17999,11 +17999,11 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17999
17999
|
* MIT Licensed
|
|
18000
18000
|
*/
|
|
18001
18001
|
|
|
18002
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18003
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18004
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18005
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18006
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18002
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18003
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18004
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18005
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18006
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18007
18007
|
|
|
18008
18008
|
/**
|
|
18009
18009
|
* ### .addMethod(ctx, name, method)
|
|
@@ -18065,9 +18065,9 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
18065
18065
|
|
|
18066
18066
|
/***/ }),
|
|
18067
18067
|
|
|
18068
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18068
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js":
|
|
18069
18069
|
/*!*******************************************************************************************************!*\
|
|
18070
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18070
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js ***!
|
|
18071
18071
|
\*******************************************************************************************************/
|
|
18072
18072
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18073
18073
|
|
|
@@ -18077,10 +18077,10 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
18077
18077
|
* MIT Licensed
|
|
18078
18078
|
*/
|
|
18079
18079
|
|
|
18080
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18081
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18082
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18083
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18080
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18081
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18082
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18083
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18084
18084
|
|
|
18085
18085
|
/**
|
|
18086
18086
|
* ### .addProperty(ctx, name, getter)
|
|
@@ -18147,9 +18147,9 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
18147
18147
|
|
|
18148
18148
|
/***/ }),
|
|
18149
18149
|
|
|
18150
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18150
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js":
|
|
18151
18151
|
/*!************************************************************************************************************!*\
|
|
18152
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18152
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js ***!
|
|
18153
18153
|
\************************************************************************************************************/
|
|
18154
18154
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18155
18155
|
|
|
@@ -18163,7 +18163,7 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
18163
18163
|
* Module dependencies
|
|
18164
18164
|
*/
|
|
18165
18165
|
|
|
18166
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18166
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18167
18167
|
|
|
18168
18168
|
/**
|
|
18169
18169
|
* ### .compareByInspect(mixed, mixed)
|
|
@@ -18188,9 +18188,9 @@ module.exports = function compareByInspect(a, b) {
|
|
|
18188
18188
|
|
|
18189
18189
|
/***/ }),
|
|
18190
18190
|
|
|
18191
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18191
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js":
|
|
18192
18192
|
/*!*******************************************************************************************************!*\
|
|
18193
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18193
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js ***!
|
|
18194
18194
|
\*******************************************************************************************************/
|
|
18195
18195
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18196
18196
|
|
|
@@ -18215,7 +18215,7 @@ module.exports = function compareByInspect(a, b) {
|
|
|
18215
18215
|
*/
|
|
18216
18216
|
|
|
18217
18217
|
var AssertionError = __webpack_require__(/*! assertion-error */ "../../common/temp/node_modules/.pnpm/assertion-error@1.1.0/node_modules/assertion-error/index.js");
|
|
18218
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18218
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18219
18219
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18220
18220
|
|
|
18221
18221
|
module.exports = function expectTypes(obj, types) {
|
|
@@ -18249,9 +18249,9 @@ module.exports = function expectTypes(obj, types) {
|
|
|
18249
18249
|
|
|
18250
18250
|
/***/ }),
|
|
18251
18251
|
|
|
18252
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18252
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js":
|
|
18253
18253
|
/*!************************************************************************************************!*\
|
|
18254
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18254
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js ***!
|
|
18255
18255
|
\************************************************************************************************/
|
|
18256
18256
|
/***/ ((module) => {
|
|
18257
18257
|
|
|
@@ -18292,9 +18292,9 @@ module.exports = function flag(obj, key, value) {
|
|
|
18292
18292
|
|
|
18293
18293
|
/***/ }),
|
|
18294
18294
|
|
|
18295
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18295
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js":
|
|
18296
18296
|
/*!*****************************************************************************************************!*\
|
|
18297
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18297
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js ***!
|
|
18298
18298
|
\*****************************************************************************************************/
|
|
18299
18299
|
/***/ ((module) => {
|
|
18300
18300
|
|
|
@@ -18322,9 +18322,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18322
18322
|
|
|
18323
18323
|
/***/ }),
|
|
18324
18324
|
|
|
18325
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18325
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js":
|
|
18326
18326
|
/*!******************************************************************************************************!*\
|
|
18327
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18327
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js ***!
|
|
18328
18328
|
\******************************************************************************************************/
|
|
18329
18329
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18330
18330
|
|
|
@@ -18338,9 +18338,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18338
18338
|
* Module dependencies
|
|
18339
18339
|
*/
|
|
18340
18340
|
|
|
18341
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18342
|
-
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18343
|
-
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18341
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js")
|
|
18342
|
+
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js")
|
|
18343
|
+
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18344
18344
|
|
|
18345
18345
|
/**
|
|
18346
18346
|
* ### .getMessage(object, message, negateMessage)
|
|
@@ -18382,15 +18382,15 @@ module.exports = function getMessage(obj, args) {
|
|
|
18382
18382
|
|
|
18383
18383
|
/***/ }),
|
|
18384
18384
|
|
|
18385
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18385
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js":
|
|
18386
18386
|
/*!*******************************************************************************************************!*\
|
|
18387
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18387
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js ***!
|
|
18388
18388
|
\*******************************************************************************************************/
|
|
18389
18389
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18390
18390
|
|
|
18391
18391
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18392
18392
|
|
|
18393
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18393
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18394
18394
|
|
|
18395
18395
|
function isObjectType(obj) {
|
|
18396
18396
|
var objectType = type(obj);
|
|
@@ -18447,9 +18447,9 @@ module.exports = function getOperator(obj, args) {
|
|
|
18447
18447
|
|
|
18448
18448
|
/***/ }),
|
|
18449
18449
|
|
|
18450
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18450
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js":
|
|
18451
18451
|
/*!**********************************************************************************************************************!*\
|
|
18452
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18452
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js ***!
|
|
18453
18453
|
\**********************************************************************************************************************/
|
|
18454
18454
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18455
18455
|
|
|
@@ -18463,7 +18463,7 @@ module.exports = function getOperator(obj, args) {
|
|
|
18463
18463
|
* Module dependencies
|
|
18464
18464
|
*/
|
|
18465
18465
|
|
|
18466
|
-
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18466
|
+
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18467
18467
|
|
|
18468
18468
|
/**
|
|
18469
18469
|
* ### .getOwnEnumerableProperties(object)
|
|
@@ -18486,9 +18486,9 @@ module.exports = function getOwnEnumerableProperties(obj) {
|
|
|
18486
18486
|
|
|
18487
18487
|
/***/ }),
|
|
18488
18488
|
|
|
18489
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18489
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js":
|
|
18490
18490
|
/*!***************************************************************************************************************************!*\
|
|
18491
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18491
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js ***!
|
|
18492
18492
|
\***************************************************************************************************************************/
|
|
18493
18493
|
/***/ ((module) => {
|
|
18494
18494
|
|
|
@@ -18523,9 +18523,9 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
|
|
|
18523
18523
|
|
|
18524
18524
|
/***/ }),
|
|
18525
18525
|
|
|
18526
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18526
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js":
|
|
18527
18527
|
/*!*********************************************************************************************************!*\
|
|
18528
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18528
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js ***!
|
|
18529
18529
|
\*********************************************************************************************************/
|
|
18530
18530
|
/***/ ((module) => {
|
|
18531
18531
|
|
|
@@ -18569,9 +18569,9 @@ module.exports = function getProperties(object) {
|
|
|
18569
18569
|
|
|
18570
18570
|
/***/ }),
|
|
18571
18571
|
|
|
18572
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18572
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js":
|
|
18573
18573
|
/*!*************************************************************************************************!*\
|
|
18574
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18574
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js ***!
|
|
18575
18575
|
\*************************************************************************************************/
|
|
18576
18576
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
18577
18577
|
|
|
@@ -18591,7 +18591,7 @@ var pathval = __webpack_require__(/*! pathval */ "../../common/temp/node_modules
|
|
|
18591
18591
|
* test utility
|
|
18592
18592
|
*/
|
|
18593
18593
|
|
|
18594
|
-
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18594
|
+
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js");
|
|
18595
18595
|
|
|
18596
18596
|
/*!
|
|
18597
18597
|
* type utility
|
|
@@ -18602,49 +18602,49 @@ exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_mo
|
|
|
18602
18602
|
/*!
|
|
18603
18603
|
* expectTypes utility
|
|
18604
18604
|
*/
|
|
18605
|
-
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18605
|
+
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js");
|
|
18606
18606
|
|
|
18607
18607
|
/*!
|
|
18608
18608
|
* message utility
|
|
18609
18609
|
*/
|
|
18610
18610
|
|
|
18611
|
-
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18611
|
+
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js");
|
|
18612
18612
|
|
|
18613
18613
|
/*!
|
|
18614
18614
|
* actual utility
|
|
18615
18615
|
*/
|
|
18616
18616
|
|
|
18617
|
-
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18617
|
+
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js");
|
|
18618
18618
|
|
|
18619
18619
|
/*!
|
|
18620
18620
|
* Inspect util
|
|
18621
18621
|
*/
|
|
18622
18622
|
|
|
18623
|
-
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18623
|
+
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18624
18624
|
|
|
18625
18625
|
/*!
|
|
18626
18626
|
* Object Display util
|
|
18627
18627
|
*/
|
|
18628
18628
|
|
|
18629
|
-
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18629
|
+
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18630
18630
|
|
|
18631
18631
|
/*!
|
|
18632
18632
|
* Flag utility
|
|
18633
18633
|
*/
|
|
18634
18634
|
|
|
18635
|
-
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18635
|
+
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18636
18636
|
|
|
18637
18637
|
/*!
|
|
18638
18638
|
* Flag transferring utility
|
|
18639
18639
|
*/
|
|
18640
18640
|
|
|
18641
|
-
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18641
|
+
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18642
18642
|
|
|
18643
18643
|
/*!
|
|
18644
18644
|
* Deep equal utility
|
|
18645
18645
|
*/
|
|
18646
18646
|
|
|
18647
|
-
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
18647
|
+
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js");
|
|
18648
18648
|
|
|
18649
18649
|
/*!
|
|
18650
18650
|
* Deep path info
|
|
@@ -18668,55 +18668,55 @@ exports.getName = __webpack_require__(/*! get-func-name */ "../../common/temp/no
|
|
|
18668
18668
|
* add Property
|
|
18669
18669
|
*/
|
|
18670
18670
|
|
|
18671
|
-
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18671
|
+
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js");
|
|
18672
18672
|
|
|
18673
18673
|
/*!
|
|
18674
18674
|
* add Method
|
|
18675
18675
|
*/
|
|
18676
18676
|
|
|
18677
|
-
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18677
|
+
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js");
|
|
18678
18678
|
|
|
18679
18679
|
/*!
|
|
18680
18680
|
* overwrite Property
|
|
18681
18681
|
*/
|
|
18682
18682
|
|
|
18683
|
-
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18683
|
+
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js");
|
|
18684
18684
|
|
|
18685
18685
|
/*!
|
|
18686
18686
|
* overwrite Method
|
|
18687
18687
|
*/
|
|
18688
18688
|
|
|
18689
|
-
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18689
|
+
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js");
|
|
18690
18690
|
|
|
18691
18691
|
/*!
|
|
18692
18692
|
* Add a chainable method
|
|
18693
18693
|
*/
|
|
18694
18694
|
|
|
18695
|
-
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18695
|
+
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js");
|
|
18696
18696
|
|
|
18697
18697
|
/*!
|
|
18698
18698
|
* Overwrite chainable method
|
|
18699
18699
|
*/
|
|
18700
18700
|
|
|
18701
|
-
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18701
|
+
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js");
|
|
18702
18702
|
|
|
18703
18703
|
/*!
|
|
18704
18704
|
* Compare by inspect method
|
|
18705
18705
|
*/
|
|
18706
18706
|
|
|
18707
|
-
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18707
|
+
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js");
|
|
18708
18708
|
|
|
18709
18709
|
/*!
|
|
18710
18710
|
* Get own enumerable property symbols method
|
|
18711
18711
|
*/
|
|
18712
18712
|
|
|
18713
|
-
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18713
|
+
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18714
18714
|
|
|
18715
18715
|
/*!
|
|
18716
18716
|
* Get own enumerable properties method
|
|
18717
18717
|
*/
|
|
18718
18718
|
|
|
18719
|
-
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18719
|
+
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js");
|
|
18720
18720
|
|
|
18721
18721
|
/*!
|
|
18722
18722
|
* Checks error against a given set of criteria
|
|
@@ -18728,37 +18728,37 @@ exports.checkError = __webpack_require__(/*! check-error */ "../../common/temp/n
|
|
|
18728
18728
|
* Proxify util
|
|
18729
18729
|
*/
|
|
18730
18730
|
|
|
18731
|
-
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18731
|
+
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18732
18732
|
|
|
18733
18733
|
/*!
|
|
18734
18734
|
* addLengthGuard util
|
|
18735
18735
|
*/
|
|
18736
18736
|
|
|
18737
|
-
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18737
|
+
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18738
18738
|
|
|
18739
18739
|
/*!
|
|
18740
18740
|
* isProxyEnabled helper
|
|
18741
18741
|
*/
|
|
18742
18742
|
|
|
18743
|
-
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18743
|
+
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18744
18744
|
|
|
18745
18745
|
/*!
|
|
18746
18746
|
* isNaN method
|
|
18747
18747
|
*/
|
|
18748
18748
|
|
|
18749
|
-
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18749
|
+
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js");
|
|
18750
18750
|
|
|
18751
18751
|
/*!
|
|
18752
18752
|
* getOperator method
|
|
18753
18753
|
*/
|
|
18754
18754
|
|
|
18755
|
-
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18755
|
+
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js");
|
|
18756
18756
|
|
|
18757
18757
|
/***/ }),
|
|
18758
18758
|
|
|
18759
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18759
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js":
|
|
18760
18760
|
/*!***************************************************************************************************!*\
|
|
18761
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18761
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js ***!
|
|
18762
18762
|
\***************************************************************************************************/
|
|
18763
18763
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18764
18764
|
|
|
@@ -18766,8 +18766,8 @@ exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/tem
|
|
|
18766
18766
|
// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js
|
|
18767
18767
|
|
|
18768
18768
|
var getName = __webpack_require__(/*! get-func-name */ "../../common/temp/node_modules/.pnpm/get-func-name@2.0.0/node_modules/get-func-name/index.js");
|
|
18769
|
-
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
18770
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18769
|
+
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js");
|
|
18770
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18771
18771
|
|
|
18772
18772
|
module.exports = inspect;
|
|
18773
18773
|
|
|
@@ -18799,9 +18799,9 @@ function inspect(obj, showHidden, depth, colors) {
|
|
|
18799
18799
|
|
|
18800
18800
|
/***/ }),
|
|
18801
18801
|
|
|
18802
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18802
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js":
|
|
18803
18803
|
/*!*************************************************************************************************!*\
|
|
18804
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18804
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js ***!
|
|
18805
18805
|
\*************************************************************************************************/
|
|
18806
18806
|
/***/ ((module) => {
|
|
18807
18807
|
|
|
@@ -18835,13 +18835,13 @@ module.exports = Number.isNaN || isNaN;
|
|
|
18835
18835
|
|
|
18836
18836
|
/***/ }),
|
|
18837
18837
|
|
|
18838
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18838
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js":
|
|
18839
18839
|
/*!**********************************************************************************************************!*\
|
|
18840
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18840
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js ***!
|
|
18841
18841
|
\**********************************************************************************************************/
|
|
18842
18842
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18843
18843
|
|
|
18844
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18844
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18845
18845
|
|
|
18846
18846
|
/*!
|
|
18847
18847
|
* Chai - isProxyEnabled helper
|
|
@@ -18869,9 +18869,9 @@ module.exports = function isProxyEnabled() {
|
|
|
18869
18869
|
|
|
18870
18870
|
/***/ }),
|
|
18871
18871
|
|
|
18872
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18872
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js":
|
|
18873
18873
|
/*!******************************************************************************************************!*\
|
|
18874
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18874
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js ***!
|
|
18875
18875
|
\******************************************************************************************************/
|
|
18876
18876
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18877
18877
|
|
|
@@ -18885,8 +18885,8 @@ module.exports = function isProxyEnabled() {
|
|
|
18885
18885
|
* Module dependencies
|
|
18886
18886
|
*/
|
|
18887
18887
|
|
|
18888
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18889
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18888
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18889
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18890
18890
|
|
|
18891
18891
|
/**
|
|
18892
18892
|
* ### .objDisplay(object)
|
|
@@ -18929,9 +18929,9 @@ module.exports = function objDisplay(obj) {
|
|
|
18929
18929
|
|
|
18930
18930
|
/***/ }),
|
|
18931
18931
|
|
|
18932
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18932
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js":
|
|
18933
18933
|
/*!********************************************************************************************************************!*\
|
|
18934
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18934
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js ***!
|
|
18935
18935
|
\********************************************************************************************************************/
|
|
18936
18936
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18937
18937
|
|
|
@@ -18941,8 +18941,8 @@ module.exports = function objDisplay(obj) {
|
|
|
18941
18941
|
* MIT Licensed
|
|
18942
18942
|
*/
|
|
18943
18943
|
|
|
18944
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18945
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18944
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18945
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18946
18946
|
|
|
18947
18947
|
/**
|
|
18948
18948
|
* ### .overwriteChainableMethod(ctx, name, method, chainingBehavior)
|
|
@@ -19008,9 +19008,9 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
19008
19008
|
|
|
19009
19009
|
/***/ }),
|
|
19010
19010
|
|
|
19011
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19011
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js":
|
|
19012
19012
|
/*!***********************************************************************************************************!*\
|
|
19013
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19013
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js ***!
|
|
19014
19014
|
\***********************************************************************************************************/
|
|
19015
19015
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19016
19016
|
|
|
@@ -19020,11 +19020,11 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
19020
19020
|
* MIT Licensed
|
|
19021
19021
|
*/
|
|
19022
19022
|
|
|
19023
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19024
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19025
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19026
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19027
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19023
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
19024
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
19025
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19026
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
19027
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
19028
19028
|
|
|
19029
19029
|
/**
|
|
19030
19030
|
* ### .overwriteMethod(ctx, name, fn)
|
|
@@ -19110,9 +19110,9 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
19110
19110
|
|
|
19111
19111
|
/***/ }),
|
|
19112
19112
|
|
|
19113
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19113
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js":
|
|
19114
19114
|
/*!*************************************************************************************************************!*\
|
|
19115
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19115
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js ***!
|
|
19116
19116
|
\*************************************************************************************************************/
|
|
19117
19117
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19118
19118
|
|
|
@@ -19122,10 +19122,10 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
19122
19122
|
* MIT Licensed
|
|
19123
19123
|
*/
|
|
19124
19124
|
|
|
19125
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19126
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19127
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19128
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19125
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
19126
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19127
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
19128
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
19129
19129
|
|
|
19130
19130
|
/**
|
|
19131
19131
|
* ### .overwriteProperty(ctx, name, fn)
|
|
@@ -19212,16 +19212,16 @@ module.exports = function overwriteProperty(ctx, name, getter) {
|
|
|
19212
19212
|
|
|
19213
19213
|
/***/ }),
|
|
19214
19214
|
|
|
19215
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19215
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js":
|
|
19216
19216
|
/*!***************************************************************************************************!*\
|
|
19217
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19217
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js ***!
|
|
19218
19218
|
\***************************************************************************************************/
|
|
19219
19219
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19220
19220
|
|
|
19221
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19222
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19223
|
-
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19224
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19221
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
19222
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19223
|
+
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js");
|
|
19224
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
19225
19225
|
|
|
19226
19226
|
/*!
|
|
19227
19227
|
* Chai - proxify utility
|
|
@@ -19369,9 +19369,9 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19369
19369
|
|
|
19370
19370
|
/***/ }),
|
|
19371
19371
|
|
|
19372
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19372
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js":
|
|
19373
19373
|
/*!************************************************************************************************!*\
|
|
19374
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19374
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js ***!
|
|
19375
19375
|
\************************************************************************************************/
|
|
19376
19376
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19377
19377
|
|
|
@@ -19385,7 +19385,7 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19385
19385
|
* Module dependencies
|
|
19386
19386
|
*/
|
|
19387
19387
|
|
|
19388
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19388
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19389
19389
|
|
|
19390
19390
|
/**
|
|
19391
19391
|
* ### .test(object, expression)
|
|
@@ -19407,9 +19407,9 @@ module.exports = function test(obj, args) {
|
|
|
19407
19407
|
|
|
19408
19408
|
/***/ }),
|
|
19409
19409
|
|
|
19410
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19410
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js":
|
|
19411
19411
|
/*!*********************************************************************************************************!*\
|
|
19412
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19412
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js ***!
|
|
19413
19413
|
\*********************************************************************************************************/
|
|
19414
19414
|
/***/ ((module) => {
|
|
19415
19415
|
|
|
@@ -20473,9 +20473,9 @@ module.exports = function deepAssign(target) {
|
|
|
20473
20473
|
|
|
20474
20474
|
/***/ }),
|
|
20475
20475
|
|
|
20476
|
-
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20476
|
+
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js":
|
|
20477
20477
|
/*!******************************************************************************************!*\
|
|
20478
|
-
!*** ../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20478
|
+
!*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js ***!
|
|
20479
20479
|
\******************************************************************************************/
|
|
20480
20480
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
20481
20481
|
|
|
@@ -20494,10 +20494,10 @@ function FakeMap() {
|
|
|
20494
20494
|
}
|
|
20495
20495
|
|
|
20496
20496
|
FakeMap.prototype = {
|
|
20497
|
-
get: function
|
|
20497
|
+
get: function get(key) {
|
|
20498
20498
|
return key[this._key];
|
|
20499
20499
|
},
|
|
20500
|
-
set: function
|
|
20500
|
+
set: function set(key, value) {
|
|
20501
20501
|
if (Object.isExtensible(key)) {
|
|
20502
20502
|
Object.defineProperty(key, this._key, {
|
|
20503
20503
|
value: value,
|
|
@@ -20689,8 +20689,9 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20689
20689
|
case 'function':
|
|
20690
20690
|
case 'WeakMap':
|
|
20691
20691
|
case 'WeakSet':
|
|
20692
|
-
case 'Error':
|
|
20693
20692
|
return leftHandOperand === rightHandOperand;
|
|
20693
|
+
case 'Error':
|
|
20694
|
+
return keysEqual(leftHandOperand, rightHandOperand, [ 'name', 'message', 'code' ], options);
|
|
20694
20695
|
case 'Arguments':
|
|
20695
20696
|
case 'Int8Array':
|
|
20696
20697
|
case 'Uint8Array':
|
|
@@ -20715,6 +20716,19 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20715
20716
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20716
20717
|
case 'Map':
|
|
20717
20718
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20719
|
+
case 'Temporal.PlainDate':
|
|
20720
|
+
case 'Temporal.PlainTime':
|
|
20721
|
+
case 'Temporal.PlainDateTime':
|
|
20722
|
+
case 'Temporal.Instant':
|
|
20723
|
+
case 'Temporal.ZonedDateTime':
|
|
20724
|
+
case 'Temporal.PlainYearMonth':
|
|
20725
|
+
case 'Temporal.PlainMonthDay':
|
|
20726
|
+
return leftHandOperand.equals(rightHandOperand);
|
|
20727
|
+
case 'Temporal.Duration':
|
|
20728
|
+
return leftHandOperand.total('nanoseconds') === rightHandOperand.total('nanoseconds');
|
|
20729
|
+
case 'Temporal.TimeZone':
|
|
20730
|
+
case 'Temporal.Calendar':
|
|
20731
|
+
return leftHandOperand.toString() === rightHandOperand.toString();
|
|
20718
20732
|
default:
|
|
20719
20733
|
return objectEqual(leftHandOperand, rightHandOperand, options);
|
|
20720
20734
|
}
|
|
@@ -20860,6 +20874,11 @@ function getEnumerableKeys(target) {
|
|
|
20860
20874
|
return keys;
|
|
20861
20875
|
}
|
|
20862
20876
|
|
|
20877
|
+
function getNonEnumerableSymbols(target) {
|
|
20878
|
+
var keys = Object.getOwnPropertySymbols(target);
|
|
20879
|
+
return keys;
|
|
20880
|
+
}
|
|
20881
|
+
|
|
20863
20882
|
/*!
|
|
20864
20883
|
* Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of
|
|
20865
20884
|
* each key. If any value of the given key is not equal, the function will return false (early).
|
|
@@ -20892,14 +20911,16 @@ function keysEqual(leftHandOperand, rightHandOperand, keys, options) {
|
|
|
20892
20911
|
* @param {Object} [options] (Optional)
|
|
20893
20912
|
* @return {Boolean} result
|
|
20894
20913
|
*/
|
|
20895
|
-
|
|
20896
20914
|
function objectEqual(leftHandOperand, rightHandOperand, options) {
|
|
20897
20915
|
var leftHandKeys = getEnumerableKeys(leftHandOperand);
|
|
20898
20916
|
var rightHandKeys = getEnumerableKeys(rightHandOperand);
|
|
20917
|
+
var leftHandSymbols = getNonEnumerableSymbols(leftHandOperand);
|
|
20918
|
+
var rightHandSymbols = getNonEnumerableSymbols(rightHandOperand);
|
|
20919
|
+
leftHandKeys = leftHandKeys.concat(leftHandSymbols);
|
|
20920
|
+
rightHandKeys = rightHandKeys.concat(rightHandSymbols);
|
|
20921
|
+
|
|
20899
20922
|
if (leftHandKeys.length && leftHandKeys.length === rightHandKeys.length) {
|
|
20900
|
-
leftHandKeys.sort()
|
|
20901
|
-
rightHandKeys.sort();
|
|
20902
|
-
if (iterableEqual(leftHandKeys, rightHandKeys) === false) {
|
|
20923
|
+
if (iterableEqual(mapSymbols(leftHandKeys).sort(), mapSymbols(rightHandKeys).sort()) === false) {
|
|
20903
20924
|
return false;
|
|
20904
20925
|
}
|
|
20905
20926
|
return keysEqual(leftHandOperand, rightHandOperand, leftHandKeys, options);
|
|
@@ -20936,6 +20957,16 @@ function isPrimitive(value) {
|
|
|
20936
20957
|
return value === null || typeof value !== 'object';
|
|
20937
20958
|
}
|
|
20938
20959
|
|
|
20960
|
+
function mapSymbols(arr) {
|
|
20961
|
+
return arr.map(function mapSymbol(entry) {
|
|
20962
|
+
if (typeof entry === 'symbol') {
|
|
20963
|
+
return entry.toString();
|
|
20964
|
+
}
|
|
20965
|
+
|
|
20966
|
+
return entry;
|
|
20967
|
+
});
|
|
20968
|
+
}
|
|
20969
|
+
|
|
20939
20970
|
|
|
20940
20971
|
/***/ }),
|
|
20941
20972
|
|
|
@@ -22287,8 +22318,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22287
22318
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22288
22319
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
22289
22320
|
/* harmony export */ });
|
|
22290
|
-
/* 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.
|
|
22291
|
-
/* 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.
|
|
22321
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
22322
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
22292
22323
|
|
|
22293
22324
|
|
|
22294
22325
|
|
|
@@ -40068,9 +40099,9 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40068
40099
|
|
|
40069
40100
|
/***/ }),
|
|
40070
40101
|
|
|
40071
|
-
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
40102
|
+
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js":
|
|
40072
40103
|
/*!************************************************************************************!*\
|
|
40073
|
-
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
40104
|
+
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js ***!
|
|
40074
40105
|
\************************************************************************************/
|
|
40075
40106
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
40076
40107
|
|
|
@@ -40454,9 +40485,15 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40454
40485
|
}
|
|
40455
40486
|
|
|
40456
40487
|
function inspectDate(dateObject, options) {
|
|
40457
|
-
|
|
40458
|
-
|
|
40459
|
-
|
|
40488
|
+
var stringRepresentation = dateObject.toJSON();
|
|
40489
|
+
|
|
40490
|
+
if (stringRepresentation === null) {
|
|
40491
|
+
return 'Invalid Date';
|
|
40492
|
+
}
|
|
40493
|
+
|
|
40494
|
+
var split = stringRepresentation.split('T');
|
|
40495
|
+
var date = split[0]; // If we need to - truncate the time portion, but never the date
|
|
40496
|
+
|
|
40460
40497
|
return options.stylize("".concat(date, "T").concat(truncate(split[1], options.truncate - date.length - 1)), 'date');
|
|
40461
40498
|
}
|
|
40462
40499
|
|
|
@@ -40746,14 +40783,39 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40746
40783
|
|
|
40747
40784
|
try {
|
|
40748
40785
|
// eslint-disable-next-line global-require
|
|
40749
|
-
var nodeUtil = __webpack_require__(/*! util */ "?
|
|
40786
|
+
var nodeUtil = __webpack_require__(/*! util */ "?1120");
|
|
40750
40787
|
|
|
40751
40788
|
nodeInspect = nodeUtil.inspect ? nodeUtil.inspect.custom : false;
|
|
40752
40789
|
} catch (noNodeInspect) {
|
|
40753
40790
|
nodeInspect = false;
|
|
40754
40791
|
}
|
|
40755
40792
|
|
|
40756
|
-
|
|
40793
|
+
function FakeMap() {
|
|
40794
|
+
// eslint-disable-next-line prefer-template
|
|
40795
|
+
this.key = 'chai/loupe__' + Math.random() + Date.now();
|
|
40796
|
+
}
|
|
40797
|
+
|
|
40798
|
+
FakeMap.prototype = {
|
|
40799
|
+
// eslint-disable-next-line object-shorthand
|
|
40800
|
+
get: function get(key) {
|
|
40801
|
+
return key[this.key];
|
|
40802
|
+
},
|
|
40803
|
+
// eslint-disable-next-line object-shorthand
|
|
40804
|
+
has: function has(key) {
|
|
40805
|
+
return this.key in key;
|
|
40806
|
+
},
|
|
40807
|
+
// eslint-disable-next-line object-shorthand
|
|
40808
|
+
set: function set(key, value) {
|
|
40809
|
+
if (Object.isExtensible(key)) {
|
|
40810
|
+
Object.defineProperty(key, this.key, {
|
|
40811
|
+
// eslint-disable-next-line object-shorthand
|
|
40812
|
+
value: value,
|
|
40813
|
+
configurable: true
|
|
40814
|
+
});
|
|
40815
|
+
}
|
|
40816
|
+
}
|
|
40817
|
+
};
|
|
40818
|
+
var constructorMap = new (typeof WeakMap === 'function' ? WeakMap : FakeMap)();
|
|
40757
40819
|
var stringTagMap = {};
|
|
40758
40820
|
var baseTypesMap = {
|
|
40759
40821
|
undefined: function undefined$1(value, options) {
|
|
@@ -40903,7 +40965,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40903
40965
|
return false;
|
|
40904
40966
|
}
|
|
40905
40967
|
|
|
40906
|
-
constructorMap.
|
|
40968
|
+
constructorMap.set(constructor, inspector);
|
|
40907
40969
|
return true;
|
|
40908
40970
|
}
|
|
40909
40971
|
function registerStringTag(stringTag, inspector) {
|
|
@@ -58067,15 +58129,25 @@ class ByteStream {
|
|
|
58067
58129
|
return new ByteStream(buffer, subView); // eslint-disable-line deprecation/deprecation
|
|
58068
58130
|
}
|
|
58069
58131
|
/** The number of bytes in this stream */
|
|
58070
|
-
get length() {
|
|
58132
|
+
get length() {
|
|
58133
|
+
return this._view.byteLength;
|
|
58134
|
+
}
|
|
58135
|
+
/** The number of bytes remaining to be read, from [[curPos]] to the end of the stream. */
|
|
58136
|
+
get remainingLength() {
|
|
58137
|
+
return this.length - this.curPos;
|
|
58138
|
+
}
|
|
58071
58139
|
/** Returns true if the current read position has been advanced past the end of the stream. This generally indicates that an attempt was made to read more data than is available.
|
|
58072
58140
|
* @see [[isAtTheEnd]]
|
|
58073
58141
|
*/
|
|
58074
|
-
get isPastTheEnd() {
|
|
58142
|
+
get isPastTheEnd() {
|
|
58143
|
+
return this.curPos > this.length;
|
|
58144
|
+
}
|
|
58075
58145
|
/** Returns true if the current read position has advanced precisely to the end of the stream, indicating all of the data has been consumed.
|
|
58076
58146
|
* @see [[isPastTheEnd]].
|
|
58077
58147
|
*/
|
|
58078
|
-
get isAtTheEnd() {
|
|
58148
|
+
get isAtTheEnd() {
|
|
58149
|
+
return this.curPos === this.length;
|
|
58150
|
+
}
|
|
58079
58151
|
/** The current read position as an index into the stream of bytes. */
|
|
58080
58152
|
get curPos() { return this._curPos; }
|
|
58081
58153
|
set curPos(pos) {
|
|
@@ -63837,7 +63909,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
63837
63909
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
63838
63910
|
/* harmony export */ "Base64EncodedString": () => (/* binding */ Base64EncodedString)
|
|
63839
63911
|
/* harmony export */ });
|
|
63840
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
63912
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
63841
63913
|
/*---------------------------------------------------------------------------------------------
|
|
63842
63914
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
63843
63915
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65643,7 +65715,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65643
65715
|
/* harmony export */ });
|
|
65644
65716
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
65645
65717
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
65646
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
65718
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
65647
65719
|
/*---------------------------------------------------------------------------------------------
|
|
65648
65720
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65649
65721
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65682,42 +65754,99 @@ class QueryOptionsBuilder {
|
|
|
65682
65754
|
this._options = _options;
|
|
65683
65755
|
}
|
|
65684
65756
|
getOptions() { return this._options; }
|
|
65757
|
+
/**
|
|
65758
|
+
* @internal
|
|
65759
|
+
* Allow to set priority of query. Query will be inserted int queue base on priority value. This value will be ignored if concurrent query is configured with ignored priority is true.
|
|
65760
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65761
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65762
|
+
*/
|
|
65685
65763
|
setPriority(val) {
|
|
65686
65764
|
this._options.priority = val;
|
|
65687
65765
|
return this;
|
|
65688
65766
|
}
|
|
65767
|
+
/**
|
|
65768
|
+
* Allow to set restart token. If restart token is set then any other query(s) in queue with same token is cancelled if its not already executed.
|
|
65769
|
+
* @param val A string token identifying a use case in which previous query with same token is cancelled.
|
|
65770
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65771
|
+
*/
|
|
65689
65772
|
setRestartToken(val) {
|
|
65690
65773
|
this._options.restartToken = val;
|
|
65691
65774
|
return this;
|
|
65692
65775
|
}
|
|
65776
|
+
/**
|
|
65777
|
+
* Allow to set quota restriction for query. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65778
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65779
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65780
|
+
*/
|
|
65693
65781
|
setQuota(val) {
|
|
65694
65782
|
this._options.quota = val;
|
|
65695
65783
|
return this;
|
|
65696
65784
|
}
|
|
65785
|
+
/**
|
|
65786
|
+
* Force a query to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65787
|
+
* @param val A boolean value to force use primary connection on main thread to execute query.
|
|
65788
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65789
|
+
*/
|
|
65697
65790
|
setUsePrimaryConnection(val) {
|
|
65698
65791
|
this._options.usePrimaryConn = val;
|
|
65699
65792
|
return this;
|
|
65700
65793
|
}
|
|
65794
|
+
/**
|
|
65795
|
+
* By default all blobs are abbreviated to save memory and network bandwidth. If set to false, all blob data will be returned by query as is.
|
|
65796
|
+
* Use @type BlobReader to access blob data more efficiently.
|
|
65797
|
+
* @param val A boolean value, if set to false will return complete blob type property data. This could cost time and network bandwidth.
|
|
65798
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65799
|
+
*/
|
|
65701
65800
|
setAbbreviateBlobs(val) {
|
|
65702
65801
|
this._options.abbreviateBlobs = val;
|
|
65703
65802
|
return this;
|
|
65704
65803
|
}
|
|
65804
|
+
/**
|
|
65805
|
+
* When query fail to prepare it will log error. This setting will suppress log errors in case where query come from user typing it and its expected to fail often.
|
|
65806
|
+
* @param val A boolean value, if set to true, any error logging will be suppressed.
|
|
65807
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65808
|
+
*/
|
|
65705
65809
|
setSuppressLogErrors(val) {
|
|
65706
65810
|
this._options.suppressLogErrors = val;
|
|
65707
65811
|
return this;
|
|
65708
65812
|
}
|
|
65813
|
+
/**
|
|
65814
|
+
* If set ECClassId, SourceECClassId and TargetECClassId system properties will return qualified name of class instead of a @typedef Id64String.
|
|
65815
|
+
* @param val A boolean value.
|
|
65816
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65817
|
+
*/
|
|
65709
65818
|
setConvertClassIdsToNames(val) {
|
|
65710
65819
|
this._options.convertClassIdsToClassNames = val;
|
|
65711
65820
|
return this;
|
|
65712
65821
|
}
|
|
65822
|
+
/**
|
|
65823
|
+
* Specify limit for query. Limit determine number of rows and offset in result-set.
|
|
65824
|
+
* @param val Specify count and offset from within the result-set of a ECSQL query.
|
|
65825
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65826
|
+
*/
|
|
65713
65827
|
setLimit(val) {
|
|
65714
65828
|
this._options.limit = val;
|
|
65715
65829
|
return this;
|
|
65716
65830
|
}
|
|
65831
|
+
/**
|
|
65832
|
+
* Specify row format returned by concurrent query manager.
|
|
65833
|
+
* @param val @enum QueryRowFormat specifying format for result.
|
|
65834
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65835
|
+
*/
|
|
65717
65836
|
setRowFormat(val) {
|
|
65718
65837
|
this._options.rowFormat = val;
|
|
65719
65838
|
return this;
|
|
65720
65839
|
}
|
|
65840
|
+
/**
|
|
65841
|
+
* @internal
|
|
65842
|
+
* Defers execution of query in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65843
|
+
* @param val Number of milliseconds.
|
|
65844
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65845
|
+
*/
|
|
65846
|
+
setDelay(val) {
|
|
65847
|
+
this._options.delay = val;
|
|
65848
|
+
return this;
|
|
65849
|
+
}
|
|
65721
65850
|
}
|
|
65722
65851
|
/** @beta */
|
|
65723
65852
|
class BlobOptionsBuilder {
|
|
@@ -65725,26 +65854,62 @@ class BlobOptionsBuilder {
|
|
|
65725
65854
|
this._options = _options;
|
|
65726
65855
|
}
|
|
65727
65856
|
getOptions() { return this._options; }
|
|
65857
|
+
/**
|
|
65858
|
+
* @internal
|
|
65859
|
+
* Allow to set priority of blob request. Blob request will be inserted int queue base on priority value. This value will be ignored if concurrent query is configured with ignored priority is true.
|
|
65860
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65861
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65862
|
+
*/
|
|
65728
65863
|
setPriority(val) {
|
|
65729
65864
|
this._options.priority = val;
|
|
65730
65865
|
return this;
|
|
65731
65866
|
}
|
|
65867
|
+
/**
|
|
65868
|
+
* Allow to set restart token. If restart token is set then any other blob request in queue with same token is cancelled if its not already executed.
|
|
65869
|
+
* @param val A string token identifying a use case in which previous blob request with same token is cancelled.
|
|
65870
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65871
|
+
*/
|
|
65732
65872
|
setRestartToken(val) {
|
|
65733
65873
|
this._options.restartToken = val;
|
|
65734
65874
|
return this;
|
|
65735
65875
|
}
|
|
65876
|
+
/**
|
|
65877
|
+
* Allow to set quota restriction for blob request. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65878
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65879
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65880
|
+
*/
|
|
65736
65881
|
setQuota(val) {
|
|
65737
65882
|
this._options.quota = val;
|
|
65738
65883
|
return this;
|
|
65739
65884
|
}
|
|
65885
|
+
/**
|
|
65886
|
+
* Force a blob request to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65887
|
+
* @param val A boolean value to force use primary connection on main thread to execute blob request.
|
|
65888
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65889
|
+
*/
|
|
65740
65890
|
setUsePrimaryConnection(val) {
|
|
65741
65891
|
this._options.usePrimaryConn = val;
|
|
65742
65892
|
return this;
|
|
65743
65893
|
}
|
|
65894
|
+
/**
|
|
65895
|
+
* Specify range with in the blob that need to be returned.
|
|
65896
|
+
* @param val Specify offset and count of bytes that need to be returned.
|
|
65897
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65898
|
+
*/
|
|
65744
65899
|
setRange(val) {
|
|
65745
65900
|
this._options.range = val;
|
|
65746
65901
|
return this;
|
|
65747
65902
|
}
|
|
65903
|
+
/**
|
|
65904
|
+
* @internal
|
|
65905
|
+
* Defers execution of blob request in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65906
|
+
* @param val Number of milliseconds.
|
|
65907
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65908
|
+
*/
|
|
65909
|
+
setDelay(val) {
|
|
65910
|
+
this._options.delay = val;
|
|
65911
|
+
return this;
|
|
65912
|
+
}
|
|
65748
65913
|
}
|
|
65749
65914
|
/** @internal */
|
|
65750
65915
|
var QueryParamType;
|
|
@@ -65764,7 +65929,10 @@ var QueryParamType;
|
|
|
65764
65929
|
QueryParamType[QueryParamType["Blob"] = 10] = "Blob";
|
|
65765
65930
|
QueryParamType[QueryParamType["Struct"] = 11] = "Struct";
|
|
65766
65931
|
})(QueryParamType || (QueryParamType = {}));
|
|
65767
|
-
/**
|
|
65932
|
+
/**
|
|
65933
|
+
* @public
|
|
65934
|
+
* QueryBinder allow to bind values to a ECSQL query.
|
|
65935
|
+
* */
|
|
65768
65936
|
class QueryBinder {
|
|
65769
65937
|
constructor() {
|
|
65770
65938
|
this._args = {};
|
|
@@ -65780,6 +65948,12 @@ class QueryBinder {
|
|
|
65780
65948
|
}
|
|
65781
65949
|
}
|
|
65782
65950
|
}
|
|
65951
|
+
/**
|
|
65952
|
+
* Bind boolean value to ECSQL statement.
|
|
65953
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65954
|
+
* @param val Boolean value to bind to ECSQL statement.
|
|
65955
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65956
|
+
*/
|
|
65783
65957
|
bindBoolean(indexOrName, val) {
|
|
65784
65958
|
this.verify(indexOrName);
|
|
65785
65959
|
const name = String(indexOrName);
|
|
@@ -65792,6 +65966,12 @@ class QueryBinder {
|
|
|
65792
65966
|
});
|
|
65793
65967
|
return this;
|
|
65794
65968
|
}
|
|
65969
|
+
/**
|
|
65970
|
+
* Bind blob value to ECSQL statement.
|
|
65971
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65972
|
+
* @param val Blob value to bind to ECSQL statement.
|
|
65973
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65974
|
+
*/
|
|
65795
65975
|
bindBlob(indexOrName, val) {
|
|
65796
65976
|
this.verify(indexOrName);
|
|
65797
65977
|
const name = String(indexOrName);
|
|
@@ -65804,6 +65984,12 @@ class QueryBinder {
|
|
|
65804
65984
|
});
|
|
65805
65985
|
return this;
|
|
65806
65986
|
}
|
|
65987
|
+
/**
|
|
65988
|
+
* Bind double value to ECSQL statement.
|
|
65989
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65990
|
+
* @param val Double value to bind to ECSQL statement.
|
|
65991
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65992
|
+
*/
|
|
65807
65993
|
bindDouble(indexOrName, val) {
|
|
65808
65994
|
this.verify(indexOrName);
|
|
65809
65995
|
const name = String(indexOrName);
|
|
@@ -65815,6 +66001,12 @@ class QueryBinder {
|
|
|
65815
66001
|
});
|
|
65816
66002
|
return this;
|
|
65817
66003
|
}
|
|
66004
|
+
/**
|
|
66005
|
+
* Bind @typedef Id64String value to ECSQL statement.
|
|
66006
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66007
|
+
* @param val @typedef Id64String value to bind to ECSQL statement.
|
|
66008
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66009
|
+
*/
|
|
65818
66010
|
bindId(indexOrName, val) {
|
|
65819
66011
|
this.verify(indexOrName);
|
|
65820
66012
|
const name = String(indexOrName);
|
|
@@ -65826,6 +66018,12 @@ class QueryBinder {
|
|
|
65826
66018
|
});
|
|
65827
66019
|
return this;
|
|
65828
66020
|
}
|
|
66021
|
+
/**
|
|
66022
|
+
* Bind @type OrderedId64Iterable to ECSQL statement.
|
|
66023
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66024
|
+
* @param val @type OrderedId64Iterable value to bind to ECSQL statement.
|
|
66025
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66026
|
+
*/
|
|
65829
66027
|
bindIdSet(indexOrName, val) {
|
|
65830
66028
|
this.verify(indexOrName);
|
|
65831
66029
|
const name = String(indexOrName);
|
|
@@ -65838,6 +66036,12 @@ class QueryBinder {
|
|
|
65838
66036
|
});
|
|
65839
66037
|
return this;
|
|
65840
66038
|
}
|
|
66039
|
+
/**
|
|
66040
|
+
* Bind integer to ECSQL statement.
|
|
66041
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66042
|
+
* @param val Integer value to bind to ECSQL statement.
|
|
66043
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66044
|
+
*/
|
|
65841
66045
|
bindInt(indexOrName, val) {
|
|
65842
66046
|
this.verify(indexOrName);
|
|
65843
66047
|
const name = String(indexOrName);
|
|
@@ -65849,6 +66053,12 @@ class QueryBinder {
|
|
|
65849
66053
|
});
|
|
65850
66054
|
return this;
|
|
65851
66055
|
}
|
|
66056
|
+
/**
|
|
66057
|
+
* Bind struct to ECSQL statement. Struct specified as object.
|
|
66058
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66059
|
+
* @param val struct value to bind to ECSQL statement.
|
|
66060
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66061
|
+
*/
|
|
65852
66062
|
bindStruct(indexOrName, val) {
|
|
65853
66063
|
this.verify(indexOrName);
|
|
65854
66064
|
const name = String(indexOrName);
|
|
@@ -65860,6 +66070,12 @@ class QueryBinder {
|
|
|
65860
66070
|
});
|
|
65861
66071
|
return this;
|
|
65862
66072
|
}
|
|
66073
|
+
/**
|
|
66074
|
+
* Bind long to ECSQL statement.
|
|
66075
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66076
|
+
* @param val Long value to bind to ECSQL statement.
|
|
66077
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66078
|
+
*/
|
|
65863
66079
|
bindLong(indexOrName, val) {
|
|
65864
66080
|
this.verify(indexOrName);
|
|
65865
66081
|
const name = String(indexOrName);
|
|
@@ -65871,6 +66087,12 @@ class QueryBinder {
|
|
|
65871
66087
|
});
|
|
65872
66088
|
return this;
|
|
65873
66089
|
}
|
|
66090
|
+
/**
|
|
66091
|
+
* Bind string to ECSQL statement.
|
|
66092
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66093
|
+
* @param val String value to bind to ECSQL statement.
|
|
66094
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66095
|
+
*/
|
|
65874
66096
|
bindString(indexOrName, val) {
|
|
65875
66097
|
this.verify(indexOrName);
|
|
65876
66098
|
const name = String(indexOrName);
|
|
@@ -65882,6 +66104,11 @@ class QueryBinder {
|
|
|
65882
66104
|
});
|
|
65883
66105
|
return this;
|
|
65884
66106
|
}
|
|
66107
|
+
/**
|
|
66108
|
+
* Bind null to ECSQL statement.
|
|
66109
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66110
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66111
|
+
*/
|
|
65885
66112
|
bindNull(indexOrName) {
|
|
65886
66113
|
this.verify(indexOrName);
|
|
65887
66114
|
const name = String(indexOrName);
|
|
@@ -65893,6 +66120,12 @@ class QueryBinder {
|
|
|
65893
66120
|
});
|
|
65894
66121
|
return this;
|
|
65895
66122
|
}
|
|
66123
|
+
/**
|
|
66124
|
+
* Bind @type Point2d to ECSQL statement.
|
|
66125
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66126
|
+
* @param val @type Point2d value to bind to ECSQL statement.
|
|
66127
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66128
|
+
*/
|
|
65896
66129
|
bindPoint2d(indexOrName, val) {
|
|
65897
66130
|
this.verify(indexOrName);
|
|
65898
66131
|
const name = String(indexOrName);
|
|
@@ -65904,6 +66137,12 @@ class QueryBinder {
|
|
|
65904
66137
|
});
|
|
65905
66138
|
return this;
|
|
65906
66139
|
}
|
|
66140
|
+
/**
|
|
66141
|
+
* Bind @type Point3d to ECSQL statement.
|
|
66142
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66143
|
+
* @param val @type Point3d value to bind to ECSQL statement.
|
|
66144
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66145
|
+
*/
|
|
65907
66146
|
bindPoint3d(indexOrName, val) {
|
|
65908
66147
|
this.verify(indexOrName);
|
|
65909
66148
|
const name = String(indexOrName);
|
|
@@ -65947,6 +66186,11 @@ class QueryBinder {
|
|
|
65947
66186
|
throw new Error("unsupported type");
|
|
65948
66187
|
}
|
|
65949
66188
|
}
|
|
66189
|
+
/**
|
|
66190
|
+
* Allow bulk bind either parameters by index as value array or by parameter names as object.
|
|
66191
|
+
* @param args if array of values is provided then array index is used as index. If object is provided then object property name is used as parameter name of reach value.
|
|
66192
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66193
|
+
*/
|
|
65950
66194
|
static from(args) {
|
|
65951
66195
|
const params = new QueryBinder();
|
|
65952
66196
|
if (typeof args === "undefined")
|
|
@@ -67931,6 +68175,75 @@ class ECJsNames {
|
|
|
67931
68175
|
}
|
|
67932
68176
|
|
|
67933
68177
|
|
|
68178
|
+
/***/ }),
|
|
68179
|
+
|
|
68180
|
+
/***/ "../../core/common/lib/esm/ElementMesh.js":
|
|
68181
|
+
/*!************************************************!*\
|
|
68182
|
+
!*** ../../core/common/lib/esm/ElementMesh.js ***!
|
|
68183
|
+
\************************************************/
|
|
68184
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
68185
|
+
|
|
68186
|
+
"use strict";
|
|
68187
|
+
__webpack_require__.r(__webpack_exports__);
|
|
68188
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
68189
|
+
/* harmony export */ "readElementMeshes": () => (/* binding */ readElementMeshes)
|
|
68190
|
+
/* harmony export */ });
|
|
68191
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
68192
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
68193
|
+
/*---------------------------------------------------------------------------------------------
|
|
68194
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
68195
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
68196
|
+
*--------------------------------------------------------------------------------------------*/
|
|
68197
|
+
/** @packageDocumentation
|
|
68198
|
+
* @module Geometry
|
|
68199
|
+
*/
|
|
68200
|
+
|
|
68201
|
+
|
|
68202
|
+
function nextChunk(stream) {
|
|
68203
|
+
if (stream.remainingLength < 8) {
|
|
68204
|
+
// Consume remaining bytes.
|
|
68205
|
+
stream.curPos = stream.length;
|
|
68206
|
+
return undefined;
|
|
68207
|
+
}
|
|
68208
|
+
// Type codes are a sequence of four uppercase ASCII letters.
|
|
68209
|
+
const chars = [stream.nextUint8, stream.nextUint8, stream.nextUint8, stream.nextUint8];
|
|
68210
|
+
if (chars.some((c) => c < 65 || c > 90))
|
|
68211
|
+
return undefined;
|
|
68212
|
+
const dataLength = stream.nextUint32;
|
|
68213
|
+
const data = dataLength > 0 ? stream.nextBytes(dataLength) : undefined;
|
|
68214
|
+
return {
|
|
68215
|
+
type: String.fromCharCode(...chars),
|
|
68216
|
+
data,
|
|
68217
|
+
};
|
|
68218
|
+
}
|
|
68219
|
+
/** Convert the output of [IModelConnection.generateElementMeshes]($frontend) into an array of [Polyface]($core-geometry)s.
|
|
68220
|
+
* @param data Encoded polyfaces obtained from [IModelConnection.generateElementMeshes]($frontend).
|
|
68221
|
+
* @returns a list of decoded polyfaces.
|
|
68222
|
+
* @beta
|
|
68223
|
+
*/
|
|
68224
|
+
function readElementMeshes(data) {
|
|
68225
|
+
const polyfaces = [];
|
|
68226
|
+
const stream = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ByteStream.fromUint8Array(data);
|
|
68227
|
+
const firstChunk = nextChunk(stream);
|
|
68228
|
+
if (!firstChunk || "LMSH" !== firstChunk.type)
|
|
68229
|
+
return polyfaces;
|
|
68230
|
+
while (stream.remainingLength > 0) {
|
|
68231
|
+
const chunk = nextChunk(stream);
|
|
68232
|
+
if (!chunk || chunk.type !== "PLFC" || !chunk.data)
|
|
68233
|
+
continue;
|
|
68234
|
+
try {
|
|
68235
|
+
const geom = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.BentleyGeometryFlatBuffer.bytesToGeometry(chunk.data, true);
|
|
68236
|
+
if (geom instanceof _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.IndexedPolyface)
|
|
68237
|
+
polyfaces.push(geom);
|
|
68238
|
+
}
|
|
68239
|
+
catch (_) {
|
|
68240
|
+
//
|
|
68241
|
+
}
|
|
68242
|
+
}
|
|
68243
|
+
return polyfaces;
|
|
68244
|
+
}
|
|
68245
|
+
|
|
68246
|
+
|
|
67934
68247
|
/***/ }),
|
|
67935
68248
|
|
|
67936
68249
|
/***/ "../../core/common/lib/esm/ElementProps.js":
|
|
@@ -79324,47 +79637,47 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
79324
79637
|
"use strict";
|
|
79325
79638
|
__webpack_require__.r(__webpack_exports__);
|
|
79326
79639
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
79327
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
79328
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
79329
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
79640
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.AdditionalTransform),
|
|
79641
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.AffineTransform),
|
|
79642
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.AmbientLight),
|
|
79330
79643
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
79331
79644
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
79332
79645
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
79333
79646
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
79334
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
79335
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
79336
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
79337
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
79338
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
79339
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
79647
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__.AreaPattern),
|
|
79648
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__.B3dmHeader),
|
|
79649
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.BRepEntity),
|
|
79650
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.BRepGeometryOperation),
|
|
79651
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BackendError),
|
|
79652
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.BackgroundFill),
|
|
79340
79653
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
79341
79654
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
79342
79655
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
79343
79656
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
79344
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
79345
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
79346
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
79347
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
79348
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
79349
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
79350
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
79351
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
79657
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.BaseLayerSettings),
|
|
79658
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.BaseMapLayerSettings),
|
|
79659
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.BatchType),
|
|
79660
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcConfiguration),
|
|
79661
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcManager),
|
|
79662
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.BentleyCloudRpcProtocol),
|
|
79663
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyError),
|
|
79664
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyStatus),
|
|
79352
79665
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
|
|
79353
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
79354
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
79666
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.BlobOptionsBuilder),
|
|
79667
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__.BoundingSphere),
|
|
79355
79668
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
79356
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
79357
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
79358
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
79669
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BriefcaseStatus),
|
|
79670
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_INVOCATION),
|
|
79671
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_REQUEST),
|
|
79359
79672
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
79360
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
79361
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
79362
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
79673
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Carto2DDegrees),
|
|
79674
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.Cartographic),
|
|
79675
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.CartographicRange),
|
|
79363
79676
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangeOpCode),
|
|
79364
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
79677
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChangeSetStatus),
|
|
79365
79678
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangedValueState),
|
|
79366
79679
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
79367
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
79680
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChannelConstraintError),
|
|
79368
79681
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
79369
79682
|
/* harmony export */ "CloudStorageCache": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageCache),
|
|
79370
79683
|
/* harmony export */ "CloudStorageContainerUrl": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageContainerUrl),
|
|
@@ -79375,323 +79688,324 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79375
79688
|
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.CodeSpec),
|
|
79376
79689
|
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_15__.ColorByName),
|
|
79377
79690
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
|
|
79378
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
79691
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.ColorIndex),
|
|
79379
79692
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
|
|
79380
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
79381
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
79382
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
79383
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
79693
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__.CompositeTileHeader),
|
|
79694
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.ConcreteEntityTypes),
|
|
79695
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentFlags),
|
|
79696
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentIdProvider),
|
|
79384
79697
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
79385
79698
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
79386
79699
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
79387
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
79700
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.CurrentImdlVersion),
|
|
79388
79701
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
79389
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
79390
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
79391
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
79392
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
79393
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
79394
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
79395
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
79396
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
79397
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
79702
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbQueryError),
|
|
79703
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbRequestKind),
|
|
79704
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseKind),
|
|
79705
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseStatus),
|
|
79706
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.DbResult),
|
|
79707
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbValueFormat),
|
|
79708
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__.DefaultSupportedTypes),
|
|
79709
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsRpcInterface),
|
|
79710
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsStatsOptions),
|
|
79398
79711
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
|
|
79399
79712
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
|
|
79400
79713
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
79401
79714
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECJsNames),
|
|
79402
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
79715
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.ECSqlReader),
|
|
79403
79716
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
|
|
79404
79717
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
|
|
79405
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
79406
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
79407
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
79408
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
79409
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
79410
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
79411
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
79412
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
79413
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
79414
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
79415
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
79416
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
79417
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
79418
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
79419
|
-
/* harmony export */ "FeatureGates": () => (/* reexport safe */
|
|
79420
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
79421
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
79422
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
79423
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
79424
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
79425
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
79426
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
79427
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
79428
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
79429
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
79430
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
79431
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
79432
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
79433
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
79434
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
79435
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
79436
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
79437
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
79438
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
79439
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
79440
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
79441
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
79442
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
79443
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
79444
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
79445
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
79446
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
79718
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Easing),
|
|
79719
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.EcefLocation),
|
|
79720
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.EdgeArgs),
|
|
79721
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometry),
|
|
79722
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ElementGeometryChange),
|
|
79723
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometryOpcode),
|
|
79724
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_73__.EmptyLocalization),
|
|
79725
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.EntityMetaData),
|
|
79726
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.EntityReferenceSet),
|
|
79727
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_29__.Environment),
|
|
79728
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.ExternalSourceAttachmentRole),
|
|
79729
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.Feature),
|
|
79730
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearance),
|
|
79731
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearanceProvider),
|
|
79732
|
+
/* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_30__.FeatureGates),
|
|
79733
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndex),
|
|
79734
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndexType),
|
|
79735
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__.FeatureOverrideType),
|
|
79736
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrides),
|
|
79737
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.FeatureTable),
|
|
79738
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.FeatureTableHeader),
|
|
79739
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.FillDisplay),
|
|
79740
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.FillFlags),
|
|
79741
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontMap),
|
|
79742
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontType),
|
|
79743
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.FresnelSettings),
|
|
79744
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Frustum),
|
|
79745
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__.FrustumPlanes),
|
|
79746
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.GeoCoordStatus),
|
|
79747
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeocentricTransform),
|
|
79748
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticDatum),
|
|
79749
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__.GeodeticEllipsoid),
|
|
79750
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransform),
|
|
79751
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransformPath),
|
|
79752
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.GeographicCRS),
|
|
79753
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryClass),
|
|
79754
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryParams),
|
|
79755
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamBuilder),
|
|
79756
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamFlags),
|
|
79757
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamIterator),
|
|
79758
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__.GeometrySummaryVerbosity),
|
|
79759
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GlbHeader),
|
|
79447
79760
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
79448
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
79449
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
79450
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
79451
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
79452
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
79453
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
79454
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
79455
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
79456
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
79457
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
79458
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
79459
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
79460
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
79461
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
79462
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
79463
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
79464
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
79465
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
79466
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
79467
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
79468
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
79469
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
79470
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
79471
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
79472
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
79473
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
79474
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
79475
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
79476
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
79477
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
79478
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
79479
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
79480
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
79481
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
79482
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
79483
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
79484
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
79485
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
79486
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
79487
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
79488
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
79489
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
79490
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
79491
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
79492
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
79493
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
79494
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
79495
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
79496
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
79497
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
79498
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
79499
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
79500
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
79501
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
79502
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
79503
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
79504
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
79505
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
79506
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
79507
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
79508
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
79761
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfV2ChunkTypes),
|
|
79762
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfVersions),
|
|
79763
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_55__.Gradient),
|
|
79764
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.GraphicParams),
|
|
79765
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileDefinition),
|
|
79766
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileTransform),
|
|
79767
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.GridOrientationType),
|
|
79768
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_57__.GroundPlane),
|
|
79769
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_60__.HSLColor),
|
|
79770
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVColor),
|
|
79771
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVConstants),
|
|
79772
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.Helmert2DWithZOffset),
|
|
79773
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.HemisphereLights),
|
|
79774
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_58__.HiddenLine),
|
|
79775
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_59__.Hilite),
|
|
79776
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRS),
|
|
79777
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRSExtent),
|
|
79778
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.I3dmHeader),
|
|
79779
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.IModel),
|
|
79780
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelError),
|
|
79781
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelNotFoundResponse),
|
|
79782
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelReadRpcInterface),
|
|
79783
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelStatus),
|
|
79784
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__.IModelTileRpcInterface),
|
|
79785
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_65__.IModelVersion),
|
|
79786
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.INSTANCE),
|
|
79787
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBuffer),
|
|
79788
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBufferFormat),
|
|
79789
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphic),
|
|
79790
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphicCorners),
|
|
79791
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ImageMapLayerSettings),
|
|
79792
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSource),
|
|
79793
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSourceFormat),
|
|
79794
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlFlags),
|
|
79795
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlHeader),
|
|
79796
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.InternetConnectivityStatus),
|
|
79797
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Interpolation),
|
|
79798
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.IpcAppChannel),
|
|
79799
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__.IpcSession),
|
|
79800
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocket),
|
|
79801
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketBackend),
|
|
79802
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketFrontend),
|
|
79803
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessage),
|
|
79804
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessageType),
|
|
79805
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__.IpcWebSocketTransport),
|
|
79806
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.LightSettings),
|
|
79807
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_72__.LinePixels),
|
|
79808
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__.LineStyle),
|
|
79809
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.MapImagerySettings),
|
|
79810
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapLayerSettings),
|
|
79811
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapSubLayerSettings),
|
|
79812
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.MarshalingBinaryMarker),
|
|
79813
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_76__.MassPropertiesOperation),
|
|
79814
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdge),
|
|
79815
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdges),
|
|
79816
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolyline),
|
|
79817
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolylineList),
|
|
79818
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroup),
|
|
79819
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroups),
|
|
79820
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ModelGeometryChanges),
|
|
79821
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ModelMapLayerSettings),
|
|
79509
79822
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.MonochromeMode),
|
|
79510
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
79511
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
79512
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
79513
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
79514
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
79515
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
79516
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
79517
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
79518
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
79519
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
79520
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
79521
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
79522
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
79523
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
79524
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
79525
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
79526
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
79527
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
79528
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
79529
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
79530
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
79531
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
79532
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
79533
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
79534
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
79823
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.NoContentError),
|
|
79824
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.NonUniformColor),
|
|
79825
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Npc),
|
|
79826
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCenter),
|
|
79827
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCorners),
|
|
79828
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.OPERATION),
|
|
79829
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormal),
|
|
79830
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormalPair),
|
|
79831
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.OverriddenBy),
|
|
79832
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.POLICY),
|
|
79833
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.PackedFeatureTable),
|
|
79834
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement2d),
|
|
79835
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement3d),
|
|
79836
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__.PlanProjectionSettings),
|
|
79837
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskMode),
|
|
79838
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskPriority),
|
|
79839
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskSettings),
|
|
79840
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__.PntsHeader),
|
|
79841
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.PointCloudDisplaySettings),
|
|
79842
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineData),
|
|
79843
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineEdgeArgs),
|
|
79844
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineFlags),
|
|
79845
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineTypeFlags),
|
|
79846
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.PositionalVectorTransform),
|
|
79847
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PrimitiveTypeCode),
|
|
79535
79848
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
79536
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
79537
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
79538
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
79539
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
79540
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
79541
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
79542
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
79543
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
79544
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
79545
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
79546
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
79547
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
79548
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
79549
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
79550
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
79551
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
79552
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
79553
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
79554
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
79849
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Projection),
|
|
79850
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PropertyMetaData),
|
|
79851
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.PropertyMetaDataMap),
|
|
79852
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams2d),
|
|
79853
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams3d),
|
|
79854
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2d),
|
|
79855
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBuffer),
|
|
79856
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBufferBuilder),
|
|
79857
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dList),
|
|
79858
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3d),
|
|
79859
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBuffer),
|
|
79860
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBufferBuilder),
|
|
79861
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dList),
|
|
79862
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.Quantization),
|
|
79863
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryBinder),
|
|
79864
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryOptionsBuilder),
|
|
79865
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryRowFormat),
|
|
79866
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.REGISTRY),
|
|
79867
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.Rank),
|
|
79555
79868
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
|
|
79556
79869
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
|
|
79557
79870
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
|
|
79558
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
79559
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
79560
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
79561
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
79562
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
79563
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
79564
|
-
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */
|
|
79565
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
79566
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
79567
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
79568
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
79569
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
79570
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
79571
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
79572
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
79573
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
79574
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
79575
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
79576
|
-
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */
|
|
79577
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
79578
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
79579
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
79580
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
79581
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
79582
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
79583
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
79584
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
79585
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
79586
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
79587
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
79588
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
79589
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
79590
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
79591
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
79592
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
79593
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
79594
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
79595
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
79596
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
79597
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
79598
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
79599
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
79600
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
79601
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
79602
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
79603
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
79604
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
79871
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.RealityModelDisplaySettings),
|
|
79872
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.RelatedElement),
|
|
79873
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__.RenderMaterial),
|
|
79874
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.RenderMode),
|
|
79875
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__.RenderSchedule),
|
|
79876
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_94__.RenderTexture),
|
|
79877
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RepositoryStatus),
|
|
79878
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.ResponseLike),
|
|
79879
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_95__.RgbColor),
|
|
79880
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcConfiguration),
|
|
79881
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcContentType),
|
|
79882
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlChannel),
|
|
79883
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlResponse),
|
|
79884
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDefaultConfiguration),
|
|
79885
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectProtocol),
|
|
79886
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectRequest),
|
|
79887
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcEndpoint),
|
|
79888
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_103__.RpcInterface),
|
|
79889
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RpcInterfaceStatus),
|
|
79890
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcInvocation),
|
|
79891
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_104__.RpcManager),
|
|
79892
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcMarshaling),
|
|
79893
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__.RpcMultipart),
|
|
79894
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcNotFoundResponse),
|
|
79895
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__.RpcOpenAPIDescription),
|
|
79896
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperation),
|
|
79897
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperationPolicy),
|
|
79898
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__.RpcPendingQueue),
|
|
79899
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcPendingResponse),
|
|
79900
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocol),
|
|
79901
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcProtocolEvent),
|
|
79902
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocolVersion),
|
|
79903
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushChannel),
|
|
79904
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushConnection),
|
|
79905
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushService),
|
|
79906
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushSubscription),
|
|
79907
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushTransport),
|
|
79908
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.RpcRegistry),
|
|
79909
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.RpcRequest),
|
|
79910
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestEvent),
|
|
79911
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcRequestFulfillment),
|
|
79912
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestStatus),
|
|
79913
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcResponseCacheControl),
|
|
79914
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcRoutingMap),
|
|
79915
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__.RpcRoutingToken),
|
|
79916
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcSerializedValue),
|
|
79917
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcSessionInvocation),
|
|
79605
79918
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
79606
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
79607
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
79608
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
79609
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
79610
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
79611
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
79612
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
79613
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
79614
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
79615
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
79616
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
79617
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
79618
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
79619
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
79620
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
79621
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
79622
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
79623
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
79624
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
79919
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.SectionType),
|
|
79920
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerError),
|
|
79921
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerTimeoutError),
|
|
79922
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.SilhouetteEdgeArgs),
|
|
79923
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBox),
|
|
79924
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBoxImageType),
|
|
79925
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyCube),
|
|
79926
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyGradient),
|
|
79927
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkySphere),
|
|
79928
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__.SnapshotIModelRpcInterface),
|
|
79929
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.SolarLight),
|
|
79930
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_109__.SolarShadowSettings),
|
|
79931
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifier),
|
|
79932
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierFlags),
|
|
79933
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierInsideDisplay),
|
|
79934
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierOutsideDisplay),
|
|
79935
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifiers),
|
|
79936
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__.SubCategoryAppearance),
|
|
79937
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__.SubCategoryOverride),
|
|
79625
79938
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
79626
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
79627
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
79628
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
79629
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
79630
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
79631
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
79632
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
79633
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
79634
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
79635
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
79636
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
79637
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
79638
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
79639
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
79640
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
79641
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
79642
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
79643
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
79644
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
79645
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
79646
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
79647
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
79648
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
79649
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
79650
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
79651
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
79939
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainHeightOriginMode),
|
|
79940
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainSettings),
|
|
79941
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__.TestRpcManager),
|
|
79942
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__.TextString),
|
|
79943
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_77__.TextureMapUnits),
|
|
79944
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_114__.TextureMapping),
|
|
79945
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_115__.TextureTransparency),
|
|
79946
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
79947
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
79948
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
79949
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
79950
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
79951
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
79952
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
79953
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.TileContentSource),
|
|
79954
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileFormat),
|
|
79955
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileHeader),
|
|
79956
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileMetadataReader),
|
|
79957
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileOptions),
|
|
79958
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadError),
|
|
79959
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadStatus),
|
|
79960
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TreeFlags),
|
|
79961
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tween),
|
|
79962
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tweens),
|
|
79963
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_120__.TxnAction),
|
|
79964
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.TypeDefinition),
|
|
79652
79965
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
79653
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
79654
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
79655
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
79656
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
79657
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
79658
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
79659
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
79660
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
79661
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
79662
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
79663
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
79664
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
79665
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
79666
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
79667
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
79668
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
79669
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
79670
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
79671
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
79672
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
79673
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
79674
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
79675
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
79676
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
79677
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
79678
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
79679
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
79680
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
79681
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
79682
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
79683
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
79684
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
79685
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
79686
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
79687
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
79688
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
79689
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
79690
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
79691
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
79692
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
79693
|
-
/* harmony export */ "
|
|
79694
|
-
/* harmony export */ "
|
|
79966
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.VerticalCRS),
|
|
79967
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails),
|
|
79968
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails3d),
|
|
79969
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.ViewFlags),
|
|
79970
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.WEB_RPC_CONSTANTS),
|
|
79971
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__.WebAppRpcLogging),
|
|
79972
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcProtocol),
|
|
79973
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcRequest),
|
|
79974
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
79975
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__.WipRpcInterface),
|
|
79976
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.XyzRotation),
|
|
79977
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.aggregateLoad),
|
|
79978
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange2d),
|
|
79979
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange3d),
|
|
79980
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarAngles),
|
|
79981
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirection),
|
|
79982
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirectionFromAngles),
|
|
79983
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSunriseOrSunset),
|
|
79984
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.compareIModelTileTreeIds),
|
|
79985
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileProps),
|
|
79986
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileRanges),
|
|
79987
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeTileChordTolerance),
|
|
79988
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.defaultTileOptions),
|
|
79989
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.getMaximumMajorTileFormatVersion),
|
|
79990
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.getPullChangesIpcChannel),
|
|
79991
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.getTileObjectReference),
|
|
79992
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.iModelTileTreeIdToString),
|
|
79993
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__.iTwinChannel),
|
|
79994
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.initializeRpcRequest),
|
|
79995
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.isKnownTileFormat),
|
|
79996
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement2dProps),
|
|
79997
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement3dProps),
|
|
79998
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isPowerOfTwo),
|
|
79999
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isValidImageSourceFormat),
|
|
80000
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.mapToGeoServiceStatus),
|
|
80001
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppChannel),
|
|
80002
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppNotify),
|
|
80003
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.nextHighestPowerOfTwo),
|
|
80004
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.nextPoint3d64FromByteStream),
|
|
80005
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.parseTileTreeIdAndContentId),
|
|
80006
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_24__.readElementMeshes),
|
|
80007
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.readTileContentDescription),
|
|
80008
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.tileFormatFromNumber)
|
|
79695
80009
|
/* harmony export */ });
|
|
79696
80010
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
79697
80011
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -79717,135 +80031,136 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79717
80031
|
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
79718
80032
|
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
79719
80033
|
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
79720
|
-
/* harmony import */ var
|
|
79721
|
-
/* harmony import */ var
|
|
79722
|
-
/* harmony import */ var
|
|
79723
|
-
/* harmony import */ var
|
|
79724
|
-
/* harmony import */ var
|
|
79725
|
-
/* harmony import */ var
|
|
79726
|
-
/* harmony import */ var
|
|
79727
|
-
/* harmony import */ var
|
|
79728
|
-
/* harmony import */ var
|
|
79729
|
-
/* harmony import */ var
|
|
79730
|
-
/* harmony import */ var
|
|
79731
|
-
/* harmony import */ var
|
|
79732
|
-
/* harmony import */ var
|
|
79733
|
-
/* harmony import */ var
|
|
79734
|
-
/* harmony import */ var
|
|
79735
|
-
/* harmony import */ var
|
|
79736
|
-
/* harmony import */ var
|
|
79737
|
-
/* harmony import */ var
|
|
79738
|
-
/* harmony import */ var
|
|
79739
|
-
/* harmony import */ var
|
|
79740
|
-
/* harmony import */ var
|
|
79741
|
-
/* harmony import */ var
|
|
79742
|
-
/* harmony import */ var
|
|
79743
|
-
/* harmony import */ var
|
|
79744
|
-
/* harmony import */ var
|
|
79745
|
-
/* harmony import */ var
|
|
79746
|
-
/* harmony import */ var
|
|
79747
|
-
/* harmony import */ var
|
|
79748
|
-
/* harmony import */ var
|
|
79749
|
-
/* harmony import */ var
|
|
79750
|
-
/* harmony import */ var
|
|
79751
|
-
/* harmony import */ var
|
|
79752
|
-
/* harmony import */ var
|
|
79753
|
-
/* harmony import */ var
|
|
79754
|
-
/* harmony import */ var
|
|
79755
|
-
/* harmony import */ var
|
|
79756
|
-
/* harmony import */ var
|
|
79757
|
-
/* harmony import */ var
|
|
79758
|
-
/* harmony import */ var
|
|
79759
|
-
/* harmony import */ var
|
|
79760
|
-
/* harmony import */ var
|
|
79761
|
-
/* harmony import */ var
|
|
79762
|
-
/* harmony import */ var
|
|
79763
|
-
/* harmony import */ var
|
|
79764
|
-
/* harmony import */ var
|
|
79765
|
-
/* harmony import */ var
|
|
79766
|
-
/* harmony import */ var
|
|
79767
|
-
/* harmony import */ var
|
|
79768
|
-
/* harmony import */ var
|
|
79769
|
-
/* harmony import */ var
|
|
79770
|
-
/* harmony import */ var
|
|
79771
|
-
/* harmony import */ var
|
|
79772
|
-
/* harmony import */ var
|
|
79773
|
-
/* harmony import */ var
|
|
79774
|
-
/* harmony import */ var
|
|
79775
|
-
/* harmony import */ var
|
|
79776
|
-
/* harmony import */ var
|
|
79777
|
-
/* harmony import */ var
|
|
79778
|
-
/* harmony import */ var
|
|
79779
|
-
/* harmony import */ var
|
|
79780
|
-
/* harmony import */ var
|
|
79781
|
-
/* harmony import */ var
|
|
79782
|
-
/* harmony import */ var
|
|
79783
|
-
/* harmony import */ var
|
|
79784
|
-
/* harmony import */ var
|
|
79785
|
-
/* harmony import */ var
|
|
79786
|
-
/* harmony import */ var
|
|
79787
|
-
/* harmony import */ var
|
|
79788
|
-
/* harmony import */ var
|
|
79789
|
-
/* harmony import */ var
|
|
79790
|
-
/* harmony import */ var
|
|
79791
|
-
/* harmony import */ var
|
|
79792
|
-
/* harmony import */ var
|
|
79793
|
-
/* harmony import */ var
|
|
79794
|
-
/* harmony import */ var
|
|
79795
|
-
/* harmony import */ var
|
|
79796
|
-
/* harmony import */ var
|
|
79797
|
-
/* harmony import */ var
|
|
79798
|
-
/* harmony import */ var
|
|
79799
|
-
/* harmony import */ var
|
|
79800
|
-
/* harmony import */ var
|
|
79801
|
-
/* harmony import */ var
|
|
79802
|
-
/* harmony import */ var
|
|
79803
|
-
/* harmony import */ var
|
|
79804
|
-
/* harmony import */ var
|
|
79805
|
-
/* harmony import */ var
|
|
79806
|
-
/* harmony import */ var
|
|
79807
|
-
/* harmony import */ var
|
|
79808
|
-
/* harmony import */ var
|
|
79809
|
-
/* harmony import */ var
|
|
79810
|
-
/* harmony import */ var
|
|
79811
|
-
/* harmony import */ var
|
|
79812
|
-
/* harmony import */ var
|
|
79813
|
-
/* harmony import */ var
|
|
79814
|
-
/* harmony import */ var
|
|
79815
|
-
/* harmony import */ var
|
|
79816
|
-
/* harmony import */ var
|
|
79817
|
-
/* harmony import */ var
|
|
79818
|
-
/* harmony import */ var
|
|
79819
|
-
/* harmony import */ var
|
|
79820
|
-
/* harmony import */ var
|
|
79821
|
-
/* harmony import */ var
|
|
79822
|
-
/* harmony import */ var
|
|
79823
|
-
/* harmony import */ var
|
|
79824
|
-
/* harmony import */ var
|
|
79825
|
-
/* harmony import */ var
|
|
79826
|
-
/* harmony import */ var
|
|
79827
|
-
/* harmony import */ var
|
|
79828
|
-
/* harmony import */ var
|
|
79829
|
-
/* harmony import */ var
|
|
79830
|
-
/* harmony import */ var
|
|
79831
|
-
/* harmony import */ var
|
|
79832
|
-
/* harmony import */ var
|
|
79833
|
-
/* harmony import */ var
|
|
79834
|
-
/* harmony import */ var
|
|
79835
|
-
/* harmony import */ var
|
|
79836
|
-
/* harmony import */ var
|
|
79837
|
-
/* harmony import */ var
|
|
79838
|
-
/* harmony import */ var
|
|
79839
|
-
/* harmony import */ var
|
|
79840
|
-
/* harmony import */ var
|
|
79841
|
-
/* harmony import */ var
|
|
79842
|
-
/* harmony import */ var
|
|
79843
|
-
/* harmony import */ var
|
|
79844
|
-
/* harmony import */ var
|
|
79845
|
-
/* harmony import */ var
|
|
79846
|
-
/* harmony import */ var
|
|
79847
|
-
/* harmony import */ var
|
|
79848
|
-
/* harmony import */ var
|
|
80034
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
80035
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
80036
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
80037
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
80038
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
80039
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
80040
|
+
/* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
|
|
80041
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
80042
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
80043
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
80044
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
80045
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
80046
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
80047
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
80048
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
80049
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
80050
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
80051
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
80052
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
80053
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
80054
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
80055
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
80056
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
80057
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
80058
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
80059
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
80060
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
80061
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
80062
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
80063
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
80064
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
80065
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
80066
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
80067
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
80068
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
80069
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
80070
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
80071
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
80072
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
80073
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
80074
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
80075
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
80076
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
80077
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
80078
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
80079
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
80080
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
80081
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
80082
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
80083
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
80084
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
80085
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
80086
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
80087
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
80088
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
80089
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
80090
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
80091
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
80092
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
80093
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
80094
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
80095
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
80096
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
80097
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
80098
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
80099
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
80100
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
80101
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
80102
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
80103
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
80104
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
80105
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
80106
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
80107
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
80108
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
80109
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
80110
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
80111
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
80112
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
80113
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
80114
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
80115
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
80116
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
80117
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
80118
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
80119
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
80120
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
80121
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
80122
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
80123
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
80124
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
80125
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
80126
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
80127
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
80128
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
80129
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
80130
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
80131
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
80132
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
80133
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
80134
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
80135
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
80136
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
80137
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
80138
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
80139
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
80140
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
80141
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
80142
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
80143
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
80144
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
80145
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
80146
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
80147
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
80148
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
80149
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
80150
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
80151
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
80152
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
80153
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
80154
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
80155
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
80156
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
80157
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
80158
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
80159
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
80160
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
80161
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
80162
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
80163
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
79849
80164
|
/*---------------------------------------------------------------------------------------------
|
|
79850
80165
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
79851
80166
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -80001,6 +80316,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
80001
80316
|
|
|
80002
80317
|
|
|
80003
80318
|
|
|
80319
|
+
|
|
80004
80320
|
|
|
80005
80321
|
|
|
80006
80322
|
/** @docs-package-description
|
|
@@ -89084,11 +89400,14 @@ class IModelReadRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
89084
89400
|
async loadElementProps(_iModelToken, _elementIdentifier, _options) {
|
|
89085
89401
|
return this.forward(arguments);
|
|
89086
89402
|
}
|
|
89403
|
+
async generateElementMeshes(_iModelToken, _props) {
|
|
89404
|
+
return this.forward(arguments);
|
|
89405
|
+
}
|
|
89087
89406
|
}
|
|
89088
89407
|
/** The immutable name of the interface. */
|
|
89089
89408
|
IModelReadRpcInterface.interfaceName = "IModelReadRpcInterface";
|
|
89090
89409
|
/** The semantic version of the interface. */
|
|
89091
|
-
IModelReadRpcInterface.interfaceVersion = "3.
|
|
89410
|
+
IModelReadRpcInterface.interfaceVersion = "3.5.0";
|
|
89092
89411
|
__decorate([
|
|
89093
89412
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
|
|
89094
89413
|
], IModelReadRpcInterface.prototype, "getConnectionProps", null);
|
|
@@ -89747,7 +90066,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89747
90066
|
/* harmony export */ "RpcNotFoundResponse": () => (/* binding */ RpcNotFoundResponse),
|
|
89748
90067
|
/* harmony export */ "RpcPendingResponse": () => (/* binding */ RpcPendingResponse)
|
|
89749
90068
|
/* harmony export */ });
|
|
89750
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
90069
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
89751
90070
|
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
89752
90071
|
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
89753
90072
|
/* harmony import */ var _RpcConfiguration__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
@@ -105590,11 +105909,27 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
105590
105909
|
/** Request element mass properties from the backend.
|
|
105591
105910
|
* @note For better performance use [[getMassPropertiesPerCandidate]] when called from a loop with identical operations and a single candidate per iteration.
|
|
105592
105911
|
*/
|
|
105593
|
-
async getMassProperties(requestProps) {
|
|
105912
|
+
async getMassProperties(requestProps) {
|
|
105913
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassProperties(this.getRpcProps(), requestProps);
|
|
105914
|
+
}
|
|
105594
105915
|
/** Request mass properties for multiple elements from the backend. */
|
|
105595
105916
|
async getMassPropertiesPerCandidate(requestProps) {
|
|
105596
105917
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassPropertiesPerCandidate(this.getRpcProps(), requestProps);
|
|
105597
105918
|
}
|
|
105919
|
+
/** Produce encoded [Polyface]($core-geometry)s from the geometry stream of a [GeometricElement]($backend).
|
|
105920
|
+
* A polyface is produced for each geometric entry in the element's geometry stream, excluding geometry like open curves that can't be converted into polyfaces.
|
|
105921
|
+
* The polyfaces can be decoded using [readElementMeshes]($common).
|
|
105922
|
+
* Symbology, UV parameters, and normal vectors are not included in the result.
|
|
105923
|
+
* @param requestProps A description of how to produce the polyfaces and from which element to obtain them.
|
|
105924
|
+
* @returns an encoded list of polyfaces that can be decoded by [readElementMeshes]($common).
|
|
105925
|
+
* @throws Error if [ElementMeshRequestProps.source]($common) does not refer to a [GeometricElement]($backend).
|
|
105926
|
+
* @note This function is intended to support limited analysis of an element's geometry as a mesh. It is not intended for producing graphics.
|
|
105927
|
+
* @see [[TileAdmin.requestElementGraphics]] to obtain meshes appropriate for display.
|
|
105928
|
+
* @beta
|
|
105929
|
+
*/
|
|
105930
|
+
async generateElementMeshes(requestProps) {
|
|
105931
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).generateElementMeshes(this.getRpcProps(), requestProps);
|
|
105932
|
+
}
|
|
105598
105933
|
/** Convert a point in this iModel's Spatial coordinates to a [[Cartographic]] using the Geographic location services for this IModelConnection.
|
|
105599
105934
|
* @param spatial A point in the iModel's spatial coordinates
|
|
105600
105935
|
* @param result If defined, use this for output
|
|
@@ -160239,7 +160574,7 @@ class GltfReader {
|
|
|
160239
160574
|
if (dracoMeshes.length === 0)
|
|
160240
160575
|
return;
|
|
160241
160576
|
try {
|
|
160242
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
160577
|
+
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815"), __webpack_require__.e("_cb67")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.12/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
160243
160578
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
160244
160579
|
}
|
|
160245
160580
|
catch (err) {
|
|
@@ -163384,7 +163719,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
163384
163719
|
async function decodeDracoPointCloud(buf) {
|
|
163385
163720
|
var _a, _b, _c, _d, _e, _f;
|
|
163386
163721
|
try {
|
|
163387
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
163722
|
+
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815"), __webpack_require__.e("_cb67")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.12/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
163388
163723
|
const mesh = await dracoLoader.parse(buf, {});
|
|
163389
163724
|
if (mesh.topology !== "point-list")
|
|
163390
163725
|
return undefined;
|
|
@@ -291135,7 +291470,7 @@ exports.getClientAccessTokenFromBackend = getClientAccessTokenFromBackend;
|
|
|
291135
291470
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291136
291471
|
*--------------------------------------------------------------------------------------------*/
|
|
291137
291472
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291138
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291473
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291139
291474
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
291140
291475
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291141
291476
|
const expect = chai.expect;
|
|
@@ -291192,7 +291527,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291192
291527
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291193
291528
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291194
291529
|
*--------------------------------------------------------------------------------------------*/
|
|
291195
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291530
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291196
291531
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291197
291532
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291198
291533
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
@@ -291259,7 +291594,7 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
|
291259
291594
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
291260
291595
|
};
|
|
291261
291596
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291262
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291597
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291263
291598
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
291264
291599
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291265
291600
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
@@ -291330,7 +291665,7 @@ describe("Operational: Execute Query", () => {
|
|
|
291330
291665
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291331
291666
|
*--------------------------------------------------------------------------------------------*/
|
|
291332
291667
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291333
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291668
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291334
291669
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291335
291670
|
const expect = chai.expect;
|
|
291336
291671
|
describe("IModel Views", () => {
|
|
@@ -291372,7 +291707,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291372
291707
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291373
291708
|
*--------------------------------------------------------------------------------------------*/
|
|
291374
291709
|
const buffer_1 = __webpack_require__(/*! buffer */ "../../common/temp/node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js");
|
|
291375
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291710
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291376
291711
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291377
291712
|
const core_geometry_1 = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
291378
291713
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -291713,7 +292048,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291713
292048
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291714
292049
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291715
292050
|
*--------------------------------------------------------------------------------------------*/
|
|
291716
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292051
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291717
292052
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291718
292053
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291719
292054
|
const expect = chai.expect;
|
|
@@ -291753,7 +292088,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291753
292088
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291754
292089
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291755
292090
|
*--------------------------------------------------------------------------------------------*/
|
|
291756
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292091
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291757
292092
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291758
292093
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291759
292094
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.5.0/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
@@ -291949,7 +292284,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291949
292284
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291950
292285
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291951
292286
|
*--------------------------------------------------------------------------------------------*/
|
|
291952
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292287
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291953
292288
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291954
292289
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291955
292290
|
const expect = chai.expect;
|
|
@@ -292005,7 +292340,7 @@ exports.IModelSession = void 0;
|
|
|
292005
292340
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
292006
292341
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
292007
292342
|
*--------------------------------------------------------------------------------------------*/
|
|
292008
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292343
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292009
292344
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
292010
292345
|
const projects_client_1 = __webpack_require__(/*! @itwin/projects-client */ "../../common/temp/node_modules/.pnpm/@itwin+projects-client@0.6.0/node_modules/@itwin/projects-client/lib/esm/projects-client.js");
|
|
292011
292346
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -292109,7 +292444,7 @@ exports.IModelSession = IModelSession;
|
|
|
292109
292444
|
*--------------------------------------------------------------------------------------------*/
|
|
292110
292445
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
292111
292446
|
exports.TestContext = void 0;
|
|
292112
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292447
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292113
292448
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
292114
292449
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
292115
292450
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
@@ -292163,7 +292498,7 @@ class TestContext {
|
|
|
292163
292498
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
292164
292499
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${(_a = process.env.IMJS_URL_PREFIX) !== null && _a !== void 0 ? _a : ""}api.bentley.com/imodels` } });
|
|
292165
292500
|
await core_frontend_1.NoRenderApp.startup({
|
|
292166
|
-
applicationVersion: "3.5.0-dev.
|
|
292501
|
+
applicationVersion: "3.5.0-dev.63",
|
|
292167
292502
|
applicationId: this.settings.gprid,
|
|
292168
292503
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
292169
292504
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -292201,8 +292536,8 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
|
292201
292536
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
292202
292537
|
};
|
|
292203
292538
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
292204
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292205
|
-
const chaiAsPromised = __webpack_require__(/*! chai-as-promised */ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
292539
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292540
|
+
const chaiAsPromised = __webpack_require__(/*! chai-as-promised */ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js");
|
|
292206
292541
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
292207
292542
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
292208
292543
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.5.0/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
@@ -293882,7 +294217,7 @@ class PresentationRpcInterface extends _itwin_core_common__WEBPACK_IMPORTED_MODU
|
|
|
293882
294217
|
/** The immutable name of the interface. */
|
|
293883
294218
|
PresentationRpcInterface.interfaceName = "PresentationRpcInterface"; // eslint-disable-line @typescript-eslint/naming-convention
|
|
293884
294219
|
/** The semantic version of the interface. */
|
|
293885
|
-
PresentationRpcInterface.interfaceVersion = "3.
|
|
294220
|
+
PresentationRpcInterface.interfaceVersion = "3.2.0";
|
|
293886
294221
|
__decorate([
|
|
293887
294222
|
_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcOperation.setPolicy({ allowResponseCompression: true })
|
|
293888
294223
|
], PresentationRpcInterface.prototype, "getPagedNodes", null);
|
|
@@ -295416,6 +295751,7 @@ var SortDirection;
|
|
|
295416
295751
|
class Descriptor {
|
|
295417
295752
|
/** Construct a new Descriptor using a [[DescriptorSource]] */
|
|
295418
295753
|
constructor(source) {
|
|
295754
|
+
var _a, _b;
|
|
295419
295755
|
this.connectionId = source.connectionId;
|
|
295420
295756
|
this.inputKeysHash = source.inputKeysHash;
|
|
295421
295757
|
this.selectionInfo = source.selectionInfo;
|
|
@@ -295426,7 +295762,9 @@ class Descriptor {
|
|
|
295426
295762
|
this.fields = [...source.fields];
|
|
295427
295763
|
this.sortingField = source.sortingField;
|
|
295428
295764
|
this.sortDirection = source.sortDirection;
|
|
295429
|
-
this.filterExpression = source.filterExpression;
|
|
295765
|
+
this.filterExpression = (_a = source.fieldsFilterExpression) !== null && _a !== void 0 ? _a : source.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
295766
|
+
this.fieldsFilterExpression = (_b = source.fieldsFilterExpression) !== null && _b !== void 0 ? _b : source.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
295767
|
+
this.instanceFilter = source.instanceFilter;
|
|
295430
295768
|
}
|
|
295431
295769
|
/** Serialize [[Descriptor]] to JSON */
|
|
295432
295770
|
toJSON() {
|
|
@@ -295443,7 +295781,8 @@ class Descriptor {
|
|
|
295443
295781
|
fields,
|
|
295444
295782
|
selectClasses,
|
|
295445
295783
|
classesMap,
|
|
295446
|
-
}, this.sortingField !== undefined && { sortingFieldName: this.sortingField.name }, this.sortDirection !== undefined && { sortDirection: this.sortDirection }, this.filterExpression !== undefined && { filterExpression: this.filterExpression },
|
|
295784
|
+
}, this.sortingField !== undefined && { sortingFieldName: this.sortingField.name }, this.sortDirection !== undefined && { sortDirection: this.sortDirection }, this.filterExpression !== undefined && { filterExpression: this.filterExpression }, // eslint-disable-line deprecation/deprecation
|
|
295785
|
+
this.fieldsFilterExpression !== undefined && { fieldsFilterExpression: this.fieldsFilterExpression }, this.instanceFilter !== undefined && { instanceFilter: this.instanceFilter }, this.selectionInfo !== undefined && { selectionInfo: this.selectionInfo });
|
|
295447
295786
|
}
|
|
295448
295787
|
/** Deserialize [[Descriptor]] from JSON */
|
|
295449
295788
|
static fromJSON(json) {
|
|
@@ -295482,16 +295821,18 @@ class Descriptor {
|
|
|
295482
295821
|
* @public
|
|
295483
295822
|
*/
|
|
295484
295823
|
createDescriptorOverrides() {
|
|
295485
|
-
var _a;
|
|
295824
|
+
var _a, _b;
|
|
295486
295825
|
const overrides = {};
|
|
295487
295826
|
if (this.displayType)
|
|
295488
295827
|
overrides.displayType = this.displayType;
|
|
295489
295828
|
if (this.contentFlags !== 0)
|
|
295490
295829
|
overrides.contentFlags = this.contentFlags;
|
|
295491
|
-
if (this.filterExpression)
|
|
295492
|
-
overrides.
|
|
295830
|
+
if (this.filterExpression || this.fieldsFilterExpression) // eslint-disable-line deprecation/deprecation
|
|
295831
|
+
overrides.fieldsFilterExpression = (_a = this.fieldsFilterExpression) !== null && _a !== void 0 ? _a : this.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
295832
|
+
if (this.instanceFilter)
|
|
295833
|
+
overrides.instanceFilter = this.instanceFilter;
|
|
295493
295834
|
if (this.sortingField)
|
|
295494
|
-
overrides.sorting = { field: this.sortingField.getFieldDescriptor(), direction: (
|
|
295835
|
+
overrides.sorting = { field: this.sortingField.getFieldDescriptor(), direction: (_b = this.sortDirection) !== null && _b !== void 0 ? _b : SortDirection.Ascending };
|
|
295495
295836
|
return overrides;
|
|
295496
295837
|
}
|
|
295497
295838
|
}
|
|
@@ -305896,7 +306237,7 @@ var WidgetState;
|
|
|
305896
306237
|
|
|
305897
306238
|
/***/ }),
|
|
305898
306239
|
|
|
305899
|
-
/***/ "?
|
|
306240
|
+
/***/ "?1120":
|
|
305900
306241
|
/*!**********************!*\
|
|
305901
306242
|
!*** util (ignored) ***!
|
|
305902
306243
|
\**********************/
|
|
@@ -307247,9 +307588,9 @@ flatbuffers.ByteBuffer.prototype.createLong = function(low, high) {
|
|
|
307247
307588
|
|
|
307248
307589
|
/***/ }),
|
|
307249
307590
|
|
|
307250
|
-
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307591
|
+
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs":
|
|
307251
307592
|
/*!**********************************************************************************************!*\
|
|
307252
|
-
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307593
|
+
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs ***!
|
|
307253
307594
|
\**********************************************************************************************/
|
|
307254
307595
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307255
307596
|
|
|
@@ -307289,7 +307630,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307289
307630
|
*
|
|
307290
307631
|
* @author Dan Kogai (https://github.com/dankogai)
|
|
307291
307632
|
*/
|
|
307292
|
-
const version = '3.7.
|
|
307633
|
+
const version = '3.7.3';
|
|
307293
307634
|
/**
|
|
307294
307635
|
* @deprecated use lowercase `version`.
|
|
307295
307636
|
*/
|
|
@@ -307578,9 +307919,9 @@ const gBase64 = {
|
|
|
307578
307919
|
|
|
307579
307920
|
/***/ }),
|
|
307580
307921
|
|
|
307581
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307922
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
307582
307923
|
/*!******************************************************************************************************************************!*\
|
|
307583
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307924
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
307584
307925
|
\******************************************************************************************************************************/
|
|
307585
307926
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307586
307927
|
|
|
@@ -307599,9 +307940,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
307599
307940
|
|
|
307600
307941
|
/***/ }),
|
|
307601
307942
|
|
|
307602
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307943
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
307603
307944
|
/*!****************************************************************************************************************************!*\
|
|
307604
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307945
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
307605
307946
|
\****************************************************************************************************************************/
|
|
307606
307947
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307607
307948
|
|
|
@@ -307616,9 +307957,9 @@ function _arrayWithHoles(arr) {
|
|
|
307616
307957
|
|
|
307617
307958
|
/***/ }),
|
|
307618
307959
|
|
|
307619
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307960
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
307620
307961
|
/*!***********************************************************************************************************************************!*\
|
|
307621
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307962
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
307622
307963
|
\***********************************************************************************************************************************/
|
|
307623
307964
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307624
307965
|
|
|
@@ -307636,9 +307977,9 @@ function _assertThisInitialized(self) {
|
|
|
307636
307977
|
|
|
307637
307978
|
/***/ }),
|
|
307638
307979
|
|
|
307639
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307980
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
307640
307981
|
/*!****************************************************************************************************************************!*\
|
|
307641
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307982
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
307642
307983
|
\****************************************************************************************************************************/
|
|
307643
307984
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307644
307985
|
|
|
@@ -307655,9 +307996,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
307655
307996
|
|
|
307656
307997
|
/***/ }),
|
|
307657
307998
|
|
|
307658
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307999
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
307659
308000
|
/*!*************************************************************************************************************************!*\
|
|
307660
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308001
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
307661
308002
|
\*************************************************************************************************************************/
|
|
307662
308003
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307663
308004
|
|
|
@@ -307666,13 +308007,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307666
308007
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307667
308008
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
307668
308009
|
/* harmony export */ });
|
|
308010
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
308011
|
+
|
|
307669
308012
|
function _defineProperties(target, props) {
|
|
307670
308013
|
for (var i = 0; i < props.length; i++) {
|
|
307671
308014
|
var descriptor = props[i];
|
|
307672
308015
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
307673
308016
|
descriptor.configurable = true;
|
|
307674
308017
|
if ("value" in descriptor) descriptor.writable = true;
|
|
307675
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
308018
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
307676
308019
|
}
|
|
307677
308020
|
}
|
|
307678
308021
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -307686,9 +308029,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
307686
308029
|
|
|
307687
308030
|
/***/ }),
|
|
307688
308031
|
|
|
307689
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308032
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
307690
308033
|
/*!****************************************************************************************************************************!*\
|
|
307691
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308034
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
307692
308035
|
\****************************************************************************************************************************/
|
|
307693
308036
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307694
308037
|
|
|
@@ -307697,7 +308040,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307697
308040
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307698
308041
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
307699
308042
|
/* harmony export */ });
|
|
308043
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
308044
|
+
|
|
307700
308045
|
function _defineProperty(obj, key, value) {
|
|
308046
|
+
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
307701
308047
|
if (key in obj) {
|
|
307702
308048
|
Object.defineProperty(obj, key, {
|
|
307703
308049
|
value: value,
|
|
@@ -307713,9 +308059,9 @@ function _defineProperty(obj, key, value) {
|
|
|
307713
308059
|
|
|
307714
308060
|
/***/ }),
|
|
307715
308061
|
|
|
307716
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308062
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
307717
308063
|
/*!****************************************************************************************************************************!*\
|
|
307718
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308064
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
307719
308065
|
\****************************************************************************************************************************/
|
|
307720
308066
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307721
308067
|
|
|
@@ -307733,9 +308079,9 @@ function _getPrototypeOf(o) {
|
|
|
307733
308079
|
|
|
307734
308080
|
/***/ }),
|
|
307735
308081
|
|
|
307736
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308082
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
307737
308083
|
/*!**********************************************************************************************************************!*\
|
|
307738
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308084
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
307739
308085
|
\**********************************************************************************************************************/
|
|
307740
308086
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307741
308087
|
|
|
@@ -307744,7 +308090,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307744
308090
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307745
308091
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
307746
308092
|
/* harmony export */ });
|
|
307747
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308093
|
+
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js");
|
|
307748
308094
|
|
|
307749
308095
|
function _inherits(subClass, superClass) {
|
|
307750
308096
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -307765,9 +308111,9 @@ function _inherits(subClass, superClass) {
|
|
|
307765
308111
|
|
|
307766
308112
|
/***/ }),
|
|
307767
308113
|
|
|
307768
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308114
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
307769
308115
|
/*!*****************************************************************************************************************************!*\
|
|
307770
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308116
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
307771
308117
|
\*****************************************************************************************************************************/
|
|
307772
308118
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307773
308119
|
|
|
@@ -307782,9 +308128,9 @@ function _iterableToArray(iter) {
|
|
|
307782
308128
|
|
|
307783
308129
|
/***/ }),
|
|
307784
308130
|
|
|
307785
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308131
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
307786
308132
|
/*!*****************************************************************************************************************************!*\
|
|
307787
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308133
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
307788
308134
|
\*****************************************************************************************************************************/
|
|
307789
308135
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307790
308136
|
|
|
@@ -307799,9 +308145,9 @@ function _nonIterableRest() {
|
|
|
307799
308145
|
|
|
307800
308146
|
/***/ }),
|
|
307801
308147
|
|
|
307802
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308148
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
307803
308149
|
/*!***************************************************************************************************************************************!*\
|
|
307804
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308150
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
307805
308151
|
\***************************************************************************************************************************************/
|
|
307806
308152
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307807
308153
|
|
|
@@ -307810,8 +308156,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307810
308156
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307811
308157
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
307812
308158
|
/* harmony export */ });
|
|
307813
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307814
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308159
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308160
|
+
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
307815
308161
|
|
|
307816
308162
|
|
|
307817
308163
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -307825,9 +308171,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
307825
308171
|
|
|
307826
308172
|
/***/ }),
|
|
307827
308173
|
|
|
307828
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308174
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
307829
308175
|
/*!****************************************************************************************************************************!*\
|
|
307830
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308176
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
307831
308177
|
\****************************************************************************************************************************/
|
|
307832
308178
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307833
308179
|
|
|
@@ -307846,9 +308192,9 @@ function _setPrototypeOf(o, p) {
|
|
|
307846
308192
|
|
|
307847
308193
|
/***/ }),
|
|
307848
308194
|
|
|
307849
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308195
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
307850
308196
|
/*!*********************************************************************************************************************!*\
|
|
307851
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308197
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
307852
308198
|
\*********************************************************************************************************************/
|
|
307853
308199
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307854
308200
|
|
|
@@ -307857,10 +308203,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307857
308203
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307858
308204
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
307859
308205
|
/* harmony export */ });
|
|
307860
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307861
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307862
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307863
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308206
|
+
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js");
|
|
308207
|
+
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js");
|
|
308208
|
+
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js");
|
|
308209
|
+
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js");
|
|
307864
308210
|
|
|
307865
308211
|
|
|
307866
308212
|
|
|
@@ -307871,9 +308217,57 @@ function _toArray(arr) {
|
|
|
307871
308217
|
|
|
307872
308218
|
/***/ }),
|
|
307873
308219
|
|
|
307874
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308220
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
308221
|
+
/*!*************************************************************************************************************************!*\
|
|
308222
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
308223
|
+
\*************************************************************************************************************************/
|
|
308224
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308225
|
+
|
|
308226
|
+
"use strict";
|
|
308227
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308228
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308229
|
+
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
308230
|
+
/* harmony export */ });
|
|
308231
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308232
|
+
|
|
308233
|
+
function _toPrimitive(input, hint) {
|
|
308234
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
308235
|
+
var prim = input[Symbol.toPrimitive];
|
|
308236
|
+
if (prim !== undefined) {
|
|
308237
|
+
var res = prim.call(input, hint || "default");
|
|
308238
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res;
|
|
308239
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
308240
|
+
}
|
|
308241
|
+
return (hint === "string" ? String : Number)(input);
|
|
308242
|
+
}
|
|
308243
|
+
|
|
308244
|
+
/***/ }),
|
|
308245
|
+
|
|
308246
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
308247
|
+
/*!***************************************************************************************************************************!*\
|
|
308248
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
308249
|
+
\***************************************************************************************************************************/
|
|
308250
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308251
|
+
|
|
308252
|
+
"use strict";
|
|
308253
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308254
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308255
|
+
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
308256
|
+
/* harmony export */ });
|
|
308257
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308258
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
308259
|
+
|
|
308260
|
+
|
|
308261
|
+
function _toPropertyKey(arg) {
|
|
308262
|
+
var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string");
|
|
308263
|
+
return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key);
|
|
308264
|
+
}
|
|
308265
|
+
|
|
308266
|
+
/***/ }),
|
|
308267
|
+
|
|
308268
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
307875
308269
|
/*!********************************************************************************************************************!*\
|
|
307876
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308270
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
307877
308271
|
\********************************************************************************************************************/
|
|
307878
308272
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307879
308273
|
|
|
@@ -307894,9 +308288,9 @@ function _typeof(obj) {
|
|
|
307894
308288
|
|
|
307895
308289
|
/***/ }),
|
|
307896
308290
|
|
|
307897
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308291
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
307898
308292
|
/*!****************************************************************************************************************************************!*\
|
|
307899
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308293
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
307900
308294
|
\****************************************************************************************************************************************/
|
|
307901
308295
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307902
308296
|
|
|
@@ -307905,7 +308299,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307905
308299
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307906
308300
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
307907
308301
|
/* harmony export */ });
|
|
307908
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308302
|
+
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js");
|
|
307909
308303
|
|
|
307910
308304
|
function _unsupportedIterableToArray(o, minLen) {
|
|
307911
308305
|
if (!o) return;
|
|
@@ -308339,15 +308733,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
308339
308733
|
/* harmony export */ "t": () => (/* binding */ t),
|
|
308340
308734
|
/* harmony export */ "use": () => (/* binding */ use)
|
|
308341
308735
|
/* harmony export */ });
|
|
308342
|
-
/* 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.
|
|
308343
|
-
/* 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.
|
|
308344
|
-
/* 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.
|
|
308345
|
-
/* 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.
|
|
308346
|
-
/* 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.
|
|
308347
|
-
/* 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.
|
|
308348
|
-
/* 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.
|
|
308349
|
-
/* 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.
|
|
308350
|
-
/* 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.
|
|
308736
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308737
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
308738
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
308739
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
308740
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
308741
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
308742
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
308743
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
308744
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js");
|
|
308351
308745
|
|
|
308352
308746
|
|
|
308353
308747
|
|
|
@@ -311227,7 +311621,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
311227
311621
|
/***/ ((module) => {
|
|
311228
311622
|
|
|
311229
311623
|
"use strict";
|
|
311230
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
311624
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.63","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","build:ci":"npm run -s build && npm run -s build:esm","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","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-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"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.5.0-dev.63","@itwin/core-bentley":"workspace:^3.5.0-dev.63","@itwin/core-common":"workspace:^3.5.0-dev.63","@itwin/core-geometry":"workspace:^3.5.0-dev.63","@itwin/core-orbitgt":"workspace:^3.5.0-dev.63","@itwin/core-quantity":"workspace:^3.5.0-dev.63","@itwin/webgl-compatibility":"workspace:^3.5.0-dev.63"},"//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":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//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/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
311231
311625
|
|
|
311232
311626
|
/***/ }),
|
|
311233
311627
|
|
|
@@ -311405,8 +311799,7 @@ module.exports = JSON.parse('{"$schema":"../../../node_modules/@itwin/presentati
|
|
|
311405
311799
|
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
311406
311800
|
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
311407
311801
|
/******/ if(prev) return prev(event);
|
|
311408
|
-
/******/ }
|
|
311409
|
-
/******/ ;
|
|
311802
|
+
/******/ };
|
|
311410
311803
|
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
311411
311804
|
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
311412
311805
|
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|