@itwin/core-i18n 5.9.0-dev.1 → 5.9.0-dev.10

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/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  # Change Log - @itwin/core-i18n
2
2
 
3
- This log was last generated on Tue, 24 Mar 2026 14:30:44 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 16 Apr 2026 11:06:21 GMT and should not be manually modified.
4
+
5
+ ## 5.8.2
6
+ Thu, 16 Apr 2026 11:05:01 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.8.1
11
+ Fri, 10 Apr 2026 13:02:00 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.8.0
16
+ Thu, 02 Apr 2026 18:19:33 GMT
17
+
18
+ _Version update only_
4
19
 
5
20
  ## 5.7.3
6
21
  Tue, 24 Mar 2026 14:29:17 GMT
@@ -17411,7 +17411,9 @@ __webpack_require__.r(__webpack_exports__);
17411
17411
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
17412
17412
  /* harmony export */ BeEvent: () => (/* binding */ BeEvent),
17413
17413
  /* harmony export */ BeEventList: () => (/* binding */ BeEventList),
17414
- /* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent)
17414
+ /* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent),
17415
+ /* harmony export */ BeUnorderedEvent: () => (/* binding */ BeUnorderedEvent),
17416
+ /* harmony export */ BeUnorderedUiEvent: () => (/* binding */ BeUnorderedUiEvent)
17415
17417
  /* harmony export */ });
17416
17418
  /* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
17417
17419
  /*---------------------------------------------------------------------------------------------
@@ -17430,7 +17432,7 @@ __webpack_require__.r(__webpack_exports__);
17430
17432
  */
17431
17433
  class BeEvent {
17432
17434
  _listeners = [];
17433
- _insideRaiseEvent = false;
17435
+ _emitDepth = 0;
17434
17436
  /** The number of listeners currently subscribed to the event. */
17435
17437
  get numberOfListeners() { return this._listeners.length; }
17436
17438
  /**
@@ -17467,7 +17469,7 @@ class BeEvent {
17467
17469
  for (let i = 0; i < listeners.length; ++i) {
17468
17470
  const context = listeners[i];
17469
17471
  if (context.listener === listener && context.scope === scope) {
17470
- if (this._insideRaiseEvent) {
17472
+ if (this._emitDepth > 0) {
17471
17473
  context.listener = undefined;
17472
17474
  }
17473
17475
  else {
@@ -17484,7 +17486,7 @@ class BeEvent {
17484
17486
  * @see [[BeEvent.removeListener]], [[BeEvent.addListener]]
17485
17487
  */
17486
17488
  raiseEvent(...args) {
17487
- this._insideRaiseEvent = true;
17489
+ this._emitDepth++;
17488
17490
  const listeners = this._listeners;
17489
17491
  const length = listeners.length;
17490
17492
  let dropped = false;
@@ -17500,16 +17502,21 @@ class BeEvent {
17500
17502
  catch (e) {
17501
17503
  _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
17502
17504
  }
17503
- if (context.once) {
17505
+ if (!context.listener) {
17506
+ // listener was removed during its own callback
17507
+ dropped = true;
17508
+ }
17509
+ else if (context.once) {
17504
17510
  context.listener = undefined;
17505
17511
  dropped = true;
17506
17512
  }
17507
17513
  }
17508
17514
  }
17509
- // if we had dropped listeners, remove them now
17510
- if (dropped)
17515
+ this._emitDepth--;
17516
+ // Only sweep tombstoned entries when the outermost emit completes,
17517
+ // so nested raiseEvent calls never mutate the array mid-iteration.
17518
+ if (dropped && this._emitDepth === 0)
17511
17519
  this._listeners = this._listeners.filter((ctx) => ctx.listener !== undefined);
17512
- this._insideRaiseEvent = false;
17513
17520
  }
17514
17521
  /** Determine whether this BeEvent has a specified listener registered.
17515
17522
  * @param listener The listener to check.
@@ -17533,6 +17540,102 @@ class BeUiEvent extends BeEvent {
17533
17540
  /** Raises event with single strongly typed argument. */
17534
17541
  emit(args) { this.raiseEvent(args); }
17535
17542
  }
