@itwin/core-i18n 5.0.0-dev.9 → 5.0.0-dev.92

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.
Files changed (22) hide show
  1. package/CHANGELOG.md +51 -1
  2. package/lib/cjs/ITwinLocalization.d.ts +1 -10
  3. package/lib/cjs/ITwinLocalization.d.ts.map +1 -1
  4. package/lib/cjs/ITwinLocalization.js +6 -22
  5. package/lib/cjs/ITwinLocalization.js.map +1 -1
  6. package/lib/cjs/core-i18n.js.map +1 -1
  7. package/lib/cjs/test/ITwinLocalization.test.js.map +1 -1
  8. package/lib/cjs/test/webpack/bundled-tests.instrumented.js +1534 -2124
  9. package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
  10. package/lib/cjs/test/webpack/bundled-tests.js +983 -1413
  11. package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
  12. package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.instrumented.js +661 -0
  13. package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.instrumented.js.map +1 -0
  14. package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js +661 -0
  15. package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js.map +1 -0
  16. package/lib/esm/ITwinLocalization.d.ts +1 -10
  17. package/lib/esm/ITwinLocalization.d.ts.map +1 -1
  18. package/lib/esm/ITwinLocalization.js +6 -22
  19. package/lib/esm/ITwinLocalization.js.map +1 -1
  20. package/lib/esm/core-i18n.js.map +1 -1
  21. package/lib/esm/test/ITwinLocalization.test.js.map +1 -1
  22. package/package.json +14 -14
@@ -9666,570 +9666,6 @@ module.exports = {
9666
9666
  };
9667
9667
 
9668
9668
 
9669
- /***/ }),
9670
-
9671
- /***/ "../../common/temp/node_modules/.pnpm/cross-fetch@3.1.5/node_modules/cross-fetch/dist/browser-ponyfill.js":
9672
- /*!****************************************************************************************************************!*\
9673
- !*** ../../common/temp/node_modules/.pnpm/cross-fetch@3.1.5/node_modules/cross-fetch/dist/browser-ponyfill.js ***!
9674
- \****************************************************************************************************************/
9675
- /***/ (function(module, exports) {
9676
-
9677
- var global = typeof self !== 'undefined' ? self : this;
9678
- var __self__ = (function () {
9679
- function F() {
9680
- this.fetch = false;
9681
- this.DOMException = global.DOMException
9682
- }
9683
- F.prototype = global;
9684
- return new F();
9685
- })();
9686
- (function(self) {
9687
-
9688
- var irrelevant = (function (exports) {
9689
-
9690
- var support = {
9691
- searchParams: 'URLSearchParams' in self,
9692
- iterable: 'Symbol' in self && 'iterator' in Symbol,
9693
- blob:
9694
- 'FileReader' in self &&
9695
- 'Blob' in self &&
9696
- (function() {
9697
- try {
9698
- new Blob();
9699
- return true
9700
- } catch (e) {
9701
- return false
9702
- }
9703
- })(),
9704
- formData: 'FormData' in self,
9705
- arrayBuffer: 'ArrayBuffer' in self
9706
- };
9707
-
9708
- function isDataView(obj) {
9709
- return obj && DataView.prototype.isPrototypeOf(obj)
9710
- }
9711
-
9712
- if (support.arrayBuffer) {
9713
- var viewClasses = [
9714
- '[object Int8Array]',
9715
- '[object Uint8Array]',
9716
- '[object Uint8ClampedArray]',
9717
- '[object Int16Array]',
9718
- '[object Uint16Array]',
9719
- '[object Int32Array]',
9720
- '[object Uint32Array]',
9721
- '[object Float32Array]',
9722
- '[object Float64Array]'
9723
- ];
9724
-
9725
- var isArrayBufferView =
9726
- ArrayBuffer.isView ||
9727
- function(obj) {
9728
- return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1
9729
- };
9730
- }
9731
-
9732
- function normalizeName(name) {
9733
- if (typeof name !== 'string') {
9734
- name = String(name);
9735
- }
9736
- if (/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(name)) {
9737
- throw new TypeError('Invalid character in header field name')
9738
- }
9739
- return name.toLowerCase()
9740
- }
9741
-
9742
- function normalizeValue(value) {
9743
- if (typeof value !== 'string') {
9744
- value = String(value);
9745
- }
9746
- return value
9747
- }
9748
-
9749
- // Build a destructive iterator for the value list
9750
- function iteratorFor(items) {
9751
- var iterator = {
9752
- next: function() {
9753
- var value = items.shift();
9754
- return {done: value === undefined, value: value}
9755
- }
9756
- };
9757
-
9758
- if (support.iterable) {
9759
- iterator[Symbol.iterator] = function() {
9760
- return iterator
9761
- };
9762
- }
9763
-
9764
- return iterator
9765
- }
9766
-
9767
- function Headers(headers) {
9768
- this.map = {};
9769
-
9770
- if (headers instanceof Headers) {
9771
- headers.forEach(function(value, name) {
9772
- this.append(name, value);
9773
- }, this);
9774
- } else if (Array.isArray(headers)) {
9775
- headers.forEach(function(header) {
9776
- this.append(header[0], header[1]);
9777
- }, this);
9778
- } else if (headers) {
9779
- Object.getOwnPropertyNames(headers).forEach(function(name) {
9780
- this.append(name, headers[name]);
9781
- }, this);
9782
- }
9783
- }
9784
-
9785
- Headers.prototype.append = function(name, value) {
9786
- name = normalizeName(name);
9787
- value = normalizeValue(value);
9788
- var oldValue = this.map[name];
9789
- this.map[name] = oldValue ? oldValue + ', ' + value : value;
9790
- };
9791
-
9792
- Headers.prototype['delete'] = function(name) {
9793
- delete this.map[normalizeName(name)];
9794
- };
9795
-
9796
- Headers.prototype.get = function(name) {
9797
- name = normalizeName(name);
9798
- return this.has(name) ? this.map[name] : null
9799
- };
9800
-
9801
- Headers.prototype.has = function(name) {
9802
- return this.map.hasOwnProperty(normalizeName(name))
9803
- };
9804
-
9805
- Headers.prototype.set = function(name, value) {
9806
- this.map[normalizeName(name)] = normalizeValue(value);
9807
- };
9808
-
9809
- Headers.prototype.forEach = function(callback, thisArg) {
9810
- for (var name in this.map) {
9811
- if (this.map.hasOwnProperty(name)) {
9812
- callback.call(thisArg, this.map[name], name, this);
9813
- }
9814
- }
9815
- };
9816
-
9817
- Headers.prototype.keys = function() {
9818
- var items = [];
9819
- this.forEach(function(value, name) {
9820
- items.push(name);
9821
- });
9822
- return iteratorFor(items)
9823
- };
9824
-
9825
- Headers.prototype.values = function() {
9826
- var items = [];
9827
- this.forEach(function(value) {
9828
- items.push(value);
9829
- });
9830
- return iteratorFor(items)
9831
- };
9832
-
9833
- Headers.prototype.entries = function() {
9834
- var items = [];
9835
- this.forEach(function(value, name) {
9836
- items.push([name, value]);
9837
- });
9838
- return iteratorFor(items)
9839
- };
9840
-
9841
- if (support.iterable) {
9842
- Headers.prototype[Symbol.iterator] = Headers.prototype.entries;
9843
- }
9844
-
9845
- function consumed(body) {
9846
- if (body.bodyUsed) {
9847
- return Promise.reject(new TypeError('Already read'))
9848
- }
9849
- body.bodyUsed = true;
9850
- }
9851
-
9852
- function fileReaderReady(reader) {
9853
- return new Promise(function(resolve, reject) {
9854
- reader.onload = function() {
9855
- resolve(reader.result);
9856
- };
9857
- reader.onerror = function() {
9858
- reject(reader.error);
9859
- };
9860
- })
9861
- }
9862
-
9863
- function readBlobAsArrayBuffer(blob) {
9864
- var reader = new FileReader();
9865
- var promise = fileReaderReady(reader);
9866
- reader.readAsArrayBuffer(blob);
9867
- return promise
9868
- }
9869
-
9870
- function readBlobAsText(blob) {
9871
- var reader = new FileReader();
9872
- var promise = fileReaderReady(reader);
9873
- reader.readAsText(blob);
9874
- return promise
9875
- }
9876
-
9877
- function readArrayBufferAsText(buf) {
9878
- var view = new Uint8Array(buf);
9879
- var chars = new Array(view.length);
9880
-
9881
- for (var i = 0; i < view.length; i++) {
9882
- chars[i] = String.fromCharCode(view[i]);
9883
- }
9884
- return chars.join('')
9885
- }
9886
-
9887
- function bufferClone(buf) {
9888
- if (buf.slice) {
9889
- return buf.slice(0)
9890
- } else {
9891
- var view = new Uint8Array(buf.byteLength);
9892
- view.set(new Uint8Array(buf));
9893
- return view.buffer
9894
- }
9895
- }
9896
-
9897
- function Body() {
9898
- this.bodyUsed = false;
9899
-
9900
- this._initBody = function(body) {
9901
- this._bodyInit = body;
9902
- if (!body) {
9903
- this._bodyText = '';
9904
- } else if (typeof body === 'string') {
9905
- this._bodyText = body;
9906
- } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {
9907
- this._bodyBlob = body;
9908
- } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {
9909
- this._bodyFormData = body;
9910
- } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
9911
- this._bodyText = body.toString();
9912
- } else if (support.arrayBuffer && support.blob && isDataView(body)) {
9913
- this._bodyArrayBuffer = bufferClone(body.buffer);
9914
- // IE 10-11 can't handle a DataView body.
9915
- this._bodyInit = new Blob([this._bodyArrayBuffer]);
9916
- } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {
9917
- this._bodyArrayBuffer = bufferClone(body);
9918
- } else {
9919
- this._bodyText = body = Object.prototype.toString.call(body);
9920
- }
9921
-
9922
- if (!this.headers.get('content-type')) {
9923
- if (typeof body === 'string') {
9924
- this.headers.set('content-type', 'text/plain;charset=UTF-8');
9925
- } else if (this._bodyBlob && this._bodyBlob.type) {
9926
- this.headers.set('content-type', this._bodyBlob.type);
9927
- } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
9928
- this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8');
9929
- }
9930
- }
9931
- };
9932
-
9933
- if (support.blob) {
9934
- this.blob = function() {
9935
- var rejected = consumed(this);
9936
- if (rejected) {
9937
- return rejected
9938
- }
9939
-
9940
- if (this._bodyBlob) {
9941
- return Promise.resolve(this._bodyBlob)
9942
- } else if (this._bodyArrayBuffer) {
9943
- return Promise.resolve(new Blob([this._bodyArrayBuffer]))
9944
- } else if (this._bodyFormData) {
9945
- throw new Error('could not read FormData body as blob')
9946
- } else {
9947
- return Promise.resolve(new Blob([this._bodyText]))
9948
- }
9949
- };
9950
-
9951
- this.arrayBuffer = function() {
9952
- if (this._bodyArrayBuffer) {
9953
- return consumed(this) || Promise.resolve(this._bodyArrayBuffer)
9954
- } else {
9955
- return this.blob().then(readBlobAsArrayBuffer)
9956
- }
9957
- };
9958
- }
9959
-
9960
- this.text = function() {
9961
- var rejected = consumed(this);
9962
- if (rejected) {
9963
- return rejected
9964
- }
9965
-
9966
- if (this._bodyBlob) {
9967
- return readBlobAsText(this._bodyBlob)
9968
- } else if (this._bodyArrayBuffer) {
9969
- return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer))
9970
- } else if (this._bodyFormData) {
9971
- throw new Error('could not read FormData body as text')
9972
- } else {
9973
- return Promise.resolve(this._bodyText)
9974
- }
9975
- };
9976
-
9977
- if (support.formData) {
9978
- this.formData = function() {
9979
- return this.text().then(decode)
9980
- };
9981
- }
9982
-
9983
- this.json = function() {
9984
- return this.text().then(JSON.parse)
9985
- };
9986
-
9987
- return this
9988
- }
9989
-
9990
- // HTTP methods whose capitalization should be normalized
9991
- var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT'];
9992
-
9993
- function normalizeMethod(method) {
9994
- var upcased = method.toUpperCase();
9995
- return methods.indexOf(upcased) > -1 ? upcased : method
9996
- }
9997
-
9998
- function Request(input, options) {
9999
- options = options || {};
10000
- var body = options.body;
10001
-
10002
- if (input instanceof Request) {
10003
- if (input.bodyUsed) {
10004
- throw new TypeError('Already read')
10005
- }
10006
- this.url = input.url;
10007
- this.credentials = input.credentials;
10008
- if (!options.headers) {
10009
- this.headers = new Headers(input.headers);
10010
- }
10011
- this.method = input.method;
10012
- this.mode = input.mode;
10013
- this.signal = input.signal;
10014
- if (!body && input._bodyInit != null) {
10015
- body = input._bodyInit;
10016
- input.bodyUsed = true;
10017
- }
10018
- } else {
10019
- this.url = String(input);
10020
- }
10021
-
10022
- this.credentials = options.credentials || this.credentials || 'same-origin';
10023
- if (options.headers || !this.headers) {
10024
- this.headers = new Headers(options.headers);
10025
- }
10026
- this.method = normalizeMethod(options.method || this.method || 'GET');
10027
- this.mode = options.mode || this.mode || null;
10028
- this.signal = options.signal || this.signal;
10029
- this.referrer = null;
10030
-
10031
- if ((this.method === 'GET' || this.method === 'HEAD') && body) {
10032
- throw new TypeError('Body not allowed for GET or HEAD requests')
10033
- }
10034
- this._initBody(body);
10035
- }
10036
-
10037
- Request.prototype.clone = function() {
10038
- return new Request(this, {body: this._bodyInit})
10039
- };
10040
-
10041
- function decode(body) {
10042
- var form = new FormData();
10043
- body
10044
- .trim()
10045
- .split('&')
10046
- .forEach(function(bytes) {
10047
- if (bytes) {
10048
- var split = bytes.split('=');
10049
- var name = split.shift().replace(/\+/g, ' ');
10050
- var value = split.join('=').replace(/\+/g, ' ');
10051
- form.append(decodeURIComponent(name), decodeURIComponent(value));
10052
- }
10053
- });
10054
- return form
10055
- }
10056
-
10057
- function parseHeaders(rawHeaders) {
10058
- var headers = new Headers();
10059
- // Replace instances of \r\n and \n followed by at least one space or horizontal tab with a space
10060
- // https://tools.ietf.org/html/rfc7230#section-3.2
10061
- var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' ');
10062
- preProcessedHeaders.split(/\r?\n/).forEach(function(line) {
10063
- var parts = line.split(':');
10064
- var key = parts.shift().trim();
10065
- if (key) {
10066
- var value = parts.join(':').trim();
10067
- headers.append(key, value);
10068
- }
10069
- });
10070
- return headers
10071
- }
10072
-
10073
- Body.call(Request.prototype);
10074
-
10075
- function Response(bodyInit, options) {
10076
- if (!options) {
10077
- options = {};
10078
- }
10079
-
10080
- this.type = 'default';
10081
- this.status = options.status === undefined ? 200 : options.status;
10082
- this.ok = this.status >= 200 && this.status < 300;
10083
- this.statusText = 'statusText' in options ? options.statusText : 'OK';
10084
- this.headers = new Headers(options.headers);
10085
- this.url = options.url || '';
10086
- this._initBody(bodyInit);
10087
- }
10088
-
10089
- Body.call(Response.prototype);
10090
-
10091
- Response.prototype.clone = function() {
10092
- return new Response(this._bodyInit, {
10093
- status: this.status,
10094
- statusText: this.statusText,
10095
- headers: new Headers(this.headers),
10096
- url: this.url
10097
- })
10098
- };
10099
-
10100
- Response.error = function() {
10101
- var response = new Response(null, {status: 0, statusText: ''});
10102
- response.type = 'error';
10103
- return response
10104
- };
10105
-
10106
- var redirectStatuses = [301, 302, 303, 307, 308];
10107
-
10108
- Response.redirect = function(url, status) {
10109
- if (redirectStatuses.indexOf(status) === -1) {
10110
- throw new RangeError('Invalid status code')
10111
- }
10112
-
10113
- return new Response(null, {status: status, headers: {location: url}})
10114
- };
10115
-
10116
- exports.DOMException = self.DOMException;
10117
- try {
10118
- new exports.DOMException();
10119
- } catch (err) {
10120
- exports.DOMException = function(message, name) {
10121
- this.message = message;
10122
- this.name = name;
10123
- var error = Error(message);
10124
- this.stack = error.stack;
10125
- };
10126
- exports.DOMException.prototype = Object.create(Error.prototype);
10127
- exports.DOMException.prototype.constructor = exports.DOMException;
10128
- }
10129
-
10130
- function fetch(input, init) {
10131
- return new Promise(function(resolve, reject) {
10132
- var request = new Request(input, init);
10133
-
10134
- if (request.signal && request.signal.aborted) {
10135
- return reject(new exports.DOMException('Aborted', 'AbortError'))
10136
- }
10137
-
10138
- var xhr = new XMLHttpRequest();
10139
-
10140
- function abortXhr() {
10141
- xhr.abort();
10142
- }
10143
-
10144
- xhr.onload = function() {
10145
- var options = {
10146
- status: xhr.status,
10147
- statusText: xhr.statusText,
10148
- headers: parseHeaders(xhr.getAllResponseHeaders() || '')
10149
- };
10150
- options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL');
10151
- var body = 'response' in xhr ? xhr.response : xhr.responseText;
10152
- resolve(new Response(body, options));
10153
- };
10154
-
10155
- xhr.onerror = function() {
10156
- reject(new TypeError('Network request failed'));
10157
- };
10158
-
10159
- xhr.ontimeout = function() {
10160
- reject(new TypeError('Network request failed'));
10161
- };
10162
-
10163
- xhr.onabort = function() {
10164
- reject(new exports.DOMException('Aborted', 'AbortError'));
10165
- };
10166
-
10167
- xhr.open(request.method, request.url, true);
10168
-
10169
- if (request.credentials === 'include') {
10170
- xhr.withCredentials = true;
10171
- } else if (request.credentials === 'omit') {
10172
- xhr.withCredentials = false;
10173
- }
10174
-
10175
- if ('responseType' in xhr && support.blob) {
10176
- xhr.responseType = 'blob';
10177
- }
10178
-
10179
- request.headers.forEach(function(value, name) {
10180
- xhr.setRequestHeader(name, value);
10181
- });
10182
-
10183
- if (request.signal) {
10184
- request.signal.addEventListener('abort', abortXhr);
10185
-
10186
- xhr.onreadystatechange = function() {
10187
- // DONE (success or failure)
10188
- if (xhr.readyState === 4) {
10189
- request.signal.removeEventListener('abort', abortXhr);
10190
- }
10191
- };
10192
- }
10193
-
10194
- xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit);
10195
- })
10196
- }
10197
-
10198
- fetch.polyfill = true;
10199
-
10200
- if (!self.fetch) {
10201
- self.fetch = fetch;
10202
- self.Headers = Headers;
10203
- self.Request = Request;
10204
- self.Response = Response;
10205
- }
10206
-
10207
- exports.Headers = Headers;
10208
- exports.Request = Request;
10209
- exports.Response = Response;
10210
- exports.fetch = fetch;
10211
-
10212
- Object.defineProperty(exports, '__esModule', { value: true });
10213
-
10214
- return exports;
10215
-
10216
- })({});
10217
- })(__self__);
10218
- __self__.fetch.ponyfill = true;
10219
- // Remove "polyfill" property added by whatwg-fetch
10220
- delete __self__.fetch.polyfill;
10221
- // Choose between native implementation (global) or custom implementation (__self__)
10222
- // var ctx = global.fetch ? global : __self__;
10223
- var ctx = __self__; // this line disable service worker support temporarily
10224
- exports = ctx.fetch // To enable: import fetch from 'cross-fetch'
10225
- exports["default"] = ctx.fetch // For TypeScript consumers without esModuleInterop.
10226
- exports.fetch = ctx.fetch // To enable: import {fetch} from 'cross-fetch'
10227
- exports.Headers = ctx.Headers
10228
- exports.Request = ctx.Request
10229
- exports.Response = ctx.Response
10230
- module.exports = exports
10231
-
10232
-
10233
9669
  /***/ }),
10234
9670
 
10235
9671
  /***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.4/node_modules/deep-eql/index.js":
@@ -10815,8 +10251,8 @@ __webpack_require__.r(__webpack_exports__);
10815
10251
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
10816
10252
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
10817
10253
  /* harmony export */ });
