@itwin/rpcinterface-full-stack-tests 3.0.0-dev.144 → 3.0.0-dev.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/bundled-tests.js +587 -287
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -304,27 +304,37 @@ class IModelHubFrontend {
|
|
|
304
304
|
constructor() {
|
|
305
305
|
this.hubClient = new Client_1.IModelHubClient();
|
|
306
306
|
}
|
|
307
|
-
async
|
|
307
|
+
async _getChangesetFromId(arg) {
|
|
308
|
+
const changeSets = await this.hubClient.changeSets.get(arg.accessToken, arg.iModelId, new ChangeSets_1.ChangeSetQuery().byId(arg.changeSetId));
|
|
309
|
+
if (!changeSets[0] || !changeSets[0].index || !changeSets[0].id)
|
|
310
|
+
throw new core_bentley_1.BentleyError(core_bentley_1.BentleyStatus.ERROR, `Changeset ${arg.changeSetId} not found`);
|
|
311
|
+
return { index: +changeSets[0].index, id: changeSets[0].id };
|
|
312
|
+
}
|
|
313
|
+
async getLatestChangeset(arg) {
|
|
308
314
|
const changeSets = await this.hubClient.changeSets.get(arg.accessToken, arg.iModelId, new ChangeSets_1.ChangeSetQuery().top(1).latest());
|
|
309
|
-
|
|
315
|
+
if (!changeSets[0] || !changeSets[0].index || !changeSets[0].id)
|
|
316
|
+
return { index: 0, id: "" };
|
|
317
|
+
return { index: +changeSets[0].index, id: changeSets[0].id };
|
|
310
318
|
}
|
|
311
|
-
async
|
|
319
|
+
async getChangesetFromVersion(arg) {
|
|
312
320
|
const version = arg.version;
|
|
313
321
|
if (version.isFirst)
|
|
314
|
-
return "";
|
|
315
|
-
const
|
|
316
|
-
if (
|
|
317
|
-
return
|
|
322
|
+
return { index: 0, id: "" };
|
|
323
|
+
const asOfChangeSetId = version.getAsOfChangeSet();
|
|
324
|
+
if (asOfChangeSetId)
|
|
325
|
+
return this._getChangesetFromId({ ...arg, changeSetId: asOfChangeSetId });
|
|
318
326
|
const versionName = version.getName();
|
|
319
327
|
if (versionName)
|
|
320
|
-
return this.
|
|
321
|
-
return this.
|
|
328
|
+
return this.getChangesetFromNamedVersion({ ...arg, versionName });
|
|
329
|
+
return this.getLatestChangeset(arg);
|
|
322
330
|
}
|
|
323
|
-
async
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
331
|
+
async getChangesetFromNamedVersion(arg) {
|
|
332
|
+
var _a;
|
|
333
|
+
const versionQuery = arg.versionName ? new Versions_1.VersionQuery().select("ChangeSetId").byName(arg.versionName) : new Versions_1.VersionQuery().top(1);
|
|
334
|
+
const versions = await this.hubClient.versions.get(arg.accessToken, arg.iModelId, versionQuery);
|
|
335
|
+
if (!versions[0] || !versions[0].changeSetIndex || !versions[0].changeSetId)
|
|
336
|
+
throw new core_bentley_1.BentleyError(core_bentley_1.BentleyStatus.ERROR, `Named version ${(_a = arg.versionName) !== null && _a !== void 0 ? _a : ""} not found`);
|
|
337
|
+
return { index: versions[0].changeSetIndex, id: versions[0].changeSetId };
|
|
328
338
|
}
|
|
329
339
|
/** Get the iModelId of an iModel by name. Undefined if no iModel with that name exists. */
|
|
330
340
|
async queryIModelByName(arg) {
|
|
@@ -1783,6 +1793,9 @@ __decorate([
|
|
|
1783
1793
|
__decorate([
|
|
1784
1794
|
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.MergedChangeSetId")
|
|
1785
1795
|
], Checkpoint.prototype, "mergedChangeSetId", void 0);
|
|
1796
|
+
__decorate([
|
|
1797
|
+
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.MergedChangeSetIndex")
|
|
1798
|
+
], Checkpoint.prototype, "mergedChangeSetIndex", void 0);
|
|
1786
1799
|
__decorate([
|
|
1787
1800
|
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.CreatedDate")
|
|
1788
1801
|
], Checkpoint.prototype, "createdDate", void 0);
|
|
@@ -5376,6 +5389,9 @@ __decorate([
|
|
|
5376
5389
|
__decorate([
|
|
5377
5390
|
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.ChangeSetId")
|
|
5378
5391
|
], Version.prototype, "changeSetId", void 0);
|
|
5392
|
+
__decorate([
|
|
5393
|
+
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.ChangeSetIndex")
|
|
5394
|
+
], Version.prototype, "changeSetIndex", void 0);
|
|
5379
5395
|
__decorate([
|
|
5380
5396
|
ECJsonTypeMap_1.ECJsonTypeMap.propertyToJson("wsg", "properties.Hidden")
|
|
5381
5397
|
], Version.prototype, "hidden", void 0);
|
|
@@ -7795,7 +7811,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7795
7811
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getJson", function() { return getJson; });
|
|
7796
7812
|
/* harmony import */ var deep_assign__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! deep-assign */ "../../common/temp/node_modules/.pnpm/deep-assign@2.0.0/node_modules/deep-assign/index.js");
|
|
7797
7813
|
/* harmony import */ var deep_assign__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(deep_assign__WEBPACK_IMPORTED_MODULE_0__);
|
|
7798
|
-
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! qs */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
7814
|
+
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! qs */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/index.js");
|
|
7799
7815
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_1__);
|
|
7800
7816
|
/* harmony import */ var superagent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! superagent */ "../../common/temp/node_modules/.pnpm/superagent@5.3.1/node_modules/superagent/lib/client.js");
|
|
7801
7817
|
/* harmony import */ var superagent__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(superagent__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -8806,7 +8822,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8806
8822
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getJson", function() { return getJson; });
|
|
8807
8823
|
/* harmony import */ var deep_assign__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! deep-assign */ "../../common/temp/node_modules/.pnpm/deep-assign@2.0.0/node_modules/deep-assign/index.js");
|
|
8808
8824
|
/* harmony import */ var deep_assign__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(deep_assign__WEBPACK_IMPORTED_MODULE_0__);
|
|
8809
|
-
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! qs */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
8825
|
+
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! qs */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/index.js");
|
|
8810
8826
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_1__);
|
|
8811
8827
|
/* harmony import */ var superagent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! superagent */ "../../common/temp/node_modules/.pnpm/superagent@5.3.1/node_modules/superagent/lib/client.js");
|
|
8812
8828
|
/* harmony import */ var superagent__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(superagent__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -9172,9 +9188,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9172
9188
|
|
|
9173
9189
|
/***/ }),
|
|
9174
9190
|
|
|
9175
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.
|
|
9191
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.147/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
|
|
9176
9192
|
/*!**************************************************************************************************************************************!*\
|
|
9177
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.
|
|
9193
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.147/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
|
|
9178
9194
|
\**************************************************************************************************************************************/
|
|
9179
9195
|
/*! no static exports found */
|
|
9180
9196
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -9218,9 +9234,9 @@ exports.executeBackendCallback = executeBackendCallback;
|
|
|
9218
9234
|
|
|
9219
9235
|
/***/ }),
|
|
9220
9236
|
|
|
9221
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9237
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js":
|
|
9222
9238
|
/*!************************************************************************************************************************************************!*\
|
|
9223
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9239
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js ***!
|
|
9224
9240
|
\************************************************************************************************************************************************/
|
|
9225
9241
|
/*! no exports provided */
|
|
9226
9242
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9239,9 +9255,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9239
9255
|
|
|
9240
9256
|
/***/ }),
|
|
9241
9257
|
|
|
9242
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9258
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js":
|
|
9243
9259
|
/*!*******************************************************************************************************************************************!*\
|
|
9244
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9260
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js ***!
|
|
9245
9261
|
\*******************************************************************************************************************************************/
|
|
9246
9262
|
/*! exports provided: assert */
|
|
9247
9263
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9294,9 +9310,9 @@ function assert(condition, message) {
|
|
|
9294
9310
|
|
|
9295
9311
|
/***/ }),
|
|
9296
9312
|
|
|
9297
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9313
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AsyncMutex.js":
|
|
9298
9314
|
/*!***********************************************************************************************************************************************!*\
|
|
9299
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9315
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AsyncMutex.js ***!
|
|
9300
9316
|
\***********************************************************************************************************************************************/
|
|
9301
9317
|
/*! exports provided: AsyncMutex */
|
|
9302
9318
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9347,9 +9363,9 @@ class AsyncMutex {
|
|
|
9347
9363
|
|
|
9348
9364
|
/***/ }),
|
|
9349
9365
|
|
|
9350
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9366
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js":
|
|
9351
9367
|
/*!********************************************************************************************************************************************!*\
|
|
9352
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9368
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js ***!
|
|
9353
9369
|
\********************************************************************************************************************************************/
|
|
9354
9370
|
/*! exports provided: BeEvent, BeUiEvent, BeEventList */
|
|
9355
9371
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9359,7 +9375,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9359
9375
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BeEvent", function() { return BeEvent; });
|
|
9360
9376
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BeUiEvent", function() { return BeUiEvent; });
|
|
9361
9377
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BeEventList", function() { return BeEventList; });
|
|
9362
|
-
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9378
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js");
|
|
9363
9379
|
/*---------------------------------------------------------------------------------------------
|
|
9364
9380
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
9365
9381
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -9514,9 +9530,9 @@ class BeEventList {
|
|
|
9514
9530
|
|
|
9515
9531
|
/***/ }),
|
|
9516
9532
|
|
|
9517
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9533
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js":
|
|
9518
9534
|
/*!*********************************************************************************************************************************************!*\
|
|
9519
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9535
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js ***!
|
|
9520
9536
|
\*********************************************************************************************************************************************/
|
|
9521
9537
|
/*! exports provided: OpenMode, DbOpcode, DbResult */
|
|
9522
9538
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9710,9 +9726,9 @@ var DbResult;
|
|
|
9710
9726
|
|
|
9711
9727
|
/***/ }),
|
|
9712
9728
|
|
|
9713
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9729
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js":
|
|
9714
9730
|
/*!*************************************************************************************************************************************************!*\
|
|
9715
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9731
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js ***!
|
|
9716
9732
|
\*************************************************************************************************************************************************/
|
|
9717
9733
|
/*! exports provided: BentleyStatus, IModelStatus, BriefcaseStatus, RpcInterfaceStatus, ChangeSetStatus, RepositoryStatus, HttpStatus, IModelHubStatus, AuthStatus, GeoServiceStatus, BentleyError */
|
|
9718
9734
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -9730,7 +9746,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9730
9746
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AuthStatus", function() { return AuthStatus; });
|
|
9731
9747
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GeoServiceStatus", function() { return GeoServiceStatus; });
|
|
9732
9748
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BentleyError", function() { return BentleyError; });
|
|
9733
|
-
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
9749
|
+
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js");
|
|
9734
9750
|
/*---------------------------------------------------------------------------------------------
|
|
9735
9751
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
9736
9752
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -10430,9 +10446,9 @@ class BentleyError extends Error {
|
|
|
10430
10446
|
|
|
10431
10447
|
/***/ }),
|
|
10432
10448
|
|
|
10433
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10449
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js":
|
|
10434
10450
|
/*!**********************************************************************************************************************************************************!*\
|
|
10435
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10451
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js ***!
|
|
10436
10452
|
\**********************************************************************************************************************************************************/
|
|
10437
10453
|
/*! exports provided: BentleyLoggerCategory */
|
|
10438
10454
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -10460,9 +10476,9 @@ var BentleyLoggerCategory;
|
|
|
10460
10476
|
|
|
10461
10477
|
/***/ }),
|
|
10462
10478
|
|
|
10463
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10479
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js":
|
|
10464
10480
|
/*!***********************************************************************************************************************************************!*\
|
|
10465
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10481
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js ***!
|
|
10466
10482
|
\***********************************************************************************************************************************************/
|
|
10467
10483
|
/*! exports provided: ByteStream */
|
|
10468
10484
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -10470,8 +10486,8 @@ var BentleyLoggerCategory;
|
|
|
10470
10486
|
"use strict";
|
|
10471
10487
|
__webpack_require__.r(__webpack_exports__);
|
|
10472
10488
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ByteStream", function() { return ByteStream; });
|
|
10473
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10474
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10489
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
10490
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
10475
10491
|
/*---------------------------------------------------------------------------------------------
|
|
10476
10492
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
10477
10493
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -10563,9 +10579,9 @@ class ByteStream {
|
|
|
10563
10579
|
|
|
10564
10580
|
/***/ }),
|
|
10565
10581
|
|
|
10566
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10582
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Compare.js":
|
|
10567
10583
|
/*!********************************************************************************************************************************************!*\
|
|
10568
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10584
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Compare.js ***!
|
|
10569
10585
|
\********************************************************************************************************************************************/
|
|
10570
10586
|
/*! exports provided: compareWithTolerance, compareNumbers, compareBooleans, compareStrings, comparePossiblyUndefined, compareStringsOrUndefined, compareNumbersOrUndefined, compareBooleansOrUndefined, areEqualPossiblyUndefined */
|
|
10571
10587
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -10636,9 +10652,9 @@ function areEqualPossiblyUndefined(t, u, areEqual) {
|
|
|
10636
10652
|
|
|
10637
10653
|
/***/ }),
|
|
10638
10654
|
|
|
10639
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10655
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js":
|
|
10640
10656
|
/*!******************************************************************************************************************************************************!*\
|
|
10641
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10657
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js ***!
|
|
10642
10658
|
\******************************************************************************************************************************************************/
|
|
10643
10659
|
/*! exports provided: CompressedId64Set, OrderedId64Array, MutableCompressedId64Set */
|
|
10644
10660
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -10648,10 +10664,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10648
10664
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompressedId64Set", function() { return CompressedId64Set; });
|
|
10649
10665
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OrderedId64Array", function() { return OrderedId64Array; });
|
|
10650
10666
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MutableCompressedId64Set", function() { return MutableCompressedId64Set; });
|
|
10651
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10652
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10653
|
-
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10654
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
10667
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
10668
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
10669
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js");
|
|
10670
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
10655
10671
|
/*---------------------------------------------------------------------------------------------
|
|
10656
10672
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
10657
10673
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11079,9 +11095,9 @@ class MutableCompressedId64Set {
|
|
|
11079
11095
|
|
|
11080
11096
|
/***/ }),
|
|
11081
11097
|
|
|
11082
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11098
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js":
|
|
11083
11099
|
/*!***********************************************************************************************************************************************!*\
|
|
11084
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11100
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js ***!
|
|
11085
11101
|
\***********************************************************************************************************************************************/
|
|
11086
11102
|
/*! exports provided: Dictionary */
|
|
11087
11103
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -11089,7 +11105,7 @@ class MutableCompressedId64Set {
|
|
|
11089
11105
|
"use strict";
|
|
11090
11106
|
__webpack_require__.r(__webpack_exports__);
|
|
11091
11107
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dictionary", function() { return Dictionary; });
|
|
11092
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11108
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
11093
11109
|
/*---------------------------------------------------------------------------------------------
|
|
11094
11110
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11095
11111
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11293,9 +11309,9 @@ class Dictionary {
|
|
|
11293
11309
|
|
|
11294
11310
|
/***/ }),
|
|
11295
11311
|
|
|
11296
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11312
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Disposable.js":
|
|
11297
11313
|
/*!***********************************************************************************************************************************************!*\
|
|
11298
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11314
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Disposable.js ***!
|
|
11299
11315
|
\***********************************************************************************************************************************************/
|
|
11300
11316
|
/*! exports provided: isIDisposable, dispose, disposeArray, using, DisposableList */
|
|
11301
11317
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -11423,9 +11439,9 @@ class DisposableList {
|
|
|
11423
11439
|
|
|
11424
11440
|
/***/ }),
|
|
11425
11441
|
|
|
11426
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11442
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Id.js":
|
|
11427
11443
|
/*!***************************************************************************************************************************************!*\
|
|
11428
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
11444
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Id.js ***!
|
|
11429
11445
|
\***************************************************************************************************************************************/
|
|
11430
11446
|
/*! exports provided: Id64, TransientIdSequence, Guid */
|
|
11431
11447
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12050,9 +12066,9 @@ var Guid;
|
|
|
12050
12066
|
|
|
12051
12067
|
/***/ }),
|
|
12052
12068
|
|
|
12053
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12069
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js":
|
|
12054
12070
|
/*!*********************************************************************************************************************************************!*\
|
|
12055
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12071
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js ***!
|
|
12056
12072
|
\*********************************************************************************************************************************************/
|
|
12057
12073
|
/*! exports provided: IndexedValue, IndexMap */
|
|
12058
12074
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12061,7 +12077,7 @@ var Guid;
|
|
|
12061
12077
|
__webpack_require__.r(__webpack_exports__);
|
|
12062
12078
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "IndexedValue", function() { return IndexedValue; });
|
|
12063
12079
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "IndexMap", function() { return IndexMap; });
|
|
12064
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12080
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
12065
12081
|
/*---------------------------------------------------------------------------------------------
|
|
12066
12082
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12067
12083
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12152,9 +12168,9 @@ class IndexMap {
|
|
|
12152
12168
|
|
|
12153
12169
|
/***/ }),
|
|
12154
12170
|
|
|
12155
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12171
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js":
|
|
12156
12172
|
/*!***********************************************************************************************************************************************!*\
|
|
12157
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12173
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js ***!
|
|
12158
12174
|
\***********************************************************************************************************************************************/
|
|
12159
12175
|
/*! no exports provided */
|
|
12160
12176
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12173,9 +12189,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12173
12189
|
|
|
12174
12190
|
/***/ }),
|
|
12175
12191
|
|
|
12176
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12192
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js":
|
|
12177
12193
|
/*!**********************************************************************************************************************************************!*\
|
|
12178
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12194
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js ***!
|
|
12179
12195
|
\**********************************************************************************************************************************************/
|
|
12180
12196
|
/*! exports provided: JsonUtils */
|
|
12181
12197
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12317,9 +12333,9 @@ var JsonUtils;
|
|
|
12317
12333
|
|
|
12318
12334
|
/***/ }),
|
|
12319
12335
|
|
|
12320
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12336
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js":
|
|
12321
12337
|
/*!*******************************************************************************************************************************************!*\
|
|
12322
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12338
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js ***!
|
|
12323
12339
|
\*******************************************************************************************************************************************/
|
|
12324
12340
|
/*! exports provided: Entry, LRUCache, LRUMap, LRUDictionary */
|
|
12325
12341
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12330,7 +12346,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12330
12346
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LRUCache", function() { return LRUCache; });
|
|
12331
12347
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LRUMap", function() { return LRUMap; });
|
|
12332
12348
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LRUDictionary", function() { return LRUDictionary; });
|
|
12333
|
-
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12349
|
+
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js");
|
|
12334
12350
|
/*---------------------------------------------------------------------------------------------
|
|
12335
12351
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12336
12352
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12661,9 +12677,9 @@ class LRUDictionary extends LRUCache {
|
|
|
12661
12677
|
|
|
12662
12678
|
/***/ }),
|
|
12663
12679
|
|
|
12664
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12680
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Logger.js":
|
|
12665
12681
|
/*!*******************************************************************************************************************************************!*\
|
|
12666
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12682
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Logger.js ***!
|
|
12667
12683
|
\*******************************************************************************************************************************************/
|
|
12668
12684
|
/*! exports provided: LogLevel, Logger, PerfLogger */
|
|
12669
12685
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12673,8 +12689,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12673
12689
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LogLevel", function() { return LogLevel; });
|
|
12674
12690
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Logger", function() { return Logger; });
|
|
12675
12691
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PerfLogger", function() { return PerfLogger; });
|
|
12676
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12677
|
-
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12692
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
12693
|
+
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js");
|
|
12678
12694
|
/*---------------------------------------------------------------------------------------------
|
|
12679
12695
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12680
12696
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12928,9 +12944,9 @@ PerfLogger._severity = LogLevel.Info;
|
|
|
12928
12944
|
|
|
12929
12945
|
/***/ }),
|
|
12930
12946
|
|
|
12931
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12947
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js":
|
|
12932
12948
|
/*!**************************************************************************************************************************************************!*\
|
|
12933
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12949
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js ***!
|
|
12934
12950
|
\**************************************************************************************************************************************************/
|
|
12935
12951
|
/*! exports provided: ObservableSet */
|
|
12936
12952
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -12938,7 +12954,7 @@ PerfLogger._severity = LogLevel.Info;
|
|
|
12938
12954
|
"use strict";
|
|
12939
12955
|
__webpack_require__.r(__webpack_exports__);
|
|
12940
12956
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ObservableSet", function() { return ObservableSet; });
|
|
12941
|
-
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
12957
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js");
|
|
12942
12958
|
/*---------------------------------------------------------------------------------------------
|
|
12943
12959
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12944
12960
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12990,9 +13006,9 @@ class ObservableSet extends Set {
|
|
|
12990
13006
|
|
|
12991
13007
|
/***/ }),
|
|
12992
13008
|
|
|
12993
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13009
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js":
|
|
12994
13010
|
/*!*****************************************************************************************************************************************************!*\
|
|
12995
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13011
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js ***!
|
|
12996
13012
|
\*****************************************************************************************************************************************************/
|
|
12997
13013
|
/*! exports provided: AbandonedError, OneAtATimeAction */
|
|
12998
13014
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13001,7 +13017,7 @@ class ObservableSet extends Set {
|
|
|
13001
13017
|
__webpack_require__.r(__webpack_exports__);
|
|
13002
13018
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AbandonedError", function() { return AbandonedError; });
|
|
13003
13019
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OneAtATimeAction", function() { return OneAtATimeAction; });
|
|
13004
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13020
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
13005
13021
|
/*---------------------------------------------------------------------------------------------
|
|
13006
13022
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13007
13023
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13092,9 +13108,9 @@ class OneAtATimeAction {
|
|
|
13092
13108
|
|
|
13093
13109
|
/***/ }),
|
|
13094
13110
|
|
|
13095
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13111
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js":
|
|
13096
13112
|
/*!********************************************************************************************************************************************************!*\
|
|
13097
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13113
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js ***!
|
|
13098
13114
|
\********************************************************************************************************************************************************/
|
|
13099
13115
|
/*! exports provided: OrderedId64Iterable */
|
|
13100
13116
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13102,7 +13118,7 @@ class OneAtATimeAction {
|
|
|
13102
13118
|
"use strict";
|
|
13103
13119
|
__webpack_require__.r(__webpack_exports__);
|
|
13104
13120
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OrderedId64Iterable", function() { return OrderedId64Iterable; });
|
|
13105
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13121
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
13106
13122
|
/*---------------------------------------------------------------------------------------------
|
|
13107
13123
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13108
13124
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13339,9 +13355,9 @@ var OrderedId64Iterable;
|
|
|
13339
13355
|
|
|
13340
13356
|
/***/ }),
|
|
13341
13357
|
|
|
13342
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13358
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js":
|
|
13343
13359
|
/*!***********************************************************************************************************************************************!*\
|
|
13344
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13360
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js ***!
|
|
13345
13361
|
\***********************************************************************************************************************************************/
|
|
13346
13362
|
/*! exports provided: ReadonlyOrderedSet, OrderedSet */
|
|
13347
13363
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13350,7 +13366,7 @@ var OrderedId64Iterable;
|
|
|
13350
13366
|
__webpack_require__.r(__webpack_exports__);
|
|
13351
13367
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ReadonlyOrderedSet", function() { return ReadonlyOrderedSet; });
|
|
13352
13368
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OrderedSet", function() { return OrderedSet; });
|
|
13353
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13369
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
13354
13370
|
/*---------------------------------------------------------------------------------------------
|
|
13355
13371
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13356
13372
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13414,9 +13430,9 @@ class OrderedSet extends ReadonlyOrderedSet {
|
|
|
13414
13430
|
|
|
13415
13431
|
/***/ }),
|
|
13416
13432
|
|
|
13417
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13433
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js":
|
|
13418
13434
|
/*!**************************************************************************************************************************************************!*\
|
|
13419
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13435
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js ***!
|
|
13420
13436
|
\**************************************************************************************************************************************************/
|
|
13421
13437
|
/*! exports provided: PriorityQueue */
|
|
13422
13438
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13424,7 +13440,7 @@ class OrderedSet extends ReadonlyOrderedSet {
|
|
|
13424
13440
|
"use strict";
|
|
13425
13441
|
__webpack_require__.r(__webpack_exports__);
|
|
13426
13442
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PriorityQueue", function() { return PriorityQueue; });
|
|
13427
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13443
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
13428
13444
|
/*---------------------------------------------------------------------------------------------
|
|
13429
13445
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13430
13446
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13565,9 +13581,9 @@ class PriorityQueue {
|
|
|
13565
13581
|
|
|
13566
13582
|
/***/ }),
|
|
13567
13583
|
|
|
13568
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13584
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js":
|
|
13569
13585
|
/*!****************************************************************************************************************************************************!*\
|
|
13570
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13586
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js ***!
|
|
13571
13587
|
\****************************************************************************************************************************************************/
|
|
13572
13588
|
/*! exports provided: ProcessDetector */
|
|
13573
13589
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13646,9 +13662,9 @@ class ProcessDetector {
|
|
|
13646
13662
|
|
|
13647
13663
|
/***/ }),
|
|
13648
13664
|
|
|
13649
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13665
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js":
|
|
13650
13666
|
/*!************************************************************************************************************************************************!*\
|
|
13651
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13667
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js ***!
|
|
13652
13668
|
\************************************************************************************************************************************************/
|
|
13653
13669
|
/*! exports provided: shallowClone, lowerBound, DuplicatePolicy, ReadonlySortedArray, SortedArray */
|
|
13654
13670
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -13958,9 +13974,9 @@ class SortedArray extends ReadonlySortedArray {
|
|
|
13958
13974
|
|
|
13959
13975
|
/***/ }),
|
|
13960
13976
|
|
|
13961
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13977
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js":
|
|
13962
13978
|
/*!************************************************************************************************************************************************!*\
|
|
13963
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
13979
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js ***!
|
|
13964
13980
|
\************************************************************************************************************************************************/
|
|
13965
13981
|
/*! exports provided: utf8ToStringPolyfill, utf8ToString, base64StringToUint8Array */
|
|
13966
13982
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -14114,9 +14130,9 @@ function base64StringToUint8Array(base64) {
|
|
|
14114
14130
|
|
|
14115
14131
|
/***/ }),
|
|
14116
14132
|
|
|
14117
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14133
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Time.js":
|
|
14118
14134
|
/*!*****************************************************************************************************************************************!*\
|
|
14119
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14135
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Time.js ***!
|
|
14120
14136
|
\*****************************************************************************************************************************************/
|
|
14121
14137
|
/*! exports provided: BeDuration, BeTimePoint, StopWatch */
|
|
14122
14138
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -14270,9 +14286,9 @@ class StopWatch {
|
|
|
14270
14286
|
|
|
14271
14287
|
/***/ }),
|
|
14272
14288
|
|
|
14273
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14289
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js":
|
|
14274
14290
|
/*!*****************************************************************************************************************************************************!*\
|
|
14275
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14291
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js ***!
|
|
14276
14292
|
\*****************************************************************************************************************************************************/
|
|
14277
14293
|
/*! exports provided: UnexpectedErrors */
|
|
14278
14294
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -14280,7 +14296,7 @@ class StopWatch {
|
|
|
14280
14296
|
"use strict";
|
|
14281
14297
|
__webpack_require__.r(__webpack_exports__);
|
|
14282
14298
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UnexpectedErrors", function() { return UnexpectedErrors; });
|
|
14283
|
-
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14299
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Logger.js");
|
|
14284
14300
|
/*---------------------------------------------------------------------------------------------
|
|
14285
14301
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
14286
14302
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -14346,9 +14362,9 @@ UnexpectedErrors._handler = _a.errorLog; // default to error logging
|
|
|
14346
14362
|
|
|
14347
14363
|
/***/ }),
|
|
14348
14364
|
|
|
14349
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14365
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js":
|
|
14350
14366
|
/*!*************************************************************************************************************************************************!*\
|
|
14351
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14367
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js ***!
|
|
14352
14368
|
\*************************************************************************************************************************************************/
|
|
14353
14369
|
/*! exports provided: isInstanceOf, asInstanceOf */
|
|
14354
14370
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -14382,30 +14398,30 @@ function asInstanceOf(obj, constructor) {
|
|
|
14382
14398
|
|
|
14383
14399
|
/***/ }),
|
|
14384
14400
|
|
|
14385
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14401
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js":
|
|
14386
14402
|
/*!*************************************************************************************************************************************************!*\
|
|
14387
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14403
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js ***!
|
|
14388
14404
|
\*************************************************************************************************************************************************/
|
|
14389
14405
|
/*! exports provided: assert, AsyncMutex, BeEvent, BeUiEvent, BeEventList, BentleyStatus, IModelStatus, BriefcaseStatus, RpcInterfaceStatus, ChangeSetStatus, RepositoryStatus, HttpStatus, IModelHubStatus, AuthStatus, GeoServiceStatus, BentleyError, BentleyLoggerCategory, OpenMode, DbOpcode, DbResult, ByteStream, compareWithTolerance, compareNumbers, compareBooleans, compareStrings, comparePossiblyUndefined, compareStringsOrUndefined, compareNumbersOrUndefined, compareBooleansOrUndefined, areEqualPossiblyUndefined, CompressedId64Set, OrderedId64Array, MutableCompressedId64Set, Dictionary, isIDisposable, dispose, disposeArray, using, DisposableList, Id64, TransientIdSequence, Guid, IndexedValue, IndexMap, JsonUtils, LogLevel, Logger, PerfLogger, Entry, LRUCache, LRUMap, LRUDictionary, ObservableSet, AbandonedError, OneAtATimeAction, OrderedId64Iterable, ReadonlyOrderedSet, OrderedSet, partitionArray, PriorityQueue, ProcessDetector, shallowClone, lowerBound, DuplicatePolicy, ReadonlySortedArray, SortedArray, utf8ToStringPolyfill, utf8ToString, base64StringToUint8Array, BeDuration, BeTimePoint, StopWatch, UnexpectedErrors, isInstanceOf, asInstanceOf */
|
|
14390
14406
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14391
14407
|
|
|
14392
14408
|
"use strict";
|
|
14393
14409
|
__webpack_require__.r(__webpack_exports__);
|
|
14394
|
-
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14395
|
-
/* empty/unused harmony star reexport *//* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14410
|
+
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js");
|
|
14411
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
14396
14412
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "assert", function() { return _Assert__WEBPACK_IMPORTED_MODULE_1__["assert"]; });
|
|
14397
14413
|
|
|
14398
|
-
/* harmony import */ var _AsyncMutex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AsyncMutex */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14414
|
+
/* harmony import */ var _AsyncMutex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AsyncMutex */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/AsyncMutex.js");
|
|
14399
14415
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AsyncMutex", function() { return _AsyncMutex__WEBPACK_IMPORTED_MODULE_2__["AsyncMutex"]; });
|
|
14400
14416
|
|
|
14401
|
-
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14417
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js");
|
|
14402
14418
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BeEvent", function() { return _BeEvent__WEBPACK_IMPORTED_MODULE_3__["BeEvent"]; });
|
|
14403
14419
|
|
|
14404
14420
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BeUiEvent", function() { return _BeEvent__WEBPACK_IMPORTED_MODULE_3__["BeUiEvent"]; });
|
|
14405
14421
|
|
|
14406
14422
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BeEventList", function() { return _BeEvent__WEBPACK_IMPORTED_MODULE_3__["BeEventList"]; });
|
|
14407
14423
|
|
|
14408
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14424
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
14409
14425
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BentleyStatus", function() { return _BentleyError__WEBPACK_IMPORTED_MODULE_4__["BentleyStatus"]; });
|
|
14410
14426
|
|
|
14411
14427
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "IModelStatus", function() { return _BentleyError__WEBPACK_IMPORTED_MODULE_4__["IModelStatus"]; });
|
|
@@ -14428,20 +14444,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14428
14444
|
|
|
14429
14445
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BentleyError", function() { return _BentleyError__WEBPACK_IMPORTED_MODULE_4__["BentleyError"]; });
|
|
14430
14446
|
|
|
14431
|
-
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14447
|
+
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js");
|
|
14432
14448
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BentleyLoggerCategory", function() { return _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_5__["BentleyLoggerCategory"]; });
|
|
14433
14449
|
|
|
14434
|
-
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14450
|
+
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js");
|
|
14435
14451
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OpenMode", function() { return _BeSQLite__WEBPACK_IMPORTED_MODULE_6__["OpenMode"]; });
|
|
14436
14452
|
|
|
14437
14453
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DbOpcode", function() { return _BeSQLite__WEBPACK_IMPORTED_MODULE_6__["DbOpcode"]; });
|
|
14438
14454
|
|
|
14439
14455
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DbResult", function() { return _BeSQLite__WEBPACK_IMPORTED_MODULE_6__["DbResult"]; });
|
|
14440
14456
|
|
|
14441
|
-
/* harmony import */ var _ByteStream__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ByteStream */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14457
|
+
/* harmony import */ var _ByteStream__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ByteStream */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js");
|
|
14442
14458
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ByteStream", function() { return _ByteStream__WEBPACK_IMPORTED_MODULE_7__["ByteStream"]; });
|
|
14443
14459
|
|
|
14444
|
-
/* harmony import */ var _Compare__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Compare */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14460
|
+
/* harmony import */ var _Compare__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Compare */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Compare.js");
|
|
14445
14461
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareWithTolerance", function() { return _Compare__WEBPACK_IMPORTED_MODULE_8__["compareWithTolerance"]; });
|
|
14446
14462
|
|
|
14447
14463
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareNumbers", function() { return _Compare__WEBPACK_IMPORTED_MODULE_8__["compareNumbers"]; });
|
|
@@ -14460,17 +14476,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14460
14476
|
|
|
14461
14477
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "areEqualPossiblyUndefined", function() { return _Compare__WEBPACK_IMPORTED_MODULE_8__["areEqualPossiblyUndefined"]; });
|
|
14462
14478
|
|
|
14463
|
-
/* harmony import */ var _CompressedId64Set__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CompressedId64Set */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14479
|
+
/* harmony import */ var _CompressedId64Set__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CompressedId64Set */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js");
|
|
14464
14480
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompressedId64Set", function() { return _CompressedId64Set__WEBPACK_IMPORTED_MODULE_9__["CompressedId64Set"]; });
|
|
14465
14481
|
|
|
14466
14482
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OrderedId64Array", function() { return _CompressedId64Set__WEBPACK_IMPORTED_MODULE_9__["OrderedId64Array"]; });
|
|
14467
14483
|
|
|
14468
14484
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MutableCompressedId64Set", function() { return _CompressedId64Set__WEBPACK_IMPORTED_MODULE_9__["MutableCompressedId64Set"]; });
|
|
14469
14485
|
|
|
14470
|
-
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14486
|
+
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js");
|
|
14471
14487
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Dictionary", function() { return _Dictionary__WEBPACK_IMPORTED_MODULE_10__["Dictionary"]; });
|
|
14472
14488
|
|
|
14473
|
-
/* harmony import */ var _Disposable__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Disposable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14489
|
+
/* harmony import */ var _Disposable__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Disposable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Disposable.js");
|
|
14474
14490
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isIDisposable", function() { return _Disposable__WEBPACK_IMPORTED_MODULE_11__["isIDisposable"]; });
|
|
14475
14491
|
|
|
14476
14492
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "dispose", function() { return _Disposable__WEBPACK_IMPORTED_MODULE_11__["dispose"]; });
|
|
@@ -14481,30 +14497,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14481
14497
|
|
|
14482
14498
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DisposableList", function() { return _Disposable__WEBPACK_IMPORTED_MODULE_11__["DisposableList"]; });
|
|
14483
14499
|
|
|
14484
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14500
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
14485
14501
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Id64", function() { return _Id__WEBPACK_IMPORTED_MODULE_12__["Id64"]; });
|
|
14486
14502
|
|
|
14487
14503
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TransientIdSequence", function() { return _Id__WEBPACK_IMPORTED_MODULE_12__["TransientIdSequence"]; });
|
|
14488
14504
|
|
|
14489
14505
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Guid", function() { return _Id__WEBPACK_IMPORTED_MODULE_12__["Guid"]; });
|
|
14490
14506
|
|
|
14491
|
-
/* harmony import */ var _IndexMap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./IndexMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14507
|
+
/* harmony import */ var _IndexMap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./IndexMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js");
|
|
14492
14508
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "IndexedValue", function() { return _IndexMap__WEBPACK_IMPORTED_MODULE_13__["IndexedValue"]; });
|
|
14493
14509
|
|
|
14494
14510
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "IndexMap", function() { return _IndexMap__WEBPACK_IMPORTED_MODULE_13__["IndexMap"]; });
|
|
14495
14511
|
|
|
14496
|
-
/* harmony import */ var _JsonSchema__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./JsonSchema */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14497
|
-
/* empty/unused harmony star reexport *//* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14512
|
+
/* harmony import */ var _JsonSchema__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./JsonSchema */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js");
|
|
14513
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js");
|
|
14498
14514
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "JsonUtils", function() { return _JsonUtils__WEBPACK_IMPORTED_MODULE_15__["JsonUtils"]; });
|
|
14499
14515
|
|
|
14500
|
-
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14516
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Logger.js");
|
|
14501
14517
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogLevel", function() { return _Logger__WEBPACK_IMPORTED_MODULE_16__["LogLevel"]; });
|
|
14502
14518
|
|
|
14503
14519
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Logger", function() { return _Logger__WEBPACK_IMPORTED_MODULE_16__["Logger"]; });
|
|
14504
14520
|
|
|
14505
14521
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PerfLogger", function() { return _Logger__WEBPACK_IMPORTED_MODULE_16__["PerfLogger"]; });
|
|
14506
14522
|
|
|
14507
|
-
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./LRUMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14523
|
+
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./LRUMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js");
|
|
14508
14524
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Entry", function() { return _LRUMap__WEBPACK_IMPORTED_MODULE_17__["Entry"]; });
|
|
14509
14525
|
|
|
14510
14526
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LRUCache", function() { return _LRUMap__WEBPACK_IMPORTED_MODULE_17__["LRUCache"]; });
|
|
@@ -14513,32 +14529,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14513
14529
|
|
|
14514
14530
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LRUDictionary", function() { return _LRUMap__WEBPACK_IMPORTED_MODULE_17__["LRUDictionary"]; });
|
|
14515
14531
|
|
|
14516
|
-
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ObservableSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14532
|
+
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ObservableSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js");
|
|
14517
14533
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ObservableSet", function() { return _ObservableSet__WEBPACK_IMPORTED_MODULE_18__["ObservableSet"]; });
|
|
14518
14534
|
|
|
14519
|
-
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./OneAtATimeAction */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14535
|
+
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./OneAtATimeAction */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js");
|
|
14520
14536
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AbandonedError", function() { return _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_19__["AbandonedError"]; });
|
|
14521
14537
|
|
|
14522
14538
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OneAtATimeAction", function() { return _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_19__["OneAtATimeAction"]; });
|
|
14523
14539
|
|
|
14524
|
-
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14540
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js");
|
|
14525
14541
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OrderedId64Iterable", function() { return _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_20__["OrderedId64Iterable"]; });
|
|
14526
14542
|
|
|
14527
|
-
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./OrderedSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14543
|
+
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./OrderedSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js");
|
|
14528
14544
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReadonlyOrderedSet", function() { return _OrderedSet__WEBPACK_IMPORTED_MODULE_21__["ReadonlyOrderedSet"]; });
|
|
14529
14545
|
|
|
14530
14546
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OrderedSet", function() { return _OrderedSet__WEBPACK_IMPORTED_MODULE_21__["OrderedSet"]; });
|
|
14531
14547
|
|
|
14532
|
-
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./partitionArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14548
|
+
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./partitionArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js");
|
|
14533
14549
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "partitionArray", function() { return _partitionArray__WEBPACK_IMPORTED_MODULE_22__["partitionArray"]; });
|
|
14534
14550
|
|
|
14535
|
-
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./PriorityQueue */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14551
|
+
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./PriorityQueue */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js");
|
|
14536
14552
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PriorityQueue", function() { return _PriorityQueue__WEBPACK_IMPORTED_MODULE_23__["PriorityQueue"]; });
|
|
14537
14553
|
|
|
14538
|
-
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ProcessDetector */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14554
|
+
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ProcessDetector */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js");
|
|
14539
14555
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ProcessDetector", function() { return _ProcessDetector__WEBPACK_IMPORTED_MODULE_24__["ProcessDetector"]; });
|
|
14540
14556
|
|
|
14541
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14557
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
14542
14558
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "shallowClone", function() { return _SortedArray__WEBPACK_IMPORTED_MODULE_25__["shallowClone"]; });
|
|
14543
14559
|
|
|
14544
14560
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lowerBound", function() { return _SortedArray__WEBPACK_IMPORTED_MODULE_25__["lowerBound"]; });
|
|
@@ -14549,24 +14565,24 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14549
14565
|
|
|
14550
14566
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SortedArray", function() { return _SortedArray__WEBPACK_IMPORTED_MODULE_25__["SortedArray"]; });
|
|
14551
14567
|
|
|
14552
|
-
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./StringUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14568
|
+
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./StringUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js");
|
|
14553
14569
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "utf8ToStringPolyfill", function() { return _StringUtils__WEBPACK_IMPORTED_MODULE_26__["utf8ToStringPolyfill"]; });
|
|
14554
14570
|
|
|
14555
14571
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "utf8ToString", function() { return _StringUtils__WEBPACK_IMPORTED_MODULE_26__["utf8ToString"]; });
|
|
14556
14572
|
|
|
14557
14573
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "base64StringToUint8Array", function() { return _StringUtils__WEBPACK_IMPORTED_MODULE_26__["base64StringToUint8Array"]; });
|
|
14558
14574
|
|
|
14559
|
-
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./Time */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14575
|
+
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./Time */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/Time.js");
|
|
14560
14576
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BeDuration", function() { return _Time__WEBPACK_IMPORTED_MODULE_27__["BeDuration"]; });
|
|
14561
14577
|
|
|
14562
14578
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "BeTimePoint", function() { return _Time__WEBPACK_IMPORTED_MODULE_27__["BeTimePoint"]; });
|
|
14563
14579
|
|
|
14564
14580
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StopWatch", function() { return _Time__WEBPACK_IMPORTED_MODULE_27__["StopWatch"]; });
|
|
14565
14581
|
|
|
14566
|
-
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14582
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js");
|
|
14567
14583
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UnexpectedErrors", function() { return _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_28__["UnexpectedErrors"]; });
|
|
14568
14584
|
|
|
14569
|
-
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14585
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js");
|
|
14570
14586
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isInstanceOf", function() { return _UtilityTypes__WEBPACK_IMPORTED_MODULE_29__["isInstanceOf"]; });
|
|
14571
14587
|
|
|
14572
14588
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "asInstanceOf", function() { return _UtilityTypes__WEBPACK_IMPORTED_MODULE_29__["asInstanceOf"]; });
|
|
@@ -14648,9 +14664,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14648
14664
|
|
|
14649
14665
|
/***/ }),
|
|
14650
14666
|
|
|
14651
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14667
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js":
|
|
14652
14668
|
/*!***************************************************************************************************************************************************!*\
|
|
14653
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
14669
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js ***!
|
|
14654
14670
|
\***************************************************************************************************************************************************/
|
|
14655
14671
|
/*! exports provided: partitionArray */
|
|
14656
14672
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -20162,7 +20178,7 @@ function partitionArray(array, criterion) {
|
|
|
20162
20178
|
*--------------------------------------------------------------------------------------------*/
|
|
20163
20179
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20164
20180
|
exports.TestFrontendAuthorizationClient = void 0;
|
|
20165
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.
|
|
20181
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@3.0.0-dev.147/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
20166
20182
|
/**
|
|
20167
20183
|
* Basic FrontendAuthorizationClient to use with an already created access token.
|
|
20168
20184
|
* @internal
|
|
@@ -20302,7 +20318,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
|
|
|
20302
20318
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
20303
20319
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
20304
20320
|
*--------------------------------------------------------------------------------------------*/
|
|
20305
|
-
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.
|
|
20321
|
+
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.0.0-dev.147/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
|
|
20306
20322
|
// Shared by both the frontend and backend side of the tests
|
|
20307
20323
|
exports.getTokenCallbackName = "getToken";
|
|
20308
20324
|
async function getAccessTokenFromBackend(user, oidcConfig) {
|
|
@@ -37728,9 +37744,9 @@ Backend.type = 'backend';
|
|
|
37728
37744
|
|
|
37729
37745
|
/***/ }),
|
|
37730
37746
|
|
|
37731
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next@21.5.
|
|
37747
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next@21.5.3/node_modules/i18next/dist/esm/i18next.js":
|
|
37732
37748
|
/*!**************************************************************************************************************!*\
|
|
37733
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/i18next@21.5.
|
|
37749
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/i18next@21.5.3/node_modules/i18next/dist/esm/i18next.js ***!
|
|
37734
37750
|
\**************************************************************************************************************/
|
|
37735
37751
|
/*! exports provided: default, changeLanguage, createInstance, exists, getFixedT, hasLoadedNamespace, init, loadLanguages, loadNamespaces, loadResources, reloadResources, setDefaultNamespace, t, use */
|
|
37736
37752
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -58174,9 +58190,9 @@ const gBase64 = {
|
|
|
58174
58190
|
|
|
58175
58191
|
/***/ }),
|
|
58176
58192
|
|
|
58177
|
-
/***/ "../../common/temp/node_modules/.pnpm/object-inspect@1.11.
|
|
58193
|
+
/***/ "../../common/temp/node_modules/.pnpm/object-inspect@1.11.0/node_modules/object-inspect/index.js":
|
|
58178
58194
|
/*!*****************************************************************************************************************!*\
|
|
58179
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/object-inspect@1.11.
|
|
58195
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/object-inspect@1.11.0/node_modules/object-inspect/index.js ***!
|
|
58180
58196
|
\*****************************************************************************************************************/
|
|
58181
58197
|
/*! no static exports found */
|
|
58182
58198
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -58203,10 +58219,6 @@ var bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : nu
|
|
|
58203
58219
|
var gOPS = Object.getOwnPropertySymbols;
|
|
58204
58220
|
var symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null;
|
|
58205
58221
|
var hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object';
|
|
58206
|
-
// ie, `has-tostringtag/shams
|
|
58207
|
-
var toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol')
|
|
58208
|
-
? Symbol.toStringTag
|
|
58209
|
-
: null;
|
|
58210
58222
|
var isEnumerable = Object.prototype.propertyIsEnumerable;
|
|
58211
58223
|
|
|
58212
58224
|
var gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || (
|
|
@@ -58219,6 +58231,7 @@ var gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPr
|
|
|
58219
58231
|
|
|
58220
58232
|
var inspectCustom = __webpack_require__(/*! ./util.inspect */ 1).custom;
|
|
58221
58233
|
var inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null;
|
|
58234
|
+
var toStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag !== 'undefined' ? Symbol.toStringTag : null;
|
|
58222
58235
|
|
|
58223
58236
|
module.exports = function inspect_(obj, options, depth, seen) {
|
|
58224
58237
|
var opts = options || {};
|
|
@@ -59930,9 +59943,9 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
59930
59943
|
|
|
59931
59944
|
/***/ }),
|
|
59932
59945
|
|
|
59933
|
-
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
59946
|
+
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/formats.js":
|
|
59934
59947
|
/*!***********************************************************************************************!*\
|
|
59935
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.
|
|
59948
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/formats.js ***!
|
|
59936
59949
|
\***********************************************************************************************/
|
|
59937
59950
|
/*! no static exports found */
|
|
59938
59951
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -59965,9 +59978,9 @@ module.exports = {
|
|
|
59965
59978
|
|
|
59966
59979
|
/***/ }),
|
|
59967
59980
|
|
|
59968
|
-
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
59981
|
+
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/index.js":
|
|
59969
59982
|
/*!*********************************************************************************************!*\
|
|
59970
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.
|
|
59983
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/index.js ***!
|
|
59971
59984
|
\*********************************************************************************************/
|
|
59972
59985
|
/*! no static exports found */
|
|
59973
59986
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -59975,9 +59988,9 @@ module.exports = {
|
|
|
59975
59988
|
"use strict";
|
|
59976
59989
|
|
|
59977
59990
|
|
|
59978
|
-
var stringify = __webpack_require__(/*! ./stringify */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
59979
|
-
var parse = __webpack_require__(/*! ./parse */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
59980
|
-
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
59991
|
+
var stringify = __webpack_require__(/*! ./stringify */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/stringify.js");
|
|
59992
|
+
var parse = __webpack_require__(/*! ./parse */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/parse.js");
|
|
59993
|
+
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/formats.js");
|
|
59981
59994
|
|
|
59982
59995
|
module.exports = {
|
|
59983
59996
|
formats: formats,
|
|
@@ -59988,9 +60001,9 @@ module.exports = {
|
|
|
59988
60001
|
|
|
59989
60002
|
/***/ }),
|
|
59990
60003
|
|
|
59991
|
-
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60004
|
+
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/parse.js":
|
|
59992
60005
|
/*!*********************************************************************************************!*\
|
|
59993
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.
|
|
60006
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/parse.js ***!
|
|
59994
60007
|
\*********************************************************************************************/
|
|
59995
60008
|
/*! no static exports found */
|
|
59996
60009
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -59998,7 +60011,7 @@ module.exports = {
|
|
|
59998
60011
|
"use strict";
|
|
59999
60012
|
|
|
60000
60013
|
|
|
60001
|
-
var utils = __webpack_require__(/*! ./utils */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60014
|
+
var utils = __webpack_require__(/*! ./utils */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/utils.js");
|
|
60002
60015
|
|
|
60003
60016
|
var has = Object.prototype.hasOwnProperty;
|
|
60004
60017
|
var isArray = Array.isArray;
|
|
@@ -60263,9 +60276,9 @@ module.exports = function (str, opts) {
|
|
|
60263
60276
|
|
|
60264
60277
|
/***/ }),
|
|
60265
60278
|
|
|
60266
|
-
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60279
|
+
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/stringify.js":
|
|
60267
60280
|
/*!*************************************************************************************************!*\
|
|
60268
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.
|
|
60281
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/stringify.js ***!
|
|
60269
60282
|
\*************************************************************************************************/
|
|
60270
60283
|
/*! no static exports found */
|
|
60271
60284
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -60274,8 +60287,8 @@ module.exports = function (str, opts) {
|
|
|
60274
60287
|
|
|
60275
60288
|
|
|
60276
60289
|
var getSideChannel = __webpack_require__(/*! side-channel */ "../../common/temp/node_modules/.pnpm/side-channel@1.0.4/node_modules/side-channel/index.js");
|
|
60277
|
-
var utils = __webpack_require__(/*! ./utils */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60278
|
-
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60290
|
+
var utils = __webpack_require__(/*! ./utils */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/utils.js");
|
|
60291
|
+
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/formats.js");
|
|
60279
60292
|
var has = Object.prototype.hasOwnProperty;
|
|
60280
60293
|
|
|
60281
60294
|
var arrayPrefixGenerators = {
|
|
@@ -60292,7 +60305,6 @@ var arrayPrefixGenerators = {
|
|
|
60292
60305
|
};
|
|
60293
60306
|
|
|
60294
60307
|
var isArray = Array.isArray;
|
|
60295
|
-
var split = String.prototype.split;
|
|
60296
60308
|
var push = Array.prototype.push;
|
|
60297
60309
|
var pushToArray = function (arr, valueOrArray) {
|
|
60298
60310
|
push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);
|
|
@@ -60329,8 +60341,6 @@ var isNonNullishPrimitive = function isNonNullishPrimitive(v) {
|
|
|
60329
60341
|
|| typeof v === 'bigint';
|
|
60330
60342
|
};
|
|
60331
60343
|
|
|
60332
|
-
var sentinel = {};
|
|
60333
|
-
|
|
60334
60344
|
var stringify = function stringify(
|
|
60335
60345
|
object,
|
|
60336
60346
|
prefix,
|
|
@@ -60350,23 +60360,8 @@ var stringify = function stringify(
|
|
|
60350
60360
|
) {
|
|
60351
60361
|
var obj = object;
|
|
60352
60362
|
|
|
60353
|
-
|
|
60354
|
-
|
|
60355
|
-
var findFlag = false;
|
|
60356
|
-
while ((tmpSc = tmpSc.get(sentinel)) !== undefined && !findFlag) {
|
|
60357
|
-
// Where object last appeared in the ref tree
|
|
60358
|
-
var pos = tmpSc.get(object);
|
|
60359
|
-
step += 1;
|
|
60360
|
-
if (typeof pos !== 'undefined') {
|
|
60361
|
-
if (pos === step) {
|
|
60362
|
-
throw new RangeError('Cyclic object value');
|
|
60363
|
-
} else {
|
|
60364
|
-
findFlag = true; // Break while
|
|
60365
|
-
}
|
|
60366
|
-
}
|
|
60367
|
-
if (typeof tmpSc.get(sentinel) === 'undefined') {
|
|
60368
|
-
step = 0;
|
|
60369
|
-
}
|
|
60363
|
+
if (sideChannel.has(object)) {
|
|
60364
|
+
throw new RangeError('Cyclic object value');
|
|
60370
60365
|
}
|
|
60371
60366
|
|
|
60372
60367
|
if (typeof filter === 'function') {
|
|
@@ -60393,14 +60388,6 @@ var stringify = function stringify(
|
|
|
60393
60388
|
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
|
|
60394
60389
|
if (encoder) {
|
|
60395
60390
|
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);
|
|
60396
|
-
if (generateArrayPrefix === 'comma' && encodeValuesOnly) {
|
|
60397
|
-
var valuesArray = split.call(String(obj), ',');
|
|
60398
|
-
var valuesJoined = '';
|
|
60399
|
-
for (var i = 0; i < valuesArray.length; ++i) {
|
|
60400
|
-
valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format));
|
|
60401
|
-
}
|
|
60402
|
-
return [formatter(keyValue) + '=' + valuesJoined];
|
|
60403
|
-
}
|
|
60404
60391
|
return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];
|
|
60405
60392
|
}
|
|
60406
60393
|
return [formatter(prefix) + '=' + formatter(String(obj))];
|
|
@@ -60423,8 +60410,8 @@ var stringify = function stringify(
|
|
|
60423
60410
|
objKeys = sort ? keys.sort(sort) : keys;
|
|
60424
60411
|
}
|
|
60425
60412
|
|
|
60426
|
-
for (var
|
|
60427
|
-
var key = objKeys[
|
|
60413
|
+
for (var i = 0; i < objKeys.length; ++i) {
|
|
60414
|
+
var key = objKeys[i];
|
|
60428
60415
|
var value = typeof key === 'object' && key.value !== undefined ? key.value : obj[key];
|
|
60429
60416
|
|
|
60430
60417
|
if (skipNulls && value === null) {
|
|
@@ -60435,9 +60422,8 @@ var stringify = function stringify(
|
|
|
60435
60422
|
? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix
|
|
60436
60423
|
: prefix + (allowDots ? '.' + key : '[' + key + ']');
|
|
60437
60424
|
|
|
60438
|
-
sideChannel.set(object,
|
|
60425
|
+
sideChannel.set(object, true);
|
|
60439
60426
|
var valueSideChannel = getSideChannel();
|
|
60440
|
-
valueSideChannel.set(sentinel, sideChannel);
|
|
60441
60427
|
pushToArray(values, stringify(
|
|
60442
60428
|
value,
|
|
60443
60429
|
keyPrefix,
|
|
@@ -60592,9 +60578,9 @@ module.exports = function (object, opts) {
|
|
|
60592
60578
|
|
|
60593
60579
|
/***/ }),
|
|
60594
60580
|
|
|
60595
|
-
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60581
|
+
/***/ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/utils.js":
|
|
60596
60582
|
/*!*********************************************************************************************!*\
|
|
60597
|
-
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.
|
|
60583
|
+
!*** D:/vsts_b/775/s/common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/utils.js ***!
|
|
60598
60584
|
\*********************************************************************************************/
|
|
60599
60585
|
/*! no static exports found */
|
|
60600
60586
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -60602,7 +60588,7 @@ module.exports = function (object, opts) {
|
|
|
60602
60588
|
"use strict";
|
|
60603
60589
|
|
|
60604
60590
|
|
|
60605
|
-
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.
|
|
60591
|
+
var formats = __webpack_require__(/*! ./formats */ "../../common/temp/node_modules/.pnpm/qs@6.10.1/node_modules/qs/lib/formats.js");
|
|
60606
60592
|
|
|
60607
60593
|
var has = Object.prototype.hasOwnProperty;
|
|
60608
60594
|
var isArray = Array.isArray;
|
|
@@ -60779,7 +60765,6 @@ var encode = function encode(str, defaultEncoder, charset, kind, format) {
|
|
|
60779
60765
|
|
|
60780
60766
|
i += 1;
|
|
60781
60767
|
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
|
|
60782
|
-
/* eslint operator-linebreak: [2, "before"] */
|
|
60783
60768
|
out += hexTable[0xF0 | (c >> 18)]
|
|
60784
60769
|
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
|
|
60785
60770
|
+ hexTable[0x80 | ((c >> 6) & 0x3F)]
|
|
@@ -66903,7 +66888,7 @@ function coerce (version) {
|
|
|
66903
66888
|
|
|
66904
66889
|
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../common/temp/node_modules/.pnpm/get-intrinsic@1.1.1/node_modules/get-intrinsic/index.js");
|
|
66905
66890
|
var callBound = __webpack_require__(/*! call-bind/callBound */ "../../common/temp/node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js");
|
|
66906
|
-
var inspect = __webpack_require__(/*! object-inspect */ "../../common/temp/node_modules/.pnpm/object-inspect@1.11.
|
|
66891
|
+
var inspect = __webpack_require__(/*! object-inspect */ "../../common/temp/node_modules/.pnpm/object-inspect@1.11.0/node_modules/object-inspect/index.js");
|
|
66907
66892
|
|
|
66908
66893
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
66909
66894
|
var $WeakMap = GetIntrinsic('%WeakMap%', true);
|
|
@@ -80754,13 +80739,14 @@ class DbQueryError extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["Ben
|
|
|
80754
80739
|
/*!******************************************************************!*\
|
|
80755
80740
|
!*** D:/vsts_b/775/s/core/common/lib/esm/ContextRealityModel.js ***!
|
|
80756
80741
|
\******************************************************************/
|
|
80757
|
-
/*! exports provided: RealityDataProvider, RealityDataFormat, ContextRealityModelProps, ContextRealityModel, ContextRealityModels */
|
|
80742
|
+
/*! exports provided: RealityDataProvider, RealityDataFormat, RealityDataSourceKey, ContextRealityModelProps, ContextRealityModel, ContextRealityModels */
|
|
80758
80743
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
80759
80744
|
|
|
80760
80745
|
"use strict";
|
|
80761
80746
|
__webpack_require__.r(__webpack_exports__);
|
|
80762
80747
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RealityDataProvider", function() { return RealityDataProvider; });
|
|
80763
80748
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RealityDataFormat", function() { return RealityDataFormat; });
|
|
80749
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RealityDataSourceKey", function() { return RealityDataSourceKey; });
|
|
80764
80750
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ContextRealityModelProps", function() { return ContextRealityModelProps; });
|
|
80765
80751
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ContextRealityModel", function() { return ContextRealityModel; });
|
|
80766
80752
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ContextRealityModels", function() { return ContextRealityModels; });
|
|
@@ -80780,7 +80766,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
80780
80766
|
|
|
80781
80767
|
|
|
80782
80768
|
/** Identify the Reality Data service provider
|
|
80783
|
-
* @
|
|
80769
|
+
* @beta
|
|
80784
80770
|
*/
|
|
80785
80771
|
var RealityDataProvider;
|
|
80786
80772
|
(function (RealityDataProvider) {
|
|
@@ -80795,7 +80781,7 @@ var RealityDataProvider;
|
|
|
80795
80781
|
* This is the legacy mode where the access to the 3d tiles is harcoded in ContextRealityModelProps.OrbitGtBlob property.
|
|
80796
80782
|
* It was use to support OrbitPointCloud (OPC) from other server than ContextShare
|
|
80797
80783
|
* You should use other mode when possible
|
|
80798
|
-
* @see [[RealityDataSource.
|
|
80784
|
+
* @see [[RealityDataSource.createKeyFromOrbitGtBlobProps]] that will try to detect provider from an URL
|
|
80799
80785
|
*/
|
|
80800
80786
|
RealityDataProvider["OrbitGtBlob"] = "OrbitGtBlob";
|
|
80801
80787
|
/**
|
|
@@ -80810,7 +80796,7 @@ var RealityDataProvider;
|
|
|
80810
80796
|
RealityDataProvider["CesiumIonAsset"] = "CesiumIonAsset";
|
|
80811
80797
|
})(RealityDataProvider || (RealityDataProvider = {}));
|
|
80812
80798
|
/** Identify the Reality Data storage format
|
|
80813
|
-
* @
|
|
80799
|
+
* @beta
|
|
80814
80800
|
*/
|
|
80815
80801
|
var RealityDataFormat;
|
|
80816
80802
|
(function (RealityDataFormat) {
|
|
@@ -80823,6 +80809,45 @@ var RealityDataFormat;
|
|
|
80823
80809
|
*/
|
|
80824
80810
|
RealityDataFormat["OPC"] = "OPC";
|
|
80825
80811
|
})(RealityDataFormat || (RealityDataFormat = {}));
|
|
80812
|
+
/** Utility function for RealityDataFormat
|
|
80813
|
+
* @beta
|
|
80814
|
+
*/
|
|
80815
|
+
(function (RealityDataFormat) {
|
|
80816
|
+
/**
|
|
80817
|
+
* Try to extract the RealityDataFormat from the url
|
|
80818
|
+
* @param tilesetUrl the reality data attachment url
|
|
80819
|
+
* @returns the extracted RealityDataFormat or ThreeDTile by default if not found
|
|
80820
|
+
*/
|
|
80821
|
+
function fromUrl(tilesetUrl) {
|
|
80822
|
+
let format = RealityDataFormat.ThreeDTile;
|
|
80823
|
+
if (tilesetUrl.includes(".opc"))
|
|
80824
|
+
format = RealityDataFormat.OPC;
|
|
80825
|
+
return format;
|
|
80826
|
+
}
|
|
80827
|
+
RealityDataFormat.fromUrl = fromUrl;
|
|
80828
|
+
})(RealityDataFormat || (RealityDataFormat = {}));
|
|
80829
|
+
/**
|
|
80830
|
+
* RealityDataSourceKey utility functions
|
|
80831
|
+
* @beta */
|
|
80832
|
+
var RealityDataSourceKey;
|
|
80833
|
+
(function (RealityDataSourceKey) {
|
|
80834
|
+
/** Utility function to convert a RealityDataSourceKey into its string representation */
|
|
80835
|
+
function convertToString(rdSourceKey) {
|
|
80836
|
+
return `${rdSourceKey.provider}:${rdSourceKey.format}:${rdSourceKey.id}:${rdSourceKey === null || rdSourceKey === void 0 ? void 0 : rdSourceKey.iTwinId}`;
|
|
80837
|
+
}
|
|
80838
|
+
RealityDataSourceKey.convertToString = convertToString;
|
|
80839
|
+
/** Utility function to compare two RealityDataSourceKey, we consider it equal even if itwinId is different */
|
|
80840
|
+
function isEqual(key1, key2) {
|
|
80841
|
+
if ((key1.provider === RealityDataProvider.CesiumIonAsset) && key2.provider === RealityDataProvider.CesiumIonAsset)
|
|
80842
|
+
return true; // ignore other properties for CesiumIonAsset, id is hidden
|
|
80843
|
+
if ((key1.provider === key2.provider) && (key1.format === key2.format) && (key1.id === key2.id)) {
|
|
80844
|
+
// && (key1?.iTwinId === key2?.iTwinId)) -> ignore iTwinId, consider it is the same reality data
|
|
80845
|
+
return true;
|
|
80846
|
+
}
|
|
80847
|
+
return false;
|
|
80848
|
+
}
|
|
80849
|
+
RealityDataSourceKey.isEqual = isEqual;
|
|
80850
|
+
})(RealityDataSourceKey || (RealityDataSourceKey = {}));
|
|
80826
80851
|
/** @public */
|
|
80827
80852
|
var ContextRealityModelProps;
|
|
80828
80853
|
(function (ContextRealityModelProps) {
|
|
@@ -84721,6 +84746,16 @@ var Gradient;
|
|
|
84721
84746
|
if (!lhs.keys[i].color.equals(rhs.keys[i].color))
|
|
84722
84747
|
return lhs.keys[i].color.tbgr - rhs.keys[i].color.tbgr;
|
|
84723
84748
|
}
|
|
84749
|
+
if (lhs.thematicSettings !== rhs.thematicSettings)
|
|
84750
|
+
if (undefined === lhs.thematicSettings)
|
|
84751
|
+
return -1;
|
|
84752
|
+
else if (undefined === rhs.thematicSettings)
|
|
84753
|
+
return 1;
|
|
84754
|
+
else {
|
|
84755
|
+
const thematicCompareResult = _ThematicDisplay__WEBPACK_IMPORTED_MODULE_4__["ThematicGradientSettings"].compare(lhs.thematicSettings, rhs.thematicSettings);
|
|
84756
|
+
if (0 !== thematicCompareResult)
|
|
84757
|
+
return thematicCompareResult;
|
|
84758
|
+
}
|
|
84724
84759
|
return 0;
|
|
84725
84760
|
}
|
|
84726
84761
|
/** Compare this symbology to another.
|
|
@@ -85568,6 +85603,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85568
85603
|
|
|
85569
85604
|
|
|
85570
85605
|
/** The position and orientation of an iModel on the earth in [ECEF](https://en.wikipedia.org/wiki/ECEF) (Earth Centered Earth Fixed) coordinates
|
|
85606
|
+
* @note This is an immutable type - all of its properties are frozen.
|
|
85571
85607
|
* @see [GeoLocation of iModels]($docs/learning/GeoLocation.md)
|
|
85572
85608
|
* @public
|
|
85573
85609
|
*/
|
|
@@ -85579,8 +85615,8 @@ class EcefLocation {
|
|
|
85579
85615
|
if (props.cartographicOrigin)
|
|
85580
85616
|
this.cartographicOrigin = _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_2__["Cartographic"].fromRadians({ longitude: props.cartographicOrigin.longitude, latitude: props.cartographicOrigin.latitude, height: props.cartographicOrigin.height }).freeze();
|
|
85581
85617
|
if (props.xVector && props.yVector) {
|
|
85582
|
-
this.xVector = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(props.xVector);
|
|
85583
|
-
this.yVector = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(props.yVector);
|
|
85618
|
+
this.xVector = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(props.xVector).freeze();
|
|
85619
|
+
this.yVector = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(props.yVector).freeze();
|
|
85584
85620
|
}
|
|
85585
85621
|
let matrix;
|
|
85586
85622
|
if (this.xVector && this.yVector) {
|
|
@@ -85591,6 +85627,7 @@ class EcefLocation {
|
|
|
85591
85627
|
if (!matrix)
|
|
85592
85628
|
matrix = this.orientation.toMatrix3d();
|
|
85593
85629
|
this._transform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Transform"].createOriginAndMatrix(this.origin, matrix);
|
|
85630
|
+
this._transform.freeze();
|
|
85594
85631
|
}
|
|
85595
85632
|
/** Get the transform from iModel Spatial coordinates to ECEF from this EcefLocation */
|
|
85596
85633
|
getTransform() { return this._transform; }
|
|
@@ -85840,11 +85877,7 @@ class IModel {
|
|
|
85840
85877
|
getEcefTransform() {
|
|
85841
85878
|
if (undefined === this._ecefLocation)
|
|
85842
85879
|
throw new _IModelError__WEBPACK_IMPORTED_MODULE_4__["IModelError"](_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["GeoServiceStatus"].NoGeoLocation, "iModel is not GeoLocated");
|
|
85843
|
-
|
|
85844
|
-
this._ecefTrans = this._ecefLocation.getTransform();
|
|
85845
|
-
this._ecefTrans.freeze();
|
|
85846
|
-
}
|
|
85847
|
-
return this._ecefTrans;
|
|
85880
|
+
return this._ecefLocation.getTransform();
|
|
85848
85881
|
}
|
|
85849
85882
|
/** Convert a point in this iModel's Spatial coordinates to an ECEF point using its [[IModel.ecefLocation]].
|
|
85850
85883
|
* @param spatial A point in the iModel's spatial coordinates
|
|
@@ -91219,9 +91252,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91219
91252
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ThematicDisplaySensorSettings", function() { return ThematicDisplaySensorSettings; });
|
|
91220
91253
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ThematicDisplayMode", function() { return ThematicDisplayMode; });
|
|
91221
91254
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ThematicDisplay", function() { return ThematicDisplay; });
|
|
91222
|
-
/* harmony import */ var
|
|
91223
|
-
/* harmony import */ var
|
|
91224
|
-
/* harmony import */ var
|
|
91255
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
91256
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
91257
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
91258
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
91225
91259
|
/*---------------------------------------------------------------------------------------------
|
|
91226
91260
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
91227
91261
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -91232,6 +91266,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91232
91266
|
|
|
91233
91267
|
|
|
91234
91268
|
|
|
91269
|
+
|
|
91235
91270
|
/** A thematic gradient mode used to generate and apply a thematic effect to a scene.
|
|
91236
91271
|
* @see [[ThematicGradientSettings.mode]]
|
|
91237
91272
|
* @public
|
|
@@ -91278,7 +91313,7 @@ class ThematicGradientSettings {
|
|
|
91278
91313
|
if (undefined === json) {
|
|
91279
91314
|
this.mode = ThematicGradientMode.Smooth;
|
|
91280
91315
|
this.stepCount = 10;
|
|
91281
|
-
this.marginColor =
|
|
91316
|
+
this.marginColor = _ColorDef__WEBPACK_IMPORTED_MODULE_2__["ColorDef"].fromJSON();
|
|
91282
91317
|
this.colorScheme = ThematicGradientColorScheme.BlueRed;
|
|
91283
91318
|
this.colorMix = 0.0;
|
|
91284
91319
|
}
|
|
@@ -91289,17 +91324,17 @@ class ThematicGradientSettings {
|
|
|
91289
91324
|
this.stepCount = (typeof json.stepCount === "number") ? json.stepCount : 10;
|
|
91290
91325
|
if (this.stepCount < 2)
|
|
91291
91326
|
this.stepCount = 2;
|
|
91292
|
-
this.marginColor =
|
|
91327
|
+
this.marginColor = _ColorDef__WEBPACK_IMPORTED_MODULE_2__["ColorDef"].fromJSON(json.marginColor);
|
|
91293
91328
|
this.colorScheme = (json.colorScheme !== undefined && json.colorScheme !== null) ? json.colorScheme : ThematicGradientColorScheme.BlueRed;
|
|
91294
91329
|
if (this.colorScheme < ThematicGradientColorScheme.BlueRed || this.colorScheme > ThematicGradientColorScheme.Custom)
|
|
91295
91330
|
this.colorScheme = ThematicGradientColorScheme.BlueRed;
|
|
91296
91331
|
if (json.customKeys !== undefined && json.customKeys !== null)
|
|
91297
|
-
json.customKeys.forEach((key) => this.customKeys.push(new
|
|
91332
|
+
json.customKeys.forEach((key) => this.customKeys.push(new _Gradient__WEBPACK_IMPORTED_MODULE_3__["Gradient"].KeyColor(key)));
|
|
91298
91333
|
// Enforce 2 entries in custom color keys if violated
|
|
91299
91334
|
if (this.colorScheme === ThematicGradientColorScheme.Custom && this.customKeys.length < 2) {
|
|
91300
91335
|
this.customKeys = [];
|
|
91301
91336
|
for (const keyValue of ThematicGradientSettings._defaultCustomKeys)
|
|
91302
|
-
this.customKeys.push(new
|
|
91337
|
+
this.customKeys.push(new _Gradient__WEBPACK_IMPORTED_MODULE_3__["Gradient"].KeyColor({ value: keyValue[0], color: _ColorDef__WEBPACK_IMPORTED_MODULE_2__["ColorDef"].computeTbgrFromComponents(keyValue[1], keyValue[3], keyValue[2]) }));
|
|
91303
91338
|
}
|
|
91304
91339
|
this.colorMix = (_a = json.colorMix) !== null && _a !== void 0 ? _a : 0.0;
|
|
91305
91340
|
}
|
|
@@ -91321,11 +91356,36 @@ class ThematicGradientSettings {
|
|
|
91321
91356
|
if (this.colorMix !== other.colorMix)
|
|
91322
91357
|
return false;
|
|
91323
91358
|
for (let i = 0; i < this.customKeys.length; i++) {
|
|
91324
|
-
if (!
|
|
91359
|
+
if (!_Gradient__WEBPACK_IMPORTED_MODULE_3__["Gradient"].keyColorEquals(this.customKeys[i], other.customKeys[i]))
|
|
91325
91360
|
return false;
|
|
91326
91361
|
}
|
|
91327
91362
|
return true;
|
|
91328
91363
|
}
|
|
91364
|
+
/** Compares two sets of thematic gradient settings.
|
|
91365
|
+
* @param lhs First set of thematic gradient settings to compare
|
|
91366
|
+
* @param rhs Second set of thematic gradient settings to compare
|
|
91367
|
+
* @returns 0 if lhs is equivalent to rhs, a negative number if lhs compares less than rhs, or a positive number if lhs compares greater than rhs.
|
|
91368
|
+
*/
|
|
91369
|
+
static compare(lhs, rhs) {
|
|
91370
|
+
let diff = 0;
|
|
91371
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.mode, rhs.mode)) !== 0)
|
|
91372
|
+
return diff;
|
|
91373
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.stepCount, rhs.stepCount)) !== 0)
|
|
91374
|
+
return diff;
|
|
91375
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.marginColor.tbgr, rhs.marginColor.tbgr)) !== 0)
|
|
91376
|
+
return diff;
|
|
91377
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.colorScheme, rhs.colorScheme)) !== 0)
|
|
91378
|
+
return diff;
|
|
91379
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.colorMix, rhs.colorMix)) !== 0)
|
|
91380
|
+
return diff;
|
|
91381
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.customKeys.length, rhs.customKeys.length)) !== 0)
|
|
91382
|
+
return diff;
|
|
91383
|
+
for (let i = 0; i < lhs.customKeys.length; i++) {
|
|
91384
|
+
if ((diff = Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["compareNumbers"])(lhs.customKeys[i].color.tbgr, rhs.customKeys[i].color.tbgr)) !== 0)
|
|
91385
|
+
return diff;
|
|
91386
|
+
}
|
|
91387
|
+
return diff;
|
|
91388
|
+
}
|
|
91329
91389
|
static fromJSON(json) {
|
|
91330
91390
|
return json ? new ThematicGradientSettings(json) : this.defaults;
|
|
91331
91391
|
}
|
|
@@ -91372,11 +91432,11 @@ ThematicGradientSettings._defaultCustomKeys = [[0.0, 255, 255, 255], [1.0, 0, 0,
|
|
|
91372
91432
|
class ThematicDisplaySensor {
|
|
91373
91433
|
constructor(json) {
|
|
91374
91434
|
if (undefined === json) {
|
|
91375
|
-
this.position =
|
|
91435
|
+
this.position = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Point3d"].fromJSON();
|
|
91376
91436
|
this.value = 0;
|
|
91377
91437
|
}
|
|
91378
91438
|
else {
|
|
91379
|
-
this.position =
|
|
91439
|
+
this.position = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Point3d"].fromJSON(json.position);
|
|
91380
91440
|
this.value = (typeof json.value !== "number") ? 0 : json.value;
|
|
91381
91441
|
if (this.value < 0)
|
|
91382
91442
|
this.value = 0;
|
|
@@ -91468,9 +91528,9 @@ class ThematicDisplay {
|
|
|
91468
91528
|
if (undefined === json) {
|
|
91469
91529
|
this.displayMode = ThematicDisplayMode.Height;
|
|
91470
91530
|
this.gradientSettings = ThematicGradientSettings.fromJSON();
|
|
91471
|
-
this.axis =
|
|
91472
|
-
this.range =
|
|
91473
|
-
this.sunDirection =
|
|
91531
|
+
this.axis = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON();
|
|
91532
|
+
this.range = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Range1d"].fromJSON();
|
|
91533
|
+
this.sunDirection = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON();
|
|
91474
91534
|
this.sensorSettings = ThematicDisplaySensorSettings.fromJSON();
|
|
91475
91535
|
}
|
|
91476
91536
|
else {
|
|
@@ -91478,9 +91538,9 @@ class ThematicDisplay {
|
|
|
91478
91538
|
if (this.displayMode < ThematicDisplayMode.Height || this.displayMode > ThematicDisplayMode.HillShade)
|
|
91479
91539
|
this.displayMode = ThematicDisplayMode.Height;
|
|
91480
91540
|
this.gradientSettings = ThematicGradientSettings.fromJSON(json.gradientSettings);
|
|
91481
|
-
this.axis =
|
|
91482
|
-
this.range =
|
|
91483
|
-
this.sunDirection =
|
|
91541
|
+
this.axis = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(json.axis);
|
|
91542
|
+
this.range = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Range1d"].fromJSON(json.range);
|
|
91543
|
+
this.sunDirection = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__["Vector3d"].fromJSON(json.sunDirection);
|
|
91484
91544
|
this.sensorSettings = ThematicDisplaySensorSettings.fromJSON(json.sensorSettings);
|
|
91485
91545
|
}
|
|
91486
91546
|
if (ThematicDisplayMode.Height !== this.displayMode) {
|
|
@@ -92826,7 +92886,7 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
92826
92886
|
/*!**********************************************************!*\
|
|
92827
92887
|
!*** D:/vsts_b/775/s/core/common/lib/esm/core-common.js ***!
|
|
92828
92888
|
\**********************************************************/
|
|
92829
|
-
/*! exports provided: AmbientOcclusion, AnalysisStyleDisplacement, AnalysisStyleThematic, AnalysisStyle, BackgroundMapType, BackgroundMapProvider, GlobeMode, BackgroundMapSettings, Base64EncodedString, BriefcaseIdValue, SyncMode, DomainOptions, ProfileOptions, SchemaState, Camera, TypeOfChange, ChangesetType, CutStyle, ClipStyle, CloudStorageProvider, CloudStorageContainerUrl, CloudStorageCache, CloudStorageTileCache, Code, BisCodeSpec, CodeScopeSpec, CodeSpec, ColorByName, ColorDef, CommonLoggerCategory, RealityDataProvider, RealityDataFormat, ContextRealityModelProps, ContextRealityModel, ContextRealityModels, MonochromeMode, DisplayStyleSettings, DisplayStyle3dSettings, ECSqlValueType, ChangeOpCode, ChangedValueState, ECSqlSystemProperty, ECJsNames, RelatedElement, TypeDefinition, isPlacement2dProps, isPlacement3dProps, SectionType, ExternalSourceAttachmentRole, Rank, FeatureOverrideType, PrimitiveTypeCode, PropertyMetaData, EntityMetaData, Environment, FeatureGates, NonUniformColor, ColorIndex, FeatureIndexType, FeatureIndex, FeatureAppearance, FeatureOverrides, FeatureAppearanceProvider, Feature, BatchType, FeatureTable, PackedFeatureTable, FontType, FontMap, Npc, NpcCorners, NpcCenter, Frustum, GeoCoordStatus, mapToGeoServiceStatus, Helmert2DWithZOffset, AdditionalTransform, AreaPattern, BoundingSphere, Cartographic, CartographicRange, HorizontalCRSExtent, HorizontalCRS, VerticalCRS, GeographicCRS, ElementGeometryOpcode, BRepGeometryOperation, ElementGeometry, FrustumPlanes, XyzRotation, GeocentricTransform, PositionalVectorTransform, GridFileDefinition, GridFileTransform, GeodeticTransform, GeodeticDatum, GeodeticEllipsoid, BRepEntity, GeometryStreamFlags, GeometryStreamBuilder, GeometryStreamIterator, ImageGraphicCorners, ImageGraphic, LineStyle, Placement3d, Placement2d, AffineTransform, Projection, Carto2DDegrees, TextString, FillDisplay, BackgroundFill, GeometryClass, GeometryParams, GeometrySummaryVerbosity, Gradient, FillFlags, GraphicParams, GroundPlane, HiddenLine, Hilite, HSLColor, HSVConstants, HSVColor, ImageBufferFormat, ImageBuffer, isPowerOfTwo, nextHighestPowerOfTwo, ImageSourceFormat, isValidImageSourceFormat, ImageSource, EcefLocation, IModel, BentleyStatus, BentleyError, IModelStatus, BriefcaseStatus, DbResult, AuthStatus, RepositoryStatus, ChangeSetStatus, RpcInterfaceStatus, IModelError, ServerError, ServerTimeoutError, BackendError, ChannelConstraintError, NoContentError, IModelVersion, iTwinChannel, IpcWebSocketMessageType, IpcWebSocketMessage, IpcWebSocket, IpcWebSocketFrontend, IpcWebSocketBackend, IpcWebSocketTransport, IpcAppChannel, SolarLight, AmbientLight, HemisphereLights, FresnelSettings, LightSettings, LinePixels, EmptyLocalization, BaseLayerSettings, MapImagerySettings, MapSubLayerSettings, MapLayerSettings, BaseMapLayerSettings, MassPropertiesOperation, TextureMapUnits, ModelClipGroup, ModelClipGroups, nativeAppChannel, nativeAppNotify, InternetConnectivityStatus, OverriddenBy, OctEncodedNormal, OctEncodedNormalPair, QueryRowFormat, QueryOptionsBuilder, BlobOptionsBuilder, QueryBinder, DbRequestKind, DbResponseKind, DbResponseStatus, DbValueFormat, DbQueryError, PropertyMetaDataMap, ECSqlReader, PlanarClipMaskMode, PlanarClipMaskPriority, PlanarClipMaskSettings, ElementGeometryChange, ModelGeometryChanges, PlanProjectionSettings, Quantization, QParams2d, QPoint2d, QPoint2dList, QParams3d, QPoint3d, QPoint3dList, DefaultSupportedTypes, PolylineTypeFlags, PolylineFlags, PolylineData, MeshPolyline, MeshPolylineList, MeshEdge, MeshEdges, EdgeArgs, SilhouetteEdgeArgs, PolylineEdgeArgs, RenderMaterial, RenderSchedule, RenderTexture, RgbColor, RpcRoutingMap, RpcConfiguration, RpcDefaultConfiguration, RpcDirectProtocol, RpcDirectRequest, DevToolsStatsOptions, DevToolsRpcInterface, IModelNotFoundResponse, IModelReadRpcInterface, IModelTileRpcInterface, SnapshotIModelRpcInterface, TestRpcManager, WipRpcInterface, RpcInterface, RpcManager, SkyBoxImageType, SkyGradient, SkyBox, SkySphere, SkyCube, calculateSolarAngles, calculateSolarDirection, calculateSolarDirectionFromAngles, calculateSunriseOrSunset, SolarShadowSettings, SpatialClassifierInsideDisplay, SpatialClassifierOutsideDisplay, SpatialClassifierFlags, SpatialClassifier, SpatialClassifiers, SubCategoryAppearance, SubCategoryOverride, TerrainHeightOriginMode, TerrainSettings, TextureMapping, ThematicGradientMode, ThematicGradientColorScheme, ThematicGradientSettings, ThematicDisplaySensor, ThematicDisplaySensorSettings, ThematicDisplayMode, ThematicDisplay, TileContentSource, Tweens, Tween, Easing, Interpolation, TxnAction, GridOrientationType, ViewDetails, ViewDetails3d, RenderMode, ViewFlags, RpcResponseCacheControl, RpcProtocolEvent, RpcRequestStatus, RpcRequestEvent, RpcContentType, RpcEndpoint, WEB_RPC_CONSTANTS, RpcControlResponse, RpcPendingResponse, RpcNotFoundResponse, RpcControlChannel, RpcInvocation, MarshalingBinaryMarker, RpcSerializedValue, RpcMarshaling, RpcOperationPolicy, RpcOperation, RpcPendingQueue, RpcRequestFulfillment, RpcProtocol, REGISTRY, OPERATION, POLICY, INSTANCE, CURRENT_REQUEST, CURRENT_INVOCATION, RpcRegistry, ResponseLike, RpcRequest, initializeRpcRequest, RpcRoutingToken, RpcPushTransport, RpcPushService, RpcPushChannel, RpcPushSubscription, RpcPushConnection, BentleyCloudRpcConfiguration, BentleyCloudRpcManager, BentleyCloudRpcProtocol, RpcOpenAPIDescription, RpcMultipart, WebAppRpcProtocol, WebAppRpcRequest, B3dmHeader, CompositeTileHeader, GltfVersions, GltfV2ChunkTypes, GltfMeshMode, GltfDataType, GltfConstants, GltfBufferData, GltfBufferView, GltfHeader, I3dmHeader, ImdlFlags, CurrentImdlVersion, ImdlHeader, FeatureTableHeader, PntsHeader, TileFormat, isKnownTileFormat, tileFormatFromNumber, TileReadStatus, TileReadError, TileHeader, nextPoint3d64FromByteStream, TileOptions, parseTileTreeIdAndContentId, defaultTileOptions, getMaximumMajorTileFormatVersion, TreeFlags, iModelTileTreeIdToString, compareIModelTileTreeIds, ContentFlags, ContentIdProvider, bisectTileRange3d, bisectTileRange2d, computeChildTileRanges, computeChildTileProps, readTileContentDescription, computeTileChordTolerance, TileMetadataReader, WhiteOnWhiteReversalSettings */
|
|
92889
|
+
/*! exports provided: AmbientOcclusion, AnalysisStyleDisplacement, AnalysisStyleThematic, AnalysisStyle, BackgroundMapType, BackgroundMapProvider, GlobeMode, BackgroundMapSettings, Base64EncodedString, BriefcaseIdValue, SyncMode, DomainOptions, ProfileOptions, SchemaState, Camera, TypeOfChange, ChangesetType, CutStyle, ClipStyle, CloudStorageProvider, CloudStorageContainerUrl, CloudStorageCache, CloudStorageTileCache, Code, BisCodeSpec, CodeScopeSpec, CodeSpec, ColorByName, ColorDef, CommonLoggerCategory, RealityDataProvider, RealityDataFormat, RealityDataSourceKey, ContextRealityModelProps, ContextRealityModel, ContextRealityModels, MonochromeMode, DisplayStyleSettings, DisplayStyle3dSettings, ECSqlValueType, ChangeOpCode, ChangedValueState, ECSqlSystemProperty, ECJsNames, RelatedElement, TypeDefinition, isPlacement2dProps, isPlacement3dProps, SectionType, ExternalSourceAttachmentRole, Rank, FeatureOverrideType, PrimitiveTypeCode, PropertyMetaData, EntityMetaData, Environment, FeatureGates, NonUniformColor, ColorIndex, FeatureIndexType, FeatureIndex, FeatureAppearance, FeatureOverrides, FeatureAppearanceProvider, Feature, BatchType, FeatureTable, PackedFeatureTable, FontType, FontMap, Npc, NpcCorners, NpcCenter, Frustum, GeoCoordStatus, mapToGeoServiceStatus, Helmert2DWithZOffset, AdditionalTransform, AreaPattern, BoundingSphere, Cartographic, CartographicRange, HorizontalCRSExtent, HorizontalCRS, VerticalCRS, GeographicCRS, ElementGeometryOpcode, BRepGeometryOperation, ElementGeometry, FrustumPlanes, XyzRotation, GeocentricTransform, PositionalVectorTransform, GridFileDefinition, GridFileTransform, GeodeticTransform, GeodeticDatum, GeodeticEllipsoid, BRepEntity, GeometryStreamFlags, GeometryStreamBuilder, GeometryStreamIterator, ImageGraphicCorners, ImageGraphic, LineStyle, Placement3d, Placement2d, AffineTransform, Projection, Carto2DDegrees, TextString, FillDisplay, BackgroundFill, GeometryClass, GeometryParams, GeometrySummaryVerbosity, Gradient, FillFlags, GraphicParams, GroundPlane, HiddenLine, Hilite, HSLColor, HSVConstants, HSVColor, ImageBufferFormat, ImageBuffer, isPowerOfTwo, nextHighestPowerOfTwo, ImageSourceFormat, isValidImageSourceFormat, ImageSource, EcefLocation, IModel, BentleyStatus, BentleyError, IModelStatus, BriefcaseStatus, DbResult, AuthStatus, RepositoryStatus, ChangeSetStatus, RpcInterfaceStatus, IModelError, ServerError, ServerTimeoutError, BackendError, ChannelConstraintError, NoContentError, IModelVersion, iTwinChannel, IpcWebSocketMessageType, IpcWebSocketMessage, IpcWebSocket, IpcWebSocketFrontend, IpcWebSocketBackend, IpcWebSocketTransport, IpcAppChannel, SolarLight, AmbientLight, HemisphereLights, FresnelSettings, LightSettings, LinePixels, EmptyLocalization, BaseLayerSettings, MapImagerySettings, MapSubLayerSettings, MapLayerSettings, BaseMapLayerSettings, MassPropertiesOperation, TextureMapUnits, ModelClipGroup, ModelClipGroups, nativeAppChannel, nativeAppNotify, InternetConnectivityStatus, OverriddenBy, OctEncodedNormal, OctEncodedNormalPair, QueryRowFormat, QueryOptionsBuilder, BlobOptionsBuilder, QueryBinder, DbRequestKind, DbResponseKind, DbResponseStatus, DbValueFormat, DbQueryError, PropertyMetaDataMap, ECSqlReader, PlanarClipMaskMode, PlanarClipMaskPriority, PlanarClipMaskSettings, ElementGeometryChange, ModelGeometryChanges, PlanProjectionSettings, Quantization, QParams2d, QPoint2d, QPoint2dList, QParams3d, QPoint3d, QPoint3dList, DefaultSupportedTypes, PolylineTypeFlags, PolylineFlags, PolylineData, MeshPolyline, MeshPolylineList, MeshEdge, MeshEdges, EdgeArgs, SilhouetteEdgeArgs, PolylineEdgeArgs, RenderMaterial, RenderSchedule, RenderTexture, RgbColor, RpcRoutingMap, RpcConfiguration, RpcDefaultConfiguration, RpcDirectProtocol, RpcDirectRequest, DevToolsStatsOptions, DevToolsRpcInterface, IModelNotFoundResponse, IModelReadRpcInterface, IModelTileRpcInterface, SnapshotIModelRpcInterface, TestRpcManager, WipRpcInterface, RpcInterface, RpcManager, SkyBoxImageType, SkyGradient, SkyBox, SkySphere, SkyCube, calculateSolarAngles, calculateSolarDirection, calculateSolarDirectionFromAngles, calculateSunriseOrSunset, SolarShadowSettings, SpatialClassifierInsideDisplay, SpatialClassifierOutsideDisplay, SpatialClassifierFlags, SpatialClassifier, SpatialClassifiers, SubCategoryAppearance, SubCategoryOverride, TerrainHeightOriginMode, TerrainSettings, TextureMapping, ThematicGradientMode, ThematicGradientColorScheme, ThematicGradientSettings, ThematicDisplaySensor, ThematicDisplaySensorSettings, ThematicDisplayMode, ThematicDisplay, TileContentSource, Tweens, Tween, Easing, Interpolation, TxnAction, GridOrientationType, ViewDetails, ViewDetails3d, RenderMode, ViewFlags, RpcResponseCacheControl, RpcProtocolEvent, RpcRequestStatus, RpcRequestEvent, RpcContentType, RpcEndpoint, WEB_RPC_CONSTANTS, RpcControlResponse, RpcPendingResponse, RpcNotFoundResponse, RpcControlChannel, RpcInvocation, MarshalingBinaryMarker, RpcSerializedValue, RpcMarshaling, RpcOperationPolicy, RpcOperation, RpcPendingQueue, RpcRequestFulfillment, RpcProtocol, REGISTRY, OPERATION, POLICY, INSTANCE, CURRENT_REQUEST, CURRENT_INVOCATION, RpcRegistry, ResponseLike, RpcRequest, initializeRpcRequest, RpcRoutingToken, RpcPushTransport, RpcPushService, RpcPushChannel, RpcPushSubscription, RpcPushConnection, BentleyCloudRpcConfiguration, BentleyCloudRpcManager, BentleyCloudRpcProtocol, RpcOpenAPIDescription, RpcMultipart, WebAppRpcProtocol, WebAppRpcRequest, B3dmHeader, CompositeTileHeader, GltfVersions, GltfV2ChunkTypes, GltfMeshMode, GltfDataType, GltfConstants, GltfBufferData, GltfBufferView, GltfHeader, I3dmHeader, ImdlFlags, CurrentImdlVersion, ImdlHeader, FeatureTableHeader, PntsHeader, TileFormat, isKnownTileFormat, tileFormatFromNumber, TileReadStatus, TileReadError, TileHeader, nextPoint3d64FromByteStream, TileOptions, parseTileTreeIdAndContentId, defaultTileOptions, getMaximumMajorTileFormatVersion, TreeFlags, iModelTileTreeIdToString, compareIModelTileTreeIds, ContentFlags, ContentIdProvider, bisectTileRange3d, bisectTileRange2d, computeChildTileRanges, computeChildTileProps, readTileContentDescription, computeTileChordTolerance, TileMetadataReader, WhiteOnWhiteReversalSettings */
|
|
92830
92890
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92831
92891
|
|
|
92832
92892
|
"use strict";
|
|
@@ -92914,6 +92974,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
92914
92974
|
|
|
92915
92975
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RealityDataFormat", function() { return _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__["RealityDataFormat"]; });
|
|
92916
92976
|
|
|
92977
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RealityDataSourceKey", function() { return _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__["RealityDataSourceKey"]; });
|
|
92978
|
+
|
|
92917
92979
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ContextRealityModelProps", function() { return _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__["ContextRealityModelProps"]; });
|
|
92918
92980
|
|
|
92919
92981
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ContextRealityModel", function() { return _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__["ContextRealityModel"]; });
|
|
@@ -113499,7 +113561,7 @@ class CheckpointConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_4_
|
|
|
113499
113561
|
const accessToken = await _IModelApp__WEBPACK_IMPORTED_MODULE_3__["IModelApp"].getAccessToken();
|
|
113500
113562
|
if (undefined === _IModelApp__WEBPACK_IMPORTED_MODULE_3__["IModelApp"].hubAccess)
|
|
113501
113563
|
throw new Error("Missing an implementation of FrontendHubAccess on IModelApp, it is required to open a remote iModel Connection. Please provide an implementation to the IModelApp.startup using IModelAppOptions.hubAccess.");
|
|
113502
|
-
const changeset =
|
|
113564
|
+
const changeset = await _IModelApp__WEBPACK_IMPORTED_MODULE_3__["IModelApp"].hubAccess.getChangesetFromVersion({ accessToken, iModelId, version });
|
|
113503
113565
|
const iModelRpcProps = { iTwinId, iModelId, changeset };
|
|
113504
113566
|
const openResponse = await this.callOpen(iModelRpcProps, routingContext);
|
|
113505
113567
|
const connection = new this(openResponse);
|
|
@@ -121791,34 +121853,33 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
121791
121853
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
121792
121854
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
121793
121855
|
*--------------------------------------------------------------------------------------------*/
|
|
121856
|
+
/** @packageDocumentation
|
|
121857
|
+
* @module Tiles
|
|
121858
|
+
*/
|
|
121794
121859
|
|
|
121795
121860
|
|
|
121796
121861
|
|
|
121797
121862
|
|
|
121798
121863
|
|
|
121799
121864
|
|
|
121800
|
-
/**
|
|
121865
|
+
/** Utility functions for RealityDataSource
|
|
121866
|
+
* @beta
|
|
121867
|
+
*/
|
|
121801
121868
|
var RealityDataSource;
|
|
121802
121869
|
(function (RealityDataSource) {
|
|
121803
|
-
/**
|
|
121804
|
-
|
|
121805
|
-
|
|
121806
|
-
|
|
121807
|
-
|
|
121808
|
-
|
|
121809
|
-
|
|
121810
|
-
function formatfromUrl(tilesetUrl) {
|
|
121811
|
-
let format = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataFormat"].ThreeDTile;
|
|
121812
|
-
if (tilesetUrl.includes(".opc"))
|
|
121813
|
-
format = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataFormat"].OPC;
|
|
121814
|
-
return format;
|
|
121815
|
-
}
|
|
121816
|
-
RealityDataSource.formatfromUrl = formatfromUrl;
|
|
121870
|
+
/**
|
|
121871
|
+
* Create a RealityDataSourceKey from a tilesetUrl.
|
|
121872
|
+
* @param tilesetUrl the reality data attachment url
|
|
121873
|
+
* @param inputProvider identify the RealityDataProvider if known, otherwise function will try to extract it from the tilesetUrl
|
|
121874
|
+
* @param inputFormat identify the RealityDataFormat if known, otherwise function will try to extract it from the tilesetUrl
|
|
121875
|
+
* @returns the RealityDataSourceKey that uniquely identify a reality data for a provider
|
|
121876
|
+
*/
|
|
121817
121877
|
function createKeyFromUrl(tilesetUrl, inputProvider, inputFormat) {
|
|
121818
|
-
let format = inputFormat ? inputFormat :
|
|
121878
|
+
let format = inputFormat ? inputFormat : _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataFormat"].fromUrl(tilesetUrl);
|
|
121819
121879
|
if (_tile_internal__WEBPACK_IMPORTED_MODULE_5__["CesiumIonAssetProvider"].isProviderUrl(tilesetUrl)) {
|
|
121820
|
-
const provider =
|
|
121821
|
-
|
|
121880
|
+
const provider = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataProvider"].CesiumIonAsset;
|
|
121881
|
+
// Keep url hidden and use a dummy id
|
|
121882
|
+
const cesiumIonAssetKey = { provider, format, id: _tile_internal__WEBPACK_IMPORTED_MODULE_5__["CesiumIonAssetProvider"].osmBuildingId };
|
|
121822
121883
|
return cesiumIonAssetKey;
|
|
121823
121884
|
}
|
|
121824
121885
|
// Try to extract realityDataId from URL and if not possible, use the url as the key
|
|
@@ -121835,6 +121896,7 @@ var RealityDataSource;
|
|
|
121835
121896
|
return urlKey;
|
|
121836
121897
|
}
|
|
121837
121898
|
RealityDataSource.createKeyFromUrl = createKeyFromUrl;
|
|
121899
|
+
/** @alpha - was used for a very specific case of point cloud (opc) attachment that should not be made public */
|
|
121838
121900
|
function createKeyFromBlobUrl(blobUrl, inputProvider, inputFormat) {
|
|
121839
121901
|
const info = _tile_internal__WEBPACK_IMPORTED_MODULE_5__["ContextShareProvider"].getInfoFromBlobUrl(blobUrl);
|
|
121840
121902
|
const format = inputFormat ? inputFormat : info.format;
|
|
@@ -121843,6 +121905,7 @@ var RealityDataSource;
|
|
|
121843
121905
|
return contextShareKey;
|
|
121844
121906
|
}
|
|
121845
121907
|
RealityDataSource.createKeyFromBlobUrl = createKeyFromBlobUrl;
|
|
121908
|
+
/** @alpha - OrbitGtBlobProps is alpha */
|
|
121846
121909
|
function createKeyFromOrbitGtBlobProps(orbitGtBlob, inputProvider, inputFormat) {
|
|
121847
121910
|
const format = inputFormat ? inputFormat : _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataFormat"].OPC;
|
|
121848
121911
|
if (orbitGtBlob.blobFileName && orbitGtBlob.blobFileName.toLowerCase().startsWith("http")) {
|
|
@@ -121856,6 +121919,7 @@ var RealityDataSource;
|
|
|
121856
121919
|
return { provider, format, id };
|
|
121857
121920
|
}
|
|
121858
121921
|
RealityDataSource.createKeyFromOrbitGtBlobProps = createKeyFromOrbitGtBlobProps;
|
|
121922
|
+
/** @alpha - OrbitGtBlobProps is alpha */
|
|
121859
121923
|
function createOrbitGtBlobPropsFromKey(rdSourceKey) {
|
|
121860
121924
|
if (rdSourceKey.provider !== _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataProvider"].OrbitGtBlob)
|
|
121861
121925
|
return undefined;
|
|
@@ -121881,11 +121945,11 @@ var RealityDataSource;
|
|
|
121881
121945
|
RealityDataSource.fromKey = fromKey;
|
|
121882
121946
|
})(RealityDataSource || (RealityDataSource = {}));
|
|
121883
121947
|
/** This class provides access to the reality data provider services.
|
|
121884
|
-
* It encapsulates access to a reality data
|
|
121948
|
+
* It encapsulates access to a reality data weiter it be from local access, http or ProjectWise Context Share.
|
|
121885
121949
|
* The key provided at the creation determines if this is ProjectWise Context Share reference.
|
|
121886
121950
|
* If not then it is considered local (ex: C:\temp\TileRoot.json) or plain http access (http://someserver.com/data/TileRoot.json)
|
|
121887
121951
|
* There is a one to one relationship between a reality data and the instances of present class.
|
|
121888
|
-
* @
|
|
121952
|
+
* @beta
|
|
121889
121953
|
*/
|
|
121890
121954
|
class RealityDataSourceImpl {
|
|
121891
121955
|
/** Construct a new reality data source.
|
|
@@ -121906,7 +121970,6 @@ class RealityDataSourceImpl {
|
|
|
121906
121970
|
}
|
|
121907
121971
|
/**
|
|
121908
121972
|
* Create an instance of this class from a source key and iTwin context/
|
|
121909
|
-
* @alpha
|
|
121910
121973
|
*/
|
|
121911
121974
|
static async createFromKey(sourceKey, iTwinId) {
|
|
121912
121975
|
const rdSource = new RealityDataSourceImpl({ sourceKey });
|
|
@@ -121921,11 +121984,10 @@ class RealityDataSourceImpl {
|
|
|
121921
121984
|
}
|
|
121922
121985
|
/** Return an instance of a RealityDataSource from a source key.
|
|
121923
121986
|
* There will aways be only one reality data connection for a corresponding reality data source key.
|
|
121924
|
-
* @alpha
|
|
121925
121987
|
*/
|
|
121926
121988
|
static async fromKey(rdSourceKey, iTwinId) {
|
|
121927
121989
|
// search to see if it was already created
|
|
121928
|
-
const rdSourceKeyString =
|
|
121990
|
+
const rdSourceKeyString = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataSourceKey"].convertToString(rdSourceKey);
|
|
121929
121991
|
let rdSource = RealityDataSourceImpl._realityDataSources.get(rdSourceKeyString);
|
|
121930
121992
|
if (rdSource)
|
|
121931
121993
|
return rdSource;
|
|
@@ -122037,8 +122099,13 @@ class RealityDataSourceImpl {
|
|
|
122037
122099
|
_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__["Logger"].logError(_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__["FrontendLoggerCategory"].RealityData, errMsg);
|
|
122038
122100
|
}
|
|
122039
122101
|
}
|
|
122040
|
-
else if (this.key.provider === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataProvider"].TilesetUrl
|
|
122102
|
+
else if (this.key.provider === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataProvider"].TilesetUrl) {
|
|
122103
|
+
this._tilesetUrl = this.key.id;
|
|
122104
|
+
}
|
|
122105
|
+
else if (this.key.provider === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__["RealityDataProvider"].CesiumIonAsset) {
|
|
122041
122106
|
this._tilesetUrl = this.key.id;
|
|
122107
|
+
if (this.key.id === _tile_internal__WEBPACK_IMPORTED_MODULE_5__["CesiumIonAssetProvider"].osmBuildingId)
|
|
122108
|
+
this._tilesetUrl = Object(_tile_internal__WEBPACK_IMPORTED_MODULE_5__["getCesiumOSMBuildingsUrl"])();
|
|
122042
122109
|
}
|
|
122043
122110
|
return this._tilesetUrl;
|
|
122044
122111
|
}
|
|
@@ -155085,10 +155152,16 @@ class IdMap {
|
|
|
155085
155152
|
if (material.key)
|
|
155086
155153
|
this.materials.set(material.key, material);
|
|
155087
155154
|
}
|
|
155088
|
-
/** Add a texture to this IdMap, given that it has a valid key. */
|
|
155089
|
-
addTexture(texture) {
|
|
155155
|
+
/** Add a texture to this IdMap, given that it has a valid string key. If specified, it will instead use the key parameter, which could also be a gradient symb. */
|
|
155156
|
+
addTexture(texture, key) {
|
|
155090
155157
|
Object(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["assert"])(texture instanceof _Texture__WEBPACK_IMPORTED_MODULE_33__["Texture"]);
|
|
155091
|
-
if (
|
|
155158
|
+
if (undefined !== key) {
|
|
155159
|
+
if ("string" === typeof key)
|
|
155160
|
+
this.textures.set(key, texture);
|
|
155161
|
+
else
|
|
155162
|
+
this.addGradient(key, texture);
|
|
155163
|
+
}
|
|
155164
|
+
else if (texture.key)
|
|
155092
155165
|
this.textures.set(texture.key, texture);
|
|
155093
155166
|
}
|
|
155094
155167
|
/** Add a texture to this IdMap using gradient symbology. */
|
|
@@ -155495,7 +155568,7 @@ class System extends _RenderSystem__WEBPACK_IMPORTED_MODULE_8__["RenderSystem"]
|
|
|
155495
155568
|
return undefined;
|
|
155496
155569
|
const texture = new _Texture__WEBPACK_IMPORTED_MODULE_33__["Texture"]({ handle, type, ownership: args.ownership });
|
|
155497
155570
|
if (texture && info)
|
|
155498
|
-
info.idMap.addTexture(texture);
|
|
155571
|
+
info.idMap.addTexture(texture, info.key);
|
|
155499
155572
|
return texture;
|
|
155500
155573
|
}
|
|
155501
155574
|
async createTextureFromSource(args) {
|
|
@@ -166807,6 +166880,7 @@ class CesiumIonAssetProvider {
|
|
|
166807
166880
|
return { id, key: cesiumParts[1] };
|
|
166808
166881
|
}
|
|
166809
166882
|
}
|
|
166883
|
+
CesiumIonAssetProvider.osmBuildingId = "OSMBuildings";
|
|
166810
166884
|
|
|
166811
166885
|
|
|
166812
166886
|
/***/ }),
|
|
@@ -171961,7 +172035,7 @@ class RealityModelTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__["Reali
|
|
|
171961
172035
|
// If we can get a valid connection from sourceKey, returns the tile tree
|
|
171962
172036
|
if (rdSource) {
|
|
171963
172037
|
// Serialize the reality data source key into a string to uniquely identify this tile tree
|
|
171964
|
-
const tileTreeId =
|
|
172038
|
+
const tileTreeId = rdSource.key.toString();
|
|
171965
172039
|
if (tileTreeId === undefined)
|
|
171966
172040
|
return undefined;
|
|
171967
172041
|
const props = await getTileTreeProps(rdSource, tilesetToDb, iModel);
|
|
@@ -172116,7 +172190,7 @@ class RealityTreeReference extends RealityModelTileTree.Reference {
|
|
|
172116
172190
|
return div;
|
|
172117
172191
|
}
|
|
172118
172192
|
addLogoCards(cards, _vp) {
|
|
172119
|
-
if (this._rdSourceKey.
|
|
172193
|
+
if (this._rdSourceKey.provider === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__["RealityDataProvider"].CesiumIonAsset) {
|
|
172120
172194
|
cards.appendChild(_IModelApp__WEBPACK_IMPORTED_MODULE_4__["IModelApp"].makeLogoCard({ heading: "OpenStreetMap", notice: `©<a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> ${_IModelApp__WEBPACK_IMPORTED_MODULE_4__["IModelApp"].localization.getLocalizedString("iModelJs:BackgroundMap:OpenStreetMapContributors")}` }));
|
|
172121
172195
|
}
|
|
172122
172196
|
}
|
|
@@ -195600,7 +195674,7 @@ SetupWalkCameraTool.iconSpec = "icon-camera-location";
|
|
|
195600
195674
|
/*! exports provided: name, version, description, main, module, typings, imodeljsSharedLibrary, license, scripts, repository, keywords, author, peerDependencies, //devDependencies, devDependencies, //dependencies, dependencies, nyc, eslintConfig, default */
|
|
195601
195675
|
/***/ (function(module) {
|
|
195602
195676
|
|
|
195603
|
-
module.exports = JSON.parse("{\"name\":\"@itwin/core-frontend\",\"version\":\"3.0.0-dev.
|
|
195677
|
+
module.exports = JSON.parse("{\"name\":\"@itwin/core-frontend\",\"version\":\"3.0.0-dev.148\",\"description\":\"iTwin.js frontend components\",\"main\":\"lib/cjs/core-frontend.js\",\"module\":\"lib/esm/core-frontend.js\",\"typings\":\"lib/cjs/core-frontend\",\"imodeljsSharedLibrary\":true,\"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\":\"tsc 1>&2 --outDir lib/cjs\",\"build:esm\":\"tsc 1>&2 --module ES2020 --outDir lib/esm\",\"clean\":\"rimraf lib .rush/temp/package-deps*.json\",\"copy:public\":\"cpx \\\"./src/public/**/*\\\" ./lib/public\",\"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\",\"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\":{\"@bentley/itwin-client\":\"workspace:^3.0.0-dev.148\",\"@itwin/appui-abstract\":\"workspace:^3.0.0-dev.148\",\"@itwin/core-bentley\":\"workspace:^3.0.0-dev.148\",\"@itwin/core-common\":\"workspace:^3.0.0-dev.148\",\"@itwin/core-geometry\":\"workspace:^3.0.0-dev.148\",\"@itwin/core-orbitgt\":\"workspace:^3.0.0-dev.148\",\"@itwin/core-quantity\":\"workspace:^3.0.0-dev.148\",\"@itwin/webgl-compatibility\":\"workspace:^3.0.0-dev.148\"},\"//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\":{\"@bentley/itwin-client\":\"workspace:*\",\"@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.1.4\",\"@types/chai-as-promised\":\"^7\",\"@types/mocha\":\"^8.2.2\",\"@types/node\":\"14.14.31\",\"@types/semver\":\"^5.5.0\",\"@types/sinon\":\"^9.0.0\",\"chai\":\"^4.1.2\",\"chai-as-promised\":\"^7\",\"cpx2\":\"^3.0.0\",\"eslint\":\"^7.11.0\",\"glob\":\"^7.1.2\",\"mocha\":\"^8.3.2\",\"nyc\":\"^15.1.0\",\"rimraf\":\"^3.0.2\",\"sinon\":\"^9.0.2\",\"source-map-loader\":\"^1.0.0\",\"typescript\":\"~4.4.0\",\"webpack\":\"4.42.0\"},\"//dependencies\":[\"NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API\",\"NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed\"],\"dependencies\":{\"@itwin/core-i18n\":\"workspace:*\",\"@itwin/core-telemetry\":\"workspace:*\",\"fuse.js\":\"^3.3.0\",\"semver\":\"^5.5.0\",\"wms-capabilities\":\"0.4.0\",\"xml-js\":\"~1.6.11\"},\"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\"]}]},\"overrides\":[{\"files\":[\"*.test.ts\",\"*.test.tsx\",\"**/test/**/*.ts\",\"**/test/**/*.tsx\"],\"rules\":{\"@itwin/no-internal-barrel-imports\":\"off\"}}]}}");
|
|
195604
195678
|
|
|
195605
195679
|
/***/ }),
|
|
195606
195680
|
|
|
@@ -197175,6 +197249,45 @@ class BSplineCurve3d extends BSplineCurve3dBase {
|
|
|
197175
197249
|
}
|
|
197176
197250
|
return curve;
|
|
197177
197251
|
}
|
|
197252
|
+
/** Create a smoothly closed B-spline curve with uniform knots.
|
|
197253
|
+
* Note that the curve does not start at the first pole.
|
|
197254
|
+
*/
|
|
197255
|
+
static createPeriodicUniformKnots(poles, order) {
|
|
197256
|
+
const numPoles = poles instanceof Float64Array ? poles.length / 3 : poles.length;
|
|
197257
|
+
if (order < 1 || numPoles < order)
|
|
197258
|
+
return undefined;
|
|
197259
|
+
const degree = order - 1;
|
|
197260
|
+
const numIntervals = numPoles;
|
|
197261
|
+
const knots = _KnotVector__WEBPACK_IMPORTED_MODULE_17__["KnotVector"].createUniformWrapped(numIntervals, degree, 0.0, 1.0);
|
|
197262
|
+
knots.wrappable = _KnotVector__WEBPACK_IMPORTED_MODULE_17__["BSplineWrapMode"].OpenByAddingControlPoints;
|
|
197263
|
+
// append degree wraparound poles
|
|
197264
|
+
const curve = new BSplineCurve3d(numPoles + degree, order, knots);
|
|
197265
|
+
if (poles instanceof Float64Array) {
|
|
197266
|
+
for (let i = 0; i < 3 * numPoles; i++)
|
|
197267
|
+
curve._bcurve.packedData[i] = poles[i];
|
|
197268
|
+
for (let i = 0; i < 3 * degree; i++)
|
|
197269
|
+
curve._bcurve.packedData[3 * numPoles + i] = poles[i];
|
|
197270
|
+
}
|
|
197271
|
+
else if (poles instanceof _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_4__["GrowableXYZArray"]) {
|
|
197272
|
+
curve._bcurve.packedData = poles.float64Data().slice(0, 3 * numPoles);
|
|
197273
|
+
for (let i = 0; i < 3 * degree; i++)
|
|
197274
|
+
curve._bcurve.packedData[3 * numPoles + i] = poles.float64Data()[i];
|
|
197275
|
+
}
|
|
197276
|
+
else {
|
|
197277
|
+
let i = 0;
|
|
197278
|
+
for (const p of poles) {
|
|
197279
|
+
curve._bcurve.packedData[i++] = p.x;
|
|
197280
|
+
curve._bcurve.packedData[i++] = p.y;
|
|
197281
|
+
curve._bcurve.packedData[i++] = p.z;
|
|
197282
|
+
}
|
|
197283
|
+
for (let j = 0; j < degree; j++) {
|
|
197284
|
+
curve._bcurve.packedData[i++] = poles[j].x;
|
|
197285
|
+
curve._bcurve.packedData[i++] = poles[j].y;
|
|
197286
|
+
curve._bcurve.packedData[i++] = poles[j].z;
|
|
197287
|
+
}
|
|
197288
|
+
}
|
|
197289
|
+
return curve;
|
|
197290
|
+
}
|
|
197178
197291
|
/**
|
|
197179
197292
|
* Create a C2 cubic B-spline curve that interpolates the given points and optional end tangents.
|
|
197180
197293
|
* @param options collection of points and end conditions.
|
|
@@ -201201,7 +201314,7 @@ class KnotVector {
|
|
|
201201
201314
|
/** Whether the bspline was created by adding poles into "closed" structure. This is used by serialize/deserialize to mark knotVector's that were converted from periodic style. */
|
|
201202
201315
|
get wrappable() { return this._wrapMode === undefined ? BSplineWrapMode.None : this._wrapMode; }
|
|
201203
201316
|
set wrappable(value) { this._wrapMode = value; }
|
|
201204
|
-
/** Return the number of bezier spans.
|
|
201317
|
+
/** Return the number of bezier spans. Note that this includes zero-length spans if there are repeated knots. */
|
|
201205
201318
|
get numSpans() { return this.rightKnotIndex - this.leftKnotIndex; }
|
|
201206
201319
|
/** copy degree and knots to a new KnotVector. */
|
|
201207
201320
|
clone() { return new KnotVector(this.knots, this.degree, this.wrappable); }
|
|
@@ -201292,7 +201405,7 @@ class KnotVector {
|
|
|
201292
201405
|
return knots;
|
|
201293
201406
|
}
|
|
201294
201407
|
/**
|
|
201295
|
-
* Create knot vector with
|
|
201408
|
+
* Create knot vector with wraparound knots at start and end, and uniform knots between.
|
|
201296
201409
|
* @param numInterval number of intervals in knot space. (NOT POLE COUNT)
|
|
201297
201410
|
* @param degree degree of polynomial
|
|
201298
201411
|
* @param a0 left knot value for active interval
|
|
@@ -226194,7 +226307,7 @@ class FrameBuilder {
|
|
|
226194
226307
|
else if (data instanceof _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_1__["InterpolationCurve3d"]) {
|
|
226195
226308
|
const point = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_10__["Point3d"].create();
|
|
226196
226309
|
for (let i = 0; this.savedVectorCount() < 2; i++) {
|
|
226197
|
-
if (i < data.options.fitPoints.length
|
|
226310
|
+
if (i < data.options.fitPoints.length) {
|
|
226198
226311
|
point.setFrom(data.options.fitPoints[i]);
|
|
226199
226312
|
this.announcePoint(point);
|
|
226200
226313
|
}
|
|
@@ -226202,7 +226315,14 @@ class FrameBuilder {
|
|
|
226202
226315
|
break;
|
|
226203
226316
|
}
|
|
226204
226317
|
}
|
|
226205
|
-
//
|
|
226318
|
+
else { // unimplemented CurvePrimitive type
|
|
226319
|
+
const frame = data.fractionToFrenetFrame(0.0);
|
|
226320
|
+
if (undefined !== frame) {
|
|
226321
|
+
this.announcePoint(frame.getOrigin());
|
|
226322
|
+
this.announceVector(frame.matrix.getColumn(0));
|
|
226323
|
+
this.announceVector(frame.matrix.getColumn(1));
|
|
226324
|
+
}
|
|
226325
|
+
}
|
|
226206
226326
|
}
|
|
226207
226327
|
else if (data instanceof _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_3__["CurveCollection"]) {
|
|
226208
226328
|
if (data.children)
|
|
@@ -273324,7 +273444,7 @@ class XYParitySearchContext {
|
|
|
273324
273444
|
"use strict";
|
|
273325
273445
|
__webpack_require__.r(__webpack_exports__);
|
|
273326
273446
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ITwinLocalization", function() { return ITwinLocalization; });
|
|
273327
|
-
/* harmony import */ var i18next__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.5.
|
|
273447
|
+
/* harmony import */ var i18next__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.5.3/node_modules/i18next/dist/esm/i18next.js");
|
|
273328
273448
|
/* harmony import */ var i18next_browser_languagedetector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! i18next-browser-languagedetector */ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.2/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js");
|
|
273329
273449
|
/* harmony import */ var i18next_xhr_backend__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! i18next-xhr-backend */ "../../common/temp/node_modules/.pnpm/i18next-xhr-backend@3.2.2/node_modules/i18next-xhr-backend/dist/esm/i18nextXHRBackend.js");
|
|
273330
273450
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
@@ -301809,7 +301929,7 @@ exports.executeBackendCallback = executeBackendCallback;
|
|
|
301809
301929
|
/*!*******************************************************************!*\
|
|
301810
301930
|
!*** D:/vsts_b/775/s/ui/appui-abstract/lib/esm/appui-abstract.js ***!
|
|
301811
301931
|
\*******************************************************************/
|
|
301812
|
-
/*! exports provided: GenericUiEvent, UiAdmin, UiItemsApplicationAction, UiItemsManager, BackstageItemType, isActionItem, isStageLauncher, BackstageItemUtilities, BackstageItemsManager, FunctionKey, SpecialKey, isArrowKey, StandardContentLayouts, DialogProperty, DialogButtonType, DialogButtonStyle, UiLayoutDataProvider, DialogLayoutDataProvider, SyncPropertiesChangeEvent, UiDataProvider, PropertyChangeStatus, BadgeType, ConditionalBooleanValue, ConditionalStringValue, RelativePosition, StageUsage, DisplayMessageType, MessageSeverity, PropertyDescriptionHelper, AlternateDateFormats, TimeDisplay, PropertyEditorParamTypes, isInputEditorSizeParams, isColorEditorParams, isIconListEditorParams, isButtonGroupEditorParams, isSuppressLabelEditorParams, isCustomFormattedNumberParams, PropertyRecord, StandardEditorNames, StandardTypeNames, PropertyValueFormat, BaseQuantityDescription, StatusBarSection, StatusBarLabelSide, isAbstractStatusBarActionItem, isAbstractStatusBarLabelItem, isAbstractStatusBarCustomItem, AbstractStatusBarItemUtilities, StatusBarItemsManager, ToolbarUsage, ToolbarOrientation, ToolbarItemUtilities, ToolbarItemsManager, getClassName, loggerCategory, isLetter, IconSpecUtilities, UiError, or, matchesStrictPrefix, matchesPrefix, matchesContiguousSubString, matchesSubString, matchesCamelCase, matchesWords, matchesFuzzy, matchesFuzzy2, createMatches, isPatternInWord, FuzzyScore, fuzzyScore, fuzzyScoreGracefulAggressive, fuzzyScoreGraceful, convertSimple2RegExpPattern, isLowerAsciiLetter, isUpperAsciiLetter, equalsIgnoreCase, startsWithIgnoreCase, AbstractZoneLocation, StagePanelLocation, StagePanelSection, WidgetState */
|
|
301932
|
+
/*! exports provided: GenericUiEvent, UiAdmin, UiItemsApplicationAction, UiItemsManager, BackstageItemType, isActionItem, isStageLauncher, BackstageItemUtilities, BackstageItemsManager, FunctionKey, SpecialKey, isArrowKey, StandardContentLayouts, DialogProperty, DialogButtonType, DialogButtonStyle, UiLayoutDataProvider, DialogLayoutDataProvider, SyncPropertiesChangeEvent, UiDataProvider, PropertyChangeStatus, BadgeType, ConditionalBooleanValue, ConditionalStringValue, RelativePosition, StageUsage, DisplayMessageType, MessageSeverity, PropertyDescriptionHelper, AlternateDateFormats, TimeDisplay, PropertyEditorParamTypes, isInputEditorSizeParams, isColorEditorParams, isIconListEditorParams, isButtonGroupEditorParams, isSuppressLabelEditorParams, isCustomFormattedNumberParams, PropertyRecord, StandardEditorNames, StandardTypeNames, PropertyValueFormat, BaseQuantityDescription, StatusBarSection, StatusBarLabelSide, isAbstractStatusBarActionItem, isAbstractStatusBarLabelItem, isAbstractStatusBarCustomItem, AbstractStatusBarItemUtilities, StatusBarItemsManager, ToolbarUsage, ToolbarOrientation, ToolbarItemUtilities, ToolbarItemsManager, getClassName, loggerCategory, isLetter, IconSpecUtilities, UiError, UiSyncEvent, UiEventDispatcher, UiEvent, or, matchesStrictPrefix, matchesPrefix, matchesContiguousSubString, matchesSubString, matchesCamelCase, matchesWords, matchesFuzzy, matchesFuzzy2, createMatches, isPatternInWord, FuzzyScore, fuzzyScore, fuzzyScoreGracefulAggressive, fuzzyScoreGraceful, convertSimple2RegExpPattern, isLowerAsciiLetter, isUpperAsciiLetter, equalsIgnoreCase, startsWithIgnoreCase, AbstractZoneLocation, StagePanelLocation, StagePanelSection, WidgetState */
|
|
301813
301933
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
301814
301934
|
|
|
301815
301935
|
"use strict";
|
|
@@ -301971,59 +302091,67 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
301971
302091
|
/* empty/unused harmony star reexport *//* harmony import */ var _appui_abstract_utils_UiError__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./appui-abstract/utils/UiError */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiError.js");
|
|
301972
302092
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UiError", function() { return _appui_abstract_utils_UiError__WEBPACK_IMPORTED_MODULE_38__["UiError"]; });
|
|
301973
302093
|
|
|
301974
|
-
/* harmony import */ var
|
|
301975
|
-
/*
|
|
301976
|
-
|
|
302094
|
+
/* harmony import */ var _appui_abstract_utils_UiEventDispatcher__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./appui-abstract/utils/UiEventDispatcher */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiEventDispatcher.js");
|
|
302095
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UiSyncEvent", function() { return _appui_abstract_utils_UiEventDispatcher__WEBPACK_IMPORTED_MODULE_39__["UiSyncEvent"]; });
|
|
302096
|
+
|
|
302097
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UiEventDispatcher", function() { return _appui_abstract_utils_UiEventDispatcher__WEBPACK_IMPORTED_MODULE_39__["UiEventDispatcher"]; });
|
|
302098
|
+
|
|
302099
|
+
/* harmony import */ var _appui_abstract_utils_UiEvent__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./appui-abstract/utils/UiEvent */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiEvent.js");
|
|
302100
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UiEvent", function() { return _appui_abstract_utils_UiEvent__WEBPACK_IMPORTED_MODULE_40__["UiEvent"]; });
|
|
302101
|
+
|
|
302102
|
+
/* harmony import */ var _appui_abstract_utils_filter_charCode__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./appui-abstract/utils/filter/charCode */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/filter/charCode.js");
|
|
302103
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./appui-abstract/utils/filter/filters */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/filter/filters.js");
|
|
302104
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "or", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["or"]; });
|
|
301977
302105
|
|
|
301978
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesStrictPrefix", function() { return
|
|
302106
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesStrictPrefix", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesStrictPrefix"]; });
|
|
301979
302107
|
|
|
301980
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesPrefix", function() { return
|
|
302108
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesPrefix", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesPrefix"]; });
|
|
301981
302109
|
|
|
301982
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesContiguousSubString", function() { return
|
|
302110
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesContiguousSubString", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesContiguousSubString"]; });
|
|
301983
302111
|
|
|
301984
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesSubString", function() { return
|
|
302112
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesSubString", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesSubString"]; });
|
|
301985
302113
|
|
|
301986
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesCamelCase", function() { return
|
|
302114
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesCamelCase", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesCamelCase"]; });
|
|
301987
302115
|
|
|
301988
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesWords", function() { return
|
|
302116
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesWords", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesWords"]; });
|
|
301989
302117
|
|
|
301990
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesFuzzy", function() { return
|
|
302118
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesFuzzy", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesFuzzy"]; });
|
|
301991
302119
|
|
|
301992
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesFuzzy2", function() { return
|
|
302120
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "matchesFuzzy2", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["matchesFuzzy2"]; });
|
|
301993
302121
|
|
|
301994
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createMatches", function() { return
|
|
302122
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createMatches", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["createMatches"]; });
|
|
301995
302123
|
|
|
301996
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isPatternInWord", function() { return
|
|
302124
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isPatternInWord", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["isPatternInWord"]; });
|
|
301997
302125
|
|
|
301998
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FuzzyScore", function() { return
|
|
302126
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FuzzyScore", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["FuzzyScore"]; });
|
|
301999
302127
|
|
|
302000
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScore", function() { return
|
|
302128
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScore", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["fuzzyScore"]; });
|
|
302001
302129
|
|
|
302002
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScoreGracefulAggressive", function() { return
|
|
302130
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScoreGracefulAggressive", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["fuzzyScoreGracefulAggressive"]; });
|
|
302003
302131
|
|
|
302004
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScoreGraceful", function() { return
|
|
302132
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fuzzyScoreGraceful", function() { return _appui_abstract_utils_filter_filters__WEBPACK_IMPORTED_MODULE_42__["fuzzyScoreGraceful"]; });
|
|
302005
302133
|
|
|
302006
|
-
/* harmony import */ var
|
|
302007
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "convertSimple2RegExpPattern", function() { return
|
|
302134
|
+
/* harmony import */ var _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./appui-abstract/utils/filter/strings */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/filter/strings.js");
|
|
302135
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "convertSimple2RegExpPattern", function() { return _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__["convertSimple2RegExpPattern"]; });
|
|
302008
302136
|
|
|
302009
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLowerAsciiLetter", function() { return
|
|
302137
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLowerAsciiLetter", function() { return _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__["isLowerAsciiLetter"]; });
|
|
302010
302138
|
|
|
302011
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isUpperAsciiLetter", function() { return
|
|
302139
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isUpperAsciiLetter", function() { return _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__["isUpperAsciiLetter"]; });
|
|
302012
302140
|
|
|
302013
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "equalsIgnoreCase", function() { return
|
|
302141
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "equalsIgnoreCase", function() { return _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__["equalsIgnoreCase"]; });
|
|
302014
302142
|
|
|
302015
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startsWithIgnoreCase", function() { return
|
|
302143
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startsWithIgnoreCase", function() { return _appui_abstract_utils_filter_strings__WEBPACK_IMPORTED_MODULE_43__["startsWithIgnoreCase"]; });
|
|
302016
302144
|
|
|
302017
|
-
/* harmony import */ var
|
|
302018
|
-
/* empty/unused harmony star reexport *//* harmony import */ var
|
|
302019
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AbstractZoneLocation", function() { return
|
|
302145
|
+
/* harmony import */ var _appui_abstract_widget_AbstractWidgetProps__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./appui-abstract/widget/AbstractWidgetProps */ "../../ui/appui-abstract/lib/esm/appui-abstract/widget/AbstractWidgetProps.js");
|
|
302146
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _appui_abstract_widget_StagePanel__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./appui-abstract/widget/StagePanel */ "../../ui/appui-abstract/lib/esm/appui-abstract/widget/StagePanel.js");
|
|
302147
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AbstractZoneLocation", function() { return _appui_abstract_widget_StagePanel__WEBPACK_IMPORTED_MODULE_45__["AbstractZoneLocation"]; });
|
|
302020
302148
|
|
|
302021
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StagePanelLocation", function() { return
|
|
302149
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StagePanelLocation", function() { return _appui_abstract_widget_StagePanel__WEBPACK_IMPORTED_MODULE_45__["StagePanelLocation"]; });
|
|
302022
302150
|
|
|
302023
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StagePanelSection", function() { return
|
|
302151
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StagePanelSection", function() { return _appui_abstract_widget_StagePanel__WEBPACK_IMPORTED_MODULE_45__["StagePanelSection"]; });
|
|
302024
302152
|
|
|
302025
|
-
/* harmony import */ var
|
|
302026
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WidgetState", function() { return
|
|
302153
|
+
/* harmony import */ var _appui_abstract_widget_WidgetState__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./appui-abstract/widget/WidgetState */ "../../ui/appui-abstract/lib/esm/appui-abstract/widget/WidgetState.js");
|
|
302154
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WidgetState", function() { return _appui_abstract_widget_WidgetState__WEBPACK_IMPORTED_MODULE_46__["WidgetState"]; });
|
|
302027
302155
|
|
|
302028
302156
|
/*---------------------------------------------------------------------------------------------
|
|
302029
302157
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -302075,6 +302203,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
302075
302203
|
|
|
302076
302204
|
|
|
302077
302205
|
|
|
302206
|
+
|
|
302207
|
+
|
|
302078
302208
|
|
|
302079
302209
|
|
|
302080
302210
|
|
|
@@ -304993,6 +305123,176 @@ class UiError extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["BentleyE
|
|
|
304993
305123
|
}
|
|
304994
305124
|
|
|
304995
305125
|
|
|
305126
|
+
/***/ }),
|
|
305127
|
+
|
|
305128
|
+
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiEvent.js":
|
|
305129
|
+
/*!*********************************************************************************!*\
|
|
305130
|
+
!*** D:/vsts_b/775/s/ui/appui-abstract/lib/esm/appui-abstract/utils/UiEvent.js ***!
|
|
305131
|
+
\*********************************************************************************/
|
|
305132
|
+
/*! exports provided: UiEvent */
|
|
305133
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
305134
|
+
|
|
305135
|
+
"use strict";
|
|
305136
|
+
__webpack_require__.r(__webpack_exports__);
|
|
305137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UiEvent", function() { return UiEvent; });
|
|
305138
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
305139
|
+
/*---------------------------------------------------------------------------------------------
|
|
305140
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
305141
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
305142
|
+
*--------------------------------------------------------------------------------------------*/
|
|
305143
|
+
/** @packageDocumentation
|
|
305144
|
+
* @module Utilities
|
|
305145
|
+
*/
|
|
305146
|
+
|
|
305147
|
+
/** iTwin.js UI UiEvent class is a subclass of BeEvent with argument type safety.
|
|
305148
|
+
* @public
|
|
305149
|
+
*/
|
|
305150
|
+
class UiEvent extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__["BeUiEvent"] {
|
|
305151
|
+
}
|
|
305152
|
+
|
|
305153
|
+
|
|
305154
|
+
/***/ }),
|
|
305155
|
+
|
|
305156
|
+
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiEventDispatcher.js":
|
|
305157
|
+
/*!*******************************************************************************************!*\
|
|
305158
|
+
!*** D:/vsts_b/775/s/ui/appui-abstract/lib/esm/appui-abstract/utils/UiEventDispatcher.js ***!
|
|
305159
|
+
\*******************************************************************************************/
|
|
305160
|
+
/*! exports provided: UiSyncEvent, UiEventDispatcher */
|
|
305161
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
305162
|
+
|
|
305163
|
+
"use strict";
|
|
305164
|
+
__webpack_require__.r(__webpack_exports__);
|
|
305165
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UiSyncEvent", function() { return UiSyncEvent; });
|
|
305166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UiEventDispatcher", function() { return UiEventDispatcher; });
|
|
305167
|
+
/* harmony import */ var _UiEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UiEvent */ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/UiEvent.js");
|
|
305168
|
+
/*---------------------------------------------------------------------------------------------
|
|
305169
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
305170
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
305171
|
+
*--------------------------------------------------------------------------------------------*/
|
|
305172
|
+
/** @packageDocumentation
|
|
305173
|
+
* @module Utilities
|
|
305174
|
+
*/
|
|
305175
|
+
// cSpell:ignore configurableui
|
|
305176
|
+
|
|
305177
|
+
/** UiSync Event class.
|
|
305178
|
+
* @public
|
|
305179
|
+
*/
|
|
305180
|
+
class UiSyncEvent extends _UiEvent__WEBPACK_IMPORTED_MODULE_0__["UiEvent"] {
|
|
305181
|
+
}
|
|
305182
|
+
/** This class is used to send eventIds to interested UI components so the component can determine if it needs
|
|
305183
|
+
* to refresh its display by calling setState on itself.
|
|
305184
|
+
* @public
|
|
305185
|
+
*/
|
|
305186
|
+
class UiEventDispatcher {
|
|
305187
|
+
constructor() {
|
|
305188
|
+
this._eventIds = new Set();
|
|
305189
|
+
this._eventIdAdded = false;
|
|
305190
|
+
this._uiSyncEvent = new UiSyncEvent();
|
|
305191
|
+
this._timeoutPeriod = 100;
|
|
305192
|
+
this._secondaryTimeoutPeriod = this._timeoutPeriod / 2;
|
|
305193
|
+
}
|
|
305194
|
+
/** @internal - used for testing only */
|
|
305195
|
+
/* istanbul ignore next */
|
|
305196
|
+
setTimeoutPeriod(period) {
|
|
305197
|
+
this._timeoutPeriod = period;
|
|
305198
|
+
this._secondaryTimeoutPeriod = Math.floor(this._timeoutPeriod / 2);
|
|
305199
|
+
if (this._secondaryTimeoutPeriod < 1)
|
|
305200
|
+
this._secondaryTimeoutPeriod = 1;
|
|
305201
|
+
if (this._syncEventTimerId) {
|
|
305202
|
+
window.clearTimeout(this._syncEventTimerId);
|
|
305203
|
+
this._syncEventTimerId = undefined;
|
|
305204
|
+
}
|
|
305205
|
+
if (this._eventIds)
|
|
305206
|
+
this._eventIds.clear();
|
|
305207
|
+
this._eventIdAdded = false;
|
|
305208
|
+
}
|
|
305209
|
+
/** The current timeout period */
|
|
305210
|
+
get timeoutPeriod() {
|
|
305211
|
+
return this._timeoutPeriod;
|
|
305212
|
+
}
|
|
305213
|
+
/** Return set of event ids that will be sent to listeners/. */
|
|
305214
|
+
get syncEventIds() {
|
|
305215
|
+
return this._eventIds;
|
|
305216
|
+
}
|
|
305217
|
+
/** Return UiSyncEvent so callers can register an event callback. */
|
|
305218
|
+
get onSyncUiEvent() {
|
|
305219
|
+
return this._uiSyncEvent;
|
|
305220
|
+
}
|
|
305221
|
+
/** Immediately trigger sync event processing. */
|
|
305222
|
+
dispatchImmediateSyncUiEvent(eventId) {
|
|
305223
|
+
const eventIds = new Set();
|
|
305224
|
+
eventIds.add(eventId.toLowerCase());
|
|
305225
|
+
this.onSyncUiEvent.emit({ eventIds });
|
|
305226
|
+
}
|
|
305227
|
+
/** Save eventId in Set for processing. */
|
|
305228
|
+
dispatchSyncUiEvent(eventId) {
|
|
305229
|
+
// istanbul ignore if
|
|
305230
|
+
if (0 === this._timeoutPeriod) {
|
|
305231
|
+
return;
|
|
305232
|
+
}
|
|
305233
|
+
this.syncEventIds.add(eventId.toLowerCase());
|
|
305234
|
+
if (!this._syncEventTimerId) { // if there is not a timer active, create one
|
|
305235
|
+
this._syncEventTimerId = window.setTimeout(() => { this.checkForAdditionalIds(); }, this._timeoutPeriod);
|
|
305236
|
+
}
|
|
305237
|
+
else {
|
|
305238
|
+
this._eventIdAdded = true;
|
|
305239
|
+
}
|
|
305240
|
+
}
|
|
305241
|
+
/** Save multiple eventIds in Set for processing. */
|
|
305242
|
+
dispatchSyncUiEvents(eventIds) {
|
|
305243
|
+
// istanbul ignore if
|
|
305244
|
+
if (0 === this._timeoutPeriod) {
|
|
305245
|
+
return;
|
|
305246
|
+
}
|
|
305247
|
+
eventIds.forEach((id) => this.syncEventIds.add(id.toLowerCase()));
|
|
305248
|
+
// istanbul ignore else
|
|
305249
|
+
if (!this._syncEventTimerId) { // if there is not a timer active, create one
|
|
305250
|
+
this._syncEventTimerId = window.setTimeout(() => { this.checkForAdditionalIds(); }, this._timeoutPeriod);
|
|
305251
|
+
}
|
|
305252
|
+
else {
|
|
305253
|
+
this._eventIdAdded = true;
|
|
305254
|
+
}
|
|
305255
|
+
}
|
|
305256
|
+
/** Trigger registered event processing when timer has expired and no addition eventId are added. */
|
|
305257
|
+
checkForAdditionalIds() {
|
|
305258
|
+
/* istanbul ignore else */
|
|
305259
|
+
if (!this._eventIdAdded) {
|
|
305260
|
+
// istanbul ignore else
|
|
305261
|
+
if (this._syncEventTimerId) {
|
|
305262
|
+
window.clearTimeout(this._syncEventTimerId);
|
|
305263
|
+
this._syncEventTimerId = undefined;
|
|
305264
|
+
}
|
|
305265
|
+
this._eventIdAdded = false;
|
|
305266
|
+
// istanbul ignore else
|
|
305267
|
+
if (this.syncEventIds.size > 0) {
|
|
305268
|
+
const eventIds = new Set();
|
|
305269
|
+
this.syncEventIds.forEach((value) => eventIds.add(value));
|
|
305270
|
+
this._eventIds.clear();
|
|
305271
|
+
this.onSyncUiEvent.emit({ eventIds });
|
|
305272
|
+
}
|
|
305273
|
+
return;
|
|
305274
|
+
}
|
|
305275
|
+
// istanbul ignore next
|
|
305276
|
+
if (this._syncEventTimerId) {
|
|
305277
|
+
window.clearTimeout(this._syncEventTimerId);
|
|
305278
|
+
this._syncEventTimerId = undefined;
|
|
305279
|
+
}
|
|
305280
|
+
// istanbul ignore next
|
|
305281
|
+
this._eventIdAdded = false;
|
|
305282
|
+
// if events have been added before the initial timer expired wait half that time to see if events are still being added.
|
|
305283
|
+
// istanbul ignore next
|
|
305284
|
+
this._syncEventTimerId = window.setTimeout(() => { this.checkForAdditionalIds(); }, this._secondaryTimeoutPeriod);
|
|
305285
|
+
}
|
|
305286
|
+
/** Checks to see if an eventId of interest is contained in the set of eventIds */
|
|
305287
|
+
hasEventOfInterest(eventIds, idsOfInterest) {
|
|
305288
|
+
/* istanbul ignore else */
|
|
305289
|
+
if ((idsOfInterest.length > 0) && idsOfInterest.some((value) => eventIds.has(value.toLowerCase())))
|
|
305290
|
+
return true;
|
|
305291
|
+
return false;
|
|
305292
|
+
}
|
|
305293
|
+
}
|
|
305294
|
+
|
|
305295
|
+
|
|
304996
305296
|
/***/ }),
|
|
304997
305297
|
|
|
304998
305298
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/callbacks.js":
|
|
@@ -307648,7 +307948,7 @@ class TestContext {
|
|
|
307648
307948
|
this.clientAccessToken = await (0, SideChannels_1.getClientAccessTokenFromBackend)();
|
|
307649
307949
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
307650
307950
|
await core_frontend_1.NoRenderApp.startup({
|
|
307651
|
-
applicationVersion: "3.0.0-dev.
|
|
307951
|
+
applicationVersion: "3.0.0-dev.148",
|
|
307652
307952
|
applicationId: this.settings.gprid,
|
|
307653
307953
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
307654
307954
|
hubAccess: new imodelhub_client_1.IModelHubFrontend(),
|