17543
+ /**
17544
+ * Manages a set of *listeners* for a particular event and notifies them when the event is raised.
17545
+ * Unlike [[BeEvent]], this class uses a `Set` internally to support safe concurrent modification
17546
+ * during emit. When a listener is removed during emit, it is marked for deferred removal instead
17547
+ * of mutating the set immediately.
17548
+ *
17549
+ * Listeners are managed exclusively through the disposal closure returned by [[addListener]] and
17550
+ * [[addOnce]]. There is no `removeListener` or `has` method — callers must capture the returned
17551
+ * closure to unsubscribe.
17552
+ * @beta
17553
+ */
17554
+ class BeUnorderedEvent {
17555
+ _listeners = new Set();
17556
+ _emitDepth = 0;
17557
+ _hasTombstones = false;
17558
+ /** The number of listeners currently subscribed to the event.
17559
+ * @note During `raiseEvent()`, this may include listeners that have been removed or are one-shot
17560
+ * but are awaiting deferred cleanup. The count is accurate outside of `raiseEvent()`.
17561
+ */
17562
+ get numberOfListeners() { return this._listeners.size; }
17563
+ /**
17564
+ * Registers a Listener to be executed whenever this event is raised.
17565
+ * @param listener The function to be executed when the event is raised.
17566
+ * @param scope An optional object scope to serve as the 'this' pointer when listener is invoked.
17567
+ * @returns A function that will remove this event listener in O(1).
17568
+ */
17569
+ addListener(listener, scope) {
17570
+ const ctx = { listener, scope, once: false };
17571
+ this._listeners.add(ctx);
17572
+ return () => this._removeCtx(ctx);
17573
+ }
17574
+ /**
17575
+ * Registers a callback function to be executed *only once* when the event is raised.
17576
+ * @param listener The function to be executed once when the event is raised.
17577
+ * @param scope An optional object scope to serve as the `this` pointer in which the listener function will execute.
17578
+ * @returns A function that will remove this event listener in O(1).
17579
+ */
17580
+ addOnce(listener, scope) {
17581
+ const ctx = { listener, scope, once: true };
17582
+ this._listeners.add(ctx);
17583
+ return () => this._removeCtx(ctx);
17584
+ }
17585
+ /** Remove a specific context entry, deferring during emit. */
17586
+ _removeCtx(ctx) {
17587
+ if (this._emitDepth > 0) {
17588
+ ctx.listener = undefined; // tombstone for deferred cleanup
17589
+ this._hasTombstones = true;
17590
+ }
17591
+ else {
17592
+ this._listeners.delete(ctx);
17593
+ }
17594
+ }
17595
+ /**
17596
+ * Raises the event by calling each registered listener with the supplied arguments.
17597
+ * @param args This method takes any number of parameters and passes them through to the listeners.
17598
+ */
17599
+ raiseEvent(...args) {
17600
+ this._emitDepth++;
17601
+ for (const ctx of this._listeners) {
17602
+ if (!ctx.listener) {
17603
+ continue;
17604
+ }
17605
+ try {
17606
+ ctx.listener.apply(ctx.scope, args);
17607
+ }
17608
+ catch (e) {
17609
+ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
17610
+ }
17611
+ if (ctx.listener && ctx.once) {
17612
+ ctx.listener = undefined;
17613
+ this._hasTombstones = true;
17614
+ }
17615
+ }
17616
+ this._emitDepth--;
17617
+ // Only clean up tombstoned entries when we're back at the outermost emit
17618
+ if (this._hasTombstones && this._emitDepth === 0) {
17619
+ this._hasTombstones = false;
17620
+ for (const ctx of this._listeners) {
17621
+ if (ctx.listener === undefined)
17622
+ this._listeners.delete(ctx);
17623
+ }
17624
+ }
17625
+ }
17626
+ /** Clear all listeners from this BeUnorderedEvent.
17627
+ * @note If called during `raiseEvent`, remaining listeners in the current iteration are skipped
17628
+ * immediately rather than being tombstoned.
17629
+ */
17630
+ clear() { this._listeners.clear(); }
17631
+ }
17632
+ /** Specialization of BeUnorderedEvent for events that take a single strongly typed argument, primarily used for UI events.
17633
+ * @beta
17634
+ */
17635
+ class BeUnorderedUiEvent extends BeUnorderedEvent {
17636
+ /** Raises event with single strongly typed argument. */
17637
+ emit(args) { this.raiseEvent(args); }
17638
+ }
17536
17639
  /**
17537
17640
  * A list of BeEvent objects, accessible by an event name.
17538
17641
  * This class may be used instead of explicitly declaring each BeEvent as a member of a containing class.
@@ -23821,6 +23924,69 @@ class UnexpectedErrors {
23821
23924
  }
23822
23925
 
23823
23926
 
23927
+ /***/ }),
23928
+
23929
+ /***/ "../bentley/lib/esm/UtilityFunctions.js":
23930
+ /*!**********************************************!*\
23931
+ !*** ../bentley/lib/esm/UtilityFunctions.js ***!
23932
+ \**********************************************/
23933
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23934
+
23935
+ "use strict";
23936
+ __webpack_require__.r(__webpack_exports__);
23937
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23938
+ /* harmony export */ wrapTimerCallback: () => (/* binding */ wrapTimerCallback)
23939
+ /* harmony export */ });
23940
+ /*---------------------------------------------------------------------------------------------
23941
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
23942
+ * See LICENSE.md in the project root for license terms and full copyright notice.
23943
+ *--------------------------------------------------------------------------------------------*/
23944
+ /** @packageDocumentation
23945
+ * @module Utils
23946
+ */
23947
+ /**
23948
+ * Wrapper function designed to be used for callbacks called by setInterval or setTimeout in order to propagate any
23949
+ * exceptions thrown in the callback to the main promise chain. It does this by creating a new promise for the callback
23950
+ * invocation and adding it to the timerPromises set. The main promise chain can then await
23951
+ * Promise.all(timerPromises) to catch any exceptions thrown in any of the callbacks. Note that if the callback
23952
+ * completes successfully, the promise is resolved and removed from the set. If it throws an exception, the promise is
23953
+ * rejected but not removed from the set, so that the main promise chain can detect that an error occurred and handle
23954
+ * it appropriately.
23955
+ * @param timerPromises A set of promises representing the currently active timer callbacks.
23956
+ * @param callback The async callback to be executed within the timer.
23957
+ * @beta
23958
+ */
23959
+ async function wrapTimerCallback(timerPromises, callback) {
23960
+ let resolvePromise;
23961
+ let rejectPromise;
23962
+ // The callback of the Promise constructor does not have access to the promise itself, so all we do there is
23963
+ // capture the resolve and reject functions for use in the async callback that would have otherwise been
23964
+ // placed in the setInterval or setTimeout callback.
23965
+ const timerPromise = new Promise((resolve, reject) => {
23966
+ resolvePromise = resolve;
23967
+ rejectPromise = reject;
23968
+ });
23969
+ // Note: when we get here, resolvePromise and rejectPromise will always be defined, but there is no way to
23970
+ // convince TS of that fact without extra unnecessary checks, so we use ?. when accessing them.
23971
+ // Prevent unhandled rejection warnings. The rejection is still observable
23972
+ // when the consumer awaits Promise.all(promises).
23973
+ timerPromise.catch(() => { });
23974
+ timerPromises.add(timerPromise);
23975
+ const cleanupAndResolve = () => {
23976
+ resolvePromise?.();
23977
+ // No need to keep track of this promise anymore since it's resolved.
23978
+ timerPromises.delete(timerPromise);
23979
+ };
23980
+ try {
23981
+ await callback();
23982
+ cleanupAndResolve();
23983
+ }
23984
+ catch (err) {
23985
+ rejectPromise?.(err);
23986
+ }
23987
+ }
23988
+
23989
+
23824
23990
  /***/ }),