10818
- /* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
10819
- /* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/createClass.js");
10254
+ /* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
10255
+ /* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/createClass.js");
10820
10256
 
10821
10257
 
10822
10258
 
@@ -11244,15 +10680,15 @@ Browser.type = 'languageDetector';
11244
10680
  "use strict";
11245
10681
 
11246
10682
 
11247
- var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js");
11248
- var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/classCallCheck.js");
11249
- var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/createClass.js");
11250
- var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
11251
- var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/inherits.js");
11252
- var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js");
11253
- var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js");
11254
- var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/defineProperty.js");
11255
- var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toArray.js");
10683
+ var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js");
10684
+ var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/classCallCheck.js");
10685
+ var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/createClass.js");
10686
+ var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
10687
+ var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/inherits.js");
10688
+ var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js");
10689
+ var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/getPrototypeOf.js");
10690
+ var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/defineProperty.js");
10691
+ var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toArray.js");
11256
10692
 
11257
10693
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
11258
10694
 
@@ -15439,7 +14875,7 @@ __webpack_require__.r(__webpack_exports__);
15439
14875
  "use strict";
15440
14876
  __webpack_require__.r(__webpack_exports__);
15441
14877
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15442
- /* harmony export */ "assert": () => (/* binding */ assert)
14878
+ /* harmony export */ assert: () => (/* binding */ assert)
15443
14879
  /* harmony export */ });
15444
14880
  /*---------------------------------------------------------------------------------------------
15445
14881
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -15495,9 +14931,9 @@ function assert(condition, message) {
15495
14931
  "use strict";
15496
14932
  __webpack_require__.r(__webpack_exports__);
15497
14933
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15498
- /* harmony export */ "BeEvent": () => (/* binding */ BeEvent),
15499
- /* harmony export */ "BeEventList": () => (/* binding */ BeEventList),
15500
- /* harmony export */ "BeUiEvent": () => (/* binding */ BeUiEvent)
14934
+ /* harmony export */ BeEvent: () => (/* binding */ BeEvent),
14935
+ /* harmony export */ BeEventList: () => (/* binding */ BeEventList),
14936
+ /* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent)
15501
14937
  /* harmony export */ });
15502
14938
  /* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
15503
14939
  /*---------------------------------------------------------------------------------------------
@@ -15515,10 +14951,8 @@ __webpack_require__.r(__webpack_exports__);
15515
14951
  * @public
15516
14952
  */
15517
14953
  class BeEvent {
15518
- constructor() {
15519
- this._listeners = [];
15520
- this._insideRaiseEvent = false;
15521
- }
14954
+ _listeners = [];
14955
+ _insideRaiseEvent = false;
15522
14956
  /** The number of listeners currently subscribed to the event. */
15523
14957
  get numberOfListeners() { return this._listeners.length; }
15524
14958
  /**
@@ -15627,9 +15061,7 @@ class BeUiEvent extends BeEvent {
15627
15061
  * @public
15628
15062
  */
15629
15063
  class BeEventList {
15630
- constructor() {
15631
- this._events = {};
15632
- }
15064
+ _events = {};
15633
15065
  /**
15634
15066
  * Gets the event associated with the specified name, creating the event if it does not already exist.
15635
15067
  * @param name The name of the event.
@@ -15663,9 +15095,9 @@ class BeEventList {
15663
15095
  "use strict";
15664
15096
  __webpack_require__.r(__webpack_exports__);
15665
15097
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15666
- /* harmony export */ "DbOpcode": () => (/* binding */ DbOpcode),
15667
- /* harmony export */ "DbResult": () => (/* binding */ DbResult),
15668
- /* harmony export */ "OpenMode": () => (/* binding */ OpenMode)
15098
+ /* harmony export */ DbOpcode: () => (/* binding */ DbOpcode),
15099
+ /* harmony export */ DbResult: () => (/* binding */ DbResult),
15100
+ /* harmony export */ OpenMode: () => (/* binding */ OpenMode)
15669
15101
  /* harmony export */ });
15670
15102
  /*---------------------------------------------------------------------------------------------
15671
15103
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -15860,16 +15292,16 @@ var DbResult;
15860
15292
  "use strict";
15861
15293
  __webpack_require__.r(__webpack_exports__);
15862
15294
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15863
- /* harmony export */ "BentleyError": () => (/* binding */ BentleyError),
15864
- /* harmony export */ "BentleyStatus": () => (/* binding */ BentleyStatus),
15865
- /* harmony export */ "BriefcaseStatus": () => (/* binding */ BriefcaseStatus),
15866
- /* harmony export */ "ChangeSetStatus": () => (/* binding */ ChangeSetStatus),
15867
- /* harmony export */ "GeoServiceStatus": () => (/* binding */ GeoServiceStatus),
15868
- /* harmony export */ "HttpStatus": () => (/* binding */ HttpStatus),
15869
- /* harmony export */ "IModelHubStatus": () => (/* binding */ IModelHubStatus),
15870
- /* harmony export */ "IModelStatus": () => (/* binding */ IModelStatus),
15871
- /* harmony export */ "RealityDataStatus": () => (/* binding */ RealityDataStatus),
15872
- /* harmony export */ "RpcInterfaceStatus": () => (/* binding */ RpcInterfaceStatus)
15295
+ /* harmony export */ BentleyError: () => (/* binding */ BentleyError),
15296
+ /* harmony export */ BentleyStatus: () => (/* binding */ BentleyStatus),
15297
+ /* harmony export */ BriefcaseStatus: () => (/* binding */ BriefcaseStatus),
15298
+ /* harmony export */ ChangeSetStatus: () => (/* binding */ ChangeSetStatus),
15299
+ /* harmony export */ GeoServiceStatus: () => (/* binding */ GeoServiceStatus),
15300
+ /* harmony export */ HttpStatus: () => (/* binding */ HttpStatus),
15301
+ /* harmony export */ IModelHubStatus: () => (/* binding */ IModelHubStatus),
15302
+ /* harmony export */ IModelStatus: () => (/* binding */ IModelStatus),
15303
+ /* harmony export */ RealityDataStatus: () => (/* binding */ RealityDataStatus),
15304
+ /* harmony export */ RpcInterfaceStatus: () => (/* binding */ RpcInterfaceStatus)
15873
15305
  /* harmony export */ });
15874
15306
  /* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../bentley/lib/esm/BeSQLite.js");
15875
15307
  /* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../bentley/lib/esm/internal/RepositoryStatus.js");
@@ -16157,6 +15589,9 @@ var GeoServiceStatus;
16157
15589
  GeoServiceStatus[GeoServiceStatus["NoDatumConverter"] = 147459] = "NoDatumConverter";
16158
15590
  GeoServiceStatus[GeoServiceStatus["VerticalDatumConvertError"] = 147460] = "VerticalDatumConvertError";
16159
15591
  GeoServiceStatus[GeoServiceStatus["CSMapError"] = 147461] = "CSMapError";
15592
+ /**
15593
+ * @deprecated in 5.0. This status is never returned.
15594
+ */
16160
15595
  GeoServiceStatus[GeoServiceStatus["Pending"] = 147462] = "Pending";
16161
15596
  })(GeoServiceStatus || (GeoServiceStatus = {}));
16162
15597
  /** Error status from various reality data operations
@@ -16175,6 +15610,8 @@ function isObject(obj) {
16175
15610
  * @public
16176
15611
  */
16177
15612
  class BentleyError extends Error {
15613
+ errorNumber;
15614
+ _metaData;
16178
15615
  /**
16179
15616
  * @param errorNumber The a number that identifies of the problem.
16180
15617
  * @param message message that describes the problem (should not be localized).
@@ -16466,7 +15903,7 @@ class BentleyError extends Error {
16466
15903
  case GeoServiceStatus.NoDatumConverter: return "No datum converter";
16467
15904
  case GeoServiceStatus.VerticalDatumConvertError: return "Vertical datum convert error";
16468
15905
  case GeoServiceStatus.CSMapError: return "CSMap error";
16469
- case GeoServiceStatus.Pending: return "Pending";
15906
+ case GeoServiceStatus.Pending: return "Pending"; // eslint-disable-line @typescript-eslint/no-deprecated
16470
15907
  case RealityDataStatus.InvalidData: return "Invalid or unknown data";
16471
15908
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_OK:
16472
15909
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ROW:
@@ -16550,7 +15987,7 @@ class BentleyError extends Error {
16550
15987
  "use strict";
16551
15988
  __webpack_require__.r(__webpack_exports__);
16552
15989
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16553
- /* harmony export */ "BentleyLoggerCategory": () => (/* binding */ BentleyLoggerCategory)
15990
+ /* harmony export */ BentleyLoggerCategory: () => (/* binding */ BentleyLoggerCategory)
16554
15991
  /* harmony export */ });
16555
15992
  /*---------------------------------------------------------------------------------------------
16556
15993
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -16581,7 +16018,7 @@ var BentleyLoggerCategory;
16581
16018
  "use strict";
16582
16019
  __webpack_require__.r(__webpack_exports__);
16583
16020
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16584
- /* harmony export */ "ByteStream": () => (/* binding */ ByteStream)
16021
+ /* harmony export */ ByteStream: () => (/* binding */ ByteStream)
16585
16022
  /* harmony export */ });
16586
16023
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
16587
16024
  /* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../bentley/lib/esm/Id.js");
@@ -16602,6 +16039,9 @@ __webpack_require__.r(__webpack_exports__);
16602
16039
  * @public
16603
16040
  */
16604
16041
  class ByteStream {
16042
+ _view;
16043
+ _byteOffset;
16044
+ _curPos = 0;
16605
16045
  /** Construct a new ByteStream with the read position set to the beginning.
16606
16046
  * @param buffer The underlying buffer from which data is to be extracted.
16607
16047
  * @param subView If defined, specifies the subset of the underlying buffer's data to use.
@@ -16613,11 +16053,9 @@ class ByteStream {
16613
16053
  * ArrayBuffer. If `bytes` represents only a **sub-range** of the underlying buffer's data, the results will be unexpected unless the optional `subView`
16614
16054
  * argument is supplied, with correct offset and length.
16615
16055
  *
16616
- * For both of the above reasons, prefer to use [[fromUint8Array]].
16617
- * @deprecated in 3.x. Use [[fromUint8Array]] or [[fromArrayBuffer]].
16056
+ * For both of the above reasons, this constructor is private, and [[fromUint8Array]] or [[fromArrayBuffer]] should be used to create a ByteStream.
16618
16057
  */
16619
16058
  constructor(buffer, subView) {
16620
- this._curPos = 0;
16621
16059
  if (undefined !== subView) {
16622
16060
  this._view = new DataView(buffer, subView.byteOffset, subView.byteLength);
16623
16061
  this._byteOffset = subView.byteOffset;
@@ -16629,17 +16067,18 @@ class ByteStream {
16629
16067
  }
16630
16068
  /** Construct a new ByteStream for the range of bytes represented by `bytes`, which may be a subset of the range of bytes
16631
16069
  * represented by the underlying ArrayBuffer. The read position will be set to the beginning of the range of bytes.
16070
+ * @param bytes The Uint8Array from which data is to be extracted.
16632
16071
  */
16633
16072
  static fromUint8Array(bytes) {
16634
16073
  const { byteOffset, byteLength } = bytes;
16635
- return new ByteStream(bytes.buffer, { byteOffset, byteLength }); // eslint-disable-line @typescript-eslint/no-deprecated
16074
+ return new ByteStream(bytes.buffer, { byteOffset, byteLength });
16636
16075
  }
16637
16076
  /** Construct a new ByteStream with the read position set to the beginning.
16638
16077
  * @param buffer The underlying buffer from which data is to be extracted.
16639
16078
  * @param subView If defined, specifies the subset of the underlying buffer's data to use.
16640
16079
  */
16641
16080
  static fromArrayBuffer(buffer, subView) {
16642
- return new ByteStream(buffer, subView); // eslint-disable-line @typescript-eslint/no-deprecated
16081
+ return new ByteStream(buffer, subView);
16643
16082
  }
16644
16083
  /** The number of bytes in this stream */
16645
16084
  get length() {
@@ -16697,22 +16136,6 @@ class ByteStream {
16697
16136
  readId64() { return _Id__WEBPACK_IMPORTED_MODULE_1__.Id64.fromUint32Pair(this.readUint32(), this.readUint32()); }
16698
16137
  /** Read an unsigned 24-bit integer from the current read position and advance by 3 bytes. */
16699
16138
  readUint24() { return this.readUint8() | (this.readUint8() << 8) | (this.readUint8() << 16); }
16700
- /** @deprecated in 3.x. use [[readUint8]]. */
16701
- get nextUint8() { return this.readUint8(); }
16702
- /** @deprecated in 3.x. use [[readUint16]]. */
16703
- get nextUint16() { return this.readUint16(); }
16704
- /** @deprecated in 3.x. use [[readUint32]]. */
16705
- get nextUint32() { return this.readUint32(); }
16706
- /** @deprecated in 3.x. use [[readInt32]]. */
16707
- get nextInt32() { return this.readInt32(); }
16708
- /** @deprecated in 3.x. use [[readFloat32]]. */
16709
- get nextFloat32() { return this.readFloat32(); }
16710
- /** @deprecated in 3.x. use [[readFloat64]]. */
16711
- get nextFloat64() { return this.readFloat64(); }
16712
- /** @deprecated in 3.x. use [[readId64]]. */
16713
- get nextId64() { return this.readId64(); }
16714
- /** @deprecated in 3.x. use [[readUint32]]. */
16715
- get nextUint24() { return this.readUint24(); }
16716
16139
  /** Read the specified number of bytes beginning at the current read position into a Uint8Array and advance by the specified number of byte.
16717
16140
  * @param numBytes The number of bytes to read.
16718
16141
  */
@@ -16753,8 +16176,8 @@ class ByteStream {
16753
16176
  "use strict";
16754
16177
  __webpack_require__.r(__webpack_exports__);
16755
16178
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16756
- /* harmony export */ "isProperSubclassOf": () => (/* binding */ isProperSubclassOf),
16757
- /* harmony export */ "isSubclassOf": () => (/* binding */ isSubclassOf)
16179
+ /* harmony export */ isProperSubclassOf: () => (/* binding */ isProperSubclassOf),
16180
+ /* harmony export */ isSubclassOf: () => (/* binding */ isSubclassOf)
16758
16181
  /* harmony export */ });
16759
16182
  /*---------------------------------------------------------------------------------------------
16760
16183
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -16796,15 +16219,17 @@ function isSubclassOf(subclass, superclass) {
16796
16219
  "use strict";
16797
16220
  __webpack_require__.r(__webpack_exports__);
16798
16221
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16799
- /* harmony export */ "areEqualPossiblyUndefined": () => (/* binding */ areEqualPossiblyUndefined),
16800
- /* harmony export */ "compareBooleans": () => (/* binding */ compareBooleans),
16801
- /* harmony export */ "compareBooleansOrUndefined": () => (/* binding */ compareBooleansOrUndefined),
16802
- /* harmony export */ "compareNumbers": () => (/* binding */ compareNumbers),
16803
- /* harmony export */ "compareNumbersOrUndefined": () => (/* binding */ compareNumbersOrUndefined),
16804
- /* harmony export */ "comparePossiblyUndefined": () => (/* binding */ comparePossiblyUndefined),
16805
- /* harmony export */ "compareStrings": () => (/* binding */ compareStrings),
16806
- /* harmony export */ "compareStringsOrUndefined": () => (/* binding */ compareStringsOrUndefined),
16807
- /* harmony export */ "compareWithTolerance": () => (/* binding */ compareWithTolerance)
16222
+ /* harmony export */ areEqualPossiblyUndefined: () => (/* binding */ areEqualPossiblyUndefined),
16223
+ /* harmony export */ compareBooleans: () => (/* binding */ compareBooleans),
16224
+ /* harmony export */ compareBooleansOrUndefined: () => (/* binding */ compareBooleansOrUndefined),
16225
+ /* harmony export */ compareNumbers: () => (/* binding */ compareNumbers),
16226
+ /* harmony export */ compareNumbersOrUndefined: () => (/* binding */ compareNumbersOrUndefined),
16227
+ /* harmony export */ comparePossiblyUndefined: () => (/* binding */ comparePossiblyUndefined),
16228
+ /* harmony export */ compareSimpleArrays: () => (/* binding */ compareSimpleArrays),
16229
+ /* harmony export */ compareSimpleTypes: () => (/* binding */ compareSimpleTypes),
16230
+ /* harmony export */ compareStrings: () => (/* binding */ compareStrings),
16231
+ /* harmony export */ compareStringsOrUndefined: () => (/* binding */ compareStringsOrUndefined),
16232
+ /* harmony export */ compareWithTolerance: () => (/* binding */ compareWithTolerance)
16808
16233
  /* harmony export */ });
16809
16234
  /*---------------------------------------------------------------------------------------------
16810
16235
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -16869,6 +16294,52 @@ function areEqualPossiblyUndefined(t, u, areEqual) {
16869
16294
  else
16870
16295
  return areEqual(t, u);
16871
16296
  }
16297
+ /**
16298
+ * Compare two simples types (number, string, boolean)
16299
+ * This essentially wraps the existing type-specific comparison functions
16300
+ * @beta */
16301
+ function compareSimpleTypes(lhs, rhs) {
16302
+ let cmp = 0;
16303
+ // Make sure the types are the same
16304
+ cmp = compareStrings(typeof lhs, typeof rhs);
16305
+ if (cmp !== 0) {
16306
+ return cmp;
16307
+ }
16308
+ // Compare actual values
16309
+ switch (typeof lhs) {
16310
+ case "number":
16311
+ return compareNumbers(lhs, rhs);
16312
+ case "string":
16313
+ return compareStrings(lhs, rhs);
16314
+ case "boolean":
16315
+ return compareBooleans(lhs, rhs);
16316
+ }
16317
+ return cmp;
16318
+ }
16319
+ /**
16320
+ * Compare two arrays of simple types (number, string, boolean)
16321
+ * @beta
16322
+ */
16323
+ function compareSimpleArrays(lhs, rhs) {
16324
+ if (undefined === lhs)
16325
+ return undefined === rhs ? 0 : -1;
16326
+ else if (undefined === rhs)
16327
+ return 1;
16328
+ else if (lhs.length === 0 && rhs.length === 0) {
16329
+ return 0;
16330
+ }
16331
+ else if (lhs.length !== rhs.length) {
16332
+ return lhs.length - rhs.length;
16333
+ }
16334
+ let cmp = 0;
16335
+ for (let i = 0; i < lhs.length; i++) {
16336
+ cmp = compareSimpleTypes(lhs[i], rhs[i]);
16337
+ if (cmp !== 0) {
16338
+ break;
16339
+ }
16340
+ }
16341
+ return cmp;
16342
+ }
16872
16343
 
16873
16344
 
16874
16345
  /***/ }),
@@ -16882,9 +16353,9 @@ function areEqualPossiblyUndefined(t, u, areEqual) {
16882
16353
  "use strict";
16883
16354
  __webpack_require__.r(__webpack_exports__);
16884
16355
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16885
- /* harmony export */ "CompressedId64Set": () => (/* binding */ CompressedId64Set),
16886
- /* harmony export */ "MutableCompressedId64Set": () => (/* binding */ MutableCompressedId64Set),
16887
- /* harmony export */ "OrderedId64Array": () => (/* binding */ OrderedId64Array)
16356
+ /* harmony export */ CompressedId64Set: () => (/* binding */ CompressedId64Set),
16357
+ /* harmony export */ MutableCompressedId64Set: () => (/* binding */ MutableCompressedId64Set),
16358
+ /* harmony export */ OrderedId64Array: () => (/* binding */ OrderedId64Array)
16888
16359
  /* harmony export */ });
16889
16360
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
16890
16361
  /* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../bentley/lib/esm/Id.js");
@@ -17010,6 +16481,9 @@ var CompressedId64Set;
17010
16481
  CompressedId64Set.compressIds = compressIds;
17011
16482
  /** This exists strictly for the purposes of compressed sets of 64-bit Ids, to avoid the overhead of BigInt for handling 64-bit integers. */
