@itwin/rpcinterface-full-stack-tests 5.14.0-dev.2 → 5.14.0-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/bundled-tests.js +235 -76
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_cross-fetch_4_1_0_node_modules_cross-fetch_dist_browser-44272f.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_4_3_4__loaders_gl_core_4_3_4_node_modu-4c1fc9.bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -38725,6 +38725,8 @@ var DbResult;
|
|
|
38725
38725
|
DbResult[DbResult["BE_SQLITE_ERROR_SchemaUpgradeRecommended"] = 369098762] = "BE_SQLITE_ERROR_SchemaUpgradeRecommended";
|
|
38726
38726
|
/** schema update require data transform */
|
|
38727
38727
|
DbResult[DbResult["BE_SQLITE_ERROR_DataTransformRequired"] = 385875978] = "BE_SQLITE_ERROR_DataTransformRequired";
|
|
38728
|
+
/** schema update would destroy existing instances or property values */
|
|
38729
|
+
DbResult[DbResult["BE_SQLITE_ERROR_DataDeletionRequired"] = 402653194] = "BE_SQLITE_ERROR_DataDeletionRequired";
|
|
38728
38730
|
/** Db not open */
|
|
38729
38731
|
DbResult[DbResult["BE_SQLITE_ERROR_NOTOPEN"] = 16777217] = "BE_SQLITE_ERROR_NOTOPEN";
|
|
38730
38732
|
/** Error propagating changes during commit */
|
|
@@ -39277,6 +39279,7 @@ class BentleyError extends Error {
|
|
|
39277
39279
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_SEEK: return "BE_SQLITE_IOERR_SEEK";
|
|
39278
39280
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_DELETE_NOENT: return "BE_SQLITE_IOERR_DELETE_NOENT";
|
|
39279
39281
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_DataTransformRequired: return "Schema update require to transform data";
|
|
39282
|
+
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_DataDeletionRequired: return "Schema update would destroy existing data";
|
|
39280
39283
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_FileExists: return "File Exists";
|
|
39281
39284
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_AlreadyOpen: return "Already Open";
|
|
39282
39285
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_NoPropertyTable: return "No Property Table";
|
|
@@ -42486,6 +42489,122 @@ class PerfLogger {
|
|
|
42486
42489
|
}
|
|
42487
42490
|
|
|
42488
42491
|
|
|
42492
|
+
/***/ },
|
|
42493
|
+
|
|
42494
|
+
/***/ "../../core/bentley/lib/esm/ObservableMap.js"
|
|
42495
|
+
/*!***************************************************!*\
|
|
42496
|
+
!*** ../../core/bentley/lib/esm/ObservableMap.js ***!
|
|
42497
|
+
\***************************************************/
|
|
42498
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
42499
|
+
|
|
42500
|
+
"use strict";
|
|
42501
|
+
__webpack_require__.r(__webpack_exports__);
|
|
42502
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
42503
|
+
/* harmony export */ ObservableMap: () => (/* binding */ ObservableMap)
|
|
42504
|
+
/* harmony export */ });
|
|
42505
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../core/bentley/lib/esm/BeEvent.js");
|
|
42506
|
+
/*---------------------------------------------------------------------------------------------
|
|
42507
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
42508
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
42509
|
+
*--------------------------------------------------------------------------------------------*/
|
|
42510
|
+
/** @packageDocumentation
|
|
42511
|
+
* @module Collections
|
|
42512
|
+
*/
|
|
42513
|
+
|
|
42514
|
+
/** A standard [Map<K,V>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) that emits an event when its contents change.
|
|
42515
|
+
* @public
|
|
42516
|
+
*/
|
|
42517
|
+
class ObservableMap extends Map {
|
|
42518
|
+
/** @internal */
|
|
42519
|
+
get [Symbol.toStringTag]() { return "ObservableMap"; }
|
|
42520
|
+
/** Emitted after any change to the contents of this map. */
|
|
42521
|
+
onChanged = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
42522
|
+
/** Construct a new ObservableMap.
|
|
42523
|
+
* @param elements Optional elements with which to populate the new map.
|
|
42524
|
+
*/
|
|
42525
|
+
constructor(elements) {
|
|
42526
|
+
// IMPORTANT: do not pass `elements` to `super()`. It will invoke `set` which is overridden to invoke `onChanged.raiseEvent`, but
|
|
42527
|
+
// `onChanged` is not initialized until `super()` returns.
|
|
42528
|
+
super();
|
|
42529
|
+
if (elements)
|
|
42530
|
+
this.setAll(elements);
|
|
42531
|
+
}
|
|
42532
|
+
/** Invokes [Map.set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/set), raising
|
|
42533
|
+
* the [[onChanged]] event unless `key` is already present with the same `value`.
|
|
42534
|
+
*/
|
|
42535
|
+
set(key, value) {
|
|
42536
|
+
const valueChanged = !this.has(key) || !Object.is(this.get(key), value);
|
|
42537
|
+
if (valueChanged)
|
|
42538
|
+
super.set(key, value);
|
|
42539
|
+
if (valueChanged) {
|
|
42540
|
+
this.onChanged.raiseEvent();
|
|
42541
|
+
}
|
|
42542
|
+
return this;
|
|
42543
|
+
}
|
|
42544
|
+
/** Invokes [Map.delete](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/delete), raising
|
|
42545
|
+
* the [[onChanged]] event if the key was removed from the map.
|
|
42546
|
+
*/
|
|
42547
|
+
delete(key) {
|
|
42548
|
+
const ret = super.delete(key);
|
|
42549
|
+
if (ret) {
|
|
42550
|
+
this.onChanged.raiseEvent();
|
|
42551
|
+
}
|
|
42552
|
+
return ret;
|
|
42553
|
+
}
|
|
42554
|
+
/** If this map is not already empty, invokes [Map.clear](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/clear)
|
|
42555
|
+
* and raises the [[onChanged]] event.
|
|
42556
|
+
*/
|
|
42557
|
+
clear() {
|
|
42558
|
+
if (0 !== this.size) {
|
|
42559
|
+
super.clear();
|
|
42560
|
+
this.onChanged.raiseEvent();
|
|
42561
|
+
}
|
|
42562
|
+
}
|
|
42563
|
+
/** Add or update multiple entries in the map, raising [[onChanged]] only once after all items are set, if the contents of
|
|
42564
|
+
* the map changed as a result.
|
|
42565
|
+
* This is more efficient than calling [[set]] in a loop when listeners need not be notified of each individual change.
|
|
42566
|
+
* @param items The entries to add or update.
|
|
42567
|
+
*/
|
|
42568
|
+
setAll(items) {
|
|
42569
|
+
let changed = false;
|
|
42570
|
+
try {
|
|
42571
|
+
for (const [key, value] of items) {
|
|
42572
|
+
if (!this.has(key) || !Object.is(this.get(key), value)) {
|
|
42573
|
+
super.set(key, value);
|
|
42574
|
+
changed = true;
|
|
42575
|
+
}
|
|
42576
|
+
}
|
|
42577
|
+
}
|
|
42578
|
+
finally {
|
|
42579
|
+
if (changed) {
|
|
42580
|
+
this.onChanged.raiseEvent();
|
|
42581
|
+
}
|
|
42582
|
+
}
|
|
42583
|
+
}
|
|
42584
|
+
/** Delete multiple keys from the map, raising [[onChanged]] only once after all keys are deleted.
|
|
42585
|
+
* This is more efficient than calling [[delete]] in a loop when listeners need not be notified of each individual deletion.
|
|
42586
|
+
* @param keys The keys to delete.
|
|
42587
|
+
* @returns The number of keys that were actually deleted (i.e., were present in the map).
|
|
42588
|
+
*/
|
|
42589
|
+
deleteAll(keys) {
|
|
42590
|
+
const prevSize = this.size;
|
|
42591
|
+
let deletedAny = false;
|
|
42592
|
+
try {
|
|
42593
|
+
for (const key of keys) {
|
|
42594
|
+
if (super.delete(key))
|
|
42595
|
+
deletedAny = true;
|
|
42596
|
+
}
|
|
42597
|
+
}
|
|
42598
|
+
finally {
|
|
42599
|
+
if (deletedAny) {
|
|
42600
|
+
this.onChanged.raiseEvent();
|
|
42601
|
+
}
|
|
42602
|
+
}
|
|
42603
|
+
return prevSize - this.size;
|
|
42604
|
+
}
|
|
42605
|
+
}
|
|
42606
|
+
|
|
42607
|
+
|
|
42489
42608
|
/***/ },
|
|
42490
42609
|
|
|
42491
42610
|
/***/ "../../core/bentley/lib/esm/ObservableSet.js"
|
|
@@ -42512,6 +42631,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42512
42631
|
* @public
|
|
42513
42632
|
*/
|
|
42514
42633
|
class ObservableSet extends Set {
|
|
42634
|
+
/** @internal */
|
|
42635
|
+
get [Symbol.toStringTag]() { return "ObservableSet"; }
|
|
42515
42636
|
/** Emitted after `item` is added to this set. */
|
|
42516
42637
|
onAdded = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
42517
42638
|
/** Emitted after `item` is deleted from this set. */
|
|
@@ -42522,27 +42643,39 @@ class ObservableSet extends Set {
|
|
|
42522
42643
|
onBatchAdded = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
42523
42644
|
/** Emitted after multiple items are deleted from this set via [[deleteAll]]. */
|
|
42524
42645
|
onBatchDeleted = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
42646
|
+
/** Emitted after any change to the contents of this set. */
|
|
42647
|
+
onChanged = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
42525
42648
|
/** Construct a new ObservableSet.
|
|
42526
42649
|
* @param elements Optional elements with which to populate the new set.
|
|
42527
42650
|
*/
|
|
42528
42651
|
constructor(elements) {
|
|
42529
|
-
//
|
|
42530
|
-
super(
|
|
42531
|
-
|
|
42532
|
-
|
|
42533
|
-
|
|
42534
|
-
|
|
42535
|
-
|
|
42536
|
-
|
|
42537
|
-
|
|
42652
|
+
// IMPORTANT: do not pass `elements` to `super()`. It will invoke `add` which is overridden to invoke `onAdded.raiseEvent`, but
|
|
42653
|
+
// `onAdded` is not initialized until `super()` returns.
|
|
42654
|
+
super();
|
|
42655
|
+
if (elements)
|
|
42656
|
+
this.addAll(elements);
|
|
42657
|
+
}
|
|
42658
|
+
/** Invokes [Set.add](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/add), raising
|
|
42659
|
+
* the [[onAdded]] event if the item was not already present in the set.
|
|
42660
|
+
*/
|
|
42661
|
+
add(item) {
|
|
42662
|
+
const prevSize = this.size;
|
|
42663
|
+
const ret = super.add(item);
|
|
42664
|
+
if (this.size !== prevSize) {
|
|
42665
|
+
this.onAdded.raiseEvent(item);
|
|
42666
|
+
this.onChanged.raiseEvent();
|
|
42667
|
+
}
|
|
42668
|
+
return ret;
|
|
42538
42669
|
}
|
|
42539
42670
|
/** Invokes [Set.delete](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/delete), raising
|
|
42540
42671
|
* the [[onDeleted]] event if the item was removed from the set.
|
|
42541
42672
|
*/
|
|
42542
42673
|
delete(item) {
|
|
42543
42674
|
const ret = super.delete(item);
|
|
42544
|
-
if (ret)
|
|
42675
|
+
if (ret) {
|
|
42545
42676
|
this.onDeleted.raiseEvent(item);
|
|
42677
|
+
this.onChanged.raiseEvent();
|
|
42678
|
+
}
|
|
42546
42679
|
return ret;
|
|
42547
42680
|
}
|
|
42548
42681
|
/** If this set is not already empty, invokes [Set.clear](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/clear)
|
|
@@ -42552,6 +42685,7 @@ class ObservableSet extends Set {
|
|
|
42552
42685
|
if (0 !== this.size) {
|
|
42553
42686
|
super.clear();
|
|
42554
42687
|
this.onCleared.raiseEvent();
|
|
42688
|
+
this.onChanged.raiseEvent();
|
|
42555
42689
|
}
|
|
42556
42690
|
}
|
|
42557
42691
|
/** Add multiple items to the set, raising [[onBatchAdded]] only once after all items are added.
|
|
@@ -42561,10 +42695,21 @@ class ObservableSet extends Set {
|
|
|
42561
42695
|
*/
|
|
42562
42696
|
addAll(items) {
|
|
42563
42697
|
const prevSize = this.size;
|
|
42564
|
-
|
|
42565
|
-
|
|
42566
|
-
|
|
42567
|
-
|
|
42698
|
+
let addedAny = false;
|
|
42699
|
+
try {
|
|
42700
|
+
for (const item of items) {
|
|
42701
|
+
const prevSetSize = this.size;
|
|
42702
|
+
super.add(item);
|
|
42703
|
+
if (this.size !== prevSetSize)
|
|
42704
|
+
addedAny = true;
|
|
42705
|
+
}
|
|
42706
|
+
}
|
|
42707
|
+
finally {
|
|
42708
|
+
if (addedAny) {
|
|
42709
|
+
this.onBatchAdded.raiseEvent();
|
|
42710
|
+
this.onChanged.raiseEvent();
|
|
42711
|
+
}
|
|
42712
|
+
}
|
|
42568
42713
|
return this.size - prevSize;
|
|
42569
42714
|
}
|
|
42570
42715
|
/** Delete multiple items from the set, raising [[onBatchDeleted]] only once after all items are deleted.
|
|
@@ -42574,10 +42719,21 @@ class ObservableSet extends Set {
|
|
|
42574
42719
|
*/
|
|
42575
42720
|
deleteAll(items) {
|
|
42576
42721
|
const prevSize = this.size;
|
|
42577
|
-
|
|
42578
|
-
|
|
42579
|
-
|
|
42580
|
-
|
|
42722
|
+
let deletedAny = false;
|
|
42723
|
+
try {
|
|
42724
|
+
for (const item of items) {
|
|
42725
|
+
const prevSetSize = this.size;
|
|
42726
|
+
super.delete(item);
|
|
42727
|
+
if (this.size !== prevSetSize)
|
|
42728
|
+
deletedAny = true;
|
|
42729
|
+
}
|
|
42730
|
+
}
|
|
42731
|
+
finally {
|
|
42732
|
+
if (deletedAny) {
|
|
42733
|
+
this.onBatchDeleted.raiseEvent();
|
|
42734
|
+
this.onChanged.raiseEvent();
|
|
42735
|
+
}
|
|
42736
|
+
}
|
|
42581
42737
|
return prevSize - this.size;
|
|
42582
42738
|
}
|
|
42583
42739
|
}
|
|
@@ -44999,11 +45155,11 @@ class YieldManager {
|
|
|
44999
45155
|
"use strict";
|
|
45000
45156
|
__webpack_require__.r(__webpack_exports__);
|
|
45001
45157
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
45002
|
-
/* harmony export */ AbandonedError: () => (/* reexport safe */
|
|
45003
|
-
/* harmony export */ BeDuration: () => (/* reexport safe */
|
|
45158
|
+
/* harmony export */ AbandonedError: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_22__.AbandonedError),
|
|
45159
|
+
/* harmony export */ BeDuration: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_30__.BeDuration),
|
|
45004
45160
|
/* harmony export */ BeEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
|
|
45005
45161
|
/* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
45006
|
-
/* harmony export */ BeTimePoint: () => (/* reexport safe */
|
|
45162
|
+
/* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_30__.BeTimePoint),
|
|
45007
45163
|
/* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
45008
45164
|
/* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
|
|
45009
45165
|
/* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
|
|
@@ -45014,15 +45170,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45014
45170
|
/* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
45015
45171
|
/* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
45016
45172
|
/* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
45017
|
-
/* harmony export */ DbChangeStage: () => (/* reexport safe */
|
|
45018
|
-
/* harmony export */ DbConflictCause: () => (/* reexport safe */
|
|
45019
|
-
/* harmony export */ DbConflictResolution: () => (/* reexport safe */
|
|
45173
|
+
/* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__.DbChangeStage),
|
|
45174
|
+
/* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__.DbConflictCause),
|
|
45175
|
+
/* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__.DbConflictResolution),
|
|
45020
45176
|
/* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
45021
45177
|
/* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
45022
|
-
/* harmony export */ DbValueType: () => (/* reexport safe */
|
|
45178
|
+
/* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__.DbValueType),
|
|
45023
45179
|
/* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
45024
45180
|
/* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
45025
|
-
/* harmony export */ DuplicatePolicy: () => (/* reexport safe */
|
|
45181
|
+
/* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_28__.DuplicatePolicy),
|
|
45026
45182
|
/* harmony export */ Entry: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_19__.Entry),
|
|
45027
45183
|
/* harmony export */ ErrorCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
|
|
45028
45184
|
/* harmony export */ GeoServiceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
|
|
@@ -45041,39 +45197,40 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45041
45197
|
/* harmony export */ LogLevel: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_18__.LogLevel),
|
|
45042
45198
|
/* harmony export */ Logger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_18__.Logger),
|
|
45043
45199
|
/* harmony export */ MutableCompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
|
|
45044
|
-
/* harmony export */
|
|
45045
|
-
/* harmony export */
|
|
45200
|
+
/* harmony export */ ObservableMap: () => (/* reexport safe */ _ObservableMap__WEBPACK_IMPORTED_MODULE_20__.ObservableMap),
|
|
45201
|
+
/* harmony export */ ObservableSet: () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_21__.ObservableSet),
|
|
45202
|
+
/* harmony export */ OneAtATimeAction: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_22__.OneAtATimeAction),
|
|
45046
45203
|
/* harmony export */ OpenMode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
|
|
45047
45204
|
/* harmony export */ OrderedId64Array: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
|
|
45048
|
-
/* harmony export */ OrderedId64Iterable: () => (/* reexport safe */
|
|
45049
|
-
/* harmony export */ OrderedSet: () => (/* reexport safe */
|
|
45205
|
+
/* harmony export */ OrderedId64Iterable: () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_23__.OrderedId64Iterable),
|
|
45206
|
+
/* harmony export */ OrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_24__.OrderedSet),
|
|
45050
45207
|
/* harmony export */ PerfLogger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_18__.PerfLogger),
|
|
45051
|
-
/* harmony export */ PriorityQueue: () => (/* reexport safe */
|
|
45052
|
-
/* harmony export */ ProcessDetector: () => (/* reexport safe */
|
|
45053
|
-
/* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */
|
|
45054
|
-
/* harmony export */ ReadonlySortedArray: () => (/* reexport safe */
|
|
45208
|
+
/* harmony export */ PriorityQueue: () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_26__.PriorityQueue),
|
|
45209
|
+
/* harmony export */ ProcessDetector: () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_27__.ProcessDetector),
|
|
45210
|
+
/* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_24__.ReadonlyOrderedSet),
|
|
45211
|
+
/* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_28__.ReadonlySortedArray),
|
|
45055
45212
|
/* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
45056
|
-
/* harmony export */ RepositoryStatus: () => (/* reexport safe */
|
|
45213
|
+
/* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__.RepositoryStatus),
|
|
45057
45214
|
/* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
45058
|
-
/* harmony export */ SortedArray: () => (/* reexport safe */
|
|
45059
|
-
/* harmony export */ SpanKind: () => (/* reexport safe */
|
|
45215
|
+
/* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_28__.SortedArray),
|
|
45216
|
+
/* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_31__.SpanKind),
|
|
45060
45217
|
/* harmony export */ StatusCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
|
|
45061
|
-
/* harmony export */ StopWatch: () => (/* reexport safe */
|
|
45218
|
+
/* harmony export */ StopWatch: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_30__.StopWatch),
|
|
45062
45219
|
/* harmony export */ SuccessCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
|
|
45063
|
-
/* harmony export */ Tracing: () => (/* reexport safe */
|
|
45220
|
+
/* harmony export */ Tracing: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_31__.Tracing),
|
|
45064
45221
|
/* harmony export */ TransientIdSequence: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_14__.TransientIdSequence),
|
|
45065
|
-
/* harmony export */ TupleKeyedMap: () => (/* reexport safe */
|
|
45066
|
-
/* harmony export */ TypedArrayBuilder: () => (/* reexport safe */
|
|
45067
|
-
/* harmony export */ Uint16ArrayBuilder: () => (/* reexport safe */
|
|
45068
|
-
/* harmony export */ Uint32ArrayBuilder: () => (/* reexport safe */
|
|
45069
|
-
/* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */
|
|
45070
|
-
/* harmony export */ UintArrayBuilder: () => (/* reexport safe */
|
|
45071
|
-
/* harmony export */ UnexpectedErrors: () => (/* reexport safe */
|
|
45072
|
-
/* harmony export */ YieldManager: () => (/* reexport safe */
|
|
45222
|
+
/* harmony export */ TupleKeyedMap: () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_32__.TupleKeyedMap),
|
|
45223
|
+
/* harmony export */ TypedArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__.TypedArrayBuilder),
|
|
45224
|
+
/* harmony export */ Uint16ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__.Uint16ArrayBuilder),
|
|
45225
|
+
/* harmony export */ Uint32ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__.Uint32ArrayBuilder),
|
|
45226
|
+
/* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__.Uint8ArrayBuilder),
|
|
45227
|
+
/* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__.UintArrayBuilder),
|
|
45228
|
+
/* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_34__.UnexpectedErrors),
|
|
45229
|
+
/* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_37__.YieldManager),
|
|
45073
45230
|
/* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
45074
|
-
/* harmony export */ asInstanceOf: () => (/* reexport safe */
|
|
45231
|
+
/* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_36__.asInstanceOf),
|
|
45075
45232
|
/* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
45076
|
-
/* harmony export */ base64StringToUint8Array: () => (/* reexport safe */
|
|
45233
|
+
/* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_29__.base64StringToUint8Array),
|
|
45077
45234
|
/* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
|
|
45078
45235
|
/* harmony export */ compareBooleans: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
|
|
45079
45236
|
/* harmony export */ compareBooleansOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
|
|
@@ -45091,16 +45248,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45091
45248
|
/* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
|
|
45092
45249
|
/* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
|
|
45093
45250
|
/* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
45094
|
-
/* harmony export */ isInstanceOf: () => (/* reexport safe */
|
|
45251
|
+
/* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_36__.isInstanceOf),
|
|
45095
45252
|
/* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
45096
45253
|
/* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
45097
|
-
/* harmony export */ lowerBound: () => (/* reexport safe */
|
|
45098
|
-
/* harmony export */ omit: () => (/* reexport safe */
|
|
45099
|
-
/* harmony export */ partitionArray: () => (/* reexport safe */
|
|
45100
|
-
/* harmony export */ shallowClone: () => (/* reexport safe */
|
|
45254
|
+
/* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_28__.lowerBound),
|
|
45255
|
+
/* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_36__.omit),
|
|
45256
|
+
/* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_25__.partitionArray),
|
|
45257
|
+
/* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_28__.shallowClone),
|
|
45101
45258
|
/* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
45102
|
-
/* harmony export */ utf8ToString: () => (/* reexport safe */
|
|
45103
|
-
/* harmony export */ wrapTimerCallback: () => (/* reexport safe */
|
|
45259
|
+
/* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_29__.utf8ToString),
|
|
45260
|
+
/* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_35__.wrapTimerCallback)
|
|
45104
45261
|
/* harmony export */ });
|
|
45105
45262
|
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../../core/bentley/lib/esm/AccessToken.js");
|
|
45106
45263
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../../core/bentley/lib/esm/Assert.js");
|
|
@@ -45122,24 +45279,25 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45122
45279
|
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./JsonUtils */ "../../core/bentley/lib/esm/JsonUtils.js");
|
|
45123
45280
|
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Logger */ "../../core/bentley/lib/esm/Logger.js");
|
|
45124
45281
|
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./LRUMap */ "../../core/bentley/lib/esm/LRUMap.js");
|
|
45125
|
-
/* harmony import */ var
|
|
45126
|
-
/* harmony import */ var
|
|
45127
|
-
/* harmony import */ var
|
|
45128
|
-
/* harmony import */ var
|
|
45129
|
-
/* harmony import */ var
|
|
45130
|
-
/* harmony import */ var
|
|
45131
|
-
/* harmony import */ var
|
|
45132
|
-
/* harmony import */ var
|
|
45133
|
-
/* harmony import */ var
|
|
45134
|
-
/* harmony import */ var
|
|
45135
|
-
/* harmony import */ var
|
|
45136
|
-
/* harmony import */ var
|
|
45137
|
-
/* harmony import */ var
|
|
45138
|
-
/* harmony import */ var
|
|
45139
|
-
/* harmony import */ var
|
|
45140
|
-
/* harmony import */ var
|
|
45141
|
-
/* harmony import */ var
|
|
45142
|
-
/* harmony import */ var
|
|
45282
|
+
/* harmony import */ var _ObservableMap__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ObservableMap */ "../../core/bentley/lib/esm/ObservableMap.js");
|
|
45283
|
+
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ObservableSet */ "../../core/bentley/lib/esm/ObservableSet.js");
|
|
45284
|
+
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./OneAtATimeAction */ "../../core/bentley/lib/esm/OneAtATimeAction.js");
|
|
45285
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../core/bentley/lib/esm/OrderedId64Iterable.js");
|
|
45286
|
+
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./OrderedSet */ "../../core/bentley/lib/esm/OrderedSet.js");
|
|
45287
|
+
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./partitionArray */ "../../core/bentley/lib/esm/partitionArray.js");
|
|
45288
|
+
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./PriorityQueue */ "../../core/bentley/lib/esm/PriorityQueue.js");
|
|
45289
|
+
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ProcessDetector */ "../../core/bentley/lib/esm/ProcessDetector.js");
|
|
45290
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./SortedArray */ "../../core/bentley/lib/esm/SortedArray.js");
|
|
45291
|
+
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./StringUtils */ "../../core/bentley/lib/esm/StringUtils.js");
|
|
45292
|
+
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./Time */ "../../core/bentley/lib/esm/Time.js");
|
|
45293
|
+
/* harmony import */ var _Tracing__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./Tracing */ "../../core/bentley/lib/esm/Tracing.js");
|
|
45294
|
+
/* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TupleKeyedMap */ "../../core/bentley/lib/esm/TupleKeyedMap.js");
|
|
45295
|
+
/* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../../core/bentley/lib/esm/TypedArrayBuilder.js");
|
|
45296
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../core/bentley/lib/esm/UnexpectedErrors.js");
|
|
45297
|
+
/* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityFunctions */ "../../core/bentley/lib/esm/UtilityFunctions.js");
|
|
45298
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./UtilityTypes */ "../../core/bentley/lib/esm/UtilityTypes.js");
|
|
45299
|
+
/* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./YieldManager */ "../../core/bentley/lib/esm/YieldManager.js");
|
|
45300
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/bentley/lib/esm/internal/cross-package.js");
|
|
45143
45301
|
/*---------------------------------------------------------------------------------------------
|
|
45144
45302
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
45145
45303
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -45179,6 +45337,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45179
45337
|
|
|
45180
45338
|
|
|
45181
45339
|
|
|
45340
|
+
|
|
45182
45341
|
|
|
45183
45342
|
|
|
45184
45343
|
// Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.
|
|
@@ -342988,7 +343147,7 @@ class TestContext {
|
|
|
342988
343147
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
342989
343148
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
342990
343149
|
await core_frontend_1.NoRenderApp.startup({
|
|
342991
|
-
applicationVersion: "5.14.0-dev.
|
|
343150
|
+
applicationVersion: "5.14.0-dev.4",
|
|
342992
343151
|
applicationId: this.settings.gprid,
|
|
342993
343152
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
342994
343153
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -369347,7 +369506,7 @@ class WMS {
|
|
|
369347
369506
|
(module) {
|
|
369348
369507
|
|
|
369349
369508
|
"use strict";
|
|
369350
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.14.0-dev.
|
|
369509
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.14.0-dev.4","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s build:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run build:test-worker && vitest --run","cover":"npm run build:test-worker && vitest --run","build:test-worker":"vite build --config ./src/test/worker/vite.config.mts 1>&2","build:workers":"rimraf lib/workers/webpack && vite build --config ./src/workers/ImdlParser/vite.config.mts 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.11","@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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/node":"~20.17.0","@types/sinon":"^17.0.2","@vitest/browser-playwright":"^4.1.10","@vitest/coverage-v8":"^4.1.10","cpx2":"^8.0.0","eslint":"^9.31.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","typescript":"~5.6.2","vite":"^6.4.3","vitest":"^4.1.10","vite-plugin-static-copy":"2.2.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/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.6.0"}}');
|
|
369351
369510
|
|
|
369352
369511
|
/***/ },
|
|
369353
369512
|
|