@itwin/core-i18n 5.9.0-dev.9 → 5.9.0

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,26 @@
1
1
  # Change Log - @itwin/core-i18n
2
2
 
3
- This log was last generated on Fri, 10 Apr 2026 13:03:16 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 04 May 2026 16:32:08 GMT and should not be manually modified.
4
+
5
+ ## 5.9.0
6
+ Mon, 04 May 2026 16:32:08 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.8.4
11
+ Thu, 23 Apr 2026 18:05:14 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.8.3
16
+ Thu, 23 Apr 2026 14:52:42 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 5.8.2
21
+ Thu, 16 Apr 2026 11:05:01 GMT
22
+
23
+ _Version update only_
4
24
 
5
25
  ## 5.8.1
6
26
  Fri, 10 Apr 2026 13:02:00 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.
@@ -20063,9 +20166,7 @@ var Id64;
20063
20166
  * ```
20064
20167
  */
20065
20168
  function iterable(ids) {
20066
- return {
20067
- [Symbol.iterator]: () => iterator(ids),
20068
- };
20169
+ return typeof ids === "string" ? [ids] : ids;
20069
20170
  }
20070
20171
  Id64.iterable = iterable;
20071
20172
  /** Return the first [[Id64String]] of an [[Id64Arg]]. */
@@ -23821,6 +23922,69 @@ class UnexpectedErrors {
23821
23922
  }
23822
23923
 
23823
23924
 
23925
+ /***/ }),
23926
+
23927
+ /***/ "../bentley/lib/esm/UtilityFunctions.js":
23928
+ /*!**********************************************!*\
23929
+ !*** ../bentley/lib/esm/UtilityFunctions.js ***!
23930
+ \**********************************************/
23931
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23932
+
23933
+ "use strict";
23934
+ __webpack_require__.r(__webpack_exports__);
23935
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23936
+ /* harmony export */ wrapTimerCallback: () => (/* binding */ wrapTimerCallback)
23937
+ /* harmony export */ });
23938
+ /*---------------------------------------------------------------------------------------------
23939
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
23940
+ * See LICENSE.md in the project root for license terms and full copyright notice.
23941
+ *--------------------------------------------------------------------------------------------*/
23942
+ /** @packageDocumentation
23943
+ * @module Utils
23944
+ */
23945
+ /**
23946
+ * Wrapper function designed to be used for callbacks called by setInterval or setTimeout in order to propagate any
23947
+ * exceptions thrown in the callback to the main promise chain. It does this by creating a new promise for the callback
23948
+ * invocation and adding it to the timerPromises set. The main promise chain can then await
23949
+ * Promise.all(timerPromises) to catch any exceptions thrown in any of the callbacks. Note that if the callback
23950
+ * completes successfully, the promise is resolved and removed from the set. If it throws an exception, the promise is
23951
+ * rejected but not removed from the set, so that the main promise chain can detect that an error occurred and handle
23952
+ * it appropriately.
23953
+ * @param timerPromises A set of promises representing the currently active timer callbacks.
23954
+ * @param callback The async callback to be executed within the timer.
23955
+ * @beta
23956
+ */
23957
+ async function wrapTimerCallback(timerPromises, callback) {
23958
+ let resolvePromise;
23959
+ let rejectPromise;
23960
+ // The callback of the Promise constructor does not have access to the promise itself, so all we do there is
23961
+ // capture the resolve and reject functions for use in the async callback that would have otherwise been
23962
+ // placed in the setInterval or setTimeout callback.
23963
+ const timerPromise = new Promise((resolve, reject) => {
23964
+ resolvePromise = resolve;
23965
+ rejectPromise = reject;
23966
+ });
23967
+ // Note: when we get here, resolvePromise and rejectPromise will always be defined, but there is no way to
23968
+ // convince TS of that fact without extra unnecessary checks, so we use ?. when accessing them.
23969
+ // Prevent unhandled rejection warnings. The rejection is still observable
23970
+ // when the consumer awaits Promise.all(promises).
23971
+ timerPromise.catch(() => { });
23972
+ timerPromises.add(timerPromise);
23973
+ const cleanupAndResolve = () => {
23974
+ resolvePromise?.();
23975
+ // No need to keep track of this promise anymore since it's resolved.
23976
+ timerPromises.delete(timerPromise);
23977
+ };
23978
+ try {
23979
+ await callback();
23980
+ cleanupAndResolve();
23981
+ }
23982
+ catch (err) {
23983
+ rejectPromise?.(err);
23984
+ }
23985
+ }
23986
+
23987
+
23824
23988
  /***/ }),
23825
23989
 
23826
23990
  /***/ "../bentley/lib/esm/UtilityTypes.js":
@@ -23943,6 +24107,8 @@ __webpack_require__.r(__webpack_exports__);
23943
24107
  /* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
23944
24108
  /* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_29__.BeTimePoint),
23945
24109
  /* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
24110
+ /* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
24111
+ /* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
23946
24112
  /* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
23947
24113
  /* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
23948
24114
  /* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
@@ -23950,12 +24116,12 @@ __webpack_require__.r(__webpack_exports__);
23950
24116
  /* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
23951
24117
  /* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
23952
24118
  /* 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),
24119
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbChangeStage),
24120
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictCause),
24121
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictResolution),
23956
24122
  /* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
23957
24123
  /* 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),
24124
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbValueType),
23959
24125
  /* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
23960
24126
  /* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
23961
24127
  /* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.DuplicatePolicy),
@@ -23989,7 +24155,7 @@ __webpack_require__.r(__webpack_exports__);
23989
24155
  /* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_23__.ReadonlyOrderedSet),
23990
24156
  /* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.ReadonlySortedArray),
23991
24157
  /* 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),
24158
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.RepositoryStatus),
23993
24159
  /* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
23994
24160
  /* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.SortedArray),
23995
24161
  /* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_30__.SpanKind),
@@ -24005,9 +24171,9 @@ __webpack_require__.r(__webpack_exports__);
24005
24171
  /* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.Uint8ArrayBuilder),
24006
24172
  /* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.UintArrayBuilder),
24007
24173
  /* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__.UnexpectedErrors),
24008
- /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_35__.YieldManager),
24174
+ /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_36__.YieldManager),
24009
24175
  /* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
24010
- /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.asInstanceOf),
24176
+ /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.asInstanceOf),
24011
24177
  /* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
24012
24178
  /* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.base64StringToUint8Array),
24013
24179
  /* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
@@ -24027,15 +24193,16 @@ __webpack_require__.r(__webpack_exports__);
24027
24193
  /* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
24028
24194
  /* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
24029
24195
  /* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
24030
- /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.isInstanceOf),
24196
+ /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.isInstanceOf),
24031
24197
  /* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
24032
24198
  /* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
24033
24199
  /* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.lowerBound),
24034
- /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.omit),
24200
+ /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.omit),
24035
24201
  /* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_24__.partitionArray),
24036
24202
  /* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.shallowClone),
24037
24203
  /* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
24038
- /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString)
24204
+ /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString),
24205
+ /* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__.wrapTimerCallback)
24039
24206
  /* harmony export */ });
24040
24207
  /* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
24041
24208
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
@@ -24071,9 +24238,10 @@ __webpack_require__.r(__webpack_exports__);
24071
24238
  /* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../bentley/lib/esm/TupleKeyedMap.js");
24072
24239
  /* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../bentley/lib/esm/TypedArrayBuilder.js");
24073
24240
  /* 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");
24241
+ /* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityFunctions */ "../bentley/lib/esm/UtilityFunctions.js");
24242
+ /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
24243
+ /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
24244
+ /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
24077
24245
  /*---------------------------------------------------------------------------------------------
24078
24246
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
24079
24247
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -24112,6 +24280,7 @@ __webpack_require__.r(__webpack_exports__);
24112
24280
 
24113
24281
 
24114
24282
 
24283
+
24115
24284
 
24116
24285
 
24117
24286
  // Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.