17012
16483
  class Uint64 {
16484
+ lower;
16485
+ upper;
16486
+ static _base = 0x100000000;
17013
16487
  static assertUint32(num) {
17014
16488
  (0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(num >= 0);
17015
16489
  (0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(num < Uint64._base);
@@ -17071,7 +16545,6 @@ var CompressedId64Set;
17071
16545
  return _Id__WEBPACK_IMPORTED_MODULE_1__.Id64.fromUint32Pair(this.lower, this.upper);
17072
16546
  }
17073
16547
  }
17074
- Uint64._base = 0x100000000;
17075
16548
  /** Supplies an iterator over the [[Id64String]]s in a [[CompressedId64Set]].
17076
16549
  * The Ids are iterated in ascending order based on their unsigned 64-bit integer values.
17077
16550
  */
@@ -17215,10 +16688,11 @@ class OrderedId64Array extends _SortedArray__WEBPACK_IMPORTED_MODULE_3__.SortedA
17215
16688
  * @public
17216
16689
  */
17217
16690
  class MutableCompressedId64Set {
16691
+ _ids;
16692
+ _inserted = new OrderedId64Array();
16693
+ _deleted = new OrderedId64Array();
17218
16694
  /** Construct a new set, optionally initialized to contain the Ids represented by `ids`. */
17219
16695
  constructor(ids) {
17220
- this._inserted = new OrderedId64Array();
17221
- this._deleted = new OrderedId64Array();
17222
16696
  this._ids = ids ?? "";
17223
16697
  }
17224
16698
  /** Obtain the compact string representation of the contents of this set. If any insertions or removals are pending, they will be applied and the string recomputed. */
@@ -17326,7 +16800,7 @@ class MutableCompressedId64Set {
17326
16800
  "use strict";
17327
16801
  __webpack_require__.r(__webpack_exports__);
17328
16802
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
17329
- /* harmony export */ "Dictionary": () => (/* binding */ Dictionary)
16803
+ /* harmony export */ Dictionary: () => (/* binding */ Dictionary)
17330
16804
  /* harmony export */ });
17331
16805
  /* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
17332
16806
  /*---------------------------------------------------------------------------------------------
@@ -17338,8 +16812,10 @@ __webpack_require__.r(__webpack_exports__);
17338
16812
  */
17339
16813
 
17340
16814
  class DictionaryIterator {
16815
+ _keys;
16816
+ _values;
16817
+ _curIndex = -1;
17341
16818
  constructor(keys, values) {
17342
- this._curIndex = -1;
17343
16819
  this._keys = keys;
17344
16820
  this._values = values;
17345
16821
  }
@@ -17374,6 +16850,11 @@ class DictionaryIterator {
17374
16850
  * @public
17375
16851
  */
17376
16852
  class Dictionary {
16853
+ _keys = [];
16854
+ _compareKeys;
16855
+ _cloneKey;
16856
+ _values = [];
16857
+ _cloneValue;
17377
16858
  /**
17378
16859
  * Construct a new Dictionary<K, V>.
17379
16860
  * @param compareKeys The function used to compare keys within the dictionary.
@@ -17381,8 +16862,6 @@ class Dictionary {
17381
16862
  * @param cloneValue The function invoked to clone a value for insertion into the dictionary. The default implementation simply returns its input.
17382
16863
  */
17383
16864
  constructor(compareKeys, cloneKey = _SortedArray__WEBPACK_IMPORTED_MODULE_0__.shallowClone, cloneValue = _SortedArray__WEBPACK_IMPORTED_MODULE_0__.shallowClone) {
17384
- this._keys = [];
17385
- this._values = [];
17386
16865
  this._compareKeys = compareKeys;
17387
16866
  this._cloneKey = cloneKey;
17388
16867
  this._cloneValue = cloneValue;
@@ -17541,11 +17020,12 @@ class Dictionary {
17541
17020
  "use strict";
17542
17021
  __webpack_require__.r(__webpack_exports__);
17543
17022
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
17544
- /* harmony export */ "DisposableList": () => (/* binding */ DisposableList),
17545
- /* harmony export */ "dispose": () => (/* binding */ dispose),
17546
- /* harmony export */ "disposeArray": () => (/* binding */ disposeArray),
17547
- /* harmony export */ "isIDisposable": () => (/* binding */ isIDisposable),
17548
- /* harmony export */ "using": () => (/* binding */ using)
17023
+ /* harmony export */ DisposableList: () => (/* binding */ DisposableList),
17024
+ /* harmony export */ dispose: () => (/* binding */ dispose),
17025
+ /* harmony export */ disposeArray: () => (/* binding */ disposeArray),
17026
+ /* harmony export */ isDisposable: () => (/* binding */ isDisposable),
17027
+ /* harmony export */ isIDisposable: () => (/* binding */ isIDisposable),
17028
+ /* harmony export */ using: () => (/* binding */ using)
17549
17029
  /* harmony export */ });
17550
17030
  /*---------------------------------------------------------------------------------------------
17551
17031
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -17554,46 +17034,42 @@ __webpack_require__.r(__webpack_exports__);
17554
17034
  /** @packageDocumentation
17555
17035
  * @module Utils
17556
17036
  */
17037
+ /* eslint-disable @typescript-eslint/no-deprecated */
17038
+ Symbol.dispose ??= Symbol("Symbol.dispose");
17039
+ Symbol.asyncDispose ??= Symbol("Symbol.asyncDispose");
17557
17040
  /**
17558
17041
  * A type guard that checks whether the given argument implements `IDisposable` interface
17042
+ * @deprecated in 5.0 Use isDisposable instead.
17559
17043
  * @public
17560
17044
  */
17561
17045
  function isIDisposable(obj) {
17562
17046
  return !!obj && (obj instanceof Object) && !!obj.dispose && (typeof obj.dispose === "function");
17563
17047
  }
17564
- /** Convenience function for disposing of a disposable object that may be undefined.
17565
- * This is primarily used to simplify implementations of [[IDisposable.dispose]].
17566
- * As a simple example:
17567
- * ```ts
17568
- * class Disposable implements IDisposable {
17569
- * public member1?: DisposableType1;
17570
- * public member2?: DisposableType2;
17571
- *
17572
- * public dispose() {
17573
- * this.member1 = dispose(this.member1); // If member1 is defined, dispose of it and set it to undefined.
17574
- * this.member2 = dispose(this.member2); // Likewise for member2.
17575
- * }
17576
- * }
17577
- * ```
17578
- * @param disposable The object to be disposed of.
17579
- * @returns undefined
17048
+ /**
17049
+ * A type guard that checks whether the given argument implements `Disposable` interface
17580
17050
  * @public
17581
17051
  */
17052
+ function isDisposable(obj) {
17053
+ return !!obj && (obj instanceof Object) && !!obj[Symbol.dispose] && (typeof obj[Symbol.dispose] === "function");
17054
+ }
17582
17055
  function dispose(disposable) {
17583
- if (undefined !== disposable)
17584
- disposable.dispose();
17056
+ if (undefined !== disposable) {
17057
+ if (Symbol.dispose in disposable)
17058
+ disposable[Symbol.dispose]();
17059
+ else
17060
+ disposable.dispose();
17061
+ }
17585
17062
  return undefined;
17586
17063
  }
17587
- /** Disposes of and empties a list of disposable objects.
17588
- * @param list The list of disposable objects.
17589
- * @returns undefined
17590
- * @public
17591
- */
17592
17064
  function disposeArray(list) {
17593
17065
  if (undefined === list)
17594
17066
  return undefined;
17595
- for (const entry of list)
17596
- dispose(entry);
17067
+ for (const entry of list) {
17068
+ if (Symbol.dispose in entry)
17069
+ entry[Symbol.dispose]();
17070
+ else
17071
+ entry.dispose();
17072
+ }
17597
17073
  list.length = 0;
17598
17074
  return undefined;
17599
17075
  }
@@ -17602,6 +17078,7 @@ function disposeArray(list) {
17602
17078
  * of this function is equal to return value of func. If func throws, this function also throws (after
17603
17079
  * disposing the resource).
17604
17080
  * @public
17081
+ * @deprecated in 5.0 Use `using` declarations instead.
17605
17082
  */
17606
17083
  function using(resources, func) {
17607
17084
  if (!Array.isArray(resources))
@@ -17622,6 +17099,7 @@ function using(resources, func) {
17622
17099
  }
17623
17100
  }
17624
17101
  class FuncDisposable {
17102
+ _disposeFunc;
17625
17103
  constructor(disposeFunc) { this._disposeFunc = disposeFunc; }
17626
17104
  dispose() { this._disposeFunc(); }
17627
17105
  }
@@ -17629,6 +17107,7 @@ class FuncDisposable {
17629
17107
  * @public
17630
17108
  */
17631
17109
  class DisposableList {
17110
+ _disposables;
17632
17111
  /** Creates a disposable list. */
17633
17112
  constructor(disposables = []) {
17634
17113
  this._disposables = [];
@@ -17671,9 +17150,9 @@ class DisposableList {
17671
17150
  "use strict";
17672
17151
  __webpack_require__.r(__webpack_exports__);
17673
17152
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
17674
- /* harmony export */ "Guid": () => (/* binding */ Guid),
17675
- /* harmony export */ "Id64": () => (/* binding */ Id64),
17676
- /* harmony export */ "TransientIdSequence": () => (/* binding */ TransientIdSequence)
17153
+ /* harmony export */ Guid: () => (/* binding */ Guid),
17154
+ /* harmony export */ Id64: () => (/* binding */ Id64),
17155
+ /* harmony export */ TransientIdSequence: () => (/* binding */ TransientIdSequence)
17677
17156
  /* harmony export */ });
17678
17157
  /*---------------------------------------------------------------------------------------------
17679
17158
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -18094,11 +17573,11 @@ var Id64;
18094
17573
  * @public
18095
17574
  */
18096
17575
  class Uint32Set {
17576
+ _map = new Map();
18097
17577
  /** Construct a new Uint32Set.
18098
17578
  * @param ids If supplied, all of the specified Ids will be added to the new set.
18099
17579
  */
18100
17580
  constructor(ids) {
18101
- this._map = new Map();
18102
17581
  if (undefined !== ids)
18103
17582
  this.addIds(ids);
18104
17583
  }
@@ -18159,8 +17638,11 @@ var Id64;
18159
17638
  /** Remove an Id from the set. */
18160
17639
  delete(low, high) {
18161
17640
  const set = this._map.get(high);
18162
- if (undefined !== set)
17641
+ if (undefined !== set) {
18163
17642
  set.delete(low);
17643
+ if (set.size === 0)
17644
+ this._map.delete(high);
17645
+ }
18164
17646
  }
18165
17647
  /** Returns true if the set contains the specified Id. */
18166
17648
  has(low, high) {
@@ -18209,9 +17691,7 @@ var Id64;
18209
17691
  * @public
18210
17692
  */
18211
17693
  class Uint32Map {
18212
- constructor() {
18213
- this._map = new Map();
18214
- }
17694
+ _map = new Map();
18215
17695
  /** Remove all entries from the map. */
18216
17696
  clear() { this._map.clear(); }
18217
17697
  /** Find an entry in the map by Id. */
@@ -18262,6 +17742,9 @@ function validateLocalId(num) {
18262
17742
  * @public
18263
17743
  */
18264
17744
  class TransientIdSequence {
17745
+ /** The starting local Id provided to the constructor. The sequence begins at `initialLocalId + 1`. */
17746
+ initialLocalId;
17747
+ _localId;
18265
17748
  /** Constructor.
18266
17749
  * @param initialLocalId The starting local Id. The local Id of the first [[Id64String]] generated by [[getNext]] will be `initialLocalId + 1`.
18267
17750
  */
@@ -18277,12 +17760,6 @@ class TransientIdSequence {
18277
17760
  get currentLocalId() {
18278
17761
  return this._localId;
18279
17762
  }
18280
- /** Generate and return the next transient Id64String in the sequence.
18281
- * @deprecated in 3.x. Use [[getNext]].
18282
- */
18283
- get next() {
18284
- return this.getNext();
18285
- }
18286
17763
  /** Generate and return the next transient Id64String in the sequence. */
18287
17764
  getNext() {
18288
17765
  return Id64.fromLocalAndBriefcaseIds(++this._localId, 0xffffff);
@@ -18414,8 +17891,8 @@ var Guid;
18414
17891
  "use strict";
18415
17892
  __webpack_require__.r(__webpack_exports__);
18416
17893
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18417
- /* harmony export */ "IndexMap": () => (/* binding */ IndexMap),
18418
- /* harmony export */ "IndexedValue": () => (/* binding */ IndexedValue)
17894
+ /* harmony export */ IndexMap: () => (/* binding */ IndexMap),
17895
+ /* harmony export */ IndexedValue: () => (/* binding */ IndexedValue)
18419
17896
  /* harmony export */ });
18420
17897
  /* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
18421
17898
  /*---------------------------------------------------------------------------------------------
@@ -18430,6 +17907,8 @@ __webpack_require__.r(__webpack_exports__);
18430
17907
  * @public
18431
17908
  */
18432
17909
  class IndexedValue {
17910
+ value;
17911
+ index;
18433
17912
  constructor(value, index) {
18434
17913
  this.value = value;
18435
17914
  this.index = index;
@@ -18442,6 +17921,10 @@ class IndexedValue {
18442
17921
  * @public
18443
17922
  */
18444
17923
  class IndexMap {
17924
+ _array = [];
17925
+ _compareValues;
17926
+ _clone;
17927
+ _maximumSize;
18445
17928
  /**
18446
17929
  * Construct a new IndexMap<T>.
18447
17930
  * @param compare The function used to compare elements within the map.
@@ -18449,7 +17932,6 @@ class IndexMap {
18449
17932
  * @param clone The function invoked to clone a new element for insertion into the array. The default implementation simply returns its input.
18450
17933
  */
18451
17934
  constructor(compare, maximumSize = Number.MAX_SAFE_INTEGER, clone = _SortedArray__WEBPACK_IMPORTED_MODULE_0__.shallowClone) {
18452
- this._array = [];
18453
17935
  this._compareValues = compare;
18454
17936
  this._clone = clone;
18455
17937
  this._maximumSize = maximumSize;
@@ -18537,7 +18019,7 @@ __webpack_require__.r(__webpack_exports__);
18537
18019
  "use strict";
18538
18020
  __webpack_require__.r(__webpack_exports__);
18539
18021
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18540
- /* harmony export */ "JsonUtils": () => (/* binding */ JsonUtils)
18022
+ /* harmony export */ JsonUtils: () => (/* binding */ JsonUtils)
18541
18023
  /* harmony export */ });
18542
18024
  /*---------------------------------------------------------------------------------------------
18543
18025
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -18700,10 +18182,10 @@ var JsonUtils;
18700
18182
  "use strict";
18701
18183
  __webpack_require__.r(__webpack_exports__);
18702
18184
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18703
- /* harmony export */ "Entry": () => (/* binding */ Entry),
18704
- /* harmony export */ "LRUCache": () => (/* binding */ LRUCache),
18705
- /* harmony export */ "LRUDictionary": () => (/* binding */ LRUDictionary),
18706
- /* harmony export */ "LRUMap": () => (/* binding */ LRUMap)
18185
+ /* harmony export */ Entry: () => (/* binding */ Entry),
18186
+ /* harmony export */ LRUCache: () => (/* binding */ LRUCache),
18187
+ /* harmony export */ LRUDictionary: () => (/* binding */ LRUDictionary),
18188
+ /* harmony export */ LRUMap: () => (/* binding */ LRUMap)
18707
18189
  /* harmony export */ });
18708
18190
  /* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../bentley/lib/esm/Dictionary.js");
18709
18191
  /*---------------------------------------------------------------------------------------------
@@ -18723,12 +18205,17 @@ __webpack_require__.r(__webpack_exports__);
18723
18205
  * @public
18724
18206
  */
18725
18207
  class Entry {
18208
+ key;
18209
+ value;
18210
+ newer;
18211
+ older;
18726
18212
  constructor(key, value) {
18727
18213
  this.key = key;
18728
18214
  this.value = value;
18729
18215
  }
18730
18216
  }
18731
18217
  class EntryIterator {
18218
+ _entry;
18732
18219
  constructor(oldestEntry) {
18733
18220
  this._entry = oldestEntry;
18734
18221
  }
@@ -18742,6 +18229,7 @@ class EntryIterator {
18742
18229
  }
18743
18230
  }
18744
18231
  class KeyIterator {
18232
+ _entry;
18745
18233
  constructor(oldestEntry) {
18746
18234
  this._entry = oldestEntry;
18747
18235
  }
@@ -18754,6 +18242,7 @@ class KeyIterator {
18754
18242
  }
18755
18243
  }
18756
18244
  class ValueIterator {
18245
+ _entry;
18757
18246
  constructor(oldestEntry) {
18758
18247
  this._entry = oldestEntry;
18759
18248
  }
@@ -18786,6 +18275,15 @@ class ValueIterator {
18786
18275
  * @public
18787
18276
  */
18788
18277
  class LRUCache {
18278
+ _container;
18279
+ /** Current number of items */
18280
+ size;
18281
+ /** Maximum number of items this cache can hold */
18282
+ limit;
18283
+ /** Least recently-used entry. Invalidated when cache is modified. */
18284
+ oldest;
18285
+ /** Most recently-used entry. Invalidated when cache is modified. */
18286
+ newest;
18789
18287
  /**
18790
18288
  * Construct a new LRUCache to hold up to `limit` entries.
18791
18289
  */
@@ -19045,14 +18543,13 @@ class LRUDictionary extends LRUCache {
19045
18543
  "use strict";
19046
18544
  __webpack_require__.r(__webpack_exports__);
19047
18545
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19048
- /* harmony export */ "LogLevel": () => (/* binding */ LogLevel),
19049
- /* harmony export */ "Logger": () => (/* binding */ Logger),
19050
- /* harmony export */ "PerfLogger": () => (/* binding */ PerfLogger)
18546
+ /* harmony export */ LogLevel: () => (/* binding */ LogLevel),
18547
+ /* harmony export */ Logger: () => (/* binding */ Logger),
18548
+ /* harmony export */ PerfLogger: () => (/* binding */ PerfLogger)
19051
18549
  /* harmony export */ });
19052
18550
  /* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../bentley/lib/esm/BeEvent.js");
19053
18551
  /* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
19054
18552
  /* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../bentley/lib/esm/BentleyLoggerCategory.js");
19055
- /* harmony import */ var _internal_staticLoggerMetadata__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./internal/staticLoggerMetadata */ "../bentley/lib/esm/internal/staticLoggerMetadata.js");
19056
18553
  /*---------------------------------------------------------------------------------------------
19057
18554
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
19058
18555
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -19063,7 +18560,6 @@ __webpack_require__.r(__webpack_exports__);
19063
18560
 
19064
18561
 
19065
18562
 
19066
-
19067
18563
  /** Use to categorize logging messages by severity.
19068
18564
  * @public
19069
18565
  */
@@ -19085,6 +18581,12 @@ var LogLevel;
19085
18581
  * @public
19086
18582
  */
19087
18583
  class Logger {
18584
+ static _logError;
18585
+ static _logWarning;
18586
+ static _logInfo;
18587
+ static _logTrace;
18588
+ static _onLogLevelChanged;
18589
+ static _staticMetaData = new Map();
19088
18590
  /** An event raised whenever [[setLevel]] or [[setLevelDefault]] is called. */
19089
18591
  static get onLogLevelChanged() {
19090
18592
  // We have to lazily initialize because it's static and BeEvent imports UnexpectedErrors which imports Logger which wants to instantiate BeEvent.
@@ -19093,6 +18595,7 @@ class Logger {
19093
18595
  }
19094
18596
  return Logger._onLogLevelChanged;
19095
18597
  }
18598
+ static _categoryFilter = {};
19096
18599
  /** Maps category names to the least severe level at which messages in that category should be displayed,
19097
18600
  * or `undefined` if a minimum has not been defined.
19098
18601
  * @see [[setLevel]] to change the minimum logging level for a category.
@@ -19101,6 +18604,7 @@ class Logger {
19101
18604
  // NOTE: this property is accessed by native code.
19102
18605
  return this._categoryFilter;
19103
18606
  }
18607
+ static _minLevel;
19104
18608
  /** The least severe level at which messages should be displayed by default.
19105
18609
  * @see [[setLevelDefault]] to change this default.
19106
18610
  * @see [[setLevel]] to override this default for specific categories.
@@ -19109,6 +18613,14 @@ class Logger {
19109
18613
  // NOTE: this property is accessed by native code. */
19110
18614
  return this._minLevel;
19111
18615
  }
18616
+ /** Should the call stack be included when an exception is logged? */
18617
+ static logExceptionCallstacks = false;
18618
+ /** Contains metadata that should be included with every logged message.
18619
+ * @beta
18620
+ */
18621
+ static get staticMetaData() {
18622
+ return this._staticMetaData;
18623
+ }
19112
18624
  /** Initialize the logger streams. Should be called at application initialization time. */
19113
18625
  static initialize(logError, logWarning, logInfo, logTrace) {
19114
18626
  Logger._logError = logError;
@@ -19126,7 +18638,7 @@ class Logger {
19126
18638
  /** merge the supplied metadata with all static metadata into one object */
19127
18639
  static getMetaData(metaData) {
19128
18640
  const metaObj = {};
19129
- for (const meta of _internal_staticLoggerMetadata__WEBPACK_IMPORTED_MODULE_3__.staticLoggerMetadata) {
18641
+ for (const meta of this._staticMetaData) {
19130
18642
  const val = _BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getMetaData(meta[1]);
19131
18643
  if (val)
19132
18644
  Object.assign(metaObj, val);
@@ -19288,9 +18800,6 @@ class Logger {
19288
18800
  Logger._logTrace(category, message, metaData);
19289
18801
  }
19290
18802
  }
19291
- Logger._categoryFilter = {};
19292
- /** Should the call stack be included when an exception is logged? */
19293
- Logger.logExceptionCallstacks = false;
19294
18803
  /** Simple performance diagnostics utility.
19295
18804
  * It measures the time from construction to disposal. On disposal it logs the routine name along with
19296
18805
  * the duration in milliseconds.
@@ -19301,6 +18810,10 @@ Logger.logExceptionCallstacks = false;
19301
18810
  * @public
19302
18811
  */
19303
18812
  class PerfLogger {
18813
+ static _severity = LogLevel.Info;
18814
+ _operation;
18815
+ _metaData;
18816
+ _startTimeStamp;
19304
18817
  constructor(operation, metaData) {
19305
18818
  this._operation = operation;
19306
18819
  this._metaData = metaData;
@@ -19322,11 +18835,14 @@ class PerfLogger {
19322
18835
  };
19323
18836
  });
19324
18837
  }
19325
- dispose() {
18838
+ [Symbol.dispose]() {
19326
18839
  this.logMessage();
19327
18840
  }
18841
+ /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
18842
+ dispose() {
18843
+ this[Symbol.dispose]();
18844
+ }
19328
18845
  }
19329
- PerfLogger._severity = LogLevel.Info;
19330
18846
 
19331
18847
 
19332
18848
  /***/ }),
@@ -19340,7 +18856,7 @@ PerfLogger._severity = LogLevel.Info;
19340
18856
  "use strict";
19341
18857
  __webpack_require__.r(__webpack_exports__);
19342
18858
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19343
- /* harmony export */ "ObservableSet": () => (/* binding */ ObservableSet)
18859
+ /* harmony export */ ObservableSet: () => (/* binding */ ObservableSet)
19344
18860
  /* harmony export */ });
19345
18861
  /* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../bentley/lib/esm/BeEvent.js");
19346
18862
  /*---------------------------------------------------------------------------------------------
@@ -19355,18 +18871,18 @@ __webpack_require__.r(__webpack_exports__);
19355
18871
  * @public
19356
18872
  */
19357
18873
  class ObservableSet extends Set {
18874
+ /** Emitted after `item` is added to this set. */
18875
+ onAdded = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
18876
+ /** Emitted after `item` is deleted from this set. */
18877
+ onDeleted = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
18878
+ /** Emitted after this set's contents are cleared. */
18879
+ onCleared = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
19358
18880
  /** Construct a new ObservableSet.
19359
18881
  * @param elements Optional elements with which to populate the new set.
19360
18882
  */
19361
18883
  constructor(elements) {
19362
18884
  // NB: Set constructor will invoke add(). Do not override until initialized.
19363
18885
  super(elements);
19364
- /** Emitted after `item` is added to this set. */
19365
- this.onAdded = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
19366
- /** Emitted after `item` is deleted from this set. */
19367
- this.onDeleted = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
19368
- /** Emitted after this set's contents are cleared. */
19369
- this.onCleared = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
19370
18886
  this.add = (item) => {
19371
18887
  const prevSize = this.size;
19372
18888
  const ret = super.add(item);
@@ -19407,8 +18923,8 @@ class ObservableSet extends Set {
19407
18923
  "use strict";
19408
18924
  __webpack_require__.r(__webpack_exports__);
19409
18925
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19410
- /* harmony export */ "AbandonedError": () => (/* binding */ AbandonedError),
19411
- /* harmony export */ "OneAtATimeAction": () => (/* binding */ OneAtATimeAction)
18926
+ /* harmony export */ AbandonedError: () => (/* binding */ AbandonedError),
18927
+ /* harmony export */ OneAtATimeAction: () => (/* binding */ OneAtATimeAction)
19412
18928
  /* harmony export */ });
19413
18929
  /* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
19414
18930
  /*---------------------------------------------------------------------------------------------
@@ -19429,6 +18945,11 @@ class AbandonedError extends Error {
19429
18945
  * Promises involved that are chained together. That makes this class less efficient than just using a Promise directly.
19430
18946
  */
19431
18947
  class PromiseWithAbandon {
18948
+ _run;
18949
+ _args;
18950
+ /** Method to abandon the Promise created by [[init]] while it is outstanding. The promise will be rejected. */
18951
+ abandon;
18952
+ _resolve;
19432
18953
  /** Create a PromiseWithAbandon. After this call you must call [[init]] to create the underlying Promise.
19433
18954
  * @param _run The method that creates the underlying Promise.
19434
18955
  * @param _args An array of args to be passed to run when [[start]] is called.
@@ -19466,6 +18987,10 @@ class PromiseWithAbandon {
19466
18987
  * @beta
19467
18988
  */
19468
18989
  class OneAtATimeAction {
18990
+ _active;
18991
+ _pending;
18992
+ _run;
18993
+ msg;
19469
18994
  /** Ctor for OneAtATimePromise.
19470
18995
  * @param run The method that performs an action that creates the Promise.
19471
18996
  */
@@ -19513,7 +19038,7 @@ class OneAtATimeAction {
19513
19038
  "use strict";
19514
19039
  __webpack_require__.r(__webpack_exports__);
19515
19040
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19516
- /* harmony export */ "OrderedId64Iterable": () => (/* binding */ OrderedId64Iterable)
19041
+ /* harmony export */ OrderedId64Iterable: () => (/* binding */ OrderedId64Iterable)
19517
19042
  /* harmony export */ });
19518
19043
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
19519
19044
  /*---------------------------------------------------------------------------------------------
@@ -19761,8 +19286,8 @@ var OrderedId64Iterable;
19761
19286
  "use strict";
19762
19287
  __webpack_require__.r(__webpack_exports__);
19763
19288
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19764
- /* harmony export */ "OrderedSet": () => (/* binding */ OrderedSet),
19765
- /* harmony export */ "ReadonlyOrderedSet": () => (/* binding */ ReadonlyOrderedSet)
19289
+ /* harmony export */ OrderedSet: () => (/* binding */ OrderedSet),
19290
+ /* harmony export */ ReadonlyOrderedSet: () => (/* binding */ ReadonlyOrderedSet)
19766
19291
  /* harmony export */ });
19767
19292
  /* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
19768
19293
  /*---------------------------------------------------------------------------------------------
@@ -19779,6 +19304,7 @@ __webpack_require__.r(__webpack_exports__);
19779
19304
  * @public
19780
19305
  */
19781
19306
  class ReadonlyOrderedSet {
19307
+ _array;
19782
19308
  /** Construct a new ReadonlyOrderedSet<T>.
19783
19309
  * @param compare The function used to compare elements within the set, determining their ordering.
19784
19310
  * @param clone The function invoked to clone a new element for insertion into the set. The default implementation simply returns its input.
@@ -19837,7 +19363,7 @@ class OrderedSet extends ReadonlyOrderedSet {
19837
19363
  "use strict";
19838
19364
  __webpack_require__.r(__webpack_exports__);
19839
19365
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19840
- /* harmony export */ "PriorityQueue": () => (/* binding */ PriorityQueue)
19366
+ /* harmony export */ PriorityQueue: () => (/* binding */ PriorityQueue)
19841
19367
  /* harmony export */ });
19842
19368
  /* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
19843
19369
  /*---------------------------------------------------------------------------------------------
@@ -19854,6 +19380,9 @@ __webpack_require__.r(__webpack_exports__);
19854
19380
  * @public
19855
19381
  */
19856
19382
  class PriorityQueue {
19383
+ _array = [];
19384
+ _compare;
19385
+ _clone;
19857
19386
  /**
19858
19387
  * Constructor
19859
19388
  * @param compare The function used to compare values in the queue. If `compare(x, y)` returns a negative value, then x is placed before y in the queue.
@@ -19861,7 +19390,6 @@ class PriorityQueue {
19861
19390
  * @note If the criterion which control the result of the `compare` function changes, then [[PriorityQueue.sort]] should be used to reorder the queue according to the new criterion.
19862
19391
  */
19863
19392
  constructor(compare, clone = _SortedArray__WEBPACK_IMPORTED_MODULE_0__.shallowClone) {
19864
- this._array = [];
19865
19393
  this._compare = compare;
19866
19394
  this._clone = clone;
19867
19395
  }
@@ -19989,7 +19517,7 @@ class PriorityQueue {
19989
19517
  "use strict";
19990
19518
  __webpack_require__.r(__webpack_exports__);
19991
19519
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19992
- /* harmony export */ "ProcessDetector": () => (/* binding */ ProcessDetector)
19520
+ /* harmony export */ ProcessDetector: () => (/* binding */ ProcessDetector)
19993
19521
  /* harmony export */ });
19994
19522
  /*---------------------------------------------------------------------------------------------
19995
19523
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -20071,11 +19599,11 @@ class ProcessDetector {
20071
19599
  "use strict";
20072
19600
  __webpack_require__.r(__webpack_exports__);
20073
19601
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20074
- /* harmony export */ "DuplicatePolicy": () => (/* binding */ DuplicatePolicy),
20075
- /* harmony export */ "ReadonlySortedArray": () => (/* binding */ ReadonlySortedArray),
20076
- /* harmony export */ "SortedArray": () => (/* binding */ SortedArray),
20077
- /* harmony export */ "lowerBound": () => (/* binding */ lowerBound),
20078
- /* harmony export */ "shallowClone": () => (/* binding */ shallowClone)
19602
+ /* harmony export */ DuplicatePolicy: () => (/* binding */ DuplicatePolicy),
19603
+ /* harmony export */ ReadonlySortedArray: () => (/* binding */ ReadonlySortedArray),
19604
+ /* harmony export */ SortedArray: () => (/* binding */ SortedArray),
19605
+ /* harmony export */ lowerBound: () => (/* binding */ lowerBound),
19606
+ /* harmony export */ shallowClone: () => (/* binding */ shallowClone)
20079
19607
  /* harmony export */ });
20080
19608
  /*---------------------------------------------------------------------------------------------
20081
19609
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -20159,6 +19687,10 @@ var DuplicatePolicy;
20159
19687
  * @public
20160
19688
  */
20161
19689
  class ReadonlySortedArray {
19690
+ _array = [];
19691
+ _compare;
19692
+ _clone;
19693
+ _duplicatePolicy;
20162
19694
  /**
20163
19695
  * Construct a new ReadonlySortedArray<T>.
20164
19696
  * @param compare The function used to compare elements within the array.
@@ -20166,7 +19698,6 @@ class ReadonlySortedArray {
20166
19698
  * @param clone The function invoked to clone a new element for insertion into the array. The default implementation simply returns its input.
20167
19699
  */
20168
19700
  constructor(compare, duplicatePolicy = false, clone = shallowClone) {
20169
- this._array = [];
20170
19701
  this._compare = compare;
20171
19702
  this._clone = clone;
20172
19703
  if (typeof duplicatePolicy === "boolean")
@@ -20398,9 +19929,9 @@ class SortedArray extends ReadonlySortedArray {
20398
19929
  "use strict";
20399
19930
  __webpack_require__.r(__webpack_exports__);
20400
19931
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20401
- /* harmony export */ "ErrorCategory": () => (/* binding */ ErrorCategory),
20402
- /* harmony export */ "StatusCategory": () => (/* binding */ StatusCategory),
20403
- /* harmony export */ "SuccessCategory": () => (/* binding */ SuccessCategory)
19932
+ /* harmony export */ ErrorCategory: () => (/* binding */ ErrorCategory),
19933
+ /* harmony export */ StatusCategory: () => (/* binding */ StatusCategory),
19934
+ /* harmony export */ SuccessCategory: () => (/* binding */ SuccessCategory)
20404
19935
  /* harmony export */ });
20405
19936
  /* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
20406
19937
  /* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../bentley/lib/esm/internal/RepositoryStatus.js");
@@ -20417,6 +19948,7 @@ __webpack_require__.r(__webpack_exports__);
20417
19948
  * @alpha
20418
19949
  */
20419
19950
  class StatusCategory {
19951
+ static handlers = new Set();
20420
19952
  static for(error) {
20421
19953
  for (const handler of this.handlers) {
20422
19954
  const category = handler(error);
@@ -20430,179 +19962,115 @@ class StatusCategory {
20430
19962
  return new UnknownError();
20431
19963
  }
20432
19964
  }
20433
- StatusCategory.handlers = new Set();
20434
19965
  /***
20435
19966
  * A success status.
20436
19967
  * @alpha
20437
19968
  */
20438
19969
  class SuccessCategory extends StatusCategory {
20439
- constructor() {
20440
- super(...arguments);
20441
- this.error = false;
20442
- }
19970
+ error = false;
20443
19971
  }
20444
19972
  /**
20445
19973
  * An error status.
20446
19974
  * @alpha
20447
19975
  */
20448
19976
  class ErrorCategory extends StatusCategory {
20449
- constructor() {
20450
- super(...arguments);
20451
- this.error = true;
20452
- }
19977
+ error = true;
20453
19978
  }
20454
19979
  var HTTP;
20455
19980
  (function (HTTP) {
20456
19981
  class OK extends SuccessCategory {
20457
- constructor() {
20458
- super(...arguments);
20459
- this.name = "OK";
20460
- this.code = 200;
20461
- }
19982
+ name = "OK";
19983
+ code = 200;
20462
19984
  }
20463
19985
  HTTP.OK = OK;
20464
19986
  class Accepted extends SuccessCategory {
20465
- constructor() {
20466
- super(...arguments);
20467
- this.name = "Accepted";
20468
- this.code = 202;
20469
- }
19987
+ name = "Accepted";
19988
+ code = 202;
20470
19989
  }
20471
19990
  HTTP.Accepted = Accepted;
20472
19991
  class NoContent extends SuccessCategory {
20473
- constructor() {
20474
- super(...arguments);
20475
- this.name = "NoContent";
20476
- this.code = 204;
20477
- }
19992
+ name = "NoContent";
19993
+ code = 204;
20478
19994
  }
20479
19995
  HTTP.NoContent = NoContent;
20480
19996
  class BadRequest extends ErrorCategory {
20481
- constructor() {
20482
- super(...arguments);
20483
- this.name = "BadRequest";
20484
- this.code = 400;
20485
- }
19997
+ name = "BadRequest";
19998
+ code = 400;
20486
19999
  }
20487
20000
  HTTP.BadRequest = BadRequest;
20488
20001
  class Unauthorized extends ErrorCategory {
20489
- constructor() {
20490
- super(...arguments);
20491
- this.name = "Unauthorized";
20492
- this.code = 401;
20493
- }
20002
+ name = "Unauthorized";
20003
+ code = 401;
20494
20004
  }
20495
20005
  HTTP.Unauthorized = Unauthorized;
20496
20006
  class Forbidden extends ErrorCategory {
20497
- constructor() {
20498
- super(...arguments);
20499
- this.name = "Forbidden";
20500
- this.code = 403;
20501
- }
20007
+ name = "Forbidden";
20008
+ code = 403;
20502
20009
  }
20503
20010
  HTTP.Forbidden = Forbidden;
20504
20011
  class NotFound extends ErrorCategory {
20505
- constructor() {
20506
- super(...arguments);
20507
- this.name = "NotFound";
20508
- this.code = 404;
20509
- }
20012
+ name = "NotFound";
20013
+ code = 404;
20510
20014
  }
20511
20015
  HTTP.NotFound = NotFound;
20512
20016
  class RequestTimeout extends ErrorCategory {
20513
- constructor() {
20514
- super(...arguments);
20515
- this.name = "RequestTimeout";
20516
- this.code = 408;
20517
- }
20017
+ name = "RequestTimeout";
20018
+ code = 408;
20518
20019
  }
20519
20020
  HTTP.RequestTimeout = RequestTimeout;
20520
20021
  class Conflict extends ErrorCategory {
20521
- constructor() {
20522
- super(...arguments);
20523
- this.name = "Conflict";
20524
- this.code = 409;
20525
- }
20022
+ name = "Conflict";
20023
+ code = 409;
20526
20024
  }
20527
20025
  HTTP.Conflict = Conflict;
20528
20026
  class Gone extends ErrorCategory {
20529
- constructor() {
20530
- super(...arguments);
20531
- this.name = "Gone";
20532
- this.code = 410;
20533
- }
20027
+ name = "Gone";
20028
+ code = 410;
20534
20029
  }
20535
20030
  HTTP.Gone = Gone;
20536
20031
  class PreconditionFailed extends ErrorCategory {
20537
- constructor() {
20538
- super(...arguments);
20539
- this.name = "PreconditionFailed";
20540
- this.code = 412;
20541
- }
20032
+ name = "PreconditionFailed";
20033
+ code = 412;
20542
20034
  }
20543
20035
  HTTP.PreconditionFailed = PreconditionFailed;
20544
20036
  class ExpectationFailed extends ErrorCategory {
20545
- constructor() {
20546
- super(...arguments);
20547
- this.name = "ExpectationFailed";
20548
- this.code = 417;
20549
- }
20037
+ name = "ExpectationFailed";
20038
+ code = 417;
20550
20039
  }
20551
20040
  HTTP.ExpectationFailed = ExpectationFailed;
20552
20041
  class MisdirectedRequest extends ErrorCategory {
20553
- constructor() {
20554
- super(...arguments);
20555
- this.name = "MisdirectedRequest";
20556
- this.code = 421;
20557
- }
20042
+ name = "MisdirectedRequest";
20043
+ code = 421;
20558
20044
  }
20559
20045
  HTTP.MisdirectedRequest = MisdirectedRequest;
20560
20046
  class UnprocessableEntity extends ErrorCategory {
20561
- constructor() {
20562
- super(...arguments);
20563
- this.name = "UnprocessableEntity";
20564
- this.code = 422;
20565
- }
20047
+ name = "UnprocessableEntity";
20048
+ code = 422;
20566
20049
  }
20567
20050
  HTTP.UnprocessableEntity = UnprocessableEntity;
20568
20051
  class UpgradeRequired extends ErrorCategory {
20569
- constructor() {
20570
- super(...arguments);
20571
- this.name = "UpgradeRequired";
20572
- this.code = 426;
20573
- }
20052
+ name = "UpgradeRequired";
20053
+ code = 426;
20574
20054
  }
20575
20055
  HTTP.UpgradeRequired = UpgradeRequired;
20576
20056
  class PreconditionRequired extends ErrorCategory {
20577
- constructor() {
20578
- super(...arguments);
20579
- this.name = "PreconditionRequired";
20580
- this.code = 428;
20581
- }
20057
+ name = "PreconditionRequired";
20058
+ code = 428;
20582
20059
  }
20583
20060
  HTTP.PreconditionRequired = PreconditionRequired;
20584
20061
  class TooManyRequests extends ErrorCategory {
20585
- constructor() {
20586
- super(...arguments);
20587
- this.name = "TooManyRequests";
20588
- this.code = 429;
20589
- }
20062
+ name = "TooManyRequests";
20063
+ code = 429;
20590
20064
  }
20591
20065
  HTTP.TooManyRequests = TooManyRequests;
20592
20066
  class InternalServerError extends ErrorCategory {
20593
- constructor() {
20594
- super(...arguments);
20595
- this.name = "InternalServerError";
20596
- this.code = 500;
20597
- }
20067
+ name = "InternalServerError";
20068
+ code = 500;
20598
20069
  }
20599
20070
  HTTP.InternalServerError = InternalServerError;
20600
20071
  class NotImplemented extends ErrorCategory {
20601
- constructor() {
20602
- super(...arguments);
20603
- this.name = "NotImplemented";
20604
- this.code = 501;
20605
- }
20072
+ name = "NotImplemented";
20073
+ code = 501;
20606
20074
  }
20607
20075
  HTTP.NotImplemented = NotImplemented;
20608
20076
  })(HTTP || (HTTP = {}));
@@ -20859,7 +20327,7 @@ function lookupHttpStatusCategory(statusCode) {
20859
20327
  case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.GeoServiceStatus.NoDatumConverter: return new OperationFailed();
20860
20328
  case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.GeoServiceStatus.VerticalDatumConvertError: return new OperationFailed();
20861
20329
  case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.GeoServiceStatus.CSMapError: return new InternalError();
20862
- case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.GeoServiceStatus.Pending: return new Pending();
20330
+ case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.GeoServiceStatus.Pending: return new Pending(); // eslint-disable-line @typescript-eslint/no-deprecated
20863
20331
  case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.RealityDataStatus.Success: return new Success();
20864
20332
  case _BentleyError__WEBPACK_IMPORTED_MODULE_0__.RealityDataStatus.InvalidData: return new InvalidData();
20865
20333
  default: return new UnknownError();
@@ -20878,8 +20346,8 @@ function lookupHttpStatusCategory(statusCode) {
20878
20346
  "use strict";
20879
20347
  __webpack_require__.r(__webpack_exports__);
20880
20348
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20881
- /* harmony export */ "base64StringToUint8Array": () => (/* binding */ base64StringToUint8Array),
20882
- /* harmony export */ "utf8ToString": () => (/* binding */ utf8ToString)
20349
+ /* harmony export */ base64StringToUint8Array: () => (/* binding */ base64StringToUint8Array),
20350
+ /* harmony export */ utf8ToString: () => (/* binding */ utf8ToString)
20883
20351
  /* harmony export */ });
20884
20352
  /*---------------------------------------------------------------------------------------------
20885
20353
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -20921,9 +20389,9 @@ function base64StringToUint8Array(base64) {
20921
20389
  "use strict";
20922
20390
  __webpack_require__.r(__webpack_exports__);
20923
20391
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20924
- /* harmony export */ "BeDuration": () => (/* binding */ BeDuration),
20925
- /* harmony export */ "BeTimePoint": () => (/* binding */ BeTimePoint),
20926
- /* harmony export */ "StopWatch": () => (/* binding */ StopWatch)
20392
+ /* harmony export */ BeDuration: () => (/* binding */ BeDuration),
20393
+ /* harmony export */ BeTimePoint: () => (/* binding */ BeTimePoint),
20394
+ /* harmony export */ StopWatch: () => (/* binding */ StopWatch)
20927
20395
  /* harmony export */ });
20928
20396
  /*---------------------------------------------------------------------------------------------
20929
20397
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -20937,6 +20405,7 @@ __webpack_require__.r(__webpack_exports__);
20937
20405
  * @public
20938
20406
  */
20939
20407
  class BeDuration {
20408
+ _milliseconds;
20940
20409
  constructor(milliseconds = 0) { this._milliseconds = milliseconds; }
20941
20410
  /** The duration in milliseconds */
20942
20411
  get milliseconds() { return this._milliseconds; }
@@ -21003,6 +20472,7 @@ class BeDuration {
21003
20472
  * @public
21004
20473
  */
21005
20474
  class BeTimePoint {
20475
+ _milliseconds;
21006
20476
  /** the time in milliseconds, of this BeTimePoint (relative to January 1, 1970 00:00:00 UTC.) */
21007
20477
  get milliseconds() { return this._milliseconds; }
21008
20478
  constructor(milliseconds) { this._milliseconds = milliseconds; }
@@ -21041,6 +20511,9 @@ class BeTimePoint {
21041
20511
  * @public
21042
20512
  */
21043
20513
  class StopWatch {
20514
+ description;
20515
+ _start;
20516
+ _stop;
21044
20517
  /** Get the elapsed time since start() on a running timer. */
21045
20518
  get current() { return BeDuration.fromMilliseconds(BeTimePoint.now().milliseconds - (!!this._start ? this._start.milliseconds : 0)); }
21046
20519
  /** Get the elapsed time, in seconds, since start() on a running timer. */
@@ -21084,8 +20557,8 @@ class StopWatch {
21084
20557
  "use strict";
21085
20558
  __webpack_require__.r(__webpack_exports__);
21086
20559
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21087
- /* harmony export */ "SpanKind": () => (/* binding */ SpanKind),
21088
- /* harmony export */ "Tracing": () => (/* binding */ Tracing)
20560
+ /* harmony export */ SpanKind: () => (/* binding */ SpanKind),
20561
+ /* harmony export */ Tracing: () => (/* binding */ Tracing)
21089
20562
  /* harmony export */ });
21090
20563
  /* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
21091
20564
  /*---------------------------------------------------------------------------------------------
@@ -21163,6 +20636,8 @@ function flattenObject(obj) {
21163
20636
  * @deprecated in 4.4 - OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
21164
20637
  */
21165
20638
  class Tracing {
20639
+ static _tracer;
20640
+ static _openTelemetry;
21166
20641
  /**
21167
20642
  * If OpenTelemetry tracing is enabled, creates a new span and runs the provided function in it.
21168
20643
  * If OpenTelemetry tracing is _not_ enabled, runs the provided function.
@@ -21262,7 +20737,7 @@ class Tracing {
21262
20737
  "use strict";
21263
20738
  __webpack_require__.r(__webpack_exports__);
21264
20739
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21265
- /* harmony export */ "TupleKeyedMap": () => (/* binding */ TupleKeyedMap)
20740
+ /* harmony export */ TupleKeyedMap: () => (/* binding */ TupleKeyedMap)
21266
20741
  /* harmony export */ });
21267
20742
  /*---------------------------------------------------------------------------------------------
21268
20743
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -21292,10 +20767,9 @@ __webpack_require__.r(__webpack_exports__);
21292
20767
  * @public
21293
20768
  */
21294
20769
  class TupleKeyedMap {
20770
+ _map = new Map();
21295
20771
  // argument types match those of Map
21296
20772
  constructor(entries) {
21297
- this._map = new Map();
21298
- this._size = 0;
21299
20773
  if (entries)
21300
20774
  for (const [k, v] of entries) {
21301
20775
  this.set(k, v);
@@ -21355,6 +20829,7 @@ class TupleKeyedMap {
21355
20829
  }
21356
20830
  yield* impl(this._map, []);
21357
20831
  }
20832
+ _size = 0;
21358
20833
  get size() {
21359
20834
  return this._size;
21360
20835
  }
@@ -21375,11 +20850,11 @@ class TupleKeyedMap {
21375
20850
  "use strict";
21376
20851
  __webpack_require__.r(__webpack_exports__);
21377
20852
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21378
- /* harmony export */ "TypedArrayBuilder": () => (/* binding */ TypedArrayBuilder),
21379
- /* harmony export */ "Uint16ArrayBuilder": () => (/* binding */ Uint16ArrayBuilder),
21380
- /* harmony export */ "Uint32ArrayBuilder": () => (/* binding */ Uint32ArrayBuilder),
21381
- /* harmony export */ "Uint8ArrayBuilder": () => (/* binding */ Uint8ArrayBuilder),
21382
- /* harmony export */ "UintArrayBuilder": () => (/* binding */ UintArrayBuilder)
20853
+ /* harmony export */ TypedArrayBuilder: () => (/* binding */ TypedArrayBuilder),
20854
+ /* harmony export */ Uint16ArrayBuilder: () => (/* binding */ Uint16ArrayBuilder),
20855
+ /* harmony export */ Uint32ArrayBuilder: () => (/* binding */ Uint32ArrayBuilder),
20856
+ /* harmony export */ Uint8ArrayBuilder: () => (/* binding */ Uint8ArrayBuilder),
20857
+ /* harmony export */ UintArrayBuilder: () => (/* binding */ UintArrayBuilder)
21383
20858
  /* harmony export */ });
21384
20859
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
21385
20860
  /*---------------------------------------------------------------------------------------------
@@ -21405,6 +20880,14 @@ __webpack_require__.r(__webpack_exports__);
21405
20880
  * @public
21406
20881
  */
21407
20882
  class TypedArrayBuilder {
20883
+ /** The constructor for the specific type of array being populated. */
20884
+ _constructor;
20885
+ /** The underlying typed array, to be reallocated and copied when its capacity is exceeded. */
20886
+ _data;
20887
+ /** The number of elements added to the array so far. */
20888
+ _length;
20889
+ /** Multiplier applied to required capacity by [[ensureCapacity]]. */
20890
+ growthFactor;
21408
20891
  /** Constructs a new builder from the specified options, with a [[length]] of zero. */
21409
20892
  constructor(constructor, options) {
21410
20893
  this._constructor = constructor;
@@ -21593,7 +21076,7 @@ class UintArrayBuilder extends TypedArrayBuilder {
21593
21076
  "use strict";
21594
21077
  __webpack_require__.r(__webpack_exports__);
21595
21078
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21596
- /* harmony export */ "UnexpectedErrors": () => (/* binding */ UnexpectedErrors)
21079
+ /* harmony export */ UnexpectedErrors: () => (/* binding */ UnexpectedErrors)
21597
21080
  /* harmony export */ });
21598
21081
  /* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
21599
21082
  /*---------------------------------------------------------------------------------------------
@@ -21603,7 +21086,6 @@ __webpack_require__.r(__webpack_exports__);
21603
21086
  /** @packageDocumentation
21604
21087
  * @module Errors
21605
21088
  */
21606
- var _a;
21607
21089
 
21608
21090
  /**
21609
21091
  * Utility for handling/reporting unexpected runtime errors. This class establishes a global handler for
@@ -21613,6 +21095,16 @@ var _a;
21613
21095
  * @public
21614
21096
  */
21615
21097
  class UnexpectedErrors {
21098
+ /** handler for re-throwing exceptions directly */
21099
+ static reThrowImmediate = (e) => { throw e; };
21100
+ /** handler for re-throwing exceptions from an asynchronous interval (so the current call stack is not aborted) */
21101
+ static reThrowDeferred = (e) => setTimeout(() => { throw e; }, 0);
21102
+ /** handler for logging exception to console */
21103
+ static consoleLog = (e) => console.error(e); // eslint-disable-line no-console
21104
+ /** handler for logging exception with [[Logger]] */
21105
+ static errorLog = (e) => _Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.logException("unhandled", e);
21106
+ static _telemetry = [];
21107
+ static _handler = this.errorLog; // default to error logging
21616
21108
  constructor() { } // this is a singleton
21617
21109
  /** Add a "telemetry tracker" for unexpected errors. Useful for tracking/reporting errors without changing handler.
21618
21110
  * @returns a method to remove the tracker
@@ -21649,17 +21141,6 @@ class UnexpectedErrors {
21649
21141
  return oldHandler;
21650
21142
  }
21651
21143
  }
21652
- _a = UnexpectedErrors;
21653
- /** handler for re-throwing exceptions directly */
21654
- UnexpectedErrors.reThrowImmediate = (e) => { throw e; };
21655
- /** handler for re-throwing exceptions from an asynchronous interval (so the current call stack is not aborted) */
21656
- UnexpectedErrors.reThrowDeferred = (e) => setTimeout(() => { throw e; }, 0);
21657
- /** handler for logging exception to console */
21658
- UnexpectedErrors.consoleLog = (e) => console.error(e); // eslint-disable-line no-console
21659
- /** handler for logging exception with [[Logger]] */
21660
- UnexpectedErrors.errorLog = (e) => _Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.logException("unhandled", e);
21661
- UnexpectedErrors._telemetry = [];
21662
- UnexpectedErrors._handler = _a.errorLog; // default to error logging
21663
21144
 
21664
21145
 
21665
21146
  /***/ }),
@@ -21673,9 +21154,9 @@ UnexpectedErrors._handler = _a.errorLog; // default to error logging
21673
21154
  "use strict";
21674
21155
  __webpack_require__.r(__webpack_exports__);
21675
21156
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21676
- /* harmony export */ "asInstanceOf": () => (/* binding */ asInstanceOf),
21677
- /* harmony export */ "isInstanceOf": () => (/* binding */ isInstanceOf),
21678
- /* harmony export */ "omit": () => (/* binding */ omit)
21157
+ /* harmony export */ asInstanceOf: () => (/* binding */ asInstanceOf),
21158
+ /* harmony export */ isInstanceOf: () => (/* binding */ isInstanceOf),
21159
+ /* harmony export */ omit: () => (/* binding */ omit)
21679
21160
  /* harmony export */ });
21680
21161
  /*---------------------------------------------------------------------------------------------
21681
21162
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -21724,7 +21205,7 @@ function omit(t, keys) {
21724
21205
  "use strict";
21725
21206
  __webpack_require__.r(__webpack_exports__);
21726
21207
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21727
- /* harmony export */ "YieldManager": () => (/* binding */ YieldManager)
21208
+ /* harmony export */ YieldManager: () => (/* binding */ YieldManager)
21728
21209
  /* harmony export */ });
21729
21210
  /*---------------------------------------------------------------------------------------------
21730
21211
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -21745,11 +21226,13 @@ const defaultYieldManagerOptions = {
21745
21226
  * @public
21746
21227
  */
21747
21228
  class YieldManager {
21229
+ /** Options controlling the yield behavior. */
21230
+ options;
21231
+ _counter = 0;
21748
21232
  /** Constructor.
21749
21233
  * @param options Options customizing the yield behavior. Omitted properties are assigned their default values.
21750
21234
  */
21751
21235
  constructor(options = {}) {
21752
- this._counter = 0;
21753
21236
  this.options = { ...defaultYieldManagerOptions, ...options };
21754
21237
  }
21755
21238
  /** Increment the iteration counter, yielding control and resetting the counter if [[options.iterationsBeforeYield]] is exceeded. */
@@ -21776,99 +21259,101 @@ class YieldManager {
21776
21259
  "use strict";
21777
21260
  __webpack_require__.r(__webpack_exports__);
21778
21261
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21779
- /* harmony export */ "AbandonedError": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
21780
- /* harmony export */ "BeDuration": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
21781
- /* harmony export */ "BeEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
21782
- /* harmony export */ "BeEventList": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
21783
- /* harmony export */ "BeTimePoint": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
21784
- /* harmony export */ "BeUiEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
21785
- /* harmony export */ "BentleyError": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
21786
- /* harmony export */ "BentleyLoggerCategory": () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
21787
- /* harmony export */ "BentleyStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
21788
- /* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
21789
- /* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
21790
- /* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
21791
- /* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
21792
- /* harmony export */ "DbChangeStage": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbChangeStage),
21793
- /* harmony export */ "DbConflictCause": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbConflictCause),
21794
- /* harmony export */ "DbConflictResolution": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbConflictResolution),
21795
- /* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
21796
- /* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
21797
- /* harmony export */ "DbValueType": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbValueType),
21798
- /* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
21799
- /* harmony export */ "DisposableList": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
21800
- /* harmony export */ "DuplicatePolicy": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
21801
- /* harmony export */ "Entry": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
21802
- /* harmony export */ "ErrorCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
21803
- /* harmony export */ "GeoServiceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
21804
- /* harmony export */ "Guid": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
21805
- /* harmony export */ "HttpStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
21806
- /* harmony export */ "IModelHubStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
21807
- /* harmony export */ "IModelStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
21808
- /* harmony export */ "Id64": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
21809
- /* harmony export */ "IndexMap": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
21810
- /* harmony export */ "IndexedValue": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
21811
- /* harmony export */ "JsonUtils": () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
21812
- /* harmony export */ "LRUCache": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
21813
- /* harmony export */ "LRUDictionary": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
21814
- /* harmony export */ "LRUMap": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
21815
- /* harmony export */ "LogLevel": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
21816
- /* harmony export */ "Logger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
21817
- /* harmony export */ "MutableCompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
21818
- /* harmony export */ "ObservableSet": () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
21819
- /* harmony export */ "OneAtATimeAction": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
21820
- /* harmony export */ "OpenMode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
21821
- /* harmony export */ "OrderedId64Array": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
21822
- /* harmony export */ "OrderedId64Iterable": () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
21823
- /* harmony export */ "OrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
21824
- /* harmony export */ "PerfLogger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
21825
- /* harmony export */ "PriorityQueue": () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
21826
- /* harmony export */ "ProcessDetector": () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
21827
- /* harmony export */ "ReadonlyOrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
21828
- /* harmony export */ "ReadonlySortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
21829
- /* harmony export */ "RealityDataStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
21830
- /* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.RepositoryStatus),
21831
- /* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
21832
- /* harmony export */ "SortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
21833
- /* harmony export */ "SpanKind": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
21834
- /* harmony export */ "StatusCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
21835
- /* harmony export */ "StopWatch": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
21836
- /* harmony export */ "SuccessCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
21837
- /* harmony export */ "Tracing": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
21838
- /* harmony export */ "TransientIdSequence": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
21839
- /* harmony export */ "TupleKeyedMap": () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
21840
- /* harmony export */ "TypedArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
21841
- /* harmony export */ "Uint16ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
21842
- /* harmony export */ "Uint32ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
21843
- /* harmony export */ "Uint8ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
21844
- /* harmony export */ "UintArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
21845
- /* harmony export */ "UnexpectedErrors": () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
21846
- /* harmony export */ "YieldManager": () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
21847
- /* harmony export */ "areEqualPossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
21848
- /* harmony export */ "asInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
21849
- /* harmony export */ "assert": () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
21850
- /* harmony export */ "base64StringToUint8Array": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
21851
- /* harmony export */ "compareBooleans": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
21852
- /* harmony export */ "compareBooleansOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
21853
- /* harmony export */ "compareNumbers": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
21854
- /* harmony export */ "compareNumbersOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
21855
- /* harmony export */ "comparePossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
21856
- /* harmony export */ "compareStrings": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
21857
- /* harmony export */ "compareStringsOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
21858
- /* harmony export */ "compareWithTolerance": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
21859
- /* harmony export */ "dispose": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
21860
- /* harmony export */ "disposeArray": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
21861
- /* harmony export */ "isIDisposable": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
21862
- /* harmony export */ "isInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
21863
- /* harmony export */ "isProperSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
21864
- /* harmony export */ "isSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
21865
- /* harmony export */ "lowerBound": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
21866
- /* harmony export */ "omit": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
21867
- /* harmony export */ "partitionArray": () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
21868
- /* harmony export */ "shallowClone": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
21869
- /* harmony export */ "staticLoggerMetadata": () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.staticLoggerMetadata),
21870
- /* harmony export */ "using": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
21871
- /* harmony export */ "utf8ToString": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString)
21262
+ /* harmony export */ AbandonedError: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
21263
+ /* harmony export */ BeDuration: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
21264
+ /* harmony export */ BeEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
21265
+ /* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
21266
+ /* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
21267
+ /* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
21268
+ /* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
21269
+ /* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
21270
+ /* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
21271
+ /* harmony export */ BriefcaseStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
21272
+ /* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
21273
+ /* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
21274
+ /* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
21275
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbChangeStage),
21276
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbConflictCause),
21277
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbConflictResolution),
21278
+ /* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
21279
+ /* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
21280
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.DbValueType),
21281
+ /* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
21282
+ /* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
21283
+ /* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
21284
+ /* harmony export */ Entry: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
21285
+ /* harmony export */ ErrorCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
21286
+ /* harmony export */ GeoServiceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
21287
+ /* harmony export */ Guid: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
21288
+ /* harmony export */ HttpStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
21289
+ /* harmony export */ IModelHubStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
21290
+ /* harmony export */ IModelStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
21291
+ /* harmony export */ Id64: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
21292
+ /* harmony export */ IndexMap: () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
21293
+ /* harmony export */ IndexedValue: () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
21294
+ /* harmony export */ JsonUtils: () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
21295
+ /* harmony export */ LRUCache: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
21296
+ /* harmony export */ LRUDictionary: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
21297
+ /* harmony export */ LRUMap: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
21298
+ /* harmony export */ LogLevel: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
21299
+ /* harmony export */ Logger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
21300
+ /* harmony export */ MutableCompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
21301
+ /* harmony export */ ObservableSet: () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
21302
+ /* harmony export */ OneAtATimeAction: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
21303
+ /* harmony export */ OpenMode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
21304
+ /* harmony export */ OrderedId64Array: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
21305
+ /* harmony export */ OrderedId64Iterable: () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
21306
+ /* harmony export */ OrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
21307
+ /* harmony export */ PerfLogger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
21308
+ /* harmony export */ PriorityQueue: () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
21309
+ /* harmony export */ ProcessDetector: () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
21310
+ /* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
21311
+ /* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
21312
+ /* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
21313
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_35__.RepositoryStatus),
21314
+ /* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
21315
+ /* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
21316
+ /* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
21317
+ /* harmony export */ StatusCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
21318
+ /* harmony export */ StopWatch: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
21319
+ /* harmony export */ SuccessCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
21320
+ /* harmony export */ Tracing: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
21321
+ /* harmony export */ TransientIdSequence: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
21322
+ /* harmony export */ TupleKeyedMap: () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
21323
+ /* harmony export */ TypedArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
21324
+ /* harmony export */ Uint16ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
21325
+ /* harmony export */ Uint32ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
21326
+ /* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
21327
+ /* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
21328
+ /* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
21329
+ /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
21330
+ /* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
21331
+ /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
21332
+ /* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
21333
+ /* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
21334
+ /* harmony export */ compareBooleans: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
21335
+ /* harmony export */ compareBooleansOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
21336
+ /* harmony export */ compareNumbers: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
21337
+ /* harmony export */ compareNumbersOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
21338
+ /* harmony export */ comparePossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
21339
+ /* harmony export */ compareSimpleArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareSimpleArrays),
21340
+ /* harmony export */ compareSimpleTypes: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareSimpleTypes),
21341
+ /* harmony export */ compareStrings: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
21342
+ /* harmony export */ compareStringsOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
21343
+ /* harmony export */ compareWithTolerance: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
21344
+ /* harmony export */ dispose: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
21345
+ /* harmony export */ disposeArray: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
21346
+ /* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
21347
+ /* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
21348
+ /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
21349
+ /* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
21350
+ /* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
21351
+ /* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
21352
+ /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
21353
+ /* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
21354
+ /* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
21355
+ /* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
21356
+ /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString)
21872
21357
  /* harmony export */ });
21873
21358
  /* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
21874
21359
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
@@ -21999,10 +21484,10 @@ __webpack_require__.r(__webpack_exports__);
21999
21484
  "use strict";
22000
21485
  __webpack_require__.r(__webpack_exports__);
22001
21486
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22002
- /* harmony export */ "DbChangeStage": () => (/* binding */ DbChangeStage),
22003
- /* harmony export */ "DbConflictCause": () => (/* binding */ DbConflictCause),
22004
- /* harmony export */ "DbConflictResolution": () => (/* binding */ DbConflictResolution),
22005
- /* harmony export */ "DbValueType": () => (/* binding */ DbValueType)
21487
+ /* harmony export */ DbChangeStage: () => (/* binding */ DbChangeStage),
21488
+ /* harmony export */ DbConflictCause: () => (/* binding */ DbConflictCause),
21489
+ /* harmony export */ DbConflictResolution: () => (/* binding */ DbConflictResolution),
21490
+ /* harmony export */ DbValueType: () => (/* binding */ DbValueType)
22006
21491
  /* harmony export */ });
22007
21492
  /*---------------------------------------------------------------------------------------------
22008
21493
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -22060,7 +21545,7 @@ var DbConflictResolution;
22060
21545
  "use strict";
22061
21546
  __webpack_require__.r(__webpack_exports__);
22062
21547
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22063
- /* harmony export */ "RepositoryStatus": () => (/* binding */ RepositoryStatus)
21548
+ /* harmony export */ RepositoryStatus: () => (/* binding */ RepositoryStatus)
22064
21549
  /* harmony export */ });
22065
21550
  /*---------------------------------------------------------------------------------------------
22066
21551
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -22119,16 +21604,14 @@ var RepositoryStatus;
22119
21604
  "use strict";
22120
21605
  __webpack_require__.r(__webpack_exports__);
22121
21606
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22122
- /* harmony export */ "DbChangeStage": () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_2__.DbChangeStage),
22123
- /* harmony export */ "DbConflictCause": () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_2__.DbConflictCause),
22124
- /* harmony export */ "DbConflictResolution": () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_2__.DbConflictResolution),
22125
- /* harmony export */ "DbValueType": () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_2__.DbValueType),
22126
- /* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__.RepositoryStatus),
22127
- /* harmony export */ "staticLoggerMetadata": () => (/* reexport safe */ _staticLoggerMetadata__WEBPACK_IMPORTED_MODULE_0__.staticLoggerMetadata)
21607
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__.DbChangeStage),
21608
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__.DbConflictCause),
21609
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__.DbConflictResolution),
21610
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__.DbValueType),
21611
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _RepositoryStatus__WEBPACK_IMPORTED_MODULE_0__.RepositoryStatus)
22128
21612
  /* harmony export */ });
