@itwin/ecschema-rpcinterface-tests 3.5.0-dev.60 → 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 +1102 -715
- 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 +16 -16
- 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) {
|
|
@@ -9744,20 +9744,20 @@ if ($defineProperty) {
|
|
|
9744
9744
|
|
|
9745
9745
|
/***/ }),
|
|
9746
9746
|
|
|
9747
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9747
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js":
|
|
9748
9748
|
/*!**********************************************************************************!*\
|
|
9749
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9749
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js ***!
|
|
9750
9750
|
\**********************************************************************************/
|
|
9751
9751
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9752
9752
|
|
|
9753
|
-
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9753
|
+
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
9754
9754
|
|
|
9755
9755
|
|
|
9756
9756
|
/***/ }),
|
|
9757
9757
|
|
|
9758
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9758
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js":
|
|
9759
9759
|
/*!*************************************************************************************!*\
|
|
9760
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9760
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js ***!
|
|
9761
9761
|
\*************************************************************************************/
|
|
9762
9762
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
9763
9763
|
|
|
@@ -9785,7 +9785,7 @@ exports.AssertionError = __webpack_require__(/*! assertion-error */ "../../commo
|
|
|
9785
9785
|
* Utils for plugins (not exported)
|
|
9786
9786
|
*/
|
|
9787
9787
|
|
|
9788
|
-
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9788
|
+
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js");
|
|
9789
9789
|
|
|
9790
9790
|
/**
|
|
9791
9791
|
* # .use(function)
|
|
@@ -9816,50 +9816,50 @@ exports.util = util;
|
|
|
9816
9816
|
* Configuration
|
|
9817
9817
|
*/
|
|
9818
9818
|
|
|
9819
|
-
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9819
|
+
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
9820
9820
|
exports.config = config;
|
|
9821
9821
|
|
|
9822
9822
|
/*!
|
|
9823
9823
|
* Primary `Assertion` prototype
|
|
9824
9824
|
*/
|
|
9825
9825
|
|
|
9826
|
-
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9826
|
+
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js");
|
|
9827
9827
|
exports.use(assertion);
|
|
9828
9828
|
|
|
9829
9829
|
/*!
|
|
9830
9830
|
* Core Assertions
|
|
9831
9831
|
*/
|
|
9832
9832
|
|
|
9833
|
-
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9833
|
+
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js");
|
|
9834
9834
|
exports.use(core);
|
|
9835
9835
|
|
|
9836
9836
|
/*!
|
|
9837
9837
|
* Expect interface
|
|
9838
9838
|
*/
|
|
9839
9839
|
|
|
9840
|
-
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9840
|
+
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js");
|
|
9841
9841
|
exports.use(expect);
|
|
9842
9842
|
|
|
9843
9843
|
/*!
|
|
9844
9844
|
* Should interface
|
|
9845
9845
|
*/
|
|
9846
9846
|
|
|
9847
|
-
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9847
|
+
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js");
|
|
9848
9848
|
exports.use(should);
|
|
9849
9849
|
|
|
9850
9850
|
/*!
|
|
9851
9851
|
* Assert interface
|
|
9852
9852
|
*/
|
|
9853
9853
|
|
|
9854
|
-
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9854
|
+
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js");
|
|
9855
9855
|
exports.use(assert);
|
|
9856
9856
|
|
|
9857
9857
|
|
|
9858
9858
|
/***/ }),
|
|
9859
9859
|
|
|
9860
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9860
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js":
|
|
9861
9861
|
/*!***********************************************************************************************!*\
|
|
9862
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9862
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js ***!
|
|
9863
9863
|
\***********************************************************************************************/
|
|
9864
9864
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9865
9865
|
|
|
@@ -9870,7 +9870,7 @@ exports.use(assert);
|
|
|
9870
9870
|
* MIT Licensed
|
|
9871
9871
|
*/
|
|
9872
9872
|
|
|
9873
|
-
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9873
|
+
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
9874
9874
|
|
|
9875
9875
|
module.exports = function (_chai, util) {
|
|
9876
9876
|
/*!
|
|
@@ -10042,9 +10042,9 @@ module.exports = function (_chai, util) {
|
|
|
10042
10042
|
|
|
10043
10043
|
/***/ }),
|
|
10044
10044
|
|
|
10045
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10045
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js":
|
|
10046
10046
|
/*!********************************************************************************************!*\
|
|
10047
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10047
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js ***!
|
|
10048
10048
|
\********************************************************************************************/
|
|
10049
10049
|
/***/ ((module) => {
|
|
10050
10050
|
|
|
@@ -10146,9 +10146,9 @@ module.exports = {
|
|
|
10146
10146
|
|
|
10147
10147
|
/***/ }),
|
|
10148
10148
|
|
|
10149
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10149
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js":
|
|
10150
10150
|
/*!*****************************************************************************************************!*\
|
|
10151
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10151
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js ***!
|
|
10152
10152
|
\*****************************************************************************************************/
|
|
10153
10153
|
/***/ ((module) => {
|
|
10154
10154
|
|
|
@@ -14009,9 +14009,9 @@ module.exports = function (chai, _) {
|
|
|
14009
14009
|
|
|
14010
14010
|
/***/ }),
|
|
14011
14011
|
|
|
14012
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14012
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js":
|
|
14013
14013
|
/*!******************************************************************************************************!*\
|
|
14014
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14014
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js ***!
|
|
14015
14015
|
\******************************************************************************************************/
|
|
14016
14016
|
/***/ ((module) => {
|
|
14017
14017
|
|
|
@@ -17132,9 +17132,9 @@ module.exports = function (chai, util) {
|
|
|
17132
17132
|
|
|
17133
17133
|
/***/ }),
|
|
17134
17134
|
|
|
17135
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17135
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js":
|
|
17136
17136
|
/*!******************************************************************************************************!*\
|
|
17137
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17137
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js ***!
|
|
17138
17138
|
\******************************************************************************************************/
|
|
17139
17139
|
/***/ ((module) => {
|
|
17140
17140
|
|
|
@@ -17189,9 +17189,9 @@ module.exports = function (chai, util) {
|
|
|
17189
17189
|
|
|
17190
17190
|
/***/ }),
|
|
17191
17191
|
|
|
17192
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17192
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js":
|
|
17193
17193
|
/*!******************************************************************************************************!*\
|
|
17194
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17194
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js ***!
|
|
17195
17195
|
\******************************************************************************************************/
|
|
17196
17196
|
/***/ ((module) => {
|
|
17197
17197
|
|
|
@@ -17418,9 +17418,9 @@ module.exports = function (chai, util) {
|
|
|
17418
17418
|
|
|
17419
17419
|
/***/ }),
|
|
17420
17420
|
|
|
17421
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17421
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js":
|
|
17422
17422
|
/*!**************************************************************************************************************!*\
|
|
17423
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17423
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js ***!
|
|
17424
17424
|
\**************************************************************************************************************/
|
|
17425
17425
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17426
17426
|
|
|
@@ -17434,11 +17434,11 @@ module.exports = function (chai, util) {
|
|
|
17434
17434
|
* Module dependencies
|
|
17435
17435
|
*/
|
|
17436
17436
|
|
|
17437
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17438
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17439
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17440
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17441
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17437
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17438
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17439
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17440
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17441
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17442
17442
|
|
|
17443
17443
|
/*!
|
|
17444
17444
|
* Module variables
|
|
@@ -17580,9 +17580,9 @@ module.exports = function addChainableMethod(ctx, name, method, chainingBehavior
|
|
|
17580
17580
|
|
|
17581
17581
|
/***/ }),
|
|
17582
17582
|
|
|
17583
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17583
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js":
|
|
17584
17584
|
/*!**********************************************************************************************************!*\
|
|
17585
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17585
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js ***!
|
|
17586
17586
|
\**********************************************************************************************************/
|
|
17587
17587
|
/***/ ((module) => {
|
|
17588
17588
|
|
|
@@ -17650,9 +17650,9 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17650
17650
|
|
|
17651
17651
|
/***/ }),
|
|
17652
17652
|
|
|
17653
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17653
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js":
|
|
17654
17654
|
/*!*****************************************************************************************************!*\
|
|
17655
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17655
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js ***!
|
|
17656
17656
|
\*****************************************************************************************************/
|
|
17657
17657
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17658
17658
|
|
|
@@ -17662,11 +17662,11 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17662
17662
|
* MIT Licensed
|
|
17663
17663
|
*/
|
|
17664
17664
|
|
|
17665
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17666
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17667
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17668
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17669
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17665
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17666
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17667
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17668
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17669
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17670
17670
|
|
|
17671
17671
|
/**
|
|
17672
17672
|
* ### .addMethod(ctx, name, method)
|
|
@@ -17728,9 +17728,9 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
17728
17728
|
|
|
17729
17729
|
/***/ }),
|
|
17730
17730
|
|
|
17731
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17731
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js":
|
|
17732
17732
|
/*!*******************************************************************************************************!*\
|
|
17733
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17733
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js ***!
|
|
17734
17734
|
\*******************************************************************************************************/
|
|
17735
17735
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17736
17736
|
|
|
@@ -17740,10 +17740,10 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
17740
17740
|
* MIT Licensed
|
|
17741
17741
|
*/
|
|
17742
17742
|
|
|
17743
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17744
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17745
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17746
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17743
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17744
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17745
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
17746
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17747
17747
|
|
|
17748
17748
|
/**
|
|
17749
17749
|
* ### .addProperty(ctx, name, getter)
|
|
@@ -17810,9 +17810,9 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
17810
17810
|
|
|
17811
17811
|
/***/ }),
|
|
17812
17812
|
|
|
17813
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17813
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js":
|
|
17814
17814
|
/*!************************************************************************************************************!*\
|
|
17815
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17815
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js ***!
|
|
17816
17816
|
\************************************************************************************************************/
|
|
17817
17817
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17818
17818
|
|
|
@@ -17826,7 +17826,7 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
17826
17826
|
* Module dependencies
|
|
17827
17827
|
*/
|
|
17828
17828
|
|
|
17829
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17829
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
17830
17830
|
|
|
17831
17831
|
/**
|
|
17832
17832
|
* ### .compareByInspect(mixed, mixed)
|
|
@@ -17851,9 +17851,9 @@ module.exports = function compareByInspect(a, b) {
|
|
|
17851
17851
|
|
|
17852
17852
|
/***/ }),
|
|
17853
17853
|
|
|
17854
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17854
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js":
|
|
17855
17855
|
/*!*******************************************************************************************************!*\
|
|
17856
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17856
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js ***!
|
|
17857
17857
|
\*******************************************************************************************************/
|
|
17858
17858
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17859
17859
|
|
|
@@ -17878,7 +17878,7 @@ module.exports = function compareByInspect(a, b) {
|
|
|
17878
17878
|
*/
|
|
17879
17879
|
|
|
17880
17880
|
var AssertionError = __webpack_require__(/*! assertion-error */ "../../common/temp/node_modules/.pnpm/assertion-error@1.1.0/node_modules/assertion-error/index.js");
|
|
17881
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17881
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17882
17882
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
17883
17883
|
|
|
17884
17884
|
module.exports = function expectTypes(obj, types) {
|
|
@@ -17912,9 +17912,9 @@ module.exports = function expectTypes(obj, types) {
|
|
|
17912
17912
|
|
|
17913
17913
|
/***/ }),
|
|
17914
17914
|
|
|
17915
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17915
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js":
|
|
17916
17916
|
/*!************************************************************************************************!*\
|
|
17917
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17917
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js ***!
|
|
17918
17918
|
\************************************************************************************************/
|
|
17919
17919
|
/***/ ((module) => {
|
|
17920
17920
|
|
|
@@ -17955,9 +17955,9 @@ module.exports = function flag(obj, key, value) {
|
|
|
17955
17955
|
|
|
17956
17956
|
/***/ }),
|
|
17957
17957
|
|
|
17958
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17958
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js":
|
|
17959
17959
|
/*!*****************************************************************************************************!*\
|
|
17960
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17960
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js ***!
|
|
17961
17961
|
\*****************************************************************************************************/
|
|
17962
17962
|
/***/ ((module) => {
|
|
17963
17963
|
|
|
@@ -17985,9 +17985,9 @@ module.exports = function getActual(obj, args) {
|
|
|
17985
17985
|
|
|
17986
17986
|
/***/ }),
|
|
17987
17987
|
|
|
17988
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17988
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js":
|
|
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/getMessage.js ***!
|
|
17991
17991
|
\******************************************************************************************************/
|
|
17992
17992
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17993
17993
|
|
|
@@ -18001,9 +18001,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18001
18001
|
* Module dependencies
|
|
18002
18002
|
*/
|
|
18003
18003
|
|
|
18004
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18005
|
-
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18006
|
-
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18004
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js")
|
|
18005
|
+
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js")
|
|
18006
|
+
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18007
18007
|
|
|
18008
18008
|
/**
|
|
18009
18009
|
* ### .getMessage(object, message, negateMessage)
|
|
@@ -18045,15 +18045,15 @@ module.exports = function getMessage(obj, args) {
|
|
|
18045
18045
|
|
|
18046
18046
|
/***/ }),
|
|
18047
18047
|
|
|
18048
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18048
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js":
|
|
18049
18049
|
/*!*******************************************************************************************************!*\
|
|
18050
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18050
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js ***!
|
|
18051
18051
|
\*******************************************************************************************************/
|
|
18052
18052
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18053
18053
|
|
|
18054
18054
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18055
18055
|
|
|
18056
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18056
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18057
18057
|
|
|
18058
18058
|
function isObjectType(obj) {
|
|
18059
18059
|
var objectType = type(obj);
|
|
@@ -18110,9 +18110,9 @@ module.exports = function getOperator(obj, args) {
|
|
|
18110
18110
|
|
|
18111
18111
|
/***/ }),
|
|
18112
18112
|
|
|
18113
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18113
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js":
|
|
18114
18114
|
/*!**********************************************************************************************************************!*\
|
|
18115
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18115
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js ***!
|
|
18116
18116
|
\**********************************************************************************************************************/
|
|
18117
18117
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18118
18118
|
|
|
@@ -18126,7 +18126,7 @@ module.exports = function getOperator(obj, args) {
|
|
|
18126
18126
|
* Module dependencies
|
|
18127
18127
|
*/
|
|
18128
18128
|
|
|
18129
|
-
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18129
|
+
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18130
18130
|
|
|
18131
18131
|
/**
|
|
18132
18132
|
* ### .getOwnEnumerableProperties(object)
|
|
@@ -18149,9 +18149,9 @@ module.exports = function getOwnEnumerableProperties(obj) {
|
|
|
18149
18149
|
|
|
18150
18150
|
/***/ }),
|
|
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/getOwnEnumerablePropertySymbols.js":
|
|
18153
18153
|
/*!***************************************************************************************************************************!*\
|
|
18154
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18154
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js ***!
|
|
18155
18155
|
\***************************************************************************************************************************/
|
|
18156
18156
|
/***/ ((module) => {
|
|
18157
18157
|
|
|
@@ -18186,9 +18186,9 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
|
|
|
18186
18186
|
|
|
18187
18187
|
/***/ }),
|
|
18188
18188
|
|
|
18189
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18189
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js":
|
|
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/getProperties.js ***!
|
|
18192
18192
|
\*********************************************************************************************************/
|
|
18193
18193
|
/***/ ((module) => {
|
|
18194
18194
|
|
|
@@ -18232,9 +18232,9 @@ module.exports = function getProperties(object) {
|
|
|
18232
18232
|
|
|
18233
18233
|
/***/ }),
|
|
18234
18234
|
|
|
18235
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18235
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js":
|
|
18236
18236
|
/*!*************************************************************************************************!*\
|
|
18237
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18237
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js ***!
|
|
18238
18238
|
\*************************************************************************************************/
|
|
18239
18239
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
18240
18240
|
|
|
@@ -18254,7 +18254,7 @@ var pathval = __webpack_require__(/*! pathval */ "../../common/temp/node_modules
|
|
|
18254
18254
|
* test utility
|
|
18255
18255
|
*/
|
|
18256
18256
|
|
|
18257
|
-
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18257
|
+
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js");
|
|
18258
18258
|
|
|
18259
18259
|
/*!
|
|
18260
18260
|
* type utility
|
|
@@ -18265,49 +18265,49 @@ exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_mo
|
|
|
18265
18265
|
/*!
|
|
18266
18266
|
* expectTypes utility
|
|
18267
18267
|
*/
|
|
18268
|
-
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18268
|
+
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js");
|
|
18269
18269
|
|
|
18270
18270
|
/*!
|
|
18271
18271
|
* message utility
|
|
18272
18272
|
*/
|
|
18273
18273
|
|
|
18274
|
-
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18274
|
+
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js");
|
|
18275
18275
|
|
|
18276
18276
|
/*!
|
|
18277
18277
|
* actual utility
|
|
18278
18278
|
*/
|
|
18279
18279
|
|
|
18280
|
-
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18280
|
+
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js");
|
|
18281
18281
|
|
|
18282
18282
|
/*!
|
|
18283
18283
|
* Inspect util
|
|
18284
18284
|
*/
|
|
18285
18285
|
|
|
18286
|
-
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18286
|
+
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18287
18287
|
|
|
18288
18288
|
/*!
|
|
18289
18289
|
* Object Display util
|
|
18290
18290
|
*/
|
|
18291
18291
|
|
|
18292
|
-
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18292
|
+
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18293
18293
|
|
|
18294
18294
|
/*!
|
|
18295
18295
|
* Flag utility
|
|
18296
18296
|
*/
|
|
18297
18297
|
|
|
18298
|
-
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18298
|
+
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18299
18299
|
|
|
18300
18300
|
/*!
|
|
18301
18301
|
* Flag transferring utility
|
|
18302
18302
|
*/
|
|
18303
18303
|
|
|
18304
|
-
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18304
|
+
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18305
18305
|
|
|
18306
18306
|
/*!
|
|
18307
18307
|
* Deep equal utility
|
|
18308
18308
|
*/
|
|
18309
18309
|
|
|
18310
|
-
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
18310
|
+
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js");
|
|
18311
18311
|
|
|
18312
18312
|
/*!
|
|
18313
18313
|
* Deep path info
|
|
@@ -18331,55 +18331,55 @@ exports.getName = __webpack_require__(/*! get-func-name */ "../../common/temp/no
|
|
|
18331
18331
|
* add Property
|
|
18332
18332
|
*/
|
|
18333
18333
|
|
|
18334
|
-
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18334
|
+
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js");
|
|
18335
18335
|
|
|
18336
18336
|
/*!
|
|
18337
18337
|
* add Method
|
|
18338
18338
|
*/
|
|
18339
18339
|
|
|
18340
|
-
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18340
|
+
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js");
|
|
18341
18341
|
|
|
18342
18342
|
/*!
|
|
18343
18343
|
* overwrite Property
|
|
18344
18344
|
*/
|
|
18345
18345
|
|
|
18346
|
-
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18346
|
+
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js");
|
|
18347
18347
|
|
|
18348
18348
|
/*!
|
|
18349
18349
|
* overwrite Method
|
|
18350
18350
|
*/
|
|
18351
18351
|
|
|
18352
|
-
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18352
|
+
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js");
|
|
18353
18353
|
|
|
18354
18354
|
/*!
|
|
18355
18355
|
* Add a chainable method
|
|
18356
18356
|
*/
|
|
18357
18357
|
|
|
18358
|
-
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18358
|
+
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js");
|
|
18359
18359
|
|
|
18360
18360
|
/*!
|
|
18361
18361
|
* Overwrite chainable method
|
|
18362
18362
|
*/
|
|
18363
18363
|
|
|
18364
|
-
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18364
|
+
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js");
|
|
18365
18365
|
|
|
18366
18366
|
/*!
|
|
18367
18367
|
* Compare by inspect method
|
|
18368
18368
|
*/
|
|
18369
18369
|
|
|
18370
|
-
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18370
|
+
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js");
|
|
18371
18371
|
|
|
18372
18372
|
/*!
|
|
18373
18373
|
* Get own enumerable property symbols method
|
|
18374
18374
|
*/
|
|
18375
18375
|
|
|
18376
|
-
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18376
|
+
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18377
18377
|
|
|
18378
18378
|
/*!
|
|
18379
18379
|
* Get own enumerable properties method
|
|
18380
18380
|
*/
|
|
18381
18381
|
|
|
18382
|
-
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18382
|
+
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js");
|
|
18383
18383
|
|
|
18384
18384
|
/*!
|
|
18385
18385
|
* Checks error against a given set of criteria
|
|
@@ -18391,37 +18391,37 @@ exports.checkError = __webpack_require__(/*! check-error */ "../../common/temp/n
|
|
|
18391
18391
|
* Proxify util
|
|
18392
18392
|
*/
|
|
18393
18393
|
|
|
18394
|
-
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18394
|
+
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18395
18395
|
|
|
18396
18396
|
/*!
|
|
18397
18397
|
* addLengthGuard util
|
|
18398
18398
|
*/
|
|
18399
18399
|
|
|
18400
|
-
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18400
|
+
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18401
18401
|
|
|
18402
18402
|
/*!
|
|
18403
18403
|
* isProxyEnabled helper
|
|
18404
18404
|
*/
|
|
18405
18405
|
|
|
18406
|
-
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18406
|
+
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18407
18407
|
|
|
18408
18408
|
/*!
|
|
18409
18409
|
* isNaN method
|
|
18410
18410
|
*/
|
|
18411
18411
|
|
|
18412
|
-
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18412
|
+
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js");
|
|
18413
18413
|
|
|
18414
18414
|
/*!
|
|
18415
18415
|
* getOperator method
|
|
18416
18416
|
*/
|
|
18417
18417
|
|
|
18418
|
-
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18418
|
+
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js");
|
|
18419
18419
|
|
|
18420
18420
|
/***/ }),
|
|
18421
18421
|
|
|
18422
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18422
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js":
|
|
18423
18423
|
/*!***************************************************************************************************!*\
|
|
18424
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18424
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js ***!
|
|
18425
18425
|
\***************************************************************************************************/
|
|
18426
18426
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18427
18427
|
|
|
@@ -18429,8 +18429,8 @@ exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/tem
|
|
|
18429
18429
|
// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js
|
|
18430
18430
|
|
|
18431
18431
|
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");
|
|
18432
|
-
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
18433
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18432
|
+
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js");
|
|
18433
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18434
18434
|
|
|
18435
18435
|
module.exports = inspect;
|
|
18436
18436
|
|
|
@@ -18462,9 +18462,9 @@ function inspect(obj, showHidden, depth, colors) {
|
|
|
18462
18462
|
|
|
18463
18463
|
/***/ }),
|
|
18464
18464
|
|
|
18465
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18465
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js":
|
|
18466
18466
|
/*!*************************************************************************************************!*\
|
|
18467
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18467
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js ***!
|
|
18468
18468
|
\*************************************************************************************************/
|
|
18469
18469
|
/***/ ((module) => {
|
|
18470
18470
|
|
|
@@ -18498,13 +18498,13 @@ module.exports = Number.isNaN || isNaN;
|
|
|
18498
18498
|
|
|
18499
18499
|
/***/ }),
|
|
18500
18500
|
|
|
18501
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18501
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js":
|
|
18502
18502
|
/*!**********************************************************************************************************!*\
|
|
18503
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18503
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js ***!
|
|
18504
18504
|
\**********************************************************************************************************/
|
|
18505
18505
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18506
18506
|
|
|
18507
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18507
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18508
18508
|
|
|
18509
18509
|
/*!
|
|
18510
18510
|
* Chai - isProxyEnabled helper
|
|
@@ -18532,9 +18532,9 @@ module.exports = function isProxyEnabled() {
|
|
|
18532
18532
|
|
|
18533
18533
|
/***/ }),
|
|
18534
18534
|
|
|
18535
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18535
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js":
|
|
18536
18536
|
/*!******************************************************************************************************!*\
|
|
18537
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18537
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js ***!
|
|
18538
18538
|
\******************************************************************************************************/
|
|
18539
18539
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18540
18540
|
|
|
@@ -18548,8 +18548,8 @@ module.exports = function isProxyEnabled() {
|
|
|
18548
18548
|
* Module dependencies
|
|
18549
18549
|
*/
|
|
18550
18550
|
|
|
18551
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18552
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18551
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18552
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18553
18553
|
|
|
18554
18554
|
/**
|
|
18555
18555
|
* ### .objDisplay(object)
|
|
@@ -18592,9 +18592,9 @@ module.exports = function objDisplay(obj) {
|
|
|
18592
18592
|
|
|
18593
18593
|
/***/ }),
|
|
18594
18594
|
|
|
18595
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18595
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js":
|
|
18596
18596
|
/*!********************************************************************************************************************!*\
|
|
18597
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18597
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js ***!
|
|
18598
18598
|
\********************************************************************************************************************/
|
|
18599
18599
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18600
18600
|
|
|
@@ -18604,8 +18604,8 @@ module.exports = function objDisplay(obj) {
|
|
|
18604
18604
|
* MIT Licensed
|
|
18605
18605
|
*/
|
|
18606
18606
|
|
|
18607
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18608
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18607
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18608
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18609
18609
|
|
|
18610
18610
|
/**
|
|
18611
18611
|
* ### .overwriteChainableMethod(ctx, name, method, chainingBehavior)
|
|
@@ -18671,9 +18671,9 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
18671
18671
|
|
|
18672
18672
|
/***/ }),
|
|
18673
18673
|
|
|
18674
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18674
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js":
|
|
18675
18675
|
/*!***********************************************************************************************************!*\
|
|
18676
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18676
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js ***!
|
|
18677
18677
|
\***********************************************************************************************************/
|
|
18678
18678
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18679
18679
|
|
|
@@ -18683,11 +18683,11 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
18683
18683
|
* MIT Licensed
|
|
18684
18684
|
*/
|
|
18685
18685
|
|
|
18686
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18687
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18688
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18689
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18690
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18686
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18687
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18688
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18689
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18690
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18691
18691
|
|
|
18692
18692
|
/**
|
|
18693
18693
|
* ### .overwriteMethod(ctx, name, fn)
|
|
@@ -18773,9 +18773,9 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
18773
18773
|
|
|
18774
18774
|
/***/ }),
|
|
18775
18775
|
|
|
18776
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18776
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js":
|
|
18777
18777
|
/*!*************************************************************************************************************!*\
|
|
18778
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18778
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js ***!
|
|
18779
18779
|
\*************************************************************************************************************/
|
|
18780
18780
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18781
18781
|
|
|
@@ -18785,10 +18785,10 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
18785
18785
|
* MIT Licensed
|
|
18786
18786
|
*/
|
|
18787
18787
|
|
|
18788
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18789
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18790
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18791
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18788
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18789
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18790
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18791
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18792
18792
|
|
|
18793
18793
|
/**
|
|
18794
18794
|
* ### .overwriteProperty(ctx, name, fn)
|
|
@@ -18875,16 +18875,16 @@ module.exports = function overwriteProperty(ctx, name, getter) {
|
|
|
18875
18875
|
|
|
18876
18876
|
/***/ }),
|
|
18877
18877
|
|
|
18878
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18878
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js":
|
|
18879
18879
|
/*!***************************************************************************************************!*\
|
|
18880
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18880
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js ***!
|
|
18881
18881
|
\***************************************************************************************************/
|
|
18882
18882
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18883
18883
|
|
|
18884
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18885
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18886
|
-
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18887
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18884
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18885
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18886
|
+
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js");
|
|
18887
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18888
18888
|
|
|
18889
18889
|
/*!
|
|
18890
18890
|
* Chai - proxify utility
|
|
@@ -19032,9 +19032,9 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19032
19032
|
|
|
19033
19033
|
/***/ }),
|
|
19034
19034
|
|
|
19035
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19035
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js":
|
|
19036
19036
|
/*!************************************************************************************************!*\
|
|
19037
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19037
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js ***!
|
|
19038
19038
|
\************************************************************************************************/
|
|
19039
19039
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19040
19040
|
|
|
@@ -19048,7 +19048,7 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19048
19048
|
* Module dependencies
|
|
19049
19049
|
*/
|
|
19050
19050
|
|
|
19051
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19051
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19052
19052
|
|
|
19053
19053
|
/**
|
|
19054
19054
|
* ### .test(object, expression)
|
|
@@ -19070,9 +19070,9 @@ module.exports = function test(obj, args) {
|
|
|
19070
19070
|
|
|
19071
19071
|
/***/ }),
|
|
19072
19072
|
|
|
19073
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19073
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js":
|
|
19074
19074
|
/*!*********************************************************************************************************!*\
|
|
19075
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19075
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js ***!
|
|
19076
19076
|
\*********************************************************************************************************/
|
|
19077
19077
|
/***/ ((module) => {
|
|
19078
19078
|
|
|
@@ -20136,9 +20136,9 @@ module.exports = function deepAssign(target) {
|
|
|
20136
20136
|
|
|
20137
20137
|
/***/ }),
|
|
20138
20138
|
|
|
20139
|
-
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20139
|
+
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js":
|
|
20140
20140
|
/*!******************************************************************************************!*\
|
|
20141
|
-
!*** ../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20141
|
+
!*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js ***!
|
|
20142
20142
|
\******************************************************************************************/
|
|
20143
20143
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
20144
20144
|
|
|
@@ -20157,10 +20157,10 @@ function FakeMap() {
|
|
|
20157
20157
|
}
|
|
20158
20158
|
|
|
20159
20159
|
FakeMap.prototype = {
|
|
20160
|
-
get: function
|
|
20160
|
+
get: function get(key) {
|
|
20161
20161
|
return key[this._key];
|
|
20162
20162
|
},
|
|
20163
|
-
set: function
|
|
20163
|
+
set: function set(key, value) {
|
|
20164
20164
|
if (Object.isExtensible(key)) {
|
|
20165
20165
|
Object.defineProperty(key, this._key, {
|
|
20166
20166
|
value: value,
|
|
@@ -20352,8 +20352,9 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20352
20352
|
case 'function':
|
|
20353
20353
|
case 'WeakMap':
|
|
20354
20354
|
case 'WeakSet':
|
|
20355
|
-
case 'Error':
|
|
20356
20355
|
return leftHandOperand === rightHandOperand;
|
|
20356
|
+
case 'Error':
|
|
20357
|
+
return keysEqual(leftHandOperand, rightHandOperand, [ 'name', 'message', 'code' ], options);
|
|
20357
20358
|
case 'Arguments':
|
|
20358
20359
|
case 'Int8Array':
|
|
20359
20360
|
case 'Uint8Array':
|
|
@@ -20378,6 +20379,19 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20378
20379
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20379
20380
|
case 'Map':
|
|
20380
20381
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20382
|
+
case 'Temporal.PlainDate':
|
|
20383
|
+
case 'Temporal.PlainTime':
|
|
20384
|
+
case 'Temporal.PlainDateTime':
|
|
20385
|
+
case 'Temporal.Instant':
|
|
20386
|
+
case 'Temporal.ZonedDateTime':
|
|
20387
|
+
case 'Temporal.PlainYearMonth':
|
|
20388
|
+
case 'Temporal.PlainMonthDay':
|
|
20389
|
+
return leftHandOperand.equals(rightHandOperand);
|
|
20390
|
+
case 'Temporal.Duration':
|
|
20391
|
+
return leftHandOperand.total('nanoseconds') === rightHandOperand.total('nanoseconds');
|
|
20392
|
+
case 'Temporal.TimeZone':
|
|
20393
|
+
case 'Temporal.Calendar':
|
|
20394
|
+
return leftHandOperand.toString() === rightHandOperand.toString();
|
|
20381
20395
|
default:
|
|
20382
20396
|
return objectEqual(leftHandOperand, rightHandOperand, options);
|
|
20383
20397
|
}
|
|
@@ -20523,6 +20537,11 @@ function getEnumerableKeys(target) {
|
|
|
20523
20537
|
return keys;
|
|
20524
20538
|
}
|
|
20525
20539
|
|
|
20540
|
+
function getNonEnumerableSymbols(target) {
|
|
20541
|
+
var keys = Object.getOwnPropertySymbols(target);
|
|
20542
|
+
return keys;
|
|
20543
|
+
}
|
|
20544
|
+
|
|
20526
20545
|
/*!
|
|
20527
20546
|
* Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of
|
|
20528
20547
|
* each key. If any value of the given key is not equal, the function will return false (early).
|
|
@@ -20555,14 +20574,16 @@ function keysEqual(leftHandOperand, rightHandOperand, keys, options) {
|
|
|
20555
20574
|
* @param {Object} [options] (Optional)
|
|
20556
20575
|
* @return {Boolean} result
|
|
20557
20576
|
*/
|
|
20558
|
-
|
|
20559
20577
|
function objectEqual(leftHandOperand, rightHandOperand, options) {
|
|
20560
20578
|
var leftHandKeys = getEnumerableKeys(leftHandOperand);
|
|
20561
20579
|
var rightHandKeys = getEnumerableKeys(rightHandOperand);
|
|
20580
|
+
var leftHandSymbols = getNonEnumerableSymbols(leftHandOperand);
|
|
20581
|
+
var rightHandSymbols = getNonEnumerableSymbols(rightHandOperand);
|
|
20582
|
+
leftHandKeys = leftHandKeys.concat(leftHandSymbols);
|
|
20583
|
+
rightHandKeys = rightHandKeys.concat(rightHandSymbols);
|
|
20584
|
+
|
|
20562
20585
|
if (leftHandKeys.length && leftHandKeys.length === rightHandKeys.length) {
|
|
20563
|
-
leftHandKeys.sort()
|
|
20564
|
-
rightHandKeys.sort();
|
|
20565
|
-
if (iterableEqual(leftHandKeys, rightHandKeys) === false) {
|
|
20586
|
+
if (iterableEqual(mapSymbols(leftHandKeys).sort(), mapSymbols(rightHandKeys).sort()) === false) {
|
|
20566
20587
|
return false;
|
|
20567
20588
|
}
|
|
20568
20589
|
return keysEqual(leftHandOperand, rightHandOperand, leftHandKeys, options);
|
|
@@ -20599,6 +20620,16 @@ function isPrimitive(value) {
|
|
|
20599
20620
|
return value === null || typeof value !== 'object';
|
|
20600
20621
|
}
|
|
20601
20622
|
|
|
20623
|
+
function mapSymbols(arr) {
|
|
20624
|
+
return arr.map(function mapSymbol(entry) {
|
|
20625
|
+
if (typeof entry === 'symbol') {
|
|
20626
|
+
return entry.toString();
|
|
20627
|
+
}
|
|
20628
|
+
|
|
20629
|
+
return entry;
|
|
20630
|
+
});
|
|
20631
|
+
}
|
|
20632
|
+
|
|
20602
20633
|
|
|
20603
20634
|
/***/ }),
|
|
20604
20635
|
|
|
@@ -21950,8 +21981,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21950
21981
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21951
21982
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
21952
21983
|
/* harmony export */ });
|
|
21953
|
-
/* 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.
|
|
21954
|
-
/* 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.
|
|
21984
|
+
/* 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");
|
|
21985
|
+
/* 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");
|
|
21955
21986
|
|
|
21956
21987
|
|
|
21957
21988
|
|
|
@@ -39731,9 +39762,9 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
39731
39762
|
|
|
39732
39763
|
/***/ }),
|
|
39733
39764
|
|
|
39734
|
-
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
39765
|
+
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js":
|
|
39735
39766
|
/*!************************************************************************************!*\
|
|
39736
|
-
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
39767
|
+
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js ***!
|
|
39737
39768
|
\************************************************************************************/
|
|
39738
39769
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
39739
39770
|
|
|
@@ -40117,9 +40148,15 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40117
40148
|
}
|
|
40118
40149
|
|
|
40119
40150
|
function inspectDate(dateObject, options) {
|
|
40120
|
-
|
|
40121
|
-
|
|
40122
|
-
|
|
40151
|
+
var stringRepresentation = dateObject.toJSON();
|
|
40152
|
+
|
|
40153
|
+
if (stringRepresentation === null) {
|
|
40154
|
+
return 'Invalid Date';
|
|
40155
|
+
}
|
|
40156
|
+
|
|
40157
|
+
var split = stringRepresentation.split('T');
|
|
40158
|
+
var date = split[0]; // If we need to - truncate the time portion, but never the date
|
|
40159
|
+
|
|
40123
40160
|
return options.stylize("".concat(date, "T").concat(truncate(split[1], options.truncate - date.length - 1)), 'date');
|
|
40124
40161
|
}
|
|
40125
40162
|
|
|
@@ -40409,14 +40446,39 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40409
40446
|
|
|
40410
40447
|
try {
|
|
40411
40448
|
// eslint-disable-next-line global-require
|
|
40412
|
-
var nodeUtil = __webpack_require__(/*! util */ "?
|
|
40449
|
+
var nodeUtil = __webpack_require__(/*! util */ "?1120");
|
|
40413
40450
|
|
|
40414
40451
|
nodeInspect = nodeUtil.inspect ? nodeUtil.inspect.custom : false;
|
|
40415
40452
|
} catch (noNodeInspect) {
|
|
40416
40453
|
nodeInspect = false;
|
|
40417
40454
|
}
|
|
40418
40455
|
|
|
40419
|
-
|
|
40456
|
+
function FakeMap() {
|
|
40457
|
+
// eslint-disable-next-line prefer-template
|
|
40458
|
+
this.key = 'chai/loupe__' + Math.random() + Date.now();
|
|
40459
|
+
}
|
|
40460
|
+
|
|
40461
|
+
FakeMap.prototype = {
|
|
40462
|
+
// eslint-disable-next-line object-shorthand
|
|
40463
|
+
get: function get(key) {
|
|
40464
|
+
return key[this.key];
|
|
40465
|
+
},
|
|
40466
|
+
// eslint-disable-next-line object-shorthand
|
|
40467
|
+
has: function has(key) {
|
|
40468
|
+
return this.key in key;
|
|
40469
|
+
},
|
|
40470
|
+
// eslint-disable-next-line object-shorthand
|
|
40471
|
+
set: function set(key, value) {
|
|
40472
|
+
if (Object.isExtensible(key)) {
|
|
40473
|
+
Object.defineProperty(key, this.key, {
|
|
40474
|
+
// eslint-disable-next-line object-shorthand
|
|
40475
|
+
value: value,
|
|
40476
|
+
configurable: true
|
|
40477
|
+
});
|
|
40478
|
+
}
|
|
40479
|
+
}
|
|
40480
|
+
};
|
|
40481
|
+
var constructorMap = new (typeof WeakMap === 'function' ? WeakMap : FakeMap)();
|
|
40420
40482
|
var stringTagMap = {};
|
|
40421
40483
|
var baseTypesMap = {
|
|
40422
40484
|
undefined: function undefined$1(value, options) {
|
|
@@ -40566,7 +40628,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40566
40628
|
return false;
|
|
40567
40629
|
}
|
|
40568
40630
|
|
|
40569
|
-
constructorMap.
|
|
40631
|
+
constructorMap.set(constructor, inspector);
|
|
40570
40632
|
return true;
|
|
40571
40633
|
}
|
|
40572
40634
|
function registerStringTag(stringTag, inspector) {
|
|
@@ -57730,15 +57792,25 @@ class ByteStream {
|
|
|
57730
57792
|
return new ByteStream(buffer, subView); // eslint-disable-line deprecation/deprecation
|
|
57731
57793
|
}
|
|
57732
57794
|
/** The number of bytes in this stream */
|
|
57733
|
-
get length() {
|
|
57795
|
+
get length() {
|
|
57796
|
+
return this._view.byteLength;
|
|
57797
|
+
}
|
|
57798
|
+
/** The number of bytes remaining to be read, from [[curPos]] to the end of the stream. */
|
|
57799
|
+
get remainingLength() {
|
|
57800
|
+
return this.length - this.curPos;
|
|
57801
|
+
}
|
|
57734
57802
|
/** 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.
|
|
57735
57803
|
* @see [[isAtTheEnd]]
|
|
57736
57804
|
*/
|
|
57737
|
-
get isPastTheEnd() {
|
|
57805
|
+
get isPastTheEnd() {
|
|
57806
|
+
return this.curPos > this.length;
|
|
57807
|
+
}
|
|
57738
57808
|
/** Returns true if the current read position has advanced precisely to the end of the stream, indicating all of the data has been consumed.
|
|
57739
57809
|
* @see [[isPastTheEnd]].
|
|
57740
57810
|
*/
|
|
57741
|
-
get isAtTheEnd() {
|
|
57811
|
+
get isAtTheEnd() {
|
|
57812
|
+
return this.curPos === this.length;
|
|
57813
|
+
}
|
|
57742
57814
|
/** The current read position as an index into the stream of bytes. */
|
|
57743
57815
|
get curPos() { return this._curPos; }
|
|
57744
57816
|
set curPos(pos) {
|
|
@@ -63500,7 +63572,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
63500
63572
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
63501
63573
|
/* harmony export */ "Base64EncodedString": () => (/* binding */ Base64EncodedString)
|
|
63502
63574
|
/* harmony export */ });
|
|
63503
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
63575
|
+
/* 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");
|
|
63504
63576
|
/*---------------------------------------------------------------------------------------------
|
|
63505
63577
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
63506
63578
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65306,7 +65378,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65306
65378
|
/* harmony export */ });
|
|
65307
65379
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
65308
65380
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
65309
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
65381
|
+
/* 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");
|
|
65310
65382
|
/*---------------------------------------------------------------------------------------------
|
|
65311
65383
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65312
65384
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65345,42 +65417,99 @@ class QueryOptionsBuilder {
|
|
|
65345
65417
|
this._options = _options;
|
|
65346
65418
|
}
|
|
65347
65419
|
getOptions() { return this._options; }
|
|
65420
|
+
/**
|
|
65421
|
+
* @internal
|
|
65422
|
+
* 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.
|
|
65423
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65424
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65425
|
+
*/
|
|
65348
65426
|
setPriority(val) {
|
|
65349
65427
|
this._options.priority = val;
|
|
65350
65428
|
return this;
|
|
65351
65429
|
}
|
|
65430
|
+
/**
|
|
65431
|
+
* 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.
|
|
65432
|
+
* @param val A string token identifying a use case in which previous query with same token is cancelled.
|
|
65433
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65434
|
+
*/
|
|
65352
65435
|
setRestartToken(val) {
|
|
65353
65436
|
this._options.restartToken = val;
|
|
65354
65437
|
return this;
|
|
65355
65438
|
}
|
|
65439
|
+
/**
|
|
65440
|
+
* Allow to set quota restriction for query. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65441
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65442
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65443
|
+
*/
|
|
65356
65444
|
setQuota(val) {
|
|
65357
65445
|
this._options.quota = val;
|
|
65358
65446
|
return this;
|
|
65359
65447
|
}
|
|
65448
|
+
/**
|
|
65449
|
+
* Force a query to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65450
|
+
* @param val A boolean value to force use primary connection on main thread to execute query.
|
|
65451
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65452
|
+
*/
|
|
65360
65453
|
setUsePrimaryConnection(val) {
|
|
65361
65454
|
this._options.usePrimaryConn = val;
|
|
65362
65455
|
return this;
|
|
65363
65456
|
}
|
|
65457
|
+
/**
|
|
65458
|
+
* 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.
|
|
65459
|
+
* Use @type BlobReader to access blob data more efficiently.
|
|
65460
|
+
* @param val A boolean value, if set to false will return complete blob type property data. This could cost time and network bandwidth.
|
|
65461
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65462
|
+
*/
|
|
65364
65463
|
setAbbreviateBlobs(val) {
|
|
65365
65464
|
this._options.abbreviateBlobs = val;
|
|
65366
65465
|
return this;
|
|
65367
65466
|
}
|
|
65467
|
+
/**
|
|
65468
|
+
* 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.
|
|
65469
|
+
* @param val A boolean value, if set to true, any error logging will be suppressed.
|
|
65470
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65471
|
+
*/
|
|
65368
65472
|
setSuppressLogErrors(val) {
|
|
65369
65473
|
this._options.suppressLogErrors = val;
|
|
65370
65474
|
return this;
|
|
65371
65475
|
}
|
|
65476
|
+
/**
|
|
65477
|
+
* If set ECClassId, SourceECClassId and TargetECClassId system properties will return qualified name of class instead of a @typedef Id64String.
|
|
65478
|
+
* @param val A boolean value.
|
|
65479
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65480
|
+
*/
|
|
65372
65481
|
setConvertClassIdsToNames(val) {
|
|
65373
65482
|
this._options.convertClassIdsToClassNames = val;
|
|
65374
65483
|
return this;
|
|
65375
65484
|
}
|
|
65485
|
+
/**
|
|
65486
|
+
* Specify limit for query. Limit determine number of rows and offset in result-set.
|
|
65487
|
+
* @param val Specify count and offset from within the result-set of a ECSQL query.
|
|
65488
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65489
|
+
*/
|
|
65376
65490
|
setLimit(val) {
|
|
65377
65491
|
this._options.limit = val;
|
|
65378
65492
|
return this;
|
|
65379
65493
|
}
|
|
65494
|
+
/**
|
|
65495
|
+
* Specify row format returned by concurrent query manager.
|
|
65496
|
+
* @param val @enum QueryRowFormat specifying format for result.
|
|
65497
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65498
|
+
*/
|
|
65380
65499
|
setRowFormat(val) {
|
|
65381
65500
|
this._options.rowFormat = val;
|
|
65382
65501
|
return this;
|
|
65383
65502
|
}
|
|
65503
|
+
/**
|
|
65504
|
+
* @internal
|
|
65505
|
+
* Defers execution of query in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65506
|
+
* @param val Number of milliseconds.
|
|
65507
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65508
|
+
*/
|
|
65509
|
+
setDelay(val) {
|
|
65510
|
+
this._options.delay = val;
|
|
65511
|
+
return this;
|
|
65512
|
+
}
|
|
65384
65513
|
}
|
|
65385
65514
|
/** @beta */
|
|
65386
65515
|
class BlobOptionsBuilder {
|
|
@@ -65388,26 +65517,62 @@ class BlobOptionsBuilder {
|
|
|
65388
65517
|
this._options = _options;
|
|
65389
65518
|
}
|
|
65390
65519
|
getOptions() { return this._options; }
|
|
65520
|
+
/**
|
|
65521
|
+
* @internal
|
|
65522
|
+
* 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.
|
|
65523
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65524
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65525
|
+
*/
|
|
65391
65526
|
setPriority(val) {
|
|
65392
65527
|
this._options.priority = val;
|
|
65393
65528
|
return this;
|
|
65394
65529
|
}
|
|
65530
|
+
/**
|
|
65531
|
+
* 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.
|
|
65532
|
+
* @param val A string token identifying a use case in which previous blob request with same token is cancelled.
|
|
65533
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65534
|
+
*/
|
|
65395
65535
|
setRestartToken(val) {
|
|
65396
65536
|
this._options.restartToken = val;
|
|
65397
65537
|
return this;
|
|
65398
65538
|
}
|
|
65539
|
+
/**
|
|
65540
|
+
* Allow to set quota restriction for blob request. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65541
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65542
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65543
|
+
*/
|
|
65399
65544
|
setQuota(val) {
|
|
65400
65545
|
this._options.quota = val;
|
|
65401
65546
|
return this;
|
|
65402
65547
|
}
|
|
65548
|
+
/**
|
|
65549
|
+
* Force a blob request to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65550
|
+
* @param val A boolean value to force use primary connection on main thread to execute blob request.
|
|
65551
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65552
|
+
*/
|
|
65403
65553
|
setUsePrimaryConnection(val) {
|
|
65404
65554
|
this._options.usePrimaryConn = val;
|
|
65405
65555
|
return this;
|
|
65406
65556
|
}
|
|
65557
|
+
/**
|
|
65558
|
+
* Specify range with in the blob that need to be returned.
|
|
65559
|
+
* @param val Specify offset and count of bytes that need to be returned.
|
|
65560
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65561
|
+
*/
|
|
65407
65562
|
setRange(val) {
|
|
65408
65563
|
this._options.range = val;
|
|
65409
65564
|
return this;
|
|
65410
65565
|
}
|
|
65566
|
+
/**
|
|
65567
|
+
* @internal
|
|
65568
|
+
* 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.
|
|
65569
|
+
* @param val Number of milliseconds.
|
|
65570
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65571
|
+
*/
|
|
65572
|
+
setDelay(val) {
|
|
65573
|
+
this._options.delay = val;
|
|
65574
|
+
return this;
|
|
65575
|
+
}
|
|
65411
65576
|
}
|
|
65412
65577
|
/** @internal */
|
|
65413
65578
|
var QueryParamType;
|
|
@@ -65427,7 +65592,10 @@ var QueryParamType;
|
|
|
65427
65592
|
QueryParamType[QueryParamType["Blob"] = 10] = "Blob";
|
|
65428
65593
|
QueryParamType[QueryParamType["Struct"] = 11] = "Struct";
|
|
65429
65594
|
})(QueryParamType || (QueryParamType = {}));
|
|
65430
|
-
/**
|
|
65595
|
+
/**
|
|
65596
|
+
* @public
|
|
65597
|
+
* QueryBinder allow to bind values to a ECSQL query.
|
|
65598
|
+
* */
|
|
65431
65599
|
class QueryBinder {
|
|
65432
65600
|
constructor() {
|
|
65433
65601
|
this._args = {};
|
|
@@ -65443,6 +65611,12 @@ class QueryBinder {
|
|
|
65443
65611
|
}
|
|
65444
65612
|
}
|
|
65445
65613
|
}
|
|
65614
|
+
/**
|
|
65615
|
+
* Bind boolean value to ECSQL statement.
|
|
65616
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65617
|
+
* @param val Boolean value to bind to ECSQL statement.
|
|
65618
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65619
|
+
*/
|
|
65446
65620
|
bindBoolean(indexOrName, val) {
|
|
65447
65621
|
this.verify(indexOrName);
|
|
65448
65622
|
const name = String(indexOrName);
|
|
@@ -65455,6 +65629,12 @@ class QueryBinder {
|
|
|
65455
65629
|
});
|
|
65456
65630
|
return this;
|
|
65457
65631
|
}
|
|
65632
|
+
/**
|
|
65633
|
+
* Bind blob value to ECSQL statement.
|
|
65634
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65635
|
+
* @param val Blob value to bind to ECSQL statement.
|
|
65636
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65637
|
+
*/
|
|
65458
65638
|
bindBlob(indexOrName, val) {
|
|
65459
65639
|
this.verify(indexOrName);
|
|
65460
65640
|
const name = String(indexOrName);
|
|
@@ -65467,6 +65647,12 @@ class QueryBinder {
|
|
|
65467
65647
|
});
|
|
65468
65648
|
return this;
|
|
65469
65649
|
}
|
|
65650
|
+
/**
|
|
65651
|
+
* Bind double value to ECSQL statement.
|
|
65652
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65653
|
+
* @param val Double value to bind to ECSQL statement.
|
|
65654
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65655
|
+
*/
|
|
65470
65656
|
bindDouble(indexOrName, val) {
|
|
65471
65657
|
this.verify(indexOrName);
|
|
65472
65658
|
const name = String(indexOrName);
|
|
@@ -65478,6 +65664,12 @@ class QueryBinder {
|
|
|
65478
65664
|
});
|
|
65479
65665
|
return this;
|
|
65480
65666
|
}
|
|
65667
|
+
/**
|
|
65668
|
+
* Bind @typedef Id64String value to ECSQL statement.
|
|
65669
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65670
|
+
* @param val @typedef Id64String value to bind to ECSQL statement.
|
|
65671
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65672
|
+
*/
|
|
65481
65673
|
bindId(indexOrName, val) {
|
|
65482
65674
|
this.verify(indexOrName);
|
|
65483
65675
|
const name = String(indexOrName);
|
|
@@ -65489,6 +65681,12 @@ class QueryBinder {
|
|
|
65489
65681
|
});
|
|
65490
65682
|
return this;
|
|
65491
65683
|
}
|
|
65684
|
+
/**
|
|
65685
|
+
* Bind @type OrderedId64Iterable to ECSQL statement.
|
|
65686
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65687
|
+
* @param val @type OrderedId64Iterable value to bind to ECSQL statement.
|
|
65688
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65689
|
+
*/
|
|
65492
65690
|
bindIdSet(indexOrName, val) {
|
|
65493
65691
|
this.verify(indexOrName);
|
|
65494
65692
|
const name = String(indexOrName);
|
|
@@ -65501,6 +65699,12 @@ class QueryBinder {
|
|
|
65501
65699
|
});
|
|
65502
65700
|
return this;
|
|
65503
65701
|
}
|
|
65702
|
+
/**
|
|
65703
|
+
* Bind integer to ECSQL statement.
|
|
65704
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65705
|
+
* @param val Integer value to bind to ECSQL statement.
|
|
65706
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65707
|
+
*/
|
|
65504
65708
|
bindInt(indexOrName, val) {
|
|
65505
65709
|
this.verify(indexOrName);
|
|
65506
65710
|
const name = String(indexOrName);
|
|
@@ -65512,6 +65716,12 @@ class QueryBinder {
|
|
|
65512
65716
|
});
|
|
65513
65717
|
return this;
|
|
65514
65718
|
}
|
|
65719
|
+
/**
|
|
65720
|
+
* Bind struct to ECSQL statement. Struct specified as object.
|
|
65721
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65722
|
+
* @param val struct value to bind to ECSQL statement.
|
|
65723
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65724
|
+
*/
|
|
65515
65725
|
bindStruct(indexOrName, val) {
|
|
65516
65726
|
this.verify(indexOrName);
|
|
65517
65727
|
const name = String(indexOrName);
|
|
@@ -65523,6 +65733,12 @@ class QueryBinder {
|
|
|
65523
65733
|
});
|
|
65524
65734
|
return this;
|
|
65525
65735
|
}
|
|
65736
|
+
/**
|
|
65737
|
+
* Bind long to ECSQL statement.
|
|
65738
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65739
|
+
* @param val Long value to bind to ECSQL statement.
|
|
65740
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65741
|
+
*/
|
|
65526
65742
|
bindLong(indexOrName, val) {
|
|
65527
65743
|
this.verify(indexOrName);
|
|
65528
65744
|
const name = String(indexOrName);
|
|
@@ -65534,6 +65750,12 @@ class QueryBinder {
|
|
|
65534
65750
|
});
|
|
65535
65751
|
return this;
|
|
65536
65752
|
}
|
|
65753
|
+
/**
|
|
65754
|
+
* Bind string to ECSQL statement.
|
|
65755
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65756
|
+
* @param val String value to bind to ECSQL statement.
|
|
65757
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65758
|
+
*/
|
|
65537
65759
|
bindString(indexOrName, val) {
|
|
65538
65760
|
this.verify(indexOrName);
|
|
65539
65761
|
const name = String(indexOrName);
|
|
@@ -65545,6 +65767,11 @@ class QueryBinder {
|
|
|
65545
65767
|
});
|
|
65546
65768
|
return this;
|
|
65547
65769
|
}
|
|
65770
|
+
/**
|
|
65771
|
+
* Bind null to ECSQL statement.
|
|
65772
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65773
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65774
|
+
*/
|
|
65548
65775
|
bindNull(indexOrName) {
|
|
65549
65776
|
this.verify(indexOrName);
|
|
65550
65777
|
const name = String(indexOrName);
|
|
@@ -65556,6 +65783,12 @@ class QueryBinder {
|
|
|
65556
65783
|
});
|
|
65557
65784
|
return this;
|
|
65558
65785
|
}
|
|
65786
|
+
/**
|
|
65787
|
+
* Bind @type Point2d to ECSQL statement.
|
|
65788
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65789
|
+
* @param val @type Point2d value to bind to ECSQL statement.
|
|
65790
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65791
|
+
*/
|
|
65559
65792
|
bindPoint2d(indexOrName, val) {
|
|
65560
65793
|
this.verify(indexOrName);
|
|
65561
65794
|
const name = String(indexOrName);
|
|
@@ -65567,6 +65800,12 @@ class QueryBinder {
|
|
|
65567
65800
|
});
|
|
65568
65801
|
return this;
|
|
65569
65802
|
}
|
|
65803
|
+
/**
|
|
65804
|
+
* Bind @type Point3d to ECSQL statement.
|
|
65805
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65806
|
+
* @param val @type Point3d value to bind to ECSQL statement.
|
|
65807
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65808
|
+
*/
|
|
65570
65809
|
bindPoint3d(indexOrName, val) {
|
|
65571
65810
|
this.verify(indexOrName);
|
|
65572
65811
|
const name = String(indexOrName);
|
|
@@ -65610,6 +65849,11 @@ class QueryBinder {
|
|
|
65610
65849
|
throw new Error("unsupported type");
|
|
65611
65850
|
}
|
|
65612
65851
|
}
|
|
65852
|
+
/**
|
|
65853
|
+
* Allow bulk bind either parameters by index as value array or by parameter names as object.
|
|
65854
|
+
* @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.
|
|
65855
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65856
|
+
*/
|
|
65613
65857
|
static from(args) {
|
|
65614
65858
|
const params = new QueryBinder();
|
|
65615
65859
|
if (typeof args === "undefined")
|
|
@@ -67594,6 +67838,75 @@ class ECJsNames {
|
|
|
67594
67838
|
}
|
|
67595
67839
|
|
|
67596
67840
|
|
|
67841
|
+
/***/ }),
|
|
67842
|
+
|
|
67843
|
+
/***/ "../../core/common/lib/esm/ElementMesh.js":
|
|
67844
|
+
/*!************************************************!*\
|
|
67845
|
+
!*** ../../core/common/lib/esm/ElementMesh.js ***!
|
|
67846
|
+
\************************************************/
|
|
67847
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
67848
|
+
|
|
67849
|
+
"use strict";
|
|
67850
|
+
__webpack_require__.r(__webpack_exports__);
|
|
67851
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
67852
|
+
/* harmony export */ "readElementMeshes": () => (/* binding */ readElementMeshes)
|
|
67853
|
+
/* harmony export */ });
|
|
67854
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
67855
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
67856
|
+
/*---------------------------------------------------------------------------------------------
|
|
67857
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
67858
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
67859
|
+
*--------------------------------------------------------------------------------------------*/
|
|
67860
|
+
/** @packageDocumentation
|
|
67861
|
+
* @module Geometry
|
|
67862
|
+
*/
|
|
67863
|
+
|
|
67864
|
+
|
|
67865
|
+
function nextChunk(stream) {
|
|
67866
|
+
if (stream.remainingLength < 8) {
|
|
67867
|
+
// Consume remaining bytes.
|
|
67868
|
+
stream.curPos = stream.length;
|
|
67869
|
+
return undefined;
|
|
67870
|
+
}
|
|
67871
|
+
// Type codes are a sequence of four uppercase ASCII letters.
|
|
67872
|
+
const chars = [stream.nextUint8, stream.nextUint8, stream.nextUint8, stream.nextUint8];
|
|
67873
|
+
if (chars.some((c) => c < 65 || c > 90))
|
|
67874
|
+
return undefined;
|
|
67875
|
+
const dataLength = stream.nextUint32;
|
|
67876
|
+
const data = dataLength > 0 ? stream.nextBytes(dataLength) : undefined;
|
|
67877
|
+
return {
|
|
67878
|
+
type: String.fromCharCode(...chars),
|
|
67879
|
+
data,
|
|
67880
|
+
};
|
|
67881
|
+
}
|
|
67882
|
+
/** Convert the output of [IModelConnection.generateElementMeshes]($frontend) into an array of [Polyface]($core-geometry)s.
|
|
67883
|
+
* @param data Encoded polyfaces obtained from [IModelConnection.generateElementMeshes]($frontend).
|
|
67884
|
+
* @returns a list of decoded polyfaces.
|
|
67885
|
+
* @beta
|
|
67886
|
+
*/
|
|
67887
|
+
function readElementMeshes(data) {
|
|
67888
|
+
const polyfaces = [];
|
|
67889
|
+
const stream = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ByteStream.fromUint8Array(data);
|
|
67890
|
+
const firstChunk = nextChunk(stream);
|
|
67891
|
+
if (!firstChunk || "LMSH" !== firstChunk.type)
|
|
67892
|
+
return polyfaces;
|
|
67893
|
+
while (stream.remainingLength > 0) {
|
|
67894
|
+
const chunk = nextChunk(stream);
|
|
67895
|
+
if (!chunk || chunk.type !== "PLFC" || !chunk.data)
|
|
67896
|
+
continue;
|
|
67897
|
+
try {
|
|
67898
|
+
const geom = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.BentleyGeometryFlatBuffer.bytesToGeometry(chunk.data, true);
|
|
67899
|
+
if (geom instanceof _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.IndexedPolyface)
|
|
67900
|
+
polyfaces.push(geom);
|
|
67901
|
+
}
|
|
67902
|
+
catch (_) {
|
|
67903
|
+
//
|
|
67904
|
+
}
|
|
67905
|
+
}
|
|
67906
|
+
return polyfaces;
|
|
67907
|
+
}
|
|
67908
|
+
|
|
67909
|
+
|
|
67597
67910
|
/***/ }),
|
|
67598
67911
|
|
|
67599
67912
|
/***/ "../../core/common/lib/esm/ElementProps.js":
|
|
@@ -78987,47 +79300,47 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
78987
79300
|
"use strict";
|
|
78988
79301
|
__webpack_require__.r(__webpack_exports__);
|
|
78989
79302
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
78990
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
78991
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
78992
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
79303
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.AdditionalTransform),
|
|
79304
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.AffineTransform),
|
|
79305
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.AmbientLight),
|
|
78993
79306
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
78994
79307
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
78995
79308
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
78996
79309
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
78997
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
78998
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
78999
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
79000
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
79001
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
79002
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
79310
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__.AreaPattern),
|
|
79311
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__.B3dmHeader),
|
|
79312
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.BRepEntity),
|
|
79313
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.BRepGeometryOperation),
|
|
79314
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BackendError),
|
|
79315
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.BackgroundFill),
|
|
79003
79316
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
79004
79317
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
79005
79318
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
79006
79319
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
79007
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
79008
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
79009
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
79010
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
79011
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
79012
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
79013
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
79014
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
79320
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.BaseLayerSettings),
|
|
79321
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.BaseMapLayerSettings),
|
|
79322
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.BatchType),
|
|
79323
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcConfiguration),
|
|
79324
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcManager),
|
|
79325
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.BentleyCloudRpcProtocol),
|
|
79326
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyError),
|
|
79327
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyStatus),
|
|
79015
79328
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
|
|
79016
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
79017
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
79329
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.BlobOptionsBuilder),
|
|
79330
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__.BoundingSphere),
|
|
79018
79331
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
79019
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
79020
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
79021
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
79332
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BriefcaseStatus),
|
|
79333
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_INVOCATION),
|
|
79334
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_REQUEST),
|
|
79022
79335
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
79023
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
79024
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
79025
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
79336
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Carto2DDegrees),
|
|
79337
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.Cartographic),
|
|
79338
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.CartographicRange),
|
|
79026
79339
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangeOpCode),
|
|
79027
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
79340
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChangeSetStatus),
|
|
79028
79341
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangedValueState),
|
|
79029
79342
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
79030
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
79343
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChannelConstraintError),
|
|
79031
79344
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
79032
79345
|
/* harmony export */ "CloudStorageCache": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageCache),
|
|
79033
79346
|
/* harmony export */ "CloudStorageContainerUrl": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageContainerUrl),
|
|
@@ -79038,323 +79351,324 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79038
79351
|
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.CodeSpec),
|
|
79039
79352
|
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_15__.ColorByName),
|
|
79040
79353
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
|
|
79041
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
79354
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.ColorIndex),
|
|
79042
79355
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
|
|
79043
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
79044
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
79045
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
79046
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
79356
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__.CompositeTileHeader),
|
|
79357
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.ConcreteEntityTypes),
|
|
79358
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentFlags),
|
|
79359
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentIdProvider),
|
|
79047
79360
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
79048
79361
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
79049
79362
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
79050
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
79363
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.CurrentImdlVersion),
|
|
79051
79364
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
79052
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
79053
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
79054
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
79055
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
79056
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
79057
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
79058
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
79059
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
79060
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
79365
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbQueryError),
|
|
79366
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbRequestKind),
|
|
79367
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseKind),
|
|
79368
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseStatus),
|
|
79369
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.DbResult),
|
|
79370
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbValueFormat),
|
|
79371
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__.DefaultSupportedTypes),
|
|
79372
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsRpcInterface),
|
|
79373
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsStatsOptions),
|
|
79061
79374
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
|
|
79062
79375
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
|
|
79063
79376
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
79064
79377
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECJsNames),
|
|
79065
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
79378
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.ECSqlReader),
|
|
79066
79379
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
|
|
79067
79380
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
|
|
79068
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
79069
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
79070
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
79071
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
79072
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
79073
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
79074
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
79075
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
79076
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
79077
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
79078
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
79079
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
79080
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
79081
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
79082
|
-
/* harmony export */ "FeatureGates": () => (/* reexport safe */
|
|
79083
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
79084
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
79085
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
79086
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
79087
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
79088
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
79089
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
79090
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
79091
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
79092
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
79093
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
79094
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
79095
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
79096
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
79097
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
79098
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
79099
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
79100
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
79101
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
79102
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
79103
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
79104
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
79105
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
79106
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
79107
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
79108
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
79109
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
79381
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Easing),
|
|
79382
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.EcefLocation),
|
|
79383
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.EdgeArgs),
|
|
79384
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometry),
|
|
79385
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ElementGeometryChange),
|
|
79386
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometryOpcode),
|
|
79387
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_73__.EmptyLocalization),
|
|
79388
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.EntityMetaData),
|
|
79389
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.EntityReferenceSet),
|
|
79390
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_29__.Environment),
|
|
79391
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.ExternalSourceAttachmentRole),
|
|
79392
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.Feature),
|
|
79393
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearance),
|
|
79394
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearanceProvider),
|
|
79395
|
+
/* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_30__.FeatureGates),
|
|
79396
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndex),
|
|
79397
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndexType),
|
|
79398
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__.FeatureOverrideType),
|
|
79399
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrides),
|
|
79400
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.FeatureTable),
|
|
79401
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.FeatureTableHeader),
|
|
79402
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.FillDisplay),
|
|
79403
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.FillFlags),
|
|
79404
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontMap),
|
|
79405
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontType),
|
|
79406
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.FresnelSettings),
|
|
79407
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Frustum),
|
|
79408
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__.FrustumPlanes),
|
|
79409
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.GeoCoordStatus),
|
|
79410
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeocentricTransform),
|
|
79411
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticDatum),
|
|
79412
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__.GeodeticEllipsoid),
|
|
79413
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransform),
|
|
79414
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransformPath),
|
|
79415
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.GeographicCRS),
|
|
79416
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryClass),
|
|
79417
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryParams),
|
|
79418
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamBuilder),
|
|
79419
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamFlags),
|
|
79420
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamIterator),
|
|
79421
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__.GeometrySummaryVerbosity),
|
|
79422
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GlbHeader),
|
|
79110
79423
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
79111
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
79112
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
79113
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
79114
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
79115
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
79116
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
79117
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
79118
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
79119
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
79120
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
79121
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
79122
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
79123
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
79124
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
79125
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
79126
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
79127
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
79128
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
79129
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
79130
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
79131
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
79132
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
79133
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
79134
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
79135
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
79136
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
79137
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
79138
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
79139
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
79140
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
79141
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
79142
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
79143
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
79144
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
79145
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
79146
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
79147
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
79148
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
79149
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
79150
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
79151
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
79152
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
79153
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
79154
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
79155
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
79156
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
79157
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
79158
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
79159
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
79160
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
79161
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
79162
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
79163
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
79164
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
79165
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
79166
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
79167
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
79168
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
79169
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
79170
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
79171
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
79424
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfV2ChunkTypes),
|
|
79425
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfVersions),
|
|
79426
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_55__.Gradient),
|
|
79427
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.GraphicParams),
|
|
79428
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileDefinition),
|
|
79429
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileTransform),
|
|
79430
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.GridOrientationType),
|
|
79431
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_57__.GroundPlane),
|
|
79432
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_60__.HSLColor),
|
|
79433
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVColor),
|
|
79434
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVConstants),
|
|
79435
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.Helmert2DWithZOffset),
|
|
79436
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.HemisphereLights),
|
|
79437
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_58__.HiddenLine),
|
|
79438
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_59__.Hilite),
|
|
79439
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRS),
|
|
79440
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRSExtent),
|
|
79441
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.I3dmHeader),
|
|
79442
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.IModel),
|
|
79443
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelError),
|
|
79444
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelNotFoundResponse),
|
|
79445
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelReadRpcInterface),
|
|
79446
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelStatus),
|
|
79447
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__.IModelTileRpcInterface),
|
|
79448
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_65__.IModelVersion),
|
|
79449
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.INSTANCE),
|
|
79450
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBuffer),
|
|
79451
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBufferFormat),
|
|
79452
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphic),
|
|
79453
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphicCorners),
|
|
79454
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ImageMapLayerSettings),
|
|
79455
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSource),
|
|
79456
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSourceFormat),
|
|
79457
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlFlags),
|
|
79458
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlHeader),
|
|
79459
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.InternetConnectivityStatus),
|
|
79460
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Interpolation),
|
|
79461
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.IpcAppChannel),
|
|
79462
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__.IpcSession),
|
|
79463
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocket),
|
|
79464
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketBackend),
|
|
79465
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketFrontend),
|
|
79466
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessage),
|
|
79467
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessageType),
|
|
79468
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__.IpcWebSocketTransport),
|
|
79469
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.LightSettings),
|
|
79470
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_72__.LinePixels),
|
|
79471
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__.LineStyle),
|
|
79472
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.MapImagerySettings),
|
|
79473
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapLayerSettings),
|
|
79474
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapSubLayerSettings),
|
|
79475
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.MarshalingBinaryMarker),
|
|
79476
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_76__.MassPropertiesOperation),
|
|
79477
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdge),
|
|
79478
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdges),
|
|
79479
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolyline),
|
|
79480
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolylineList),
|
|
79481
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroup),
|
|
79482
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroups),
|
|
79483
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ModelGeometryChanges),
|
|
79484
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ModelMapLayerSettings),
|
|
79172
79485
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.MonochromeMode),
|
|
79173
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
79174
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
79175
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
79176
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
79177
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
79178
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
79179
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
79180
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
79181
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
79182
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
79183
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
79184
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
79185
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
79186
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
79187
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
79188
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
79189
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
79190
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
79191
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
79192
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
79193
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
79194
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
79195
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
79196
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
79197
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
79486
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.NoContentError),
|
|
79487
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.NonUniformColor),
|
|
79488
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Npc),
|
|
79489
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCenter),
|
|
79490
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCorners),
|
|
79491
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.OPERATION),
|
|
79492
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormal),
|
|
79493
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormalPair),
|
|
79494
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.OverriddenBy),
|
|
79495
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.POLICY),
|
|
79496
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.PackedFeatureTable),
|
|
79497
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement2d),
|
|
79498
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement3d),
|
|
79499
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__.PlanProjectionSettings),
|
|
79500
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskMode),
|
|
79501
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskPriority),
|
|
79502
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskSettings),
|
|
79503
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__.PntsHeader),
|
|
79504
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.PointCloudDisplaySettings),
|
|
79505
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineData),
|
|
79506
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineEdgeArgs),
|
|
79507
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineFlags),
|
|
79508
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineTypeFlags),
|
|
79509
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.PositionalVectorTransform),
|
|
79510
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PrimitiveTypeCode),
|
|
79198
79511
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
79199
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
79200
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
79201
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
79202
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
79203
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
79204
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
79205
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
79206
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
79207
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
79208
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
79209
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
79210
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
79211
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
79212
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
79213
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
79214
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
79215
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
79216
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
79217
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
79512
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Projection),
|
|
79513
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PropertyMetaData),
|
|
79514
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.PropertyMetaDataMap),
|
|
79515
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams2d),
|
|
79516
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams3d),
|
|
79517
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2d),
|
|
79518
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBuffer),
|
|
79519
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBufferBuilder),
|
|
79520
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dList),
|
|
79521
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3d),
|
|
79522
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBuffer),
|
|
79523
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBufferBuilder),
|
|
79524
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dList),
|
|
79525
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.Quantization),
|
|
79526
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryBinder),
|
|
79527
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryOptionsBuilder),
|
|
79528
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryRowFormat),
|
|
79529
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.REGISTRY),
|
|
79530
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.Rank),
|
|
79218
79531
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
|
|
79219
79532
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
|
|
79220
79533
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
|
|
79221
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
79222
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
79223
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
79224
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
79225
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
79226
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
79227
|
-
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */
|
|
79228
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
79229
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
79230
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
79231
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
79232
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
79233
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
79234
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
79235
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
79236
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
79237
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
79238
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
79239
|
-
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */
|
|
79240
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
79241
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
79242
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
79243
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
79244
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
79245
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
79246
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
79247
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
79248
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
79249
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
79250
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
79251
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
79252
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
79253
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
79254
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
79255
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
79256
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
79257
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
79258
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
79259
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
79260
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
79261
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
79262
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
79263
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
79264
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
79265
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
79266
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
79267
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
79534
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.RealityModelDisplaySettings),
|
|
79535
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.RelatedElement),
|
|
79536
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__.RenderMaterial),
|
|
79537
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.RenderMode),
|
|
79538
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__.RenderSchedule),
|
|
79539
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_94__.RenderTexture),
|
|
79540
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RepositoryStatus),
|
|
79541
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.ResponseLike),
|
|
79542
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_95__.RgbColor),
|
|
79543
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcConfiguration),
|
|
79544
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcContentType),
|
|
79545
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlChannel),
|
|
79546
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlResponse),
|
|
79547
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDefaultConfiguration),
|
|
79548
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectProtocol),
|
|
79549
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectRequest),
|
|
79550
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcEndpoint),
|
|
79551
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_103__.RpcInterface),
|
|
79552
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RpcInterfaceStatus),
|
|
79553
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcInvocation),
|
|
79554
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_104__.RpcManager),
|
|
79555
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcMarshaling),
|
|
79556
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__.RpcMultipart),
|
|
79557
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcNotFoundResponse),
|
|
79558
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__.RpcOpenAPIDescription),
|
|
79559
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperation),
|
|
79560
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperationPolicy),
|
|
79561
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__.RpcPendingQueue),
|
|
79562
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcPendingResponse),
|
|
79563
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocol),
|
|
79564
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcProtocolEvent),
|
|
79565
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocolVersion),
|
|
79566
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushChannel),
|
|
79567
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushConnection),
|
|
79568
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushService),
|
|
79569
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushSubscription),
|
|
79570
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushTransport),
|
|
79571
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.RpcRegistry),
|
|
79572
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.RpcRequest),
|
|
79573
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestEvent),
|
|
79574
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcRequestFulfillment),
|
|
79575
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestStatus),
|
|
79576
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcResponseCacheControl),
|
|
79577
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcRoutingMap),
|
|
79578
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__.RpcRoutingToken),
|
|
79579
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcSerializedValue),
|
|
79580
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcSessionInvocation),
|
|
79268
79581
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
79269
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
79270
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
79271
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
79272
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
79273
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
79274
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
79275
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
79276
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
79277
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
79278
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
79279
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
79280
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
79281
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
79282
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
79283
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
79284
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
79285
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
79286
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
79287
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
79582
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.SectionType),
|
|
79583
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerError),
|
|
79584
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerTimeoutError),
|
|
79585
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.SilhouetteEdgeArgs),
|
|
79586
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBox),
|
|
79587
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBoxImageType),
|
|
79588
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyCube),
|
|
79589
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyGradient),
|
|
79590
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkySphere),
|
|
79591
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__.SnapshotIModelRpcInterface),
|
|
79592
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.SolarLight),
|
|
79593
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_109__.SolarShadowSettings),
|
|
79594
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifier),
|
|
79595
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierFlags),
|
|
79596
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierInsideDisplay),
|
|
79597
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierOutsideDisplay),
|
|
79598
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifiers),
|
|
79599
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__.SubCategoryAppearance),
|
|
79600
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__.SubCategoryOverride),
|
|
79288
79601
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
79289
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
79290
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
79291
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
79292
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
79293
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
79294
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
79295
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
79296
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
79297
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
79298
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
79299
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
79300
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
79301
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
79302
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
79303
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
79304
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
79305
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
79306
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
79307
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
79308
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
79309
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
79310
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
79311
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
79312
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
79313
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
79314
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
79602
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainHeightOriginMode),
|
|
79603
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainSettings),
|
|
79604
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__.TestRpcManager),
|
|
79605
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__.TextString),
|
|
79606
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_77__.TextureMapUnits),
|
|
79607
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_114__.TextureMapping),
|
|
79608
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_115__.TextureTransparency),
|
|
79609
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
79610
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
79611
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
79612
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
79613
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
79614
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
79615
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
79616
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.TileContentSource),
|
|
79617
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileFormat),
|
|
79618
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileHeader),
|
|
79619
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileMetadataReader),
|
|
79620
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileOptions),
|
|
79621
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadError),
|
|
79622
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadStatus),
|
|
79623
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TreeFlags),
|
|
79624
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tween),
|
|
79625
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tweens),
|
|
79626
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_120__.TxnAction),
|
|
79627
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.TypeDefinition),
|
|
79315
79628
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
79316
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
79317
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
79318
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
79319
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
79320
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
79321
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
79322
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
79323
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
79324
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
79325
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
79326
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
79327
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
79328
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
79329
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
79330
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
79331
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
79332
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
79333
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
79334
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
79335
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
79336
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
79337
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
79338
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
79339
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
79340
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
79341
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
79342
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
79343
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
79344
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
79345
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
79346
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
79347
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
79348
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
79349
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
79350
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
79351
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
79352
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
79353
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
79354
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
79355
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
79356
|
-
/* harmony export */ "
|
|
79357
|
-
/* harmony export */ "
|
|
79629
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.VerticalCRS),
|
|
79630
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails),
|
|
79631
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails3d),
|
|
79632
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.ViewFlags),
|
|
79633
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.WEB_RPC_CONSTANTS),
|
|
79634
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__.WebAppRpcLogging),
|
|
79635
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcProtocol),
|
|
79636
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcRequest),
|
|
79637
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
79638
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__.WipRpcInterface),
|
|
79639
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.XyzRotation),
|
|
79640
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.aggregateLoad),
|
|
79641
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange2d),
|
|
79642
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange3d),
|
|
79643
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarAngles),
|
|
79644
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirection),
|
|
79645
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirectionFromAngles),
|
|
79646
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSunriseOrSunset),
|
|
79647
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.compareIModelTileTreeIds),
|
|
79648
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileProps),
|
|
79649
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileRanges),
|
|
79650
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeTileChordTolerance),
|
|
79651
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.defaultTileOptions),
|
|
79652
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.getMaximumMajorTileFormatVersion),
|
|
79653
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.getPullChangesIpcChannel),
|
|
79654
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.getTileObjectReference),
|
|
79655
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.iModelTileTreeIdToString),
|
|
79656
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__.iTwinChannel),
|
|
79657
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.initializeRpcRequest),
|
|
79658
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.isKnownTileFormat),
|
|
79659
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement2dProps),
|
|
79660
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement3dProps),
|
|
79661
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isPowerOfTwo),
|
|
79662
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isValidImageSourceFormat),
|
|
79663
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.mapToGeoServiceStatus),
|
|
79664
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppChannel),
|
|
79665
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppNotify),
|
|
79666
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.nextHighestPowerOfTwo),
|
|
79667
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.nextPoint3d64FromByteStream),
|
|
79668
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.parseTileTreeIdAndContentId),
|
|
79669
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_24__.readElementMeshes),
|
|
79670
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.readTileContentDescription),
|
|
79671
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.tileFormatFromNumber)
|
|
79358
79672
|
/* harmony export */ });
|
|
79359
79673
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
79360
79674
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -79380,135 +79694,136 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79380
79694
|
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
79381
79695
|
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
79382
79696
|
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
79383
|
-
/* harmony import */ var
|
|
79384
|
-
/* harmony import */ var
|
|
79385
|
-
/* harmony import */ var
|
|
79386
|
-
/* harmony import */ var
|
|
79387
|
-
/* harmony import */ var
|
|
79388
|
-
/* harmony import */ var
|
|
79389
|
-
/* harmony import */ var
|
|
79390
|
-
/* harmony import */ var
|
|
79391
|
-
/* harmony import */ var
|
|
79392
|
-
/* harmony import */ var
|
|
79393
|
-
/* harmony import */ var
|
|
79394
|
-
/* harmony import */ var
|
|
79395
|
-
/* harmony import */ var
|
|
79396
|
-
/* harmony import */ var
|
|
79397
|
-
/* harmony import */ var
|
|
79398
|
-
/* harmony import */ var
|
|
79399
|
-
/* harmony import */ var
|
|
79400
|
-
/* harmony import */ var
|
|
79401
|
-
/* harmony import */ var
|
|
79402
|
-
/* harmony import */ var
|
|
79403
|
-
/* harmony import */ var
|
|
79404
|
-
/* harmony import */ var
|
|
79405
|
-
/* harmony import */ var
|
|
79406
|
-
/* harmony import */ var
|
|
79407
|
-
/* harmony import */ var
|
|
79408
|
-
/* harmony import */ var
|
|
79409
|
-
/* harmony import */ var
|
|
79410
|
-
/* harmony import */ var
|
|
79411
|
-
/* harmony import */ var
|
|
79412
|
-
/* harmony import */ var
|
|
79413
|
-
/* harmony import */ var
|
|
79414
|
-
/* harmony import */ var
|
|
79415
|
-
/* harmony import */ var
|
|
79416
|
-
/* harmony import */ var
|
|
79417
|
-
/* harmony import */ var
|
|
79418
|
-
/* harmony import */ var
|
|
79419
|
-
/* harmony import */ var
|
|
79420
|
-
/* harmony import */ var
|
|
79421
|
-
/* harmony import */ var
|
|
79422
|
-
/* harmony import */ var
|
|
79423
|
-
/* harmony import */ var
|
|
79424
|
-
/* harmony import */ var
|
|
79425
|
-
/* harmony import */ var
|
|
79426
|
-
/* harmony import */ var
|
|
79427
|
-
/* harmony import */ var
|
|
79428
|
-
/* harmony import */ var
|
|
79429
|
-
/* harmony import */ var
|
|
79430
|
-
/* harmony import */ var
|
|
79431
|
-
/* harmony import */ var
|
|
79432
|
-
/* harmony import */ var
|
|
79433
|
-
/* harmony import */ var
|
|
79434
|
-
/* harmony import */ var
|
|
79435
|
-
/* harmony import */ var
|
|
79436
|
-
/* harmony import */ var
|
|
79437
|
-
/* harmony import */ var
|
|
79438
|
-
/* harmony import */ var
|
|
79439
|
-
/* harmony import */ var
|
|
79440
|
-
/* harmony import */ var
|
|
79441
|
-
/* harmony import */ var
|
|
79442
|
-
/* harmony import */ var
|
|
79443
|
-
/* harmony import */ var
|
|
79444
|
-
/* harmony import */ var
|
|
79445
|
-
/* harmony import */ var
|
|
79446
|
-
/* harmony import */ var
|
|
79447
|
-
/* harmony import */ var
|
|
79448
|
-
/* harmony import */ var
|
|
79449
|
-
/* harmony import */ var
|
|
79450
|
-
/* harmony import */ var
|
|
79451
|
-
/* harmony import */ var
|
|
79452
|
-
/* harmony import */ var
|
|
79453
|
-
/* harmony import */ var
|
|
79454
|
-
/* harmony import */ var
|
|
79455
|
-
/* harmony import */ var
|
|
79456
|
-
/* harmony import */ var
|
|
79457
|
-
/* harmony import */ var
|
|
79458
|
-
/* harmony import */ var
|
|
79459
|
-
/* harmony import */ var
|
|
79460
|
-
/* harmony import */ var
|
|
79461
|
-
/* harmony import */ var
|
|
79462
|
-
/* harmony import */ var
|
|
79463
|
-
/* harmony import */ var
|
|
79464
|
-
/* harmony import */ var
|
|
79465
|
-
/* harmony import */ var
|
|
79466
|
-
/* harmony import */ var
|
|
79467
|
-
/* harmony import */ var
|
|
79468
|
-
/* harmony import */ var
|
|
79469
|
-
/* harmony import */ var
|
|
79470
|
-
/* harmony import */ var
|
|
79471
|
-
/* harmony import */ var
|
|
79472
|
-
/* harmony import */ var
|
|
79473
|
-
/* harmony import */ var
|
|
79474
|
-
/* harmony import */ var
|
|
79475
|
-
/* harmony import */ var
|
|
79476
|
-
/* harmony import */ var
|
|
79477
|
-
/* harmony import */ var
|
|
79478
|
-
/* harmony import */ var
|
|
79479
|
-
/* harmony import */ var
|
|
79480
|
-
/* harmony import */ var
|
|
79481
|
-
/* harmony import */ var
|
|
79482
|
-
/* harmony import */ var
|
|
79483
|
-
/* harmony import */ var
|
|
79484
|
-
/* harmony import */ var
|
|
79485
|
-
/* harmony import */ var
|
|
79486
|
-
/* harmony import */ var
|
|
79487
|
-
/* harmony import */ var
|
|
79488
|
-
/* harmony import */ var
|
|
79489
|
-
/* harmony import */ var
|
|
79490
|
-
/* harmony import */ var
|
|
79491
|
-
/* harmony import */ var
|
|
79492
|
-
/* harmony import */ var
|
|
79493
|
-
/* harmony import */ var
|
|
79494
|
-
/* harmony import */ var
|
|
79495
|
-
/* harmony import */ var
|
|
79496
|
-
/* harmony import */ var
|
|
79497
|
-
/* harmony import */ var
|
|
79498
|
-
/* harmony import */ var
|
|
79499
|
-
/* harmony import */ var
|
|
79500
|
-
/* harmony import */ var
|
|
79501
|
-
/* harmony import */ var
|
|
79502
|
-
/* harmony import */ var
|
|
79503
|
-
/* harmony import */ var
|
|
79504
|
-
/* harmony import */ var
|
|
79505
|
-
/* harmony import */ var
|
|
79506
|
-
/* harmony import */ var
|
|
79507
|
-
/* harmony import */ var
|
|
79508
|
-
/* harmony import */ var
|
|
79509
|
-
/* harmony import */ var
|
|
79510
|
-
/* harmony import */ var
|
|
79511
|
-
/* harmony import */ var
|
|
79697
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
79698
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
79699
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
79700
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
79701
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
79702
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
79703
|
+
/* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
|
|
79704
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
79705
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
79706
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
79707
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
79708
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
79709
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
79710
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
79711
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
79712
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
79713
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
79714
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
79715
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
79716
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
79717
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
79718
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
79719
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
79720
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
79721
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
79722
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
79723
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
79724
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
79725
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
79726
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
79727
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
79728
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
79729
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
79730
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
79731
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
79732
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
79733
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
79734
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
79735
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
79736
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
79737
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
79738
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
79739
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
79740
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
79741
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
79742
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
79743
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
79744
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
79745
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
79746
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
79747
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
79748
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
79749
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
79750
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
79751
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
79752
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
79753
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
79754
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
79755
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
79756
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
79757
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
79758
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
79759
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
79760
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
79761
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
79762
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
79763
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
79764
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
79765
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
79766
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
79767
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
79768
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
79769
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
79770
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
79771
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
79772
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
79773
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
79774
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
79775
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
79776
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
79777
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
79778
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
79779
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
79780
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
79781
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
79782
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
79783
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
79784
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
79785
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
79786
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
79787
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
79788
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
79789
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
79790
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
79791
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
79792
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
79793
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
79794
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
79795
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
79796
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
79797
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
79798
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
79799
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
79800
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
79801
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
79802
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
79803
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
79804
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
79805
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
79806
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
79807
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
79808
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
79809
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
79810
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
79811
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
79812
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
79813
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
79814
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
79815
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
79816
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
79817
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
79818
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
79819
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
79820
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
79821
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
79822
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
79823
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
79824
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
79825
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
79826
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
79512
79827
|
/*---------------------------------------------------------------------------------------------
|
|
79513
79828
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
79514
79829
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -79664,6 +79979,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79664
79979
|
|
|
79665
79980
|
|
|
79666
79981
|
|
|
79982
|
+
|
|
79667
79983
|
|
|
79668
79984
|
|
|
79669
79985
|
/** @docs-package-description
|
|
@@ -88747,11 +89063,14 @@ class IModelReadRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
88747
89063
|
async loadElementProps(_iModelToken, _elementIdentifier, _options) {
|
|
88748
89064
|
return this.forward(arguments);
|
|
88749
89065
|
}
|
|
89066
|
+
async generateElementMeshes(_iModelToken, _props) {
|
|
89067
|
+
return this.forward(arguments);
|
|
89068
|
+
}
|
|
88750
89069
|
}
|
|
88751
89070
|
/** The immutable name of the interface. */
|
|
88752
89071
|
IModelReadRpcInterface.interfaceName = "IModelReadRpcInterface";
|
|
88753
89072
|
/** The semantic version of the interface. */
|
|
88754
|
-
IModelReadRpcInterface.interfaceVersion = "3.
|
|
89073
|
+
IModelReadRpcInterface.interfaceVersion = "3.5.0";
|
|
88755
89074
|
__decorate([
|
|
88756
89075
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
|
|
88757
89076
|
], IModelReadRpcInterface.prototype, "getConnectionProps", null);
|
|
@@ -89410,7 +89729,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89410
89729
|
/* harmony export */ "RpcNotFoundResponse": () => (/* binding */ RpcNotFoundResponse),
|
|
89411
89730
|
/* harmony export */ "RpcPendingResponse": () => (/* binding */ RpcPendingResponse)
|
|
89412
89731
|
/* harmony export */ });
|
|
89413
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
89732
|
+
/* 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");
|
|
89414
89733
|
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
89415
89734
|
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
89416
89735
|
/* harmony import */ var _RpcConfiguration__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
@@ -114937,11 +115256,27 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
114937
115256
|
/** Request element mass properties from the backend.
|
|
114938
115257
|
* @note For better performance use [[getMassPropertiesPerCandidate]] when called from a loop with identical operations and a single candidate per iteration.
|
|
114939
115258
|
*/
|
|
114940
|
-
async getMassProperties(requestProps) {
|
|
115259
|
+
async getMassProperties(requestProps) {
|
|
115260
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassProperties(this.getRpcProps(), requestProps);
|
|
115261
|
+
}
|
|
114941
115262
|
/** Request mass properties for multiple elements from the backend. */
|
|
114942
115263
|
async getMassPropertiesPerCandidate(requestProps) {
|
|
114943
115264
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassPropertiesPerCandidate(this.getRpcProps(), requestProps);
|
|
114944
115265
|
}
|
|
115266
|
+
/** Produce encoded [Polyface]($core-geometry)s from the geometry stream of a [GeometricElement]($backend).
|
|
115267
|
+
* 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.
|
|
115268
|
+
* The polyfaces can be decoded using [readElementMeshes]($common).
|
|
115269
|
+
* Symbology, UV parameters, and normal vectors are not included in the result.
|
|
115270
|
+
* @param requestProps A description of how to produce the polyfaces and from which element to obtain them.
|
|
115271
|
+
* @returns an encoded list of polyfaces that can be decoded by [readElementMeshes]($common).
|
|
115272
|
+
* @throws Error if [ElementMeshRequestProps.source]($common) does not refer to a [GeometricElement]($backend).
|
|
115273
|
+
* @note This function is intended to support limited analysis of an element's geometry as a mesh. It is not intended for producing graphics.
|
|
115274
|
+
* @see [[TileAdmin.requestElementGraphics]] to obtain meshes appropriate for display.
|
|
115275
|
+
* @beta
|
|
115276
|
+
*/
|
|
115277
|
+
async generateElementMeshes(requestProps) {
|
|
115278
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).generateElementMeshes(this.getRpcProps(), requestProps);
|
|
115279
|
+
}
|
|
114945
115280
|
/** Convert a point in this iModel's Spatial coordinates to a [[Cartographic]] using the Geographic location services for this IModelConnection.
|
|
114946
115281
|
* @param spatial A point in the iModel's spatial coordinates
|
|
114947
115282
|
* @param result If defined, use this for output
|
|
@@ -169586,7 +169921,7 @@ class GltfReader {
|
|
|
169586
169921
|
if (dracoMeshes.length === 0)
|
|
169587
169922
|
return;
|
|
169588
169923
|
try {
|
|
169589
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
169924
|
+
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;
|
|
169590
169925
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
169591
169926
|
}
|
|
169592
169927
|
catch (err) {
|
|
@@ -172731,7 +173066,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
172731
173066
|
async function decodeDracoPointCloud(buf) {
|
|
172732
173067
|
var _a, _b, _c, _d, _e, _f;
|
|
172733
173068
|
try {
|
|
172734
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
173069
|
+
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;
|
|
172735
173070
|
const mesh = await dracoLoader.parse(buf, {});
|
|
172736
173071
|
if (mesh.topology !== "point-list")
|
|
172737
173072
|
return undefined;
|
|
@@ -300427,7 +300762,7 @@ exports.IModelSession = void 0;
|
|
|
300427
300762
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
300428
300763
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
300429
300764
|
*--------------------------------------------------------------------------------------------*/
|
|
300430
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
300765
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
300431
300766
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
300432
300767
|
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.2.1/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
300433
300768
|
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");
|
|
@@ -300516,7 +300851,7 @@ exports.IModelSession = IModelSession;
|
|
|
300516
300851
|
*--------------------------------------------------------------------------------------------*/
|
|
300517
300852
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
300518
300853
|
exports.TestContext = void 0;
|
|
300519
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
300854
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
300520
300855
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
300521
300856
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
300522
300857
|
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");
|
|
@@ -305579,7 +305914,7 @@ var WidgetState;
|
|
|
305579
305914
|
|
|
305580
305915
|
/***/ }),
|
|
305581
305916
|
|
|
305582
|
-
/***/ "?
|
|
305917
|
+
/***/ "?1120":
|
|
305583
305918
|
/*!**********************!*\
|
|
305584
305919
|
!*** util (ignored) ***!
|
|
305585
305920
|
\**********************/
|
|
@@ -306930,9 +307265,9 @@ flatbuffers.ByteBuffer.prototype.createLong = function(low, high) {
|
|
|
306930
307265
|
|
|
306931
307266
|
/***/ }),
|
|
306932
307267
|
|
|
306933
|
-
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307268
|
+
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs":
|
|
306934
307269
|
/*!**********************************************************************************************!*\
|
|
306935
|
-
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307270
|
+
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs ***!
|
|
306936
307271
|
\**********************************************************************************************/
|
|
306937
307272
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
306938
307273
|
|
|
@@ -306972,7 +307307,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
306972
307307
|
*
|
|
306973
307308
|
* @author Dan Kogai (https://github.com/dankogai)
|
|
306974
307309
|
*/
|
|
306975
|
-
const version = '3.7.
|
|
307310
|
+
const version = '3.7.3';
|
|
306976
307311
|
/**
|
|
306977
307312
|
* @deprecated use lowercase `version`.
|
|
306978
307313
|
*/
|
|
@@ -307261,9 +307596,9 @@ const gBase64 = {
|
|
|
307261
307596
|
|
|
307262
307597
|
/***/ }),
|
|
307263
307598
|
|
|
307264
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307599
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
307265
307600
|
/*!******************************************************************************************************************************!*\
|
|
307266
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307601
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
307267
307602
|
\******************************************************************************************************************************/
|
|
307268
307603
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307269
307604
|
|
|
@@ -307282,9 +307617,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
307282
307617
|
|
|
307283
307618
|
/***/ }),
|
|
307284
307619
|
|
|
307285
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307620
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
307286
307621
|
/*!****************************************************************************************************************************!*\
|
|
307287
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307622
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
307288
307623
|
\****************************************************************************************************************************/
|
|
307289
307624
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307290
307625
|
|
|
@@ -307299,9 +307634,9 @@ function _arrayWithHoles(arr) {
|
|
|
307299
307634
|
|
|
307300
307635
|
/***/ }),
|
|
307301
307636
|
|
|
307302
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307637
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
307303
307638
|
/*!***********************************************************************************************************************************!*\
|
|
307304
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307639
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
307305
307640
|
\***********************************************************************************************************************************/
|
|
307306
307641
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307307
307642
|
|
|
@@ -307319,9 +307654,9 @@ function _assertThisInitialized(self) {
|
|
|
307319
307654
|
|
|
307320
307655
|
/***/ }),
|
|
307321
307656
|
|
|
307322
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307657
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
307323
307658
|
/*!****************************************************************************************************************************!*\
|
|
307324
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307659
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
307325
307660
|
\****************************************************************************************************************************/
|
|
307326
307661
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307327
307662
|
|
|
@@ -307338,9 +307673,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
307338
307673
|
|
|
307339
307674
|
/***/ }),
|
|
307340
307675
|
|
|
307341
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307676
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
307342
307677
|
/*!*************************************************************************************************************************!*\
|
|
307343
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307678
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
307344
307679
|
\*************************************************************************************************************************/
|
|
307345
307680
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307346
307681
|
|
|
@@ -307349,13 +307684,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307349
307684
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307350
307685
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
307351
307686
|
/* harmony export */ });
|
|
307687
|
+
/* 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");
|
|
307688
|
+
|
|
307352
307689
|
function _defineProperties(target, props) {
|
|
307353
307690
|
for (var i = 0; i < props.length; i++) {
|
|
307354
307691
|
var descriptor = props[i];
|
|
307355
307692
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
307356
307693
|
descriptor.configurable = true;
|
|
307357
307694
|
if ("value" in descriptor) descriptor.writable = true;
|
|
307358
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
307695
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
307359
307696
|
}
|
|
307360
307697
|
}
|
|
307361
307698
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -307369,9 +307706,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
307369
307706
|
|
|
307370
307707
|
/***/ }),
|
|
307371
307708
|
|
|
307372
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307709
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
307373
307710
|
/*!****************************************************************************************************************************!*\
|
|
307374
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307711
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
307375
307712
|
\****************************************************************************************************************************/
|
|
307376
307713
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307377
307714
|
|
|
@@ -307380,7 +307717,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307380
307717
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307381
307718
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
307382
307719
|
/* harmony export */ });
|
|
307720
|
+
/* 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");
|
|
307721
|
+
|
|
307383
307722
|
function _defineProperty(obj, key, value) {
|
|
307723
|
+
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
307384
307724
|
if (key in obj) {
|
|
307385
307725
|
Object.defineProperty(obj, key, {
|
|
307386
307726
|
value: value,
|
|
@@ -307396,9 +307736,9 @@ function _defineProperty(obj, key, value) {
|
|
|
307396
307736
|
|
|
307397
307737
|
/***/ }),
|
|
307398
307738
|
|
|
307399
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307739
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
307400
307740
|
/*!****************************************************************************************************************************!*\
|
|
307401
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307741
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
307402
307742
|
\****************************************************************************************************************************/
|
|
307403
307743
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307404
307744
|
|
|
@@ -307416,9 +307756,9 @@ function _getPrototypeOf(o) {
|
|
|
307416
307756
|
|
|
307417
307757
|
/***/ }),
|
|
307418
307758
|
|
|
307419
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307759
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
307420
307760
|
/*!**********************************************************************************************************************!*\
|
|
307421
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307761
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
307422
307762
|
\**********************************************************************************************************************/
|
|
307423
307763
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307424
307764
|
|
|
@@ -307427,7 +307767,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307427
307767
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307428
307768
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
307429
307769
|
/* harmony export */ });
|
|
307430
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307770
|
+
/* 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");
|
|
307431
307771
|
|
|
307432
307772
|
function _inherits(subClass, superClass) {
|
|
307433
307773
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -307448,9 +307788,9 @@ function _inherits(subClass, superClass) {
|
|
|
307448
307788
|
|
|
307449
307789
|
/***/ }),
|
|
307450
307790
|
|
|
307451
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307791
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
307452
307792
|
/*!*****************************************************************************************************************************!*\
|
|
307453
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307793
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
307454
307794
|
\*****************************************************************************************************************************/
|
|
307455
307795
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307456
307796
|
|
|
@@ -307465,9 +307805,9 @@ function _iterableToArray(iter) {
|
|
|
307465
307805
|
|
|
307466
307806
|
/***/ }),
|
|
307467
307807
|
|
|
307468
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307808
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
307469
307809
|
/*!*****************************************************************************************************************************!*\
|
|
307470
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307810
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
307471
307811
|
\*****************************************************************************************************************************/
|
|
307472
307812
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307473
307813
|
|
|
@@ -307482,9 +307822,9 @@ function _nonIterableRest() {
|
|
|
307482
307822
|
|
|
307483
307823
|
/***/ }),
|
|
307484
307824
|
|
|
307485
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307825
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
307486
307826
|
/*!***************************************************************************************************************************************!*\
|
|
307487
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307827
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
307488
307828
|
\***************************************************************************************************************************************/
|
|
307489
307829
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307490
307830
|
|
|
@@ -307493,8 +307833,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307493
307833
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307494
307834
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
307495
307835
|
/* harmony export */ });
|
|
307496
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307497
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307836
|
+
/* 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");
|
|
307837
|
+
/* 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");
|
|
307498
307838
|
|
|
307499
307839
|
|
|
307500
307840
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -307508,9 +307848,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
307508
307848
|
|
|
307509
307849
|
/***/ }),
|
|
307510
307850
|
|
|
307511
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307851
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
307512
307852
|
/*!****************************************************************************************************************************!*\
|
|
307513
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307853
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
307514
307854
|
\****************************************************************************************************************************/
|
|
307515
307855
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307516
307856
|
|
|
@@ -307529,9 +307869,9 @@ function _setPrototypeOf(o, p) {
|
|
|
307529
307869
|
|
|
307530
307870
|
/***/ }),
|
|
307531
307871
|
|
|
307532
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307872
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
307533
307873
|
/*!*********************************************************************************************************************!*\
|
|
307534
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307874
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
307535
307875
|
\*********************************************************************************************************************/
|
|
307536
307876
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307537
307877
|
|
|
@@ -307540,10 +307880,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307540
307880
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307541
307881
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
307542
307882
|
/* harmony export */ });
|
|
307543
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307544
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307545
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307546
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307883
|
+
/* 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");
|
|
307884
|
+
/* 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");
|
|
307885
|
+
/* 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");
|
|
307886
|
+
/* 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");
|
|
307547
307887
|
|
|
307548
307888
|
|
|
307549
307889
|
|
|
@@ -307554,9 +307894,57 @@ function _toArray(arr) {
|
|
|
307554
307894
|
|
|
307555
307895
|
/***/ }),
|
|
307556
307896
|
|
|
307557
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307897
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
307898
|
+
/*!*************************************************************************************************************************!*\
|
|
307899
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
307900
|
+
\*************************************************************************************************************************/
|
|
307901
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307902
|
+
|
|
307903
|
+
"use strict";
|
|
307904
|
+
__webpack_require__.r(__webpack_exports__);
|
|
307905
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307906
|
+
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
307907
|
+
/* harmony export */ });
|
|
307908
|
+
/* 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");
|
|
307909
|
+
|
|
307910
|
+
function _toPrimitive(input, hint) {
|
|
307911
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
307912
|
+
var prim = input[Symbol.toPrimitive];
|
|
307913
|
+
if (prim !== undefined) {
|
|
307914
|
+
var res = prim.call(input, hint || "default");
|
|
307915
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res;
|
|
307916
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
307917
|
+
}
|
|
307918
|
+
return (hint === "string" ? String : Number)(input);
|
|
307919
|
+
}
|
|
307920
|
+
|
|
307921
|
+
/***/ }),
|
|
307922
|
+
|
|
307923
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
307924
|
+
/*!***************************************************************************************************************************!*\
|
|
307925
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
307926
|
+
\***************************************************************************************************************************/
|
|
307927
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307928
|
+
|
|
307929
|
+
"use strict";
|
|
307930
|
+
__webpack_require__.r(__webpack_exports__);
|
|
307931
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307932
|
+
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
307933
|
+
/* harmony export */ });
|
|
307934
|
+
/* 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");
|
|
307935
|
+
/* 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");
|
|
307936
|
+
|
|
307937
|
+
|
|
307938
|
+
function _toPropertyKey(arg) {
|
|
307939
|
+
var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string");
|
|
307940
|
+
return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key);
|
|
307941
|
+
}
|
|
307942
|
+
|
|
307943
|
+
/***/ }),
|
|
307944
|
+
|
|
307945
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
307558
307946
|
/*!********************************************************************************************************************!*\
|
|
307559
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307947
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
307560
307948
|
\********************************************************************************************************************/
|
|
307561
307949
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307562
307950
|
|
|
@@ -307577,9 +307965,9 @@ function _typeof(obj) {
|
|
|
307577
307965
|
|
|
307578
307966
|
/***/ }),
|
|
307579
307967
|
|
|
307580
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307968
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
307581
307969
|
/*!****************************************************************************************************************************************!*\
|
|
307582
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307970
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
307583
307971
|
\****************************************************************************************************************************************/
|
|
307584
307972
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307585
307973
|
|
|
@@ -307588,7 +307976,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307588
307976
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307589
307977
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
307590
307978
|
/* harmony export */ });
|
|
307591
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307979
|
+
/* 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");
|
|
307592
307980
|
|
|
307593
307981
|
function _unsupportedIterableToArray(o, minLen) {
|
|
307594
307982
|
if (!o) return;
|
|
@@ -308022,15 +308410,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
308022
308410
|
/* harmony export */ "t": () => (/* binding */ t),
|
|
308023
308411
|
/* harmony export */ "use": () => (/* binding */ use)
|
|
308024
308412
|
/* harmony export */ });
|
|
308025
|
-
/* 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.
|
|
308026
|
-
/* 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.
|
|
308027
|
-
/* 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.
|
|
308028
|
-
/* 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.
|
|
308029
|
-
/* 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.
|
|
308030
|
-
/* 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.
|
|
308031
|
-
/* 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.
|
|
308032
|
-
/* 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.
|
|
308033
|
-
/* 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.
|
|
308413
|
+
/* 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");
|
|
308414
|
+
/* 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");
|
|
308415
|
+
/* 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");
|
|
308416
|
+
/* 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");
|
|
308417
|
+
/* 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");
|
|
308418
|
+
/* 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");
|
|
308419
|
+
/* 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");
|
|
308420
|
+
/* 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");
|
|
308421
|
+
/* 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");
|
|
308034
308422
|
|
|
308035
308423
|
|
|
308036
308424
|
|
|
@@ -310910,7 +311298,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
310910
311298
|
/***/ ((module) => {
|
|
310911
311299
|
|
|
310912
311300
|
"use strict";
|
|
310913
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
311301
|
+
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"}}]}}');
|
|
310914
311302
|
|
|
310915
311303
|
/***/ })
|
|
310916
311304
|
|
|
@@ -311077,8 +311465,7 @@ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev
|
|
|
311077
311465
|
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
311078
311466
|
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
311079
311467
|
/******/ if(prev) return prev(event);
|
|
311080
|
-
/******/ }
|
|
311081
|
-
/******/ ;
|
|
311468
|
+
/******/ };
|
|
311082
311469
|
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
311083
311470
|
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
311084
311471
|
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
@@ -311231,7 +311618,7 @@ var exports = __webpack_exports__;
|
|
|
311231
311618
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
311232
311619
|
*--------------------------------------------------------------------------------------------*/
|
|
311233
311620
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
311234
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
311621
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
311235
311622
|
const ecschema_rpcinterface_common_1 = __webpack_require__(/*! @itwin/ecschema-rpcinterface-common */ "../../core/ecschema-rpc/common/lib/cjs/ecschema-rpc-interface.js");
|
|
311236
311623
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
311237
311624
|
const ecschema_metadata_1 = __webpack_require__(/*! @itwin/ecschema-metadata */ "../../core/ecschema-metadata/lib/cjs/ecschema-metadata.js");
|