23825
23991
 
23826
23992
  /***/ "../bentley/lib/esm/UtilityTypes.js":
@@ -23943,6 +24109,8 @@ __webpack_require__.r(__webpack_exports__);
23943
24109
  /* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
23944
24110
  /* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_29__.BeTimePoint),
23945
24111
  /* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
24112
+ /* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
24113
+ /* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
23946
24114
  /* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
23947
24115
  /* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
23948
24116
  /* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
@@ -23950,12 +24118,12 @@ __webpack_require__.r(__webpack_exports__);
23950
24118
  /* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
23951
24119
  /* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
23952
24120
  /* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
23953
- /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbChangeStage),
23954
- /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbConflictCause),
23955
- /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbConflictResolution),
24121
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbChangeStage),
24122
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictCause),
24123
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictResolution),
23956
24124
  /* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
23957
24125
  /* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
23958
- /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbValueType),
24126
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbValueType),
23959
24127
  /* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
23960
24128
  /* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
23961
24129
  /* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.DuplicatePolicy),
@@ -23989,7 +24157,7 @@ __webpack_require__.r(__webpack_exports__);
23989
24157
  /* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_23__.ReadonlyOrderedSet),
23990
24158
  /* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.ReadonlySortedArray),
23991
24159
  /* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
23992
- /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.RepositoryStatus),
24160
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.RepositoryStatus),
23993
24161
  /* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
23994
24162
  /* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.SortedArray),
23995
24163
  /* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_30__.SpanKind),
@@ -24005,9 +24173,9 @@ __webpack_require__.r(__webpack_exports__);
24005
24173
  /* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.Uint8ArrayBuilder),
24006
24174
  /* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.UintArrayBuilder),
24007
24175
  /* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__.UnexpectedErrors),
24008
- /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_35__.YieldManager),
24176
+ /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_36__.YieldManager),
24009
24177
  /* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
24010
- /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.asInstanceOf),
24178
+ /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.asInstanceOf),
24011
24179
  /* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
24012
24180
  /* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.base64StringToUint8Array),
24013
24181
  /* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
@@ -24027,15 +24195,16 @@ __webpack_require__.r(__webpack_exports__);
24027
24195
  /* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
24028
24196
  /* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
24029
24197
  /* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
24030
- /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.isInstanceOf),
24198
+ /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.isInstanceOf),
24031
24199
  /* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
24032
24200
  /* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
24033
24201
  /* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.lowerBound),
24034
- /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.omit),
24202
+ /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.omit),
24035
24203
  /* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_24__.partitionArray),
24036
24204
  /* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.shallowClone),
24037
24205
  /* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
24038
- /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString)
24206
+ /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString),
24207
+ /* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__.wrapTimerCallback)
24039
24208
  /* harmony export */ });
24040
24209
  /* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
24041
24210
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
@@ -24071,9 +24240,10 @@ __webpack_require__.r(__webpack_exports__);
24071
24240
  /* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../bentley/lib/esm/TupleKeyedMap.js");
24072
24241
  /* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../bentley/lib/esm/TypedArrayBuilder.js");
24073
24242
  /* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
24074
- /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
24075
- /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
24076
- /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
24243
+ /* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityFunctions */ "../bentley/lib/esm/UtilityFunctions.js");
24244
+ /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
24245
+ /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
24246
+ /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
24077
24247
  /*---------------------------------------------------------------------------------------------
24078
24248
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
24079
24249
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -24112,6 +24282,7 @@ __webpack_require__.r(__webpack_exports__);
24112
24282
 
24113
24283
 
24114
24284
 
24285
+
24115
24286
 
24116
24287
 
24117
24288
  // Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.