22129
- /* harmony import */ var _staticLoggerMetadata__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./staticLoggerMetadata */ "../bentley/lib/esm/internal/staticLoggerMetadata.js");
22130
- /* harmony import */ var _RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RepositoryStatus */ "../bentley/lib/esm/internal/RepositoryStatus.js");
22131
- /* harmony import */ var _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BeSQLiteInternal */ "../bentley/lib/esm/internal/BeSQLiteInternal.js");
21613
+ /* harmony import */ var _RepositoryStatus__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RepositoryStatus */ "../bentley/lib/esm/internal/RepositoryStatus.js");
21614
+ /* harmony import */ var _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BeSQLiteInternal */ "../bentley/lib/esm/internal/BeSQLiteInternal.js");
22132
21615
  /*---------------------------------------------------------------------------------------------
22133
21616
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
22134
21617
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -22137,35 +21620,6 @@ __webpack_require__.r(__webpack_exports__);
22137
21620
 
22138
21621
 
22139
21622
 
22140
-
22141
- /***/ }),
22142
-
22143
- /***/ "../bentley/lib/esm/internal/staticLoggerMetadata.js":
22144
- /*!***********************************************************!*\
22145
- !*** ../bentley/lib/esm/internal/staticLoggerMetadata.js ***!
22146
- \***********************************************************/
22147
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22148
-
22149
- "use strict";
22150
- __webpack_require__.r(__webpack_exports__);
22151
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22152
- /* harmony export */ "staticLoggerMetadata": () => (/* binding */ staticLoggerMetadata)
22153
- /* harmony export */ });
22154
- /*---------------------------------------------------------------------------------------------
22155
- * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
22156
- * See LICENSE.md in the project root for license terms and full copyright notice.
22157
- *--------------------------------------------------------------------------------------------*/
22158
- /** @packageDocumentation
22159
- * @module Logging
22160
- */
22161
- /** All static metadata is combined with per-call metadata and stringified in every log message.
22162
- * Static metadata can either be an object or a function that returns an object.
22163
- * Use a key to identify entries in the map so the can be removed individually.
22164
- * @internal
22165
- */
22166
- const staticLoggerMetadata = new Map();
22167
-
22168
-
22169
21623
  /***/ }),
22170
21624
 
22171
21625
  /***/ "../bentley/lib/esm/partitionArray.js":
@@ -22177,7 +21631,7 @@ const staticLoggerMetadata = new Map();
22177
21631
  "use strict";
22178
21632
  __webpack_require__.r(__webpack_exports__);
22179
21633
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22180
- /* harmony export */ "partitionArray": () => (/* binding */ partitionArray)
21634
+ /* harmony export */ partitionArray: () => (/* binding */ partitionArray)
22181
21635
  /* harmony export */ });
22182
21636
  /*---------------------------------------------------------------------------------------------
22183
21637
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -22244,7 +21698,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
22244
21698
  exports.ITwinLocalization = void 0;
22245
21699
  const i18next_1 = __importDefault(__webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/cjs/i18next.js"));
22246
21700
  const i18next_browser_languagedetector_1 = __importDefault(__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"));
22247
- const i18next_http_backend_1 = __importDefault(__webpack_require__(/*! i18next-http-backend */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js"));
21701
+ const i18next_http_backend_1 = __importDefault(__webpack_require__(/*! i18next-http-backend */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/index.js"));
22248
21702
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../bentley/lib/esm/core-bentley.js");
22249
21703
  const DEFAULT_MAX_RETRIES = 1; // a low number prevents wasted time and potential timeouts when requesting localization files throws an error
22250
21704
  /** Supplies localizations for iTwin.js
@@ -22252,8 +21706,12 @@ const DEFAULT_MAX_RETRIES = 1; // a low number prevents wasted time and potentia
22252
21706
  * @public
22253
21707
  */
22254
21708
  class ITwinLocalization {
21709
+ i18next;
21710
+ _initOptions;
21711
+ _backendOptions;
21712
+ _detectionOptions;
21713
+ _namespaces = new Map();
22255
21714
  constructor(options) {
22256
- this._namespaces = new Map();
22257
21715
  this.i18next = i18next_1.default.createInstance();
22258
21716
  this._backendOptions = {
22259
21717
  loadPath: options?.urlTemplate ?? "locales/{{lng}}/{{ns}}.json",
@@ -22341,26 +21799,6 @@ class ITwinLocalization {
22341
21799
  }
22342
21800
  return value;
22343
21801
  }
22344
- /** Similar to `getLocalizedString` but the default namespace is a separate parameter and the key does not need
22345
- * to include a namespace. If a key includes a namespace, that namespace will be used for interpolating that key.
22346
- * @param namespace - the namespace that identifies the particular localization file that contains the property.
22347
- * @param key - the key that matches a property in the JSON localization file.
22348
- * @returns The string corresponding to the first key that resolves.
22349
- * @throws Error if no keys resolve to a string.
22350
- * @internal
22351
- */
22352
- getLocalizedStringWithNamespace(namespace, key, options) {
22353
- let fullKey = "";
22354
- if (typeof key === "string") {
22355
- fullKey = `${namespace}:${key}`;
22356
- }
22357
- else {
22358
- fullKey = key.map((subKey) => {
22359
- return `${namespace}:${subKey}`;
22360
- });
22361
- }
22362
- return this.getLocalizedString(fullKey, options);
22363
- }
22364
21802
  /** Gets the English translation.
22365
21803
  * @param namespace - the namespace that identifies the particular localization file that contains the property.
22366
21804
  * @param key - the key that matches a property in the JSON localization file.
@@ -22445,6 +21883,7 @@ class ITwinLocalization {
22445
21883
  }
22446
21884
  exports.ITwinLocalization = ITwinLocalization;
22447
21885
  class TranslationLogger {
21886
+ static type = "logger";
22448
21887
  log(args) { core_bentley_1.Logger.logInfo("i18n", this.createLogMessage(args)); }
22449
21888
  warn(args) { core_bentley_1.Logger.logWarning("i18n", this.createLogMessage(args)); }
22450
21889
  error(args) { core_bentley_1.Logger.logError("i18n", this.createLogMessage(args)); }
@@ -22457,7 +21896,6 @@ class TranslationLogger {
22457
21896
  return message;
22458
21897
  }
22459
21898
  }
22460
- TranslationLogger.type = "logger";
22461
21899
 
22462
21900
 
22463
21901
  /***/ }),
@@ -22472,10 +21910,10 @@ TranslationLogger.type = "logger";
22472
21910
 
22473
21911
  /***/ }),
22474
21912
 
22475
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
22476
- /*!**************************************************************************************************************************!*\
22477
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
22478
- \**************************************************************************************************************************/
21913
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
21914
+ /*!***************************************************************************************************************************!*\
21915
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
21916
+ \***************************************************************************************************************************/
22479
21917
  /***/ ((module) => {
22480
21918
 
22481
21919
  function _arrayLikeToArray(r, a) {
@@ -22487,10 +21925,10 @@ module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exp
22487
21925
 
22488
21926
  /***/ }),
22489
21927
 
22490
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
22491
- /*!************************************************************************************************************************!*\
22492
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
22493
- \************************************************************************************************************************/
21928
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
21929
+ /*!*************************************************************************************************************************!*\
21930
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
21931
+ \*************************************************************************************************************************/
22494
21932
  /***/ ((module) => {
22495
21933
 
22496
21934
  function _arrayWithHoles(r) {
@@ -22500,10 +21938,10 @@ module.exports = _arrayWithHoles, module.exports.__esModule = true, module.expor
22500
21938
 
22501
21939
  /***/ }),
22502
21940
 
22503
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
22504
- /*!*******************************************************************************************************************************!*\
22505
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
22506
- \*******************************************************************************************************************************/
21941
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
21942
+ /*!********************************************************************************************************************************!*\
21943
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
21944
+ \********************************************************************************************************************************/
22507
21945
  /***/ ((module) => {
22508
21946
 
22509
21947
  function _assertThisInitialized(e) {
@@ -22514,10 +21952,10 @@ module.exports = _assertThisInitialized, module.exports.__esModule = true, modul
22514
21952
 
22515
21953
  /***/ }),
22516
21954
 
22517
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/classCallCheck.js":
22518
- /*!************************************************************************************************************************!*\
22519
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
22520
- \************************************************************************************************************************/
21955
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/classCallCheck.js":
21956
+ /*!*************************************************************************************************************************!*\
21957
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
21958
+ \*************************************************************************************************************************/
22521
21959
  /***/ ((module) => {
22522
21960
 
22523
21961
  function _classCallCheck(a, n) {
@@ -22527,13 +21965,13 @@ module.exports = _classCallCheck, module.exports.__esModule = true, module.expor
22527
21965
 
22528
21966
  /***/ }),
22529
21967
 
22530
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/createClass.js":
22531
- /*!*********************************************************************************************************************!*\
22532
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/createClass.js ***!
22533
- \*********************************************************************************************************************/
21968
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/createClass.js":
21969
+ /*!**********************************************************************************************************************!*\
21970
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/createClass.js ***!
21971
+ \**********************************************************************************************************************/
22534
21972
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22535
21973
 
22536
- var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPropertyKey.js");
21974
+ var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22537
21975
  function _defineProperties(e, r) {
22538
21976
  for (var t = 0; t < r.length; t++) {
22539
21977
  var o = r[t];
@@ -22549,13 +21987,13 @@ module.exports = _createClass, module.exports.__esModule = true, module.exports[
22549
21987
 
22550
21988
  /***/ }),
22551
21989
 
22552
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/defineProperty.js":
22553
- /*!************************************************************************************************************************!*\
22554
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/defineProperty.js ***!
22555
- \************************************************************************************************************************/
21990
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/defineProperty.js":
21991
+ /*!*************************************************************************************************************************!*\
21992
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/defineProperty.js ***!
21993
+ \*************************************************************************************************************************/
22556
21994
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22557
21995
 
22558
- var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPropertyKey.js");
21996
+ var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22559
21997
  function _defineProperty(e, r, t) {
22560
21998
  return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
22561
21999
  value: t,
@@ -22568,10 +22006,10 @@ module.exports = _defineProperty, module.exports.__esModule = true, module.expor
22568
22006
 
22569
22007
  /***/ }),
22570
22008
 
22571
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
22572
- /*!************************************************************************************************************************!*\
22573
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
22574
- \************************************************************************************************************************/
22009
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
22010
+ /*!*************************************************************************************************************************!*\
22011
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
22012
+ \*************************************************************************************************************************/
22575
22013
  /***/ ((module) => {
22576
22014
 
22577
22015
  function _getPrototypeOf(t) {
@@ -22583,13 +22021,13 @@ module.exports = _getPrototypeOf, module.exports.__esModule = true, module.expor
22583
22021
 
22584
22022
  /***/ }),
22585
22023
 
22586
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/inherits.js":
22587
- /*!******************************************************************************************************************!*\
22588
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/inherits.js ***!
22589
- \******************************************************************************************************************/
22024
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/inherits.js":
22025
+ /*!*******************************************************************************************************************!*\
22026
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/inherits.js ***!
22027
+ \*******************************************************************************************************************/
22590
22028
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22591
22029
 
22592
- var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
22030
+ var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
22593
22031
  function _inherits(t, e) {
22594
22032
  if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
22595
22033
  t.prototype = Object.create(e && e.prototype, {
@@ -22606,10 +22044,10 @@ module.exports = _inherits, module.exports.__esModule = true, module.exports["de
22606
22044
 
22607
22045
  /***/ }),
22608
22046
 
22609
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/iterableToArray.js":
22610
- /*!*************************************************************************************************************************!*\
22611
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
22612
- \*************************************************************************************************************************/
22047
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/iterableToArray.js":
22048
+ /*!**************************************************************************************************************************!*\
22049
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
22050
+ \**************************************************************************************************************************/
22613
22051
  /***/ ((module) => {
22614
22052
 
22615
22053
  function _iterableToArray(r) {
@@ -22619,10 +22057,10 @@ module.exports = _iterableToArray, module.exports.__esModule = true, module.expo
22619
22057
 
22620
22058
  /***/ }),
22621
22059
 
22622
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/nonIterableRest.js":
22623
- /*!*************************************************************************************************************************!*\
22624
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
22625
- \*************************************************************************************************************************/
22060
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/nonIterableRest.js":
22061
+ /*!**************************************************************************************************************************!*\
22062
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
22063
+ \**************************************************************************************************************************/
22626
22064
  /***/ ((module) => {
22627
22065
 
22628
22066
  function _nonIterableRest() {
@@ -22632,14 +22070,14 @@ module.exports = _nonIterableRest, module.exports.__esModule = true, module.expo
22632
22070
 
22633
22071
  /***/ }),
22634
22072
 
22635
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
22636
- /*!***********************************************************************************************************************************!*\
22637
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
22638
- \***********************************************************************************************************************************/
22073
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
22074
+ /*!************************************************************************************************************************************!*\
22075
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
22076
+ \************************************************************************************************************************************/
22639
22077
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22640
22078
 
22641
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22642
- var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
22079
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22080
+ var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
22643
22081
  function _possibleConstructorReturn(t, e) {
22644
22082
  if (e && ("object" == _typeof(e) || "function" == typeof e)) return e;
22645
22083
  if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
@@ -22649,10 +22087,10 @@ module.exports = _possibleConstructorReturn, module.exports.__esModule = true, m
22649
22087
 
22650
22088
  /***/ }),
22651
22089
 
22652
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
22653
- /*!************************************************************************************************************************!*\
22654
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
22655
- \************************************************************************************************************************/
22090
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
22091
+ /*!*************************************************************************************************************************!*\
22092
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
22093
+ \*************************************************************************************************************************/
22656
22094
  /***/ ((module) => {
22657
22095
 
22658
22096
  function _setPrototypeOf(t, e) {
@@ -22664,16 +22102,16 @@ module.exports = _setPrototypeOf, module.exports.__esModule = true, module.expor
22664
22102
 
22665
22103
  /***/ }),
22666
22104
 
22667
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toArray.js":
22668
- /*!*****************************************************************************************************************!*\
22669
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toArray.js ***!
22670
- \*****************************************************************************************************************/
22105
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toArray.js":
22106
+ /*!******************************************************************************************************************!*\
22107
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toArray.js ***!
22108
+ \******************************************************************************************************************/
22671
22109
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22672
22110
 
22673
- var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
22674
- var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/iterableToArray.js");
22675
- var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
22676
- var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/nonIterableRest.js");
22111
+ var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
22112
+ var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/iterableToArray.js");
22113
+ var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
22114
+ var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/nonIterableRest.js");
22677
22115
  function _toArray(r) {
22678
22116
  return arrayWithHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableRest();
22679
22117
  }
@@ -22681,13 +22119,13 @@ module.exports = _toArray, module.exports.__esModule = true, module.exports["def
22681
22119
 
22682
22120
  /***/ }),
22683
22121
 
22684
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPrimitive.js":
22685
- /*!*********************************************************************************************************************!*\
22686
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
22687
- \*********************************************************************************************************************/
22122
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPrimitive.js":
22123
+ /*!**********************************************************************************************************************!*\
22124
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
22125
+ \**********************************************************************************************************************/
22688
22126
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22689
22127
 
22690
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22128
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22691
22129
  function toPrimitive(t, r) {
22692
22130
  if ("object" != _typeof(t) || !t) return t;
22693
22131
  var e = t[Symbol.toPrimitive];
@@ -22702,14 +22140,14 @@ module.exports = toPrimitive, module.exports.__esModule = true, module.exports["
22702
22140
 
22703
22141
  /***/ }),
22704
22142
 
22705
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPropertyKey.js":
22706
- /*!***********************************************************************************************************************!*\
22707
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
22708
- \***********************************************************************************************************************/
22143
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPropertyKey.js":
22144
+ /*!************************************************************************************************************************!*\
22145
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
22146
+ \************************************************************************************************************************/
22709
22147
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22710
22148
 
22711
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22712
- var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/toPrimitive.js");
22149
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22150
+ var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/toPrimitive.js");
22713
22151
  function toPropertyKey(t) {
22714
22152
  var i = toPrimitive(t, "string");
22715
22153
  return "symbol" == _typeof(i) ? i : i + "";
@@ -22718,10 +22156,10 @@ module.exports = toPropertyKey, module.exports.__esModule = true, module.exports
22718
22156
 
22719
22157
  /***/ }),
22720
22158
 
22721
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js":
22722
- /*!****************************************************************************************************************!*\
22723
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/typeof.js ***!
22724
- \****************************************************************************************************************/
22159
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js":
22160
+ /*!*****************************************************************************************************************!*\
22161
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/typeof.js ***!
22162
+ \*****************************************************************************************************************/
22725
22163
  /***/ ((module) => {
22726
22164
 
22727
22165
  function _typeof(o) {
@@ -22737,13 +22175,13 @@ module.exports = _typeof, module.exports.__esModule = true, module.exports["defa
22737
22175
 
22738
22176
  /***/ }),
22739
22177
 
22740
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
22741
- /*!************************************************************************************************************************************!*\
22742
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
22743
- \************************************************************************************************************************************/
22178
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
22179
+ /*!*************************************************************************************************************************************!*\
22180
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
22181
+ \*************************************************************************************************************************************/
22744
22182
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22745
22183
 
22746
- var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
22184
+ var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
22747
22185
  function _unsupportedIterableToArray(r, a) {
22748
22186
  if (r) {
22749
22187
  if ("string" == typeof r) return arrayLikeToArray(r, a);
@@ -22755,66 +22193,154 @@ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true,
22755
22193
 
22756
22194
  /***/ }),
22757
22195
 
22758
- /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js":
22759
- /*!*************************************************************************************************************************!*\
22760
- !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js ***!
22761
- \*************************************************************************************************************************/
22762
- /***/ ((module, exports, __webpack_require__) => {
22763
-
22764
- var fetchApi
22765
- if (typeof fetch === 'function') {
22766
- if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.fetch) {
22767
- fetchApi = __webpack_require__.g.fetch
22768
- } else if (typeof window !== 'undefined' && window.fetch) {
22769
- fetchApi = window.fetch
22770
- } else {
22771
- fetchApi = fetch
22196
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
22197
+ /*!*****************************************************************************************************************************!*\
22198
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
22199
+ \*****************************************************************************************************************************/
22200
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22201
+
22202
+ "use strict";
22203
+ __webpack_require__.r(__webpack_exports__);
22204
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22205
+ /* harmony export */ "default": () => (/* binding */ _classCallCheck)
22206
+ /* harmony export */ });
22207
+ function _classCallCheck(a, n) {
22208
+ if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
22209
+ }
22210
+
22211
+
22212
+ /***/ }),
22213
+
22214
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/createClass.js":
22215
+ /*!**************************************************************************************************************************!*\
22216
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
22217
+ \**************************************************************************************************************************/
22218
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22219
+
22220
+ "use strict";
22221
+ __webpack_require__.r(__webpack_exports__);
22222
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22223
+ /* harmony export */ "default": () => (/* binding */ _createClass)
22224
+ /* harmony export */ });
22225
+ /* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
22226
+
22227
+ function _defineProperties(e, r) {
22228
+ for (var t = 0; t < r.length; t++) {
22229
+ var o = r[t];
22230
+ o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(o.key), o);
22772
22231
  }
22773
22232
  }
22233
+ function _createClass(e, r, t) {
22234
+ return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
22235
+ writable: !1
22236
+ }), e;
22237
+ }
22238
+
22239
+
22240
+ /***/ }),
22241
+
22242
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
22243
+ /*!**************************************************************************************************************************!*\
22244
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
22245
+ \**************************************************************************************************************************/
22246
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22247
+
22248
+ "use strict";
22249
+ __webpack_require__.r(__webpack_exports__);
22250
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22251
+ /* harmony export */ "default": () => (/* binding */ toPrimitive)
22252
+ /* harmony export */ });
22253
+ /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/typeof.js");
22774
22254
 
22775
- if ( true && (typeof window === 'undefined' || typeof window.document === 'undefined')) {
22776
- var f = fetchApi || __webpack_require__(/*! cross-fetch */ "../../common/temp/node_modules/.pnpm/cross-fetch@3.1.5/node_modules/cross-fetch/dist/browser-ponyfill.js")
22777
- if (f.default) f = f.default
22778
- exports["default"] = f
22779
- module.exports = exports.default
22255
+ function toPrimitive(t, r) {
22256
+ if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t;
22257
+ var e = t[Symbol.toPrimitive];
22258
+ if (void 0 !== e) {
22259
+ var i = e.call(t, r || "default");
22260
+ if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i)) return i;
22261
+ throw new TypeError("@@toPrimitive must return a primitive value.");
22262
+ }
22263
+ return ("string" === r ? String : Number)(t);
22780
22264
  }
22781
22265
 
22782
22266
 
22783
22267
  /***/ }),
22784
22268
 
22785
- /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js":
22786
- /*!**********************************************************************************************************************!*\
22787
- !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js ***!
22788
- \**********************************************************************************************************************/
22789
- /***/ ((module, exports, __webpack_require__) => {
22269
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
22270
+ /*!****************************************************************************************************************************!*\
22271
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
22272
+ \****************************************************************************************************************************/
22273
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22790
22274
 
22791
22275
  "use strict";
22276
+ __webpack_require__.r(__webpack_exports__);
22277
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22278
+ /* harmony export */ "default": () => (/* binding */ toPropertyKey)
22279
+ /* harmony export */ });
22280
+ /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/typeof.js");
22281
+ /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
22792
22282
 
22793
22283
 
22794
- Object.defineProperty(exports, "__esModule", ({
22795
- value: true
22796
- }));
22797
- exports["default"] = void 0;
22284
+ function toPropertyKey(t) {
22285
+ var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string");
22286
+ return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : i + "";
22287
+ }
22288
+
22289
+
22290
+ /***/ }),
22291
+
22292
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/typeof.js":
22293
+ /*!*********************************************************************************************************************!*\
22294
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.10/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
22295
+ \*********************************************************************************************************************/
22296
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22798
22297
 
22799
- var _utils = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js");
22298
+ "use strict";
22299
+ __webpack_require__.r(__webpack_exports__);
22300
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22301
+ /* harmony export */ "default": () => (/* binding */ _typeof)
22302
+ /* harmony export */ });
22303
+ function _typeof(o) {
22304
+ "@babel/helpers - typeof";
22800
22305
 
22801
- var _request = _interopRequireDefault(__webpack_require__(/*! ./request.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js"));
22306
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
22307
+ return typeof o;
22308
+ } : function (o) {
22309
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
22310
+ }, _typeof(o);
22311
+ }
22802
22312
 
22803
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
22804
22313
 
22805
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
22314
+ /***/ }),
22806
22315
 
22807
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
22316
+ /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/index.js":
22317
+ /*!**********************************************************************************************************************!*\
22318
+ !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/index.js ***!
22319
+ \**********************************************************************************************************************/
22320
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22808
22321
 
22809
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
22322
+ "use strict";
22323
+ __webpack_require__.r(__webpack_exports__);
22324
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22325
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
22326
+ /* harmony export */ });
22327
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/utils.js");
22328
+ /* harmony import */ var _request_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./request.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/request.js");
22329
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
22330
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
22331
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
22332
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
22333
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
22334
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
22335
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
22336
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
22337
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
22810
22338
 
22811
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
22812
22339
 
22813
22340
  var getDefaults = function getDefaults() {
22814
22341
  return {
22815
22342
  loadPath: '/locales/{{lng}}/{{ns}}.json',
22816
22343
  addPath: '/locales/add/{{lng}}/{{ns}}',
22817
- allowMultiLoading: false,
22818
22344
  parse: function parse(data) {
22819
22345
  return JSON.parse(data);
22820
22346
  },
@@ -22822,7 +22348,10 @@ var getDefaults = function getDefaults() {
22822
22348
  parsePayload: function parsePayload(namespace, key, fallbackValue) {
22823
22349
  return _defineProperty({}, key, fallbackValue || '');
22824
22350
  },
22825
- request: _request.default,
22351
+ parseLoadPayload: function parseLoadPayload(languages, namespaces) {
22352
+ return undefined;
22353
+ },
22354
+ request: _request_js__WEBPACK_IMPORTED_MODULE_1__["default"],
22826
22355
  reloadInterval: typeof window !== 'undefined' ? false : 60 * 60 * 1000,
22827
22356
  customHeaders: {},
22828
22357
  queryStringParams: {},
@@ -22836,36 +22365,31 @@ var getDefaults = function getDefaults() {
22836
22365
  }
22837
22366
  };
22838
22367
  };
22839
-
22840
22368
  var Backend = function () {
22841
22369
  function Backend(services) {
22842
22370
  var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
22843
22371
  var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
22844
-
22845
22372
  _classCallCheck(this, Backend);
22846
-
22847
22373
  this.services = services;
22848
22374
  this.options = options;
22849
22375
  this.allOptions = allOptions;
22850
22376
  this.type = 'backend';
22851
22377
  this.init(services, options, allOptions);
22852
22378
  }
22853
-
22854
- _createClass(Backend, [{
22379
+ return _createClass(Backend, [{
22855
22380
  key: "init",
22856
22381
  value: function init(services) {
22857
22382
  var _this = this;
22858
-
22859
22383
  var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
22860
22384
  var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
22861
22385
  this.services = services;
22862
- this.options = (0, _utils.defaults)(options, this.options || {}, getDefaults());
22386
+ this.options = _objectSpread(_objectSpread(_objectSpread({}, getDefaults()), this.options || {}), options);
22863
22387
  this.allOptions = allOptions;
22864
-
22865
22388
  if (this.services && this.options.reloadInterval) {
22866
- setInterval(function () {
22389
+ var timer = setInterval(function () {
22867
22390
  return _this.reload();
22868
22391
  }, this.options.reloadInterval);
22392
+ if (_typeof(timer) === 'object' && typeof timer.unref === 'function') timer.unref();
22869
22393
  }
22870
22394
  }
22871
22395
  }, {
@@ -22882,22 +22406,17 @@ var Backend = function () {
22882
22406
  key: "_readAny",
22883
22407
  value: function _readAny(languages, loadUrlLanguages, namespaces, loadUrlNamespaces, callback) {
22884
22408
  var _this2 = this;
22885
-
22886
22409
  var loadPath = this.options.loadPath;
22887
-
22888
22410
  if (typeof this.options.loadPath === 'function') {
22889
22411
  loadPath = this.options.loadPath(languages, namespaces);
22890
22412
  }
22891
-
22892
- loadPath = (0, _utils.makePromise)(loadPath);
22413
+ loadPath = (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.makePromise)(loadPath);
22893
22414
  loadPath.then(function (resolvedLoadPath) {
22894
22415
  if (!resolvedLoadPath) return callback(null, {});
22895
-
22896
22416
  var url = _this2.services.interpolator.interpolate(resolvedLoadPath, {
22897
22417
  lng: languages.join('+'),
22898
22418
  ns: namespaces.join('+')
22899
22419
  });
22900
-
22901
22420
  _this2.loadUrl(url, callback, loadUrlLanguages, loadUrlNamespaces);
22902
22421
  });
22903
22422
  }
@@ -22905,14 +22424,23 @@ var Backend = function () {
22905
22424
  key: "loadUrl",
22906
22425
  value: function loadUrl(url, callback, languages, namespaces) {
22907
22426
  var _this3 = this;
22908
-
22909
- this.options.request(this.options, url, undefined, function (err, res) {
22427
+ var lng = typeof languages === 'string' ? [languages] : languages;
22428
+ var ns = typeof namespaces === 'string' ? [namespaces] : namespaces;
22429
+ var payload = this.options.parseLoadPayload(lng, ns);
22430
+ this.options.request(this.options, url, payload, function (err, res) {
22910
22431
  if (res && (res.status >= 500 && res.status < 600 || !res.status)) return callback('failed loading ' + url + '; status code: ' + res.status, true);
22911
22432
  if (res && res.status >= 400 && res.status < 500) return callback('failed loading ' + url + '; status code: ' + res.status, false);
22912
- if (!res && err && err.message && err.message.indexOf('Failed to fetch') > -1) return callback('failed loading ' + url + ': ' + err.message, true);
22433
+ if (!res && err && err.message) {
22434
+ var errorMessage = err.message.toLowerCase();
22435
+ var isNetworkError = ['failed', 'fetch', 'network', 'load'].find(function (term) {
22436
+ return errorMessage.indexOf(term) > -1;
22437
+ });
22438
+ if (isNetworkError) {
22439
+ return callback('failed loading ' + url + ': ' + err.message, true);
22440
+ }
22441
+ }
22913
22442
  if (err) return callback(err, false);
22914
22443
  var ret, parseErr;
22915
-
22916
22444
  try {
22917
22445
  if (typeof res.data === 'string') {
22918
22446
  ret = _this3.options.parse(res.data, languages, namespaces);
@@ -22922,7 +22450,6 @@ var Backend = function () {
22922
22450
  } catch (e) {
22923
22451
  parseErr = 'failed parsing ' + url + ' to json';
22924
22452
  }
22925
-
22926
22453
  if (parseErr) return callback(parseErr, false);
22927
22454
  callback(null, ret);
22928
22455
  });
@@ -22931,7 +22458,6 @@ var Backend = function () {
22931
22458
  key: "create",
22932
22459
  value: function create(languages, namespace, key, fallbackValue, callback) {
22933
22460
  var _this4 = this;
22934
-
22935
22461
  if (!this.options.addPath) return;
22936
22462
  if (typeof languages === 'string') languages = [languages];
22937
22463
  var payload = this.options.parsePayload(namespace, key, fallbackValue);
@@ -22940,23 +22466,19 @@ var Backend = function () {
22940
22466
  var resArray = [];
22941
22467
  languages.forEach(function (lng) {
22942
22468
  var addPath = _this4.options.addPath;
22943
-
22944
22469
  if (typeof _this4.options.addPath === 'function') {
22945
22470
  addPath = _this4.options.addPath(lng, namespace);
22946
22471
  }
22947
-
22948
22472
  var url = _this4.services.interpolator.interpolate(addPath, {
22949
22473
  lng: lng,
22950
22474
  ns: namespace
22951
22475
  });
22952
-
22953
22476
  _this4.options.request(_this4.options, url, payload, function (data, res) {
22954
22477
  finished += 1;
22955
22478
  dataArray.push(data);
22956
22479
  resArray.push(res);
22957
-
22958
22480
  if (finished === languages.length) {
22959
- if (callback) callback(dataArray, resArray);
22481
+ if (typeof callback === 'function') callback(dataArray, resArray);
22960
22482
  }
22961
22483
  });
22962
22484
  });
@@ -22965,22 +22487,19 @@ var Backend = function () {
22965
22487
  key: "reload",
22966
22488
  value: function reload() {
22967
22489
  var _this5 = this;
22968
-
22969
22490
  var _this$services = this.services,
22970
- backendConnector = _this$services.backendConnector,
22971
- languageUtils = _this$services.languageUtils,
22972
- logger = _this$services.logger;
22491
+ backendConnector = _this$services.backendConnector,
22492
+ languageUtils = _this$services.languageUtils,
22493
+ logger = _this$services.logger;
22973
22494
  var currentLanguage = backendConnector.language;
22974
22495
  if (currentLanguage && currentLanguage.toLowerCase() === 'cimode') return;
22975
22496
  var toLoad = [];
22976
-
22977
22497
  var append = function append(lng) {
22978
22498
  var lngs = languageUtils.toResolveHierarchy(lng);
22979
22499
  lngs.forEach(function (l) {
22980
22500
  if (toLoad.indexOf(l) < 0) toLoad.push(l);
22981
22501
  });
22982
22502
  };
22983
-
22984
22503
  append(currentLanguage);
22985
22504
  if (this.allOptions.preload) this.allOptions.preload.forEach(function (l) {
22986
22505
  return append(l);
@@ -22996,93 +22515,74 @@ var Backend = function () {
22996
22515
  });
22997
22516
  }
22998
22517
  }]);
22999
-
23000
- return Backend;
23001
22518
  }();
23002
-
23003
22519
  Backend.type = 'backend';
23004
- var _default = Backend;
23005
- exports["default"] = _default;
23006
- module.exports = exports.default;
22520
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Backend);
23007
22521
 
23008
22522
  /***/ }),
23009
22523
 
23010
- /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js":
22524
+ /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/request.js":
23011
22525
  /*!************************************************************************************************************************!*\
23012
- !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js ***!
22526
+ !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/request.js ***!
23013
22527
  \************************************************************************************************************************/
23014
- /***/ ((module, exports, __webpack_require__) => {
22528
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23015
22529
 
23016
22530
  "use strict";
23017
-
23018
-
23019
- Object.defineProperty(exports, "__esModule", ({
23020
- value: true
23021
- }));
23022
- exports["default"] = void 0;
23023
-
23024
- var _utils = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js");
23025
-
23026
- var fetchNode = _interopRequireWildcard(__webpack_require__(/*! ./getFetch.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js"));
23027
-
23028
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23029
-
23030
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
23031
-
23032
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
23033
-
23034
- var fetchApi;
23035
-
23036
- if (typeof fetch === 'function') {
23037
- if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.fetch) {
23038
- fetchApi = __webpack_require__.g.fetch;
23039
- } else if (typeof window !== 'undefined' && window.fetch) {
23040
- fetchApi = window.fetch;
23041
- } else {
23042
- fetchApi = fetch;
23043
- }
22531
+ __webpack_require__.r(__webpack_exports__);
22532
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22533
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
22534
+ /* harmony export */ });
22535
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/utils.js");
22536
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
22537
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
22538
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
22539
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
22540
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
22541
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
22542
+
22543
+ var fetchApi = typeof fetch === 'function' ? fetch : undefined;
22544
+ if (typeof global !== 'undefined' && global.fetch) {
22545
+ fetchApi = global.fetch;
22546
+ } else if (typeof window !== 'undefined' && window.fetch) {
22547
+ fetchApi = window.fetch;
23044
22548
  }
23045
-
23046
22549
  var XmlHttpRequestApi;
23047
-
23048
- if ((0, _utils.hasXMLHttpRequest)()) {
23049
- if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.XMLHttpRequest) {
23050
- XmlHttpRequestApi = __webpack_require__.g.XMLHttpRequest;
22550
+ if ((0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.hasXMLHttpRequest)()) {
22551
+ if (typeof global !== 'undefined' && global.XMLHttpRequest) {
22552
+ XmlHttpRequestApi = global.XMLHttpRequest;
23051
22553
  } else if (typeof window !== 'undefined' && window.XMLHttpRequest) {
23052
22554
  XmlHttpRequestApi = window.XMLHttpRequest;
23053
22555
  }
23054
22556
  }
23055
-
23056
22557
  var ActiveXObjectApi;
23057
-
23058
22558
  if (typeof ActiveXObject === 'function') {
23059
- if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.ActiveXObject) {
23060
- ActiveXObjectApi = __webpack_require__.g.ActiveXObject;
22559
+ if (typeof global !== 'undefined' && global.ActiveXObject) {
22560
+ ActiveXObjectApi = global.ActiveXObject;
23061
22561
  } else if (typeof window !== 'undefined' && window.ActiveXObject) {
23062
22562
  ActiveXObjectApi = window.ActiveXObject;
23063
22563
  }
23064
22564
  }
23065
-
23066
- if (!fetchApi && fetchNode && !XmlHttpRequestApi && !ActiveXObjectApi) fetchApi = fetchNode.default || fetchNode;
23067
22565
  if (typeof fetchApi !== 'function') fetchApi = undefined;
23068
-
22566
+ if (!fetchApi && !XmlHttpRequestApi && !ActiveXObjectApi) {
22567
+ try {
22568
+ __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b").then(__webpack_require__.t.bind(__webpack_require__, /*! cross-fetch */ "../../common/temp/node_modules/.pnpm/cross-fetch@4.0.0/node_modules/cross-fetch/dist/browser-ponyfill.js", 19)).then(function (mod) {
22569
+ fetchApi = mod.default;
22570
+ }).catch(function () {});
22571
+ } catch (e) {}
22572
+ }
23069
22573
  var addQueryString = function addQueryString(url, params) {
23070
22574
  if (params && _typeof(params) === 'object') {
23071
22575
  var queryString = '';
23072
-
23073
22576
  for (var paramName in params) {
23074
22577
  queryString += '&' + encodeURIComponent(paramName) + '=' + encodeURIComponent(params[paramName]);
23075
22578
  }
23076
-
23077
22579
  if (!queryString) return url;
23078
22580
  url = url + (url.indexOf('?') !== -1 ? '&' : '?') + queryString.slice(1);
23079
22581
  }
23080
-
23081
22582
  return url;
23082
22583
  };
23083
-
23084
- var fetchIt = function fetchIt(url, fetchOptions, callback) {
23085
- fetchApi(url, fetchOptions).then(function (response) {
22584
+ var fetchIt = function fetchIt(url, fetchOptions, callback, altFetch) {
22585
+ var resolver = function resolver(response) {
23086
22586
  if (!response.ok) return callback(response.statusText || 'Error', {
23087
22587
  status: response.status
23088
22588
  });
@@ -23092,147 +22592,127 @@ var fetchIt = function fetchIt(url, fetchOptions, callback) {
23092
22592
  data: data
23093
22593
  });
23094
22594
  }).catch(callback);
23095
- }).catch(callback);
22595
+ };
22596
+ if (altFetch) {
22597
+ var altResponse = altFetch(url, fetchOptions);
22598
+ if (altResponse instanceof Promise) {
22599
+ altResponse.then(resolver).catch(callback);
22600
+ return;
22601
+ }
22602
+ }
22603
+ if (typeof fetch === 'function') {
22604
+ fetch(url, fetchOptions).then(resolver).catch(callback);
22605
+ } else {
22606
+ fetchApi(url, fetchOptions).then(resolver).catch(callback);
22607
+ }
23096
22608
  };
23097
-
23098
22609
  var omitFetchOptions = false;
23099
-
23100
22610
  var requestWithFetch = function requestWithFetch(options, url, payload, callback) {
23101
22611
  if (options.queryStringParams) {
23102
22612
  url = addQueryString(url, options.queryStringParams);
23103
22613
  }
23104
-
23105
- var headers = (0, _utils.defaults)({}, typeof options.customHeaders === 'function' ? options.customHeaders() : options.customHeaders);
22614
+ var headers = _objectSpread({}, typeof options.customHeaders === 'function' ? options.customHeaders() : options.customHeaders);
22615
+ if (typeof window === 'undefined' && typeof global !== 'undefined' && typeof global.process !== 'undefined' && global.process.versions && global.process.versions.node) {
22616
+ headers['User-Agent'] = "i18next-http-backend (node/".concat(global.process.version, "; ").concat(global.process.platform, " ").concat(global.process.arch, ")");
22617
+ }
23106
22618
  if (payload) headers['Content-Type'] = 'application/json';
23107
22619
  var reqOptions = typeof options.requestOptions === 'function' ? options.requestOptions(payload) : options.requestOptions;
23108
- var fetchOptions = (0, _utils.defaults)({
22620
+ var fetchOptions = _objectSpread({
23109
22621
  method: payload ? 'POST' : 'GET',
23110
22622
  body: payload ? options.stringify(payload) : undefined,
23111
22623
  headers: headers
23112
22624
  }, omitFetchOptions ? {} : reqOptions);
23113
-
22625
+ var altFetch = typeof options.alternateFetch === 'function' && options.alternateFetch.length >= 1 ? options.alternateFetch : undefined;
23114
22626
  try {
23115
- fetchIt(url, fetchOptions, callback);
22627
+ fetchIt(url, fetchOptions, callback, altFetch);
23116
22628
  } catch (e) {
23117
22629
  if (!reqOptions || Object.keys(reqOptions).length === 0 || !e.message || e.message.indexOf('not implemented') < 0) {
23118
22630
  return callback(e);
23119
22631
  }
23120
-
23121
22632
  try {
23122
22633
  Object.keys(reqOptions).forEach(function (opt) {
23123
22634
  delete fetchOptions[opt];
23124
22635
  });
23125
- fetchIt(url, fetchOptions, callback);
22636
+ fetchIt(url, fetchOptions, callback, altFetch);
23126
22637
  omitFetchOptions = true;
23127
22638
  } catch (err) {
23128
22639
  callback(err);
23129
22640
  }
23130
22641
  }
23131
22642
  };
23132
-
23133
22643
  var requestWithXmlHttpRequest = function requestWithXmlHttpRequest(options, url, payload, callback) {
23134
22644
  if (payload && _typeof(payload) === 'object') {
23135
22645
  payload = addQueryString('', payload).slice(1);
23136
22646
  }
23137
-
23138
22647
  if (options.queryStringParams) {
23139
22648
  url = addQueryString(url, options.queryStringParams);
23140
22649
  }
23141
-
23142
22650
  try {
23143
- var x;
23144
-
23145
- if (XmlHttpRequestApi) {
23146
- x = new XmlHttpRequestApi();
23147
- } else {
23148
- x = new ActiveXObjectApi('MSXML2.XMLHTTP.3.0');
23149
- }
23150
-
22651
+ var x = XmlHttpRequestApi ? new XmlHttpRequestApi() : new ActiveXObjectApi('MSXML2.XMLHTTP.3.0');
23151
22652
  x.open(payload ? 'POST' : 'GET', url, 1);
23152
-
23153
22653
  if (!options.crossDomain) {
23154
22654
  x.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
23155
22655
  }
23156
-
23157
22656
  x.withCredentials = !!options.withCredentials;
23158
-
23159
22657
  if (payload) {
23160
22658
  x.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
23161
22659
  }
23162
-
23163
22660
  if (x.overrideMimeType) {
23164
22661
  x.overrideMimeType('application/json');
23165
22662
  }
23166
-
23167
22663
  var h = options.customHeaders;
23168
22664
  h = typeof h === 'function' ? h() : h;
23169
-
23170
22665
  if (h) {
23171
22666
  for (var i in h) {
23172
22667
  x.setRequestHeader(i, h[i]);
23173
22668
  }
23174
22669
  }
23175
-
23176
22670
  x.onreadystatechange = function () {
23177
22671
  x.readyState > 3 && callback(x.status >= 400 ? x.statusText : null, {
23178
22672
  status: x.status,
23179
22673
  data: x.responseText
23180
22674
  });
23181
22675
  };
23182
-
23183
22676
  x.send(payload);
23184
22677
  } catch (e) {
23185
22678
  console && console.log(e);
23186
22679
  }
23187
22680
  };
23188
-
23189
22681
  var request = function request(options, url, payload, callback) {
23190
22682
  if (typeof payload === 'function') {
23191
22683
  callback = payload;
23192
22684
  payload = undefined;
23193
22685
  }
23194
-
23195
22686
  callback = callback || function () {};
23196
-
23197
- if (fetchApi) {
22687
+ if (fetchApi && url.indexOf('file:') !== 0) {
23198
22688
  return requestWithFetch(options, url, payload, callback);
23199
22689
  }
23200
-
23201
- if ((0, _utils.hasXMLHttpRequest)() || typeof ActiveXObject === 'function') {
22690
+ if ((0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.hasXMLHttpRequest)() || typeof ActiveXObject === 'function') {
23202
22691
  return requestWithXmlHttpRequest(options, url, payload, callback);
23203
22692
  }
23204
-
23205
22693
  callback(new Error('No fetch and no xhr implementation found!'));
23206
22694
  };
23207
-
23208
- var _default = request;
23209
- exports["default"] = _default;
23210
- module.exports = exports.default;
22695
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (request);
23211
22696
 
23212
22697
  /***/ }),
23213
22698
 
23214
- /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js":
22699
+ /***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/utils.js":
23215
22700
  /*!**********************************************************************************************************************!*\
23216
- !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js ***!
22701
+ !*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@3.0.2/node_modules/i18next-http-backend/esm/utils.js ***!
23217
22702
  \**********************************************************************************************************************/
23218
- /***/ ((__unused_webpack_module, exports) => {
22703
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23219
22704
 
23220
22705
  "use strict";
23221
-
23222
-
23223
- Object.defineProperty(exports, "__esModule", ({
23224
- value: true
23225
- }));
23226
- exports.defaults = defaults;
23227
- exports.hasXMLHttpRequest = hasXMLHttpRequest;
23228
- exports.makePromise = makePromise;
23229
-
23230
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
23231
-
22706
+ __webpack_require__.r(__webpack_exports__);
22707
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22708
+ /* harmony export */ defaults: () => (/* binding */ defaults),
22709
+ /* harmony export */ hasXMLHttpRequest: () => (/* binding */ hasXMLHttpRequest),
22710
+ /* harmony export */ makePromise: () => (/* binding */ makePromise)
22711
+ /* harmony export */ });
22712
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
23232
22713
  var arr = [];
23233
22714
  var each = arr.forEach;
23234
22715
  var slice = arr.slice;
23235
-
23236
22716
  function defaults(obj) {
23237
22717
  each.call(slice.call(arguments, 1), function (source) {
23238
22718
  if (source) {
@@ -23243,143 +22723,19 @@ function defaults(obj) {
23243
22723
  });
23244
22724
  return obj;
23245
22725
  }
23246
-
23247
22726
  function hasXMLHttpRequest() {
23248
22727
  return typeof XMLHttpRequest === 'function' || (typeof XMLHttpRequest === "undefined" ? "undefined" : _typeof(XMLHttpRequest)) === 'object';
23249
22728
  }
23250
-
23251
22729
  function isPromise(maybePromise) {
23252
22730
  return !!maybePromise && typeof maybePromise.then === 'function';
23253
22731
  }
23254
-
23255
22732
  function makePromise(maybePromise) {
23256
22733
  if (isPromise(maybePromise)) {
23257
22734
  return maybePromise;
23258
22735
  }
23259
-
23260
22736
  return Promise.resolve(maybePromise);
23261
22737
  }
23262
22738
 
23263
- /***/ }),
23264
-
23265
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
23266
- /*!****************************************************************************************************************************!*\
23267
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
23268
- \****************************************************************************************************************************/
23269
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23270
-
23271
- "use strict";
23272
- __webpack_require__.r(__webpack_exports__);
23273
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23274
- /* harmony export */ "default": () => (/* binding */ _classCallCheck)
23275
- /* harmony export */ });
23276
- function _classCallCheck(a, n) {
23277
- if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
23278
- }
23279
-
23280
-
23281
- /***/ }),
23282
-
23283
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/createClass.js":
23284
- /*!*************************************************************************************************************************!*\
23285
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
23286
- \*************************************************************************************************************************/
23287
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23288
-
23289
- "use strict";
23290
- __webpack_require__.r(__webpack_exports__);
23291
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23292
- /* harmony export */ "default": () => (/* binding */ _createClass)
23293
- /* harmony export */ });
23294
- /* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
23295
-
23296
- function _defineProperties(e, r) {
23297
- for (var t = 0; t < r.length; t++) {
23298
- var o = r[t];
23299
- o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(o.key), o);
23300
- }
23301
- }
23302
- function _createClass(e, r, t) {
23303
- return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
23304
- writable: !1
23305
- }), e;
23306
- }
23307
-
23308
-
23309
- /***/ }),
23310
-
23311
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
23312
- /*!*************************************************************************************************************************!*\
23313
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
23314
- \*************************************************************************************************************************/
23315
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23316
-
23317
- "use strict";
23318
- __webpack_require__.r(__webpack_exports__);
23319
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23320
- /* harmony export */ "default": () => (/* binding */ toPrimitive)
23321
- /* harmony export */ });
23322
- /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js");
23323
-
23324
- function toPrimitive(t, r) {
23325
- if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t;
23326
- var e = t[Symbol.toPrimitive];
23327
- if (void 0 !== e) {
23328
- var i = e.call(t, r || "default");
23329
- if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i)) return i;
23330
- throw new TypeError("@@toPrimitive must return a primitive value.");
23331
- }
23332
- return ("string" === r ? String : Number)(t);
23333
- }
23334
-
23335
-
23336
- /***/ }),
23337
-
23338
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
23339
- /*!***************************************************************************************************************************!*\
23340
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
23341
- \***************************************************************************************************************************/
23342
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23343
-
23344
- "use strict";
23345
- __webpack_require__.r(__webpack_exports__);
23346
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23347
- /* harmony export */ "default": () => (/* binding */ toPropertyKey)
23348
- /* harmony export */ });
23349
- /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js");
23350
- /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
23351
-
23352
-
23353
- function toPropertyKey(t) {
23354
- var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string");
23355
- return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : i + "";
23356
- }
23357
-
23358
-
23359
- /***/ }),
23360
-
23361
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js":
23362
- /*!********************************************************************************************************************!*\
23363
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
23364
- \********************************************************************************************************************/
23365
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23366
-
23367
- "use strict";
23368
- __webpack_require__.r(__webpack_exports__);
23369
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23370
- /* harmony export */ "default": () => (/* binding */ _typeof)
23371
- /* harmony export */ });
23372
- function _typeof(o) {
23373
- "@babel/helpers - typeof";
23374
-
23375
- return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
23376
- return typeof o;
23377
- } : function (o) {
23378
- return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
23379
- }, _typeof(o);
23380
- }
23381
-
23382
-
23383
22739
  /***/ })
23384
22740
 
23385
22741
  /******/ });
@@ -23408,7 +22764,40 @@ function _typeof(o) {
23408
22764
  /******/ return module.exports;
23409
22765
  /******/ }
23410
22766
  /******/
22767
+ /******/ // expose the modules object (__webpack_modules__)
22768
+ /******/ __webpack_require__.m = __webpack_modules__;
22769
+ /******/
23411
22770
  /************************************************************************/
22771
+ /******/ /* webpack/runtime/create fake namespace object */
22772
+ /******/ (() => {
22773
+ /******/ var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);
22774
+ /******/ var leafPrototypes;
22775
+ /******/ // create a fake namespace object
22776
+ /******/ // mode & 1: value is a module id, require it
22777
+ /******/ // mode & 2: merge all properties of value into the ns
22778
+ /******/ // mode & 4: return value when already ns object
22779
+ /******/ // mode & 16: return value when it's Promise-like
22780
+ /******/ // mode & 8|1: behave like require
22781
+ /******/ __webpack_require__.t = function(value, mode) {
22782
+ /******/ if(mode & 1) value = this(value);
22783
+ /******/ if(mode & 8) return value;
22784
+ /******/ if(typeof value === 'object' && value) {
22785
+ /******/ if((mode & 4) && value.__esModule) return value;
22786
+ /******/ if((mode & 16) && typeof value.then === 'function') return value;
22787
+ /******/ }
22788
+ /******/ var ns = Object.create(null);
22789
+ /******/ __webpack_require__.r(ns);
22790
+ /******/ var def = {};
22791
+ /******/ leafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];
22792
+ /******/ for(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) {
22793
+ /******/ Object.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));
22794
+ /******/ }
22795
+ /******/ def['default'] = () => (value);
22796
+ /******/ __webpack_require__.d(ns, def);
22797
+ /******/ return ns;
22798
+ /******/ };
22799
+ /******/ })();
22800
+ /******/
23412
22801
  /******/ /* webpack/runtime/define property getters */
23413
22802
  /******/ (() => {
23414
22803
  /******/ // define getter functions for harmony exports
@@ -23421,6 +22810,28 @@ function _typeof(o) {
23421
22810
  /******/ };
23422
22811
  /******/ })();
23423
22812
  /******/
22813
+ /******/ /* webpack/runtime/ensure chunk */
22814
+ /******/ (() => {
22815
+ /******/ __webpack_require__.f = {};
22816
+ /******/ // This file contains only the entry chunk.
22817
+ /******/ // The chunk loading function for additional chunks
22818
+ /******/ __webpack_require__.e = (chunkId) => {
22819
+ /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
22820
+ /******/ __webpack_require__.f[key](chunkId, promises);
22821
+ /******/ return promises;
22822
+ /******/ }, []));
22823
+ /******/ };
22824
+ /******/ })();
22825
+ /******/
22826
+ /******/ /* webpack/runtime/get javascript chunk filename */
22827
+ /******/ (() => {
22828
+ /******/ // This function allow to reference async chunks
22829
+ /******/ __webpack_require__.u = (chunkId) => {
22830
+ /******/ // return url for filenames based on template
22831
+ /******/ return "" + chunkId + ".bundled-tests.js";
22832
+ /******/ };
22833
+ /******/ })();
22834
+ /******/
23424
22835
  /******/ /* webpack/runtime/global */
23425
22836
  /******/ (() => {
23426
22837
  /******/ __webpack_require__.g = (function() {
@@ -23438,6 +22849,52 @@ function _typeof(o) {
23438
22849
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
23439
22850
  /******/ })();
23440
22851
  /******/
22852
+ /******/ /* webpack/runtime/load script */
22853
+ /******/ (() => {
22854
+ /******/ var inProgress = {};
22855
+ /******/ var dataWebpackPrefix = "@itwin/core-i18n:";
22856
+ /******/ // loadScript function to load a script via script tag
22857
+ /******/ __webpack_require__.l = (url, done, key, chunkId) => {
22858
+ /******/ if(inProgress[url]) { inProgress[url].push(done); return; }
22859
+ /******/ var script, needAttach;
22860
+ /******/ if(key !== undefined) {
22861
+ /******/ var scripts = document.getElementsByTagName("script");
22862
+ /******/ for(var i = 0; i < scripts.length; i++) {
22863
+ /******/ var s = scripts[i];
22864
+ /******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
22865
+ /******/ }
22866
+ /******/ }
22867
+ /******/ if(!script) {
22868
+ /******/ needAttach = true;
22869
+ /******/ script = document.createElement('script');
22870
+ /******/
22871
+ /******/ script.charset = 'utf-8';
22872
+ /******/ script.timeout = 120;
22873
+ /******/ if (__webpack_require__.nc) {
22874
+ /******/ script.setAttribute("nonce", __webpack_require__.nc);
22875
+ /******/ }
22876
+ /******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
22877
+ /******/
22878
+ /******/ script.src = url;
22879
+ /******/ }
22880
+ /******/ inProgress[url] = [done];
22881
+ /******/ var onScriptComplete = (prev, event) => {
22882
+ /******/ // avoid mem leaks in IE.
22883
+ /******/ script.onerror = script.onload = null;
22884
+ /******/ clearTimeout(timeout);
22885
+ /******/ var doneFns = inProgress[url];
22886
+ /******/ delete inProgress[url];
22887
+ /******/ script.parentNode && script.parentNode.removeChild(script);
22888
+ /******/ doneFns && doneFns.forEach((fn) => (fn(event)));
22889
+ /******/ if(prev) return prev(event);
22890
+ /******/ }
22891
+ /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
22892
+ /******/ script.onerror = onScriptComplete.bind(null, script.onerror);
22893
+ /******/ script.onload = onScriptComplete.bind(null, script.onload);
22894
+ /******/ needAttach && document.head.appendChild(script);
22895
+ /******/ };
22896
+ /******/ })();
22897
+ /******/
23441
22898
  /******/ /* webpack/runtime/make namespace object */
23442
22899
  /******/ (() => {
23443
22900
  /******/ // define __esModule on exports
@@ -23449,9 +22906,122 @@ function _typeof(o) {
23449
22906
  /******/ };
23450
22907
  /******/ })();
23451
22908
  /******/
22909
+ /******/ /* webpack/runtime/publicPath */
22910
+ /******/ (() => {
22911
+ /******/ var scriptUrl;
22912
+ /******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
22913
+ /******/ var document = __webpack_require__.g.document;
22914
+ /******/ if (!scriptUrl && document) {
22915
+ /******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
22916
+ /******/ scriptUrl = document.currentScript.src;
22917
+ /******/ if (!scriptUrl) {
22918
+ /******/ var scripts = document.getElementsByTagName("script");
22919
+ /******/ if(scripts.length) {
22920
+ /******/ var i = scripts.length - 1;
22921
+ /******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
22922
+ /******/ }
22923
+ /******/ }
22924
+ /******/ }
22925
+ /******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
22926
+ /******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
22927
+ /******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
22928
+ /******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
22929
+ /******/ __webpack_require__.p = scriptUrl;
22930
+ /******/ })();
22931
+ /******/
22932
+ /******/ /* webpack/runtime/jsonp chunk loading */
22933
+ /******/ (() => {
22934
+ /******/ // no baseURI
22935
+ /******/
22936
+ /******/ // object to store loaded and loading chunks
22937
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
22938
+ /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
22939
+ /******/ var installedChunks = {
22940
+ /******/ "main": 0
22941
+ /******/ };
22942
+ /******/
22943
+ /******/ __webpack_require__.f.j = (chunkId, promises) => {
22944
+ /******/ // JSONP chunk loading for javascript
22945
+ /******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
22946
+ /******/ if(installedChunkData !== 0) { // 0 means "already installed".
22947
+ /******/
22948
+ /******/ // a Promise means "currently loading".
22949
+ /******/ if(installedChunkData) {
22950
+ /******/ promises.push(installedChunkData[2]);
22951
+ /******/ } else {
22952
+ /******/ if(true) { // all chunks have JS
22953
+ /******/ // setup Promise in chunk cache
22954
+ /******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
22955
+ /******/ promises.push(installedChunkData[2] = promise);
22956
+ /******/
22957
+ /******/ // start chunk loading
22958
+ /******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
22959
+ /******/ // create error before stack unwound to get useful stacktrace later
22960
+ /******/ var error = new Error();
22961
+ /******/ var loadingEnded = (event) => {
22962
+ /******/ if(__webpack_require__.o(installedChunks, chunkId)) {
22963
+ /******/ installedChunkData = installedChunks[chunkId];
22964
+ /******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
22965
+ /******/ if(installedChunkData) {
22966
+ /******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
22967
+ /******/ var realSrc = event && event.target && event.target.src;
22968
+ /******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
22969
+ /******/ error.name = 'ChunkLoadError';
22970
+ /******/ error.type = errorType;
22971
+ /******/ error.request = realSrc;
22972
+ /******/ installedChunkData[1](error);
22973
+ /******/ }
22974
+ /******/ }
22975
+ /******/ };
22976
+ /******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
22977
+ /******/ }
22978
+ /******/ }
22979
+ /******/ }
22980
+ /******/ };
22981
+ /******/
22982
+ /******/ // no prefetching
22983
+ /******/
22984
+ /******/ // no preloaded
22985
+ /******/
22986
+ /******/ // no HMR
22987
+ /******/
22988
+ /******/ // no HMR manifest
22989
+ /******/
22990
+ /******/ // no on chunks loaded
22991
+ /******/
22992
+ /******/ // install a JSONP callback for chunk loading
22993
+ /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
22994
+ /******/ var [chunkIds, moreModules, runtime] = data;
22995
+ /******/ // add "moreModules" to the modules object,
22996
+ /******/ // then flag all "chunkIds" as loaded and fire callback
22997
+ /******/ var moduleId, chunkId, i = 0;
22998
+ /******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
22999
+ /******/ for(moduleId in moreModules) {
23000
+ /******/ if(__webpack_require__.o(moreModules, moduleId)) {
23001
+ /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
23002
+ /******/ }
23003
+ /******/ }
23004
+ /******/ if(runtime) var result = runtime(__webpack_require__);
23005
+ /******/ }
23006
+ /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
23007
+ /******/ for(;i < chunkIds.length; i++) {
23008
+ /******/ chunkId = chunkIds[i];
23009
+ /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
23010
+ /******/ installedChunks[chunkId][0]();
23011
+ /******/ }
23012
+ /******/ installedChunks[chunkId] = 0;
23013
+ /******/ }
23014
+ /******/
23015
+ /******/ }
23016
+ /******/
23017
+ /******/ var chunkLoadingGlobal = self["webpackChunk_itwin_core_i18n"] = self["webpackChunk_itwin_core_i18n"] || [];
23018
+ /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
23019
+ /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
23020
+ /******/ })();
23021
+ /******/
23452
23022
  /************************************************************************/
23453
23023
  var __webpack_exports__ = {};
23454
- // This entry need to be wrapped in an IIFE because it need to be in strict mode.
23024
+ // This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
23455
23025
  (() => {
23456
23026
  "use strict";
23457
23027
  var exports = __webpack_exports__;