@itwin/rpcinterface-full-stack-tests 5.9.0 → 5.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/bundled-tests.js +1322 -735
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -6833,9 +6833,9 @@ function partitionArray(array, criterion) {
|
|
|
6833
6833
|
|
|
6834
6834
|
/***/ }),
|
|
6835
6835
|
|
|
6836
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6836
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js":
|
|
6837
6837
|
/*!******************************************************************************************************************************!*\
|
|
6838
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6838
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js ***!
|
|
6839
6839
|
\******************************************************************************************************************************/
|
|
6840
6840
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6841
6841
|
|
|
@@ -6853,9 +6853,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6853
6853
|
|
|
6854
6854
|
/***/ }),
|
|
6855
6855
|
|
|
6856
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6856
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js":
|
|
6857
6857
|
/*!*************************************************************************************************************************!*\
|
|
6858
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6858
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js ***!
|
|
6859
6859
|
\*************************************************************************************************************************/
|
|
6860
6860
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6861
6861
|
|
|
@@ -6909,9 +6909,9 @@ function assert(condition, message) {
|
|
|
6909
6909
|
|
|
6910
6910
|
/***/ }),
|
|
6911
6911
|
|
|
6912
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6912
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js":
|
|
6913
6913
|
/*!**************************************************************************************************************************!*\
|
|
6914
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6914
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js ***!
|
|
6915
6915
|
\**************************************************************************************************************************/
|
|
6916
6916
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6917
6917
|
|
|
@@ -6920,9 +6920,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6920
6920
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6921
6921
|
/* harmony export */ BeEvent: () => (/* binding */ BeEvent),
|
|
6922
6922
|
/* harmony export */ BeEventList: () => (/* binding */ BeEventList),
|
|
6923
|
-
/* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent)
|
|
6923
|
+
/* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent),
|
|
6924
|
+
/* harmony export */ BeUnorderedEvent: () => (/* binding */ BeUnorderedEvent),
|
|
6925
|
+
/* harmony export */ BeUnorderedUiEvent: () => (/* binding */ BeUnorderedUiEvent)
|
|
6924
6926
|
/* harmony export */ });
|
|
6925
|
-
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
6927
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js");
|
|
6926
6928
|
/*---------------------------------------------------------------------------------------------
|
|
6927
6929
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
6928
6930
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -6939,7 +6941,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6939
6941
|
*/
|
|
6940
6942
|
class BeEvent {
|
|
6941
6943
|
_listeners = [];
|
|
6942
|
-
|
|
6944
|
+
_emitDepth = 0;
|
|
6943
6945
|
/** The number of listeners currently subscribed to the event. */
|
|
6944
6946
|
get numberOfListeners() { return this._listeners.length; }
|
|
6945
6947
|
/**
|
|
@@ -6976,7 +6978,7 @@ class BeEvent {
|
|
|
6976
6978
|
for (let i = 0; i < listeners.length; ++i) {
|
|
6977
6979
|
const context = listeners[i];
|
|
6978
6980
|
if (context.listener === listener && context.scope === scope) {
|
|
6979
|
-
if (this.
|
|
6981
|
+
if (this._emitDepth > 0) {
|
|
6980
6982
|
context.listener = undefined;
|
|
6981
6983
|
}
|
|
6982
6984
|
else {
|
|
@@ -6993,7 +6995,7 @@ class BeEvent {
|
|
|
6993
6995
|
* @see [[BeEvent.removeListener]], [[BeEvent.addListener]]
|
|
6994
6996
|
*/
|
|
6995
6997
|
raiseEvent(...args) {
|
|
6996
|
-
this.
|
|
6998
|
+
this._emitDepth++;
|
|
6997
6999
|
const listeners = this._listeners;
|
|
6998
7000
|
const length = listeners.length;
|
|
6999
7001
|
let dropped = false;
|
|
@@ -7009,16 +7011,21 @@ class BeEvent {
|
|
|
7009
7011
|
catch (e) {
|
|
7010
7012
|
_UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
|
|
7011
7013
|
}
|
|
7012
|
-
if (context.
|
|
7014
|
+
if (!context.listener) {
|
|
7015
|
+
// listener was removed during its own callback
|
|
7016
|
+
dropped = true;
|
|
7017
|
+
}
|
|
7018
|
+
else if (context.once) {
|
|
7013
7019
|
context.listener = undefined;
|
|
7014
7020
|
dropped = true;
|
|
7015
7021
|
}
|
|
7016
7022
|
}
|
|
7017
7023
|
}
|
|
7018
|
-
|
|
7019
|
-
|
|
7024
|
+
this._emitDepth--;
|
|
7025
|
+
// Only sweep tombstoned entries when the outermost emit completes,
|
|
7026
|
+
// so nested raiseEvent calls never mutate the array mid-iteration.
|
|
7027
|
+
if (dropped && this._emitDepth === 0)
|
|
7020
7028
|
this._listeners = this._listeners.filter((ctx) => ctx.listener !== undefined);
|
|
7021
|
-
this._insideRaiseEvent = false;
|
|
7022
7029
|
}
|
|
7023
7030
|
/** Determine whether this BeEvent has a specified listener registered.
|
|
7024
7031
|
* @param listener The listener to check.
|
|
@@ -7042,6 +7049,102 @@ class BeUiEvent extends BeEvent {
|
|
|
7042
7049
|
/** Raises event with single strongly typed argument. */
|
|
7043
7050
|
emit(args) { this.raiseEvent(args); }
|
|
7044
7051
|
}
|
|
7052
|
+
/**
|
|
7053
|
+
* Manages a set of *listeners* for a particular event and notifies them when the event is raised.
|
|
7054
|
+
* Unlike [[BeEvent]], this class uses a `Set` internally to support safe concurrent modification
|
|
7055
|
+
* during emit. When a listener is removed during emit, it is marked for deferred removal instead
|
|
7056
|
+
* of mutating the set immediately.
|
|
7057
|
+
*
|
|
7058
|
+
* Listeners are managed exclusively through the disposal closure returned by [[addListener]] and
|
|
7059
|
+
* [[addOnce]]. There is no `removeListener` or `has` method — callers must capture the returned
|
|
7060
|
+
* closure to unsubscribe.
|
|
7061
|
+
* @beta
|
|
7062
|
+
*/
|
|
7063
|
+
class BeUnorderedEvent {
|
|
7064
|
+
_listeners = new Set();
|
|
7065
|
+
_emitDepth = 0;
|
|
7066
|
+
_hasTombstones = false;
|
|
7067
|
+
/** The number of listeners currently subscribed to the event.
|
|
7068
|
+
* @note During `raiseEvent()`, this may include listeners that have been removed or are one-shot
|
|
7069
|
+
* but are awaiting deferred cleanup. The count is accurate outside of `raiseEvent()`.
|
|
7070
|
+
*/
|
|
7071
|
+
get numberOfListeners() { return this._listeners.size; }
|
|
7072
|
+
/**
|
|
7073
|
+
* Registers a Listener to be executed whenever this event is raised.
|
|
7074
|
+
* @param listener The function to be executed when the event is raised.
|
|
7075
|
+
* @param scope An optional object scope to serve as the 'this' pointer when listener is invoked.
|
|
7076
|
+
* @returns A function that will remove this event listener in O(1).
|
|
7077
|
+
*/
|
|
7078
|
+
addListener(listener, scope) {
|
|
7079
|
+
const ctx = { listener, scope, once: false };
|
|
7080
|
+
this._listeners.add(ctx);
|
|
7081
|
+
return () => this._removeCtx(ctx);
|
|
7082
|
+
}
|
|
7083
|
+
/**
|
|
7084
|
+
* Registers a callback function to be executed *only once* when the event is raised.
|
|
7085
|
+
* @param listener The function to be executed once when the event is raised.
|
|
7086
|
+
* @param scope An optional object scope to serve as the `this` pointer in which the listener function will execute.
|
|
7087
|
+
* @returns A function that will remove this event listener in O(1).
|
|
7088
|
+
*/
|
|
7089
|
+
addOnce(listener, scope) {
|
|
7090
|
+
const ctx = { listener, scope, once: true };
|
|
7091
|
+
this._listeners.add(ctx);
|
|
7092
|
+
return () => this._removeCtx(ctx);
|
|
7093
|
+
}
|
|
7094
|
+
/** Remove a specific context entry, deferring during emit. */
|
|
7095
|
+
_removeCtx(ctx) {
|
|
7096
|
+
if (this._emitDepth > 0) {
|
|
7097
|
+
ctx.listener = undefined; // tombstone for deferred cleanup
|
|
7098
|
+
this._hasTombstones = true;
|
|
7099
|
+
}
|
|
7100
|
+
else {
|
|
7101
|
+
this._listeners.delete(ctx);
|
|
7102
|
+
}
|
|
7103
|
+
}
|
|
7104
|
+
/**
|
|
7105
|
+
* Raises the event by calling each registered listener with the supplied arguments.
|
|
7106
|
+
* @param args This method takes any number of parameters and passes them through to the listeners.
|
|
7107
|
+
*/
|
|
7108
|
+
raiseEvent(...args) {
|
|
7109
|
+
this._emitDepth++;
|
|
7110
|
+
for (const ctx of this._listeners) {
|
|
7111
|
+
if (!ctx.listener) {
|
|
7112
|
+
continue;
|
|
7113
|
+
}
|
|
7114
|
+
try {
|
|
7115
|
+
ctx.listener.apply(ctx.scope, args);
|
|
7116
|
+
}
|
|
7117
|
+
catch (e) {
|
|
7118
|
+
_UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
|
|
7119
|
+
}
|
|
7120
|
+
if (ctx.listener && ctx.once) {
|
|
7121
|
+
ctx.listener = undefined;
|
|
7122
|
+
this._hasTombstones = true;
|
|
7123
|
+
}
|
|
7124
|
+
}
|
|
7125
|
+
this._emitDepth--;
|
|
7126
|
+
// Only clean up tombstoned entries when we're back at the outermost emit
|
|
7127
|
+
if (this._hasTombstones && this._emitDepth === 0) {
|
|
7128
|
+
this._hasTombstones = false;
|
|
7129
|
+
for (const ctx of this._listeners) {
|
|
7130
|
+
if (ctx.listener === undefined)
|
|
7131
|
+
this._listeners.delete(ctx);
|
|
7132
|
+
}
|
|
7133
|
+
}
|
|
7134
|
+
}
|
|
7135
|
+
/** Clear all listeners from this BeUnorderedEvent.
|
|
7136
|
+
* @note If called during `raiseEvent`, remaining listeners in the current iteration are skipped
|
|
7137
|
+
* immediately rather than being tombstoned.
|
|
7138
|
+
*/
|
|
7139
|
+
clear() { this._listeners.clear(); }
|
|
7140
|
+
}
|
|
7141
|
+
/** Specialization of BeUnorderedEvent for events that take a single strongly typed argument, primarily used for UI events.
|
|
7142
|
+
* @beta
|
|
7143
|
+
*/
|
|
7144
|
+
class BeUnorderedUiEvent extends BeUnorderedEvent {
|
|
7145
|
+
/** Raises event with single strongly typed argument. */
|
|
7146
|
+
emit(args) { this.raiseEvent(args); }
|
|
7147
|
+
}
|
|
7045
7148
|
/**
|
|
7046
7149
|
* A list of BeEvent objects, accessible by an event name.
|
|
7047
7150
|
* This class may be used instead of explicitly declaring each BeEvent as a member of a containing class.
|
|
@@ -7073,9 +7176,9 @@ class BeEventList {
|
|
|
7073
7176
|
|
|
7074
7177
|
/***/ }),
|
|
7075
7178
|
|
|
7076
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7179
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js":
|
|
7077
7180
|
/*!***************************************************************************************************************************!*\
|
|
7078
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7181
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js ***!
|
|
7079
7182
|
\***************************************************************************************************************************/
|
|
7080
7183
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7081
7184
|
|
|
@@ -7274,9 +7377,9 @@ var DbResult;
|
|
|
7274
7377
|
|
|
7275
7378
|
/***/ }),
|
|
7276
7379
|
|
|
7277
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7380
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js":
|
|
7278
7381
|
/*!*******************************************************************************************************************************!*\
|
|
7279
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7382
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js ***!
|
|
7280
7383
|
\*******************************************************************************************************************************/
|
|
7281
7384
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7282
7385
|
|
|
@@ -7295,9 +7398,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7295
7398
|
/* harmony export */ RealityDataStatus: () => (/* binding */ RealityDataStatus),
|
|
7296
7399
|
/* harmony export */ RpcInterfaceStatus: () => (/* binding */ RpcInterfaceStatus)
|
|
7297
7400
|
/* harmony export */ });
|
|
7298
|
-
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7299
|
-
/* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7300
|
-
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
7401
|
+
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js");
|
|
7402
|
+
/* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/RepositoryStatus.js");
|
|
7403
|
+
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js");
|
|
7301
7404
|
/*---------------------------------------------------------------------------------------------
|
|
7302
7405
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
7303
7406
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -8027,9 +8130,9 @@ class BentleyError extends Error {
|
|
|
8027
8130
|
|
|
8028
8131
|
/***/ }),
|
|
8029
8132
|
|
|
8030
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8133
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js":
|
|
8031
8134
|
/*!****************************************************************************************************************************************!*\
|
|
8032
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8135
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js ***!
|
|
8033
8136
|
\****************************************************************************************************************************************/
|
|
8034
8137
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8035
8138
|
|
|
@@ -8058,9 +8161,9 @@ var BentleyLoggerCategory;
|
|
|
8058
8161
|
|
|
8059
8162
|
/***/ }),
|
|
8060
8163
|
|
|
8061
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8164
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js":
|
|
8062
8165
|
/*!*****************************************************************************************************************************!*\
|
|
8063
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8166
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js ***!
|
|
8064
8167
|
\*****************************************************************************************************************************/
|
|
8065
8168
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8066
8169
|
|
|
@@ -8069,8 +8172,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8069
8172
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8070
8173
|
/* harmony export */ ByteStream: () => (/* binding */ ByteStream)
|
|
8071
8174
|
/* harmony export */ });
|
|
8072
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8073
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8175
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
8176
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
8074
8177
|
/*---------------------------------------------------------------------------------------------
|
|
8075
8178
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
8076
8179
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -8216,9 +8319,9 @@ class ByteStream {
|
|
|
8216
8319
|
|
|
8217
8320
|
/***/ }),
|
|
8218
8321
|
|
|
8219
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8322
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ClassUtils.js":
|
|
8220
8323
|
/*!*****************************************************************************************************************************!*\
|
|
8221
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8324
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ClassUtils.js ***!
|
|
8222
8325
|
\*****************************************************************************************************************************/
|
|
8223
8326
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8224
8327
|
|
|
@@ -8259,9 +8362,9 @@ function isSubclassOf(subclass, superclass) {
|
|
|
8259
8362
|
|
|
8260
8363
|
/***/ }),
|
|
8261
8364
|
|
|
8262
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8365
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Compare.js":
|
|
8263
8366
|
/*!**************************************************************************************************************************!*\
|
|
8264
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8367
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Compare.js ***!
|
|
8265
8368
|
\**************************************************************************************************************************/
|
|
8266
8369
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8267
8370
|
|
|
@@ -8410,9 +8513,9 @@ function compareArrays(lhs, rhs, compare) {
|
|
|
8410
8513
|
|
|
8411
8514
|
/***/ }),
|
|
8412
8515
|
|
|
8413
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8516
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js":
|
|
8414
8517
|
/*!************************************************************************************************************************************!*\
|
|
8415
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8518
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js ***!
|
|
8416
8519
|
\************************************************************************************************************************************/
|
|
8417
8520
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8418
8521
|
|
|
@@ -8423,10 +8526,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8423
8526
|
/* harmony export */ MutableCompressedId64Set: () => (/* binding */ MutableCompressedId64Set),
|
|
8424
8527
|
/* harmony export */ OrderedId64Array: () => (/* binding */ OrderedId64Array)
|
|
8425
8528
|
/* harmony export */ });
|
|
8426
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8427
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8428
|
-
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8429
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8529
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
8530
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
8531
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js");
|
|
8532
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
8430
8533
|
/*---------------------------------------------------------------------------------------------
|
|
8431
8534
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
8432
8535
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -8857,9 +8960,9 @@ class MutableCompressedId64Set {
|
|
|
8857
8960
|
|
|
8858
8961
|
/***/ }),
|
|
8859
8962
|
|
|
8860
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8963
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js":
|
|
8861
8964
|
/*!*****************************************************************************************************************************!*\
|
|
8862
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8965
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js ***!
|
|
8863
8966
|
\*****************************************************************************************************************************/
|
|
8864
8967
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8865
8968
|
|
|
@@ -8868,7 +8971,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8868
8971
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8869
8972
|
/* harmony export */ Dictionary: () => (/* binding */ Dictionary)
|
|
8870
8973
|
/* harmony export */ });
|
|
8871
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
8974
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
8872
8975
|
/*---------------------------------------------------------------------------------------------
|
|
8873
8976
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
8874
8977
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -9077,9 +9180,9 @@ class Dictionary {
|
|
|
9077
9180
|
|
|
9078
9181
|
/***/ }),
|
|
9079
9182
|
|
|
9080
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9183
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Disposable.js":
|
|
9081
9184
|
/*!*****************************************************************************************************************************!*\
|
|
9082
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9185
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Disposable.js ***!
|
|
9083
9186
|
\*****************************************************************************************************************************/
|
|
9084
9187
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9085
9188
|
|
|
@@ -9207,9 +9310,9 @@ class DisposableList {
|
|
|
9207
9310
|
|
|
9208
9311
|
/***/ }),
|
|
9209
9312
|
|
|
9210
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9313
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Expect.js":
|
|
9211
9314
|
/*!*************************************************************************************************************************!*\
|
|
9212
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9315
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Expect.js ***!
|
|
9213
9316
|
\*************************************************************************************************************************/
|
|
9214
9317
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9215
9318
|
|
|
@@ -9259,9 +9362,9 @@ function expectNotNull(value, message) {
|
|
|
9259
9362
|
|
|
9260
9363
|
/***/ }),
|
|
9261
9364
|
|
|
9262
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9365
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Id.js":
|
|
9263
9366
|
/*!*********************************************************************************************************************!*\
|
|
9264
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
9367
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Id.js ***!
|
|
9265
9368
|
\*********************************************************************************************************************/
|
|
9266
9369
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9267
9370
|
|
|
@@ -9572,9 +9675,7 @@ var Id64;
|
|
|
9572
9675
|
* ```
|
|
9573
9676
|
*/
|
|
9574
9677
|
function iterable(ids) {
|
|
9575
|
-
return
|
|
9576
|
-
[Symbol.iterator]: () => iterator(ids),
|
|
9577
|
-
};
|
|
9678
|
+
return typeof ids === "string" ? [ids] : ids;
|
|
9578
9679
|
}
|
|
9579
9680
|
Id64.iterable = iterable;
|
|
9580
9681
|
/** Return the first [[Id64String]] of an [[Id64Arg]]. */
|
|
@@ -9995,9 +10096,9 @@ var Guid;
|
|
|
9995
10096
|
|
|
9996
10097
|
/***/ }),
|
|
9997
10098
|
|
|
9998
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10099
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js":
|
|
9999
10100
|
/*!***************************************************************************************************************************!*\
|
|
10000
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10101
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js ***!
|
|
10001
10102
|
\***************************************************************************************************************************/
|
|
10002
10103
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10003
10104
|
|
|
@@ -10007,7 +10108,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10007
10108
|
/* harmony export */ IndexMap: () => (/* binding */ IndexMap),
|
|
10008
10109
|
/* harmony export */ IndexedValue: () => (/* binding */ IndexedValue)
|
|
10009
10110
|
/* harmony export */ });
|
|
10010
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10111
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
10011
10112
|
/*---------------------------------------------------------------------------------------------
|
|
10012
10113
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
10013
10114
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -10103,9 +10204,9 @@ class IndexMap {
|
|
|
10103
10204
|
|
|
10104
10205
|
/***/ }),
|
|
10105
10206
|
|
|
10106
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10207
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js":
|
|
10107
10208
|
/*!*****************************************************************************************************************************!*\
|
|
10108
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10209
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js ***!
|
|
10109
10210
|
\*****************************************************************************************************************************/
|
|
10110
10211
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10111
10212
|
|
|
@@ -10123,9 +10224,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10123
10224
|
|
|
10124
10225
|
/***/ }),
|
|
10125
10226
|
|
|
10126
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10227
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js":
|
|
10127
10228
|
/*!****************************************************************************************************************************!*\
|
|
10128
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10229
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js ***!
|
|
10129
10230
|
\****************************************************************************************************************************/
|
|
10130
10231
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10131
10232
|
|
|
@@ -10291,9 +10392,9 @@ var JsonUtils;
|
|
|
10291
10392
|
|
|
10292
10393
|
/***/ }),
|
|
10293
10394
|
|
|
10294
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10395
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js":
|
|
10295
10396
|
/*!*************************************************************************************************************************!*\
|
|
10296
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10397
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js ***!
|
|
10297
10398
|
\*************************************************************************************************************************/
|
|
10298
10399
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10299
10400
|
|
|
@@ -10305,7 +10406,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10305
10406
|
/* harmony export */ LRUDictionary: () => (/* binding */ LRUDictionary),
|
|
10306
10407
|
/* harmony export */ LRUMap: () => (/* binding */ LRUMap)
|
|
10307
10408
|
/* harmony export */ });
|
|
10308
|
-
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10409
|
+
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js");
|
|
10309
10410
|
/*---------------------------------------------------------------------------------------------
|
|
10310
10411
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
10311
10412
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -10652,9 +10753,9 @@ class LRUDictionary extends LRUCache {
|
|
|
10652
10753
|
|
|
10653
10754
|
/***/ }),
|
|
10654
10755
|
|
|
10655
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10756
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Logger.js":
|
|
10656
10757
|
/*!*************************************************************************************************************************!*\
|
|
10657
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10758
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Logger.js ***!
|
|
10658
10759
|
\*************************************************************************************************************************/
|
|
10659
10760
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10660
10761
|
|
|
@@ -10665,9 +10766,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10665
10766
|
/* harmony export */ Logger: () => (/* binding */ Logger),
|
|
10666
10767
|
/* harmony export */ PerfLogger: () => (/* binding */ PerfLogger)
|
|
10667
10768
|
/* harmony export */ });
|
|
10668
|
-
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10669
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10670
|
-
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
10769
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js");
|
|
10770
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
10771
|
+
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js");
|
|
10671
10772
|
/*---------------------------------------------------------------------------------------------
|
|
10672
10773
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
10673
10774
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -10998,9 +11099,9 @@ class PerfLogger {
|
|
|
10998
11099
|
|
|
10999
11100
|
/***/ }),
|
|
11000
11101
|
|
|
11001
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11102
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js":
|
|
11002
11103
|
/*!********************************************************************************************************************************!*\
|
|
11003
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11104
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js ***!
|
|
11004
11105
|
\********************************************************************************************************************************/
|
|
11005
11106
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11006
11107
|
|
|
@@ -11009,7 +11110,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11009
11110
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11010
11111
|
/* harmony export */ ObservableSet: () => (/* binding */ ObservableSet)
|
|
11011
11112
|
/* harmony export */ });
|
|
11012
|
-
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11113
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js");
|
|
11013
11114
|
/*---------------------------------------------------------------------------------------------
|
|
11014
11115
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11015
11116
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11095,9 +11196,9 @@ class ObservableSet extends Set {
|
|
|
11095
11196
|
|
|
11096
11197
|
/***/ }),
|
|
11097
11198
|
|
|
11098
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11199
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js":
|
|
11099
11200
|
/*!***********************************************************************************************************************************!*\
|
|
11100
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11201
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js ***!
|
|
11101
11202
|
\***********************************************************************************************************************************/
|
|
11102
11203
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11103
11204
|
|
|
@@ -11107,7 +11208,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11107
11208
|
/* harmony export */ AbandonedError: () => (/* binding */ AbandonedError),
|
|
11108
11209
|
/* harmony export */ OneAtATimeAction: () => (/* binding */ OneAtATimeAction)
|
|
11109
11210
|
/* harmony export */ });
|
|
11110
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11211
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
11111
11212
|
/*---------------------------------------------------------------------------------------------
|
|
11112
11213
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11113
11214
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11214,9 +11315,9 @@ class OneAtATimeAction {
|
|
|
11214
11315
|
|
|
11215
11316
|
/***/ }),
|
|
11216
11317
|
|
|
11217
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11318
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js":
|
|
11218
11319
|
/*!**************************************************************************************************************************************!*\
|
|
11219
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11320
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js ***!
|
|
11220
11321
|
\**************************************************************************************************************************************/
|
|
11221
11322
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11222
11323
|
|
|
@@ -11225,7 +11326,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11225
11326
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11226
11327
|
/* harmony export */ OrderedId64Iterable: () => (/* binding */ OrderedId64Iterable)
|
|
11227
11328
|
/* harmony export */ });
|
|
11228
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11329
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
11229
11330
|
/*---------------------------------------------------------------------------------------------
|
|
11230
11331
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11231
11332
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11462,9 +11563,9 @@ var OrderedId64Iterable;
|
|
|
11462
11563
|
|
|
11463
11564
|
/***/ }),
|
|
11464
11565
|
|
|
11465
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11566
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js":
|
|
11466
11567
|
/*!*****************************************************************************************************************************!*\
|
|
11467
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11568
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js ***!
|
|
11468
11569
|
\*****************************************************************************************************************************/
|
|
11469
11570
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11470
11571
|
|
|
@@ -11474,7 +11575,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11474
11575
|
/* harmony export */ OrderedSet: () => (/* binding */ OrderedSet),
|
|
11475
11576
|
/* harmony export */ ReadonlyOrderedSet: () => (/* binding */ ReadonlyOrderedSet)
|
|
11476
11577
|
/* harmony export */ });
|
|
11477
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11578
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
11478
11579
|
/*---------------------------------------------------------------------------------------------
|
|
11479
11580
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11480
11581
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11539,9 +11640,9 @@ class OrderedSet extends ReadonlyOrderedSet {
|
|
|
11539
11640
|
|
|
11540
11641
|
/***/ }),
|
|
11541
11642
|
|
|
11542
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11643
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js":
|
|
11543
11644
|
/*!********************************************************************************************************************************!*\
|
|
11544
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11645
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js ***!
|
|
11545
11646
|
\********************************************************************************************************************************/
|
|
11546
11647
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11547
11648
|
|
|
@@ -11550,7 +11651,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11550
11651
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11551
11652
|
/* harmony export */ PriorityQueue: () => (/* binding */ PriorityQueue)
|
|
11552
11653
|
/* harmony export */ });
|
|
11553
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11654
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
11554
11655
|
/*---------------------------------------------------------------------------------------------
|
|
11555
11656
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
11556
11657
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -11693,9 +11794,9 @@ class PriorityQueue {
|
|
|
11693
11794
|
|
|
11694
11795
|
/***/ }),
|
|
11695
11796
|
|
|
11696
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11797
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js":
|
|
11697
11798
|
/*!**********************************************************************************************************************************!*\
|
|
11698
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11799
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js ***!
|
|
11699
11800
|
\**********************************************************************************************************************************/
|
|
11700
11801
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11701
11802
|
|
|
@@ -11777,9 +11878,9 @@ class ProcessDetector {
|
|
|
11777
11878
|
|
|
11778
11879
|
/***/ }),
|
|
11779
11880
|
|
|
11780
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11881
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js":
|
|
11781
11882
|
/*!******************************************************************************************************************************!*\
|
|
11782
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
11883
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js ***!
|
|
11783
11884
|
\******************************************************************************************************************************/
|
|
11784
11885
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11785
11886
|
|
|
@@ -12107,9 +12208,9 @@ class SortedArray extends ReadonlySortedArray {
|
|
|
12107
12208
|
|
|
12108
12209
|
/***/ }),
|
|
12109
12210
|
|
|
12110
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12211
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StatusCategory.js":
|
|
12111
12212
|
/*!*********************************************************************************************************************************!*\
|
|
12112
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12213
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StatusCategory.js ***!
|
|
12113
12214
|
\*********************************************************************************************************************************/
|
|
12114
12215
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12115
12216
|
|
|
@@ -12120,8 +12221,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12120
12221
|
/* harmony export */ StatusCategory: () => (/* binding */ StatusCategory),
|
|
12121
12222
|
/* harmony export */ SuccessCategory: () => (/* binding */ SuccessCategory)
|
|
12122
12223
|
/* harmony export */ });
|
|
12123
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12124
|
-
/* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12224
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
12225
|
+
/* harmony import */ var _internal_RepositoryStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./internal/RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/RepositoryStatus.js");
|
|
12125
12226
|
/*---------------------------------------------------------------------------------------------
|
|
12126
12227
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12127
12228
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12524,9 +12625,9 @@ function lookupHttpStatusCategory(statusCode) {
|
|
|
12524
12625
|
|
|
12525
12626
|
/***/ }),
|
|
12526
12627
|
|
|
12527
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12628
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js":
|
|
12528
12629
|
/*!******************************************************************************************************************************!*\
|
|
12529
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12630
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js ***!
|
|
12530
12631
|
\******************************************************************************************************************************/
|
|
12531
12632
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12532
12633
|
|
|
@@ -12567,9 +12668,9 @@ function base64StringToUint8Array(base64) {
|
|
|
12567
12668
|
|
|
12568
12669
|
/***/ }),
|
|
12569
12670
|
|
|
12570
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12671
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Time.js":
|
|
12571
12672
|
/*!***********************************************************************************************************************!*\
|
|
12572
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12673
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Time.js ***!
|
|
12573
12674
|
\***********************************************************************************************************************/
|
|
12574
12675
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12575
12676
|
|
|
@@ -12735,9 +12836,9 @@ class StopWatch {
|
|
|
12735
12836
|
|
|
12736
12837
|
/***/ }),
|
|
12737
12838
|
|
|
12738
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12839
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Tracing.js":
|
|
12739
12840
|
/*!**************************************************************************************************************************!*\
|
|
12740
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12841
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Tracing.js ***!
|
|
12741
12842
|
\**************************************************************************************************************************/
|
|
12742
12843
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12743
12844
|
|
|
@@ -12747,7 +12848,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12747
12848
|
/* harmony export */ SpanKind: () => (/* binding */ SpanKind),
|
|
12748
12849
|
/* harmony export */ Tracing: () => (/* binding */ Tracing)
|
|
12749
12850
|
/* harmony export */ });
|
|
12750
|
-
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
12851
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Logger.js");
|
|
12751
12852
|
/*---------------------------------------------------------------------------------------------
|
|
12752
12853
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
12753
12854
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -12915,9 +13016,9 @@ class Tracing {
|
|
|
12915
13016
|
|
|
12916
13017
|
/***/ }),
|
|
12917
13018
|
|
|
12918
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13019
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TupleKeyedMap.js":
|
|
12919
13020
|
/*!********************************************************************************************************************************!*\
|
|
12920
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13021
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TupleKeyedMap.js ***!
|
|
12921
13022
|
\********************************************************************************************************************************/
|
|
12922
13023
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12923
13024
|
|
|
@@ -13028,9 +13129,9 @@ class TupleKeyedMap {
|
|
|
13028
13129
|
|
|
13029
13130
|
/***/ }),
|
|
13030
13131
|
|
|
13031
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13132
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TypedArrayBuilder.js":
|
|
13032
13133
|
/*!************************************************************************************************************************************!*\
|
|
13033
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13134
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TypedArrayBuilder.js ***!
|
|
13034
13135
|
\************************************************************************************************************************************/
|
|
13035
13136
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13036
13137
|
|
|
@@ -13043,7 +13144,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13043
13144
|
/* harmony export */ Uint8ArrayBuilder: () => (/* binding */ Uint8ArrayBuilder),
|
|
13044
13145
|
/* harmony export */ UintArrayBuilder: () => (/* binding */ UintArrayBuilder)
|
|
13045
13146
|
/* harmony export */ });
|
|
13046
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13147
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
13047
13148
|
/*---------------------------------------------------------------------------------------------
|
|
13048
13149
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13049
13150
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13254,9 +13355,9 @@ class UintArrayBuilder extends TypedArrayBuilder {
|
|
|
13254
13355
|
|
|
13255
13356
|
/***/ }),
|
|
13256
13357
|
|
|
13257
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13358
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js":
|
|
13258
13359
|
/*!***********************************************************************************************************************************!*\
|
|
13259
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13360
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js ***!
|
|
13260
13361
|
\***********************************************************************************************************************************/
|
|
13261
13362
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13262
13363
|
|
|
@@ -13265,7 +13366,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13265
13366
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13266
13367
|
/* harmony export */ UnexpectedErrors: () => (/* binding */ UnexpectedErrors)
|
|
13267
13368
|
/* harmony export */ });
|
|
13268
|
-
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13369
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Logger.js");
|
|
13269
13370
|
/*---------------------------------------------------------------------------------------------
|
|
13270
13371
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13271
13372
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13332,9 +13433,72 @@ class UnexpectedErrors {
|
|
|
13332
13433
|
|
|
13333
13434
|
/***/ }),
|
|
13334
13435
|
|
|
13335
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13436
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityFunctions.js":
|
|
13437
|
+
/*!***********************************************************************************************************************************!*\
|
|
13438
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityFunctions.js ***!
|
|
13439
|
+
\***********************************************************************************************************************************/
|
|
13440
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13441
|
+
|
|
13442
|
+
"use strict";
|
|
13443
|
+
__webpack_require__.r(__webpack_exports__);
|
|
13444
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13445
|
+
/* harmony export */ wrapTimerCallback: () => (/* binding */ wrapTimerCallback)
|
|
13446
|
+
/* harmony export */ });
|
|
13447
|
+
/*---------------------------------------------------------------------------------------------
|
|
13448
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13449
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
13450
|
+
*--------------------------------------------------------------------------------------------*/
|
|
13451
|
+
/** @packageDocumentation
|
|
13452
|
+
* @module Utils
|
|
13453
|
+
*/
|
|
13454
|
+
/**
|
|
13455
|
+
* Wrapper function designed to be used for callbacks called by setInterval or setTimeout in order to propagate any
|
|
13456
|
+
* exceptions thrown in the callback to the main promise chain. It does this by creating a new promise for the callback
|
|
13457
|
+
* invocation and adding it to the timerPromises set. The main promise chain can then await
|
|
13458
|
+
* Promise.all(timerPromises) to catch any exceptions thrown in any of the callbacks. Note that if the callback
|
|
13459
|
+
* completes successfully, the promise is resolved and removed from the set. If it throws an exception, the promise is
|
|
13460
|
+
* rejected but not removed from the set, so that the main promise chain can detect that an error occurred and handle
|
|
13461
|
+
* it appropriately.
|
|
13462
|
+
* @param timerPromises A set of promises representing the currently active timer callbacks.
|
|
13463
|
+
* @param callback The async callback to be executed within the timer.
|
|
13464
|
+
* @beta
|
|
13465
|
+
*/
|
|
13466
|
+
async function wrapTimerCallback(timerPromises, callback) {
|
|
13467
|
+
let resolvePromise;
|
|
13468
|
+
let rejectPromise;
|
|
13469
|
+
// The callback of the Promise constructor does not have access to the promise itself, so all we do there is
|
|
13470
|
+
// capture the resolve and reject functions for use in the async callback that would have otherwise been
|
|
13471
|
+
// placed in the setInterval or setTimeout callback.
|
|
13472
|
+
const timerPromise = new Promise((resolve, reject) => {
|
|
13473
|
+
resolvePromise = resolve;
|
|
13474
|
+
rejectPromise = reject;
|
|
13475
|
+
});
|
|
13476
|
+
// Note: when we get here, resolvePromise and rejectPromise will always be defined, but there is no way to
|
|
13477
|
+
// convince TS of that fact without extra unnecessary checks, so we use ?. when accessing them.
|
|
13478
|
+
// Prevent unhandled rejection warnings. The rejection is still observable
|
|
13479
|
+
// when the consumer awaits Promise.all(promises).
|
|
13480
|
+
timerPromise.catch(() => { });
|
|
13481
|
+
timerPromises.add(timerPromise);
|
|
13482
|
+
const cleanupAndResolve = () => {
|
|
13483
|
+
resolvePromise?.();
|
|
13484
|
+
// No need to keep track of this promise anymore since it's resolved.
|
|
13485
|
+
timerPromises.delete(timerPromise);
|
|
13486
|
+
};
|
|
13487
|
+
try {
|
|
13488
|
+
await callback();
|
|
13489
|
+
cleanupAndResolve();
|
|
13490
|
+
}
|
|
13491
|
+
catch (err) {
|
|
13492
|
+
rejectPromise?.(err);
|
|
13493
|
+
}
|
|
13494
|
+
}
|
|
13495
|
+
|
|
13496
|
+
|
|
13497
|
+
/***/ }),
|
|
13498
|
+
|
|
13499
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js":
|
|
13336
13500
|
/*!*******************************************************************************************************************************!*\
|
|
13337
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13501
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js ***!
|
|
13338
13502
|
\*******************************************************************************************************************************/
|
|
13339
13503
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13340
13504
|
|
|
@@ -13383,9 +13547,9 @@ function omit(t, keys) {
|
|
|
13383
13547
|
|
|
13384
13548
|
/***/ }),
|
|
13385
13549
|
|
|
13386
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13550
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/YieldManager.js":
|
|
13387
13551
|
/*!*******************************************************************************************************************************!*\
|
|
13388
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13552
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/YieldManager.js ***!
|
|
13389
13553
|
\*******************************************************************************************************************************/
|
|
13390
13554
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13391
13555
|
|
|
@@ -13437,9 +13601,9 @@ class YieldManager {
|
|
|
13437
13601
|
|
|
13438
13602
|
/***/ }),
|
|
13439
13603
|
|
|
13440
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13604
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js":
|
|
13441
13605
|
/*!*******************************************************************************************************************************!*\
|
|
13442
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13606
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js ***!
|
|
13443
13607
|
\*******************************************************************************************************************************/
|
|
13444
13608
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13445
13609
|
|
|
@@ -13452,6 +13616,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13452
13616
|
/* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
13453
13617
|
/* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_29__.BeTimePoint),
|
|
13454
13618
|
/* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
13619
|
+
/* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
|
|
13620
|
+
/* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
|
|
13455
13621
|
/* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
|
|
13456
13622
|
/* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
|
|
13457
13623
|
/* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
|
|
@@ -13459,12 +13625,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13459
13625
|
/* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
13460
13626
|
/* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
13461
13627
|
/* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
13462
|
-
/* harmony export */ DbChangeStage: () => (/* reexport safe */
|
|
13463
|
-
/* harmony export */ DbConflictCause: () => (/* reexport safe */
|
|
13464
|
-
/* harmony export */ DbConflictResolution: () => (/* reexport safe */
|
|
13628
|
+
/* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbChangeStage),
|
|
13629
|
+
/* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictCause),
|
|
13630
|
+
/* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictResolution),
|
|
13465
13631
|
/* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
13466
13632
|
/* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
13467
|
-
/* harmony export */ DbValueType: () => (/* reexport safe */
|
|
13633
|
+
/* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbValueType),
|
|
13468
13634
|
/* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
13469
13635
|
/* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
13470
13636
|
/* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.DuplicatePolicy),
|
|
@@ -13498,7 +13664,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13498
13664
|
/* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_23__.ReadonlyOrderedSet),
|
|
13499
13665
|
/* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.ReadonlySortedArray),
|
|
13500
13666
|
/* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
13501
|
-
/* harmony export */ RepositoryStatus: () => (/* reexport safe */
|
|
13667
|
+
/* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.RepositoryStatus),
|
|
13502
13668
|
/* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
13503
13669
|
/* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.SortedArray),
|
|
13504
13670
|
/* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_30__.SpanKind),
|
|
@@ -13514,9 +13680,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13514
13680
|
/* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.Uint8ArrayBuilder),
|
|
13515
13681
|
/* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.UintArrayBuilder),
|
|
13516
13682
|
/* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__.UnexpectedErrors),
|
|
13517
|
-
/* harmony export */ YieldManager: () => (/* reexport safe */
|
|
13683
|
+
/* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_36__.YieldManager),
|
|
13518
13684
|
/* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
13519
|
-
/* harmony export */ asInstanceOf: () => (/* reexport safe */
|
|
13685
|
+
/* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.asInstanceOf),
|
|
13520
13686
|
/* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
13521
13687
|
/* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.base64StringToUint8Array),
|
|
13522
13688
|
/* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
|
|
@@ -13536,53 +13702,55 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13536
13702
|
/* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
|
|
13537
13703
|
/* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
|
|
13538
13704
|
/* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
13539
|
-
/* harmony export */ isInstanceOf: () => (/* reexport safe */
|
|
13705
|
+
/* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.isInstanceOf),
|
|
13540
13706
|
/* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
13541
13707
|
/* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
13542
13708
|
/* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.lowerBound),
|
|
13543
|
-
/* harmony export */ omit: () => (/* reexport safe */
|
|
13709
|
+
/* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.omit),
|
|
13544
13710
|
/* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_24__.partitionArray),
|
|
13545
13711
|
/* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.shallowClone),
|
|
13546
13712
|
/* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
13547
|
-
/* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString)
|
|
13713
|
+
/* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString),
|
|
13714
|
+
/* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__.wrapTimerCallback)
|
|
13548
13715
|
/* harmony export */ });
|
|
13549
|
-
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13550
|
-
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13551
|
-
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13552
|
-
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13553
|
-
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13554
|
-
/* harmony import */ var _StatusCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./StatusCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13555
|
-
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13556
|
-
/* harmony import */ var _ByteStream__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ByteStream */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13557
|
-
/* harmony import */ var _ClassUtils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ClassUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13558
|
-
/* harmony import */ var _Compare__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./Compare */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13559
|
-
/* harmony import */ var _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CompressedId64Set */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13560
|
-
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13561
|
-
/* harmony import */ var _Disposable__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Disposable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13562
|
-
/* harmony import */ var _Expect__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Expect */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13563
|
-
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13564
|
-
/* harmony import */ var _IndexMap__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./IndexMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13565
|
-
/* harmony import */ var _JsonSchema__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./JsonSchema */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13566
|
-
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13567
|
-
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13568
|
-
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./LRUMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13569
|
-
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ObservableSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13570
|
-
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./OneAtATimeAction */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13571
|
-
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13572
|
-
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./OrderedSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13573
|
-
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./partitionArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13574
|
-
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./PriorityQueue */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13575
|
-
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ProcessDetector */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13576
|
-
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13577
|
-
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./StringUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13578
|
-
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Time */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13579
|
-
/* harmony import */ var _Tracing__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./Tracing */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13580
|
-
/* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13581
|
-
/* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13582
|
-
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13583
|
-
/* harmony import */ var
|
|
13584
|
-
/* harmony import */ var
|
|
13585
|
-
/* harmony import */ var
|
|
13716
|
+
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/AccessToken.js");
|
|
13717
|
+
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Assert.js");
|
|
13718
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BeEvent */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeEvent.js");
|
|
13719
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BentleyError */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyError.js");
|
|
13720
|
+
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BentleyLoggerCategory.js");
|
|
13721
|
+
/* harmony import */ var _StatusCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./StatusCategory */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StatusCategory.js");
|
|
13722
|
+
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BeSQLite */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/BeSQLite.js");
|
|
13723
|
+
/* harmony import */ var _ByteStream__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ByteStream */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ByteStream.js");
|
|
13724
|
+
/* harmony import */ var _ClassUtils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ClassUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ClassUtils.js");
|
|
13725
|
+
/* harmony import */ var _Compare__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./Compare */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Compare.js");
|
|
13726
|
+
/* harmony import */ var _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CompressedId64Set */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/CompressedId64Set.js");
|
|
13727
|
+
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Dictionary */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Dictionary.js");
|
|
13728
|
+
/* harmony import */ var _Disposable__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Disposable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Disposable.js");
|
|
13729
|
+
/* harmony import */ var _Expect__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Expect */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Expect.js");
|
|
13730
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./Id */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Id.js");
|
|
13731
|
+
/* harmony import */ var _IndexMap__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./IndexMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/IndexMap.js");
|
|
13732
|
+
/* harmony import */ var _JsonSchema__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./JsonSchema */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonSchema.js");
|
|
13733
|
+
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./JsonUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/JsonUtils.js");
|
|
13734
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Logger */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Logger.js");
|
|
13735
|
+
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./LRUMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/LRUMap.js");
|
|
13736
|
+
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ObservableSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ObservableSet.js");
|
|
13737
|
+
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./OneAtATimeAction */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OneAtATimeAction.js");
|
|
13738
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedId64Iterable.js");
|
|
13739
|
+
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./OrderedSet */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/OrderedSet.js");
|
|
13740
|
+
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./partitionArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js");
|
|
13741
|
+
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./PriorityQueue */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/PriorityQueue.js");
|
|
13742
|
+
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ProcessDetector */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/ProcessDetector.js");
|
|
13743
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./SortedArray */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/SortedArray.js");
|
|
13744
|
+
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./StringUtils */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/StringUtils.js");
|
|
13745
|
+
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Time */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Time.js");
|
|
13746
|
+
/* harmony import */ var _Tracing__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./Tracing */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/Tracing.js");
|
|
13747
|
+
/* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TupleKeyedMap.js");
|
|
13748
|
+
/* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/TypedArrayBuilder.js");
|
|
13749
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./UnexpectedErrors */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UnexpectedErrors.js");
|
|
13750
|
+
/* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityFunctions.js");
|
|
13751
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/UtilityTypes.js");
|
|
13752
|
+
/* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./YieldManager */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/YieldManager.js");
|
|
13753
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./internal/cross-package */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/cross-package.js");
|
|
13586
13754
|
/*---------------------------------------------------------------------------------------------
|
|
13587
13755
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13588
13756
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13621,6 +13789,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13621
13789
|
|
|
13622
13790
|
|
|
13623
13791
|
|
|
13792
|
+
|
|
13624
13793
|
|
|
13625
13794
|
|
|
13626
13795
|
// Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.
|
|
@@ -13668,9 +13837,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13668
13837
|
|
|
13669
13838
|
/***/ }),
|
|
13670
13839
|
|
|
13671
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13840
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/BeSQLiteInternal.js":
|
|
13672
13841
|
/*!********************************************************************************************************************************************!*\
|
|
13673
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13842
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/BeSQLiteInternal.js ***!
|
|
13674
13843
|
\********************************************************************************************************************************************/
|
|
13675
13844
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13676
13845
|
|
|
@@ -13729,9 +13898,9 @@ var DbConflictResolution;
|
|
|
13729
13898
|
|
|
13730
13899
|
/***/ }),
|
|
13731
13900
|
|
|
13732
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13901
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/RepositoryStatus.js":
|
|
13733
13902
|
/*!********************************************************************************************************************************************!*\
|
|
13734
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13903
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/RepositoryStatus.js ***!
|
|
13735
13904
|
\********************************************************************************************************************************************/
|
|
13736
13905
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13737
13906
|
|
|
@@ -13788,9 +13957,9 @@ var RepositoryStatus;
|
|
|
13788
13957
|
|
|
13789
13958
|
/***/ }),
|
|
13790
13959
|
|
|
13791
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13960
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/cross-package.js":
|
|
13792
13961
|
/*!*****************************************************************************************************************************************!*\
|
|
13793
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13962
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/cross-package.js ***!
|
|
13794
13963
|
\*****************************************************************************************************************************************/
|
|
13795
13964
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13796
13965
|
|
|
@@ -13803,8 +13972,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13803
13972
|
/* harmony export */ DbValueType: () => (/* reexport safe */ _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__.DbValueType),
|
|
13804
13973
|
/* harmony export */ RepositoryStatus: () => (/* reexport safe */ _RepositoryStatus__WEBPACK_IMPORTED_MODULE_0__.RepositoryStatus)
|
|
13805
13974
|
/* harmony export */ });
|
|
13806
|
-
/* harmony import */ var _RepositoryStatus__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13807
|
-
/* harmony import */ var _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BeSQLiteInternal */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13975
|
+
/* harmony import */ var _RepositoryStatus__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RepositoryStatus */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/RepositoryStatus.js");
|
|
13976
|
+
/* harmony import */ var _BeSQLiteInternal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BeSQLiteInternal */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/internal/BeSQLiteInternal.js");
|
|
13808
13977
|
/*---------------------------------------------------------------------------------------------
|
|
13809
13978
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
13810
13979
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -13815,9 +13984,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13815
13984
|
|
|
13816
13985
|
/***/ }),
|
|
13817
13986
|
|
|
13818
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13987
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js":
|
|
13819
13988
|
/*!*********************************************************************************************************************************!*\
|
|
13820
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
13989
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/partitionArray.js ***!
|
|
13821
13990
|
\*********************************************************************************************************************************/
|
|
13822
13991
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13823
13992
|
|
|
@@ -14633,7 +14802,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14633
14802
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14634
14803
|
/* harmony export */ AxiosRestClient: () => (/* binding */ AxiosRestClient)
|
|
14635
14804
|
/* harmony export */ });
|
|
14636
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
14805
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js");
|
|
14637
14806
|
/* harmony import */ var _internal___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../internal/ */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@6.0.2/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
14638
14807
|
/* harmony import */ var _types_RestClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types/RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@6.0.2/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js");
|
|
14639
14808
|
/* harmony import */ var _AxiosResponseHeadersAdapter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AxiosResponseHeadersAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@6.0.2/node_modules/@itwin/imodels-client-management/lib/esm/base/axios/AxiosResponseHeadersAdapter.js");
|
|
@@ -14735,7 +14904,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14735
14904
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14736
14905
|
/* harmony export */ AxiosRetryPolicy: () => (/* binding */ AxiosRetryPolicy)
|
|
14737
14906
|
/* harmony export */ });
|
|
14738
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
14907
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/index.js");
|
|
14739
14908
|
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@6.0.2/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js");
|
|
14740
14909
|
/*---------------------------------------------------------------------------------------------
|
|
14741
14910
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -18283,7 +18452,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18283
18452
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18284
18453
|
/* harmony export */ BaseClient: () => (/* binding */ BaseClient)
|
|
18285
18454
|
/* harmony export */ });
|
|
18286
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
18455
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js");
|
|
18287
18456
|
|
|
18288
18457
|
class BaseClient {
|
|
18289
18458
|
constructor(url) {
|
|
@@ -195134,12 +195303,12 @@ class QuantityFormatter {
|
|
|
195134
195303
|
const effectiveSystem = args.system ?? this._activeUnitSystem;
|
|
195135
195304
|
return this._formatSpecsRegistry.get(args.name)?.get(args.persistenceUnitName)?.get(effectiveSystem);
|
|
195136
195305
|
}
|
|
195137
|
-
/** Create a
|
|
195138
|
-
* The handle
|
|
195306
|
+
/** Create a handle to formatting specs for a specific KoQ and persistence unit.
|
|
195307
|
+
* The handle reads the current specs from the formatter on access. Call `dispose()` when done.
|
|
195139
195308
|
*
|
|
195140
195309
|
* @param koqName - The KindOfQuantity name (e.g., "DefaultToolsUnits.LENGTH")
|
|
195141
195310
|
* @param persistenceUnit - The persistence unit name (e.g., "Units.M")
|
|
195142
|
-
* @returns A FormatSpecHandle that
|
|
195311
|
+
* @returns A FormatSpecHandle that reflects current formatter state
|
|
195143
195312
|
* @beta
|
|
195144
195313
|
*/
|
|
195145
195314
|
getFormatSpecHandle(koqName, persistenceUnit, system) {
|
|
@@ -195167,12 +195336,17 @@ class QuantityFormatter {
|
|
|
195167
195336
|
formatProps,
|
|
195168
195337
|
formatName: name,
|
|
195169
195338
|
});
|
|
195170
|
-
|
|
195171
|
-
|
|
195172
|
-
|
|
195173
|
-
|
|
195174
|
-
|
|
195175
|
-
unitMap.get(persistenceUnitName)
|
|
195339
|
+
let unitMap = this._formatSpecsRegistry.get(name);
|
|
195340
|
+
if (!unitMap) {
|
|
195341
|
+
unitMap = new Map();
|
|
195342
|
+
this._formatSpecsRegistry.set(name, unitMap);
|
|
195343
|
+
}
|
|
195344
|
+
let systemMap = unitMap.get(persistenceUnitName);
|
|
195345
|
+
if (!systemMap) {
|
|
195346
|
+
systemMap = new Map();
|
|
195347
|
+
unitMap.set(persistenceUnitName, systemMap);
|
|
195348
|
+
}
|
|
195349
|
+
systemMap.set(effectiveSystem, { formatterSpec, parserSpec });
|
|
195176
195350
|
}
|
|
195177
195351
|
else {
|
|
195178
195352
|
throw new Error(`Unable to find format properties for ${name} with persistence unit ${persistenceUnitName}`);
|
|
@@ -345587,19 +345761,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
345587
345761
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
345588
345762
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
345589
345763
|
*--------------------------------------------------------------------------------------------*/
|
|
345590
|
-
/** A
|
|
345591
|
-
*
|
|
345764
|
+
/** A handle to formatting and parsing specs for a specific KoQ and persistence unit.
|
|
345765
|
+
* Reads the current specs from the provider on access. Use [[QuantityFormatter.getFormatSpecHandle]]
|
|
345592
345766
|
* to create instances.
|
|
345593
345767
|
*
|
|
345594
345768
|
* When formatting is not yet ready, [[format]] returns a `value.toString()` fallback.
|
|
345595
|
-
*
|
|
345769
|
+
* Dispose the handle when it is no longer needed to invalidate it.
|
|
345596
345770
|
*
|
|
345597
345771
|
* @beta
|
|
345598
345772
|
*/
|
|
345599
345773
|
class FormatSpecHandle {
|
|
345600
|
-
|
|
345601
|
-
_parserSpec;
|
|
345602
|
-
_removeListener;
|
|
345774
|
+
_disposed = false;
|
|
345603
345775
|
_provider;
|
|
345604
345776
|
_koqName;
|
|
345605
345777
|
_persistenceUnit;
|
|
@@ -345610,10 +345782,6 @@ class FormatSpecHandle {
|
|
|
345610
345782
|
this._koqName = args.name;
|
|
345611
345783
|
this._persistenceUnit = args.persistenceUnitName;
|
|
345612
345784
|
this._system = args.system;
|
|
345613
|
-
this._removeListener = args.provider.onFormattingReady.addListener(() => {
|
|
345614
|
-
this._refresh();
|
|
345615
|
-
});
|
|
345616
|
-
this._refresh();
|
|
345617
345785
|
}
|
|
345618
345786
|
/** The KoQ name this handle is keyed to. */
|
|
345619
345787
|
get koqName() { return this._koqName; }
|
|
@@ -345622,47 +345790,35 @@ class FormatSpecHandle {
|
|
|
345622
345790
|
/** The unit system this handle is pinned to, or `undefined` for the active system. */
|
|
345623
345791
|
get system() { return this._system; }
|
|
345624
345792
|
/** The current FormatterSpec, or undefined if not yet loaded. */
|
|
345625
|
-
get formatterSpec() { return this.
|
|
345793
|
+
get formatterSpec() { return this._getEntry()?.formatterSpec; }
|
|
345626
345794
|
/** The current ParserSpec, or undefined if not yet loaded. */
|
|
345627
|
-
get parserSpec() { return this.
|
|
345795
|
+
get parserSpec() { return this._getEntry()?.parserSpec; }
|
|
345628
345796
|
/** Format a quantity value using the current spec.
|
|
345629
345797
|
* If the formatter is not yet ready, returns `value.toString()` as a fallback.
|
|
345630
345798
|
* @param value - The numeric value to format.
|
|
345631
345799
|
* @returns The formatted string.
|
|
345632
345800
|
*/
|
|
345633
345801
|
format(value) {
|
|
345634
|
-
|
|
345802
|
+
const formatterSpec = this.formatterSpec;
|
|
345803
|
+
if (!formatterSpec)
|
|
345635
345804
|
return value.toString();
|
|
345636
|
-
return this._provider.formatQuantity(value,
|
|
345805
|
+
return this._provider.formatQuantity(value, formatterSpec);
|
|
345637
345806
|
}
|
|
345638
|
-
/**
|
|
345639
|
-
* Idempotent and safe to call
|
|
345807
|
+
/** Invalidate this handle.
|
|
345808
|
+
* Idempotent and safe to call multiple times.
|
|
345809
|
+
* No additional teardown is required because the handle owns no external resources.
|
|
345640
345810
|
*/
|
|
345641
345811
|
[Symbol.dispose]() {
|
|
345642
|
-
|
|
345643
|
-
this._removeListener();
|
|
345644
|
-
this._removeListener = undefined;
|
|
345645
|
-
}
|
|
345646
|
-
this._formatterSpec = undefined;
|
|
345647
|
-
this._parserSpec = undefined;
|
|
345812
|
+
this._disposed = true;
|
|
345648
345813
|
}
|
|
345649
|
-
|
|
345650
|
-
|
|
345651
|
-
|
|
345652
|
-
|
|
345653
|
-
const entry = this._provider.getSpecsByNameAndUnit({
|
|
345814
|
+
_getEntry() {
|
|
345815
|
+
if (this._disposed)
|
|
345816
|
+
return undefined;
|
|
345817
|
+
return this._provider.getSpecsByNameAndUnit({
|
|
345654
345818
|
name: this._koqName,
|
|
345655
345819
|
persistenceUnitName: this._persistenceUnit,
|
|
345656
345820
|
system: this._system,
|
|
345657
345821
|
});
|
|
345658
|
-
if (entry) {
|
|
345659
|
-
this._formatterSpec = entry.formatterSpec;
|
|
345660
|
-
this._parserSpec = entry.parserSpec;
|
|
345661
|
-
}
|
|
345662
|
-
else {
|
|
345663
|
-
this._formatterSpec = undefined;
|
|
345664
|
-
this._parserSpec = undefined;
|
|
345665
|
-
}
|
|
345666
345822
|
}
|
|
345667
345823
|
}
|
|
345668
345824
|
|
|
@@ -350459,7 +350615,7 @@ class TestContext {
|
|
|
350459
350615
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
350460
350616
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
350461
350617
|
await core_frontend_1.NoRenderApp.startup({
|
|
350462
|
-
applicationVersion: "5.9.
|
|
350618
|
+
applicationVersion: "5.9.2",
|
|
350463
350619
|
applicationId: this.settings.gprid,
|
|
350464
350620
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
350465
350621
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -353014,9 +353170,9 @@ const getClassName = (obj) => {
|
|
|
353014
353170
|
|
|
353015
353171
|
/***/ }),
|
|
353016
353172
|
|
|
353017
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353173
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
|
|
353018
353174
|
/*!*****************************************************************************************************************************************************!*\
|
|
353019
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353175
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
|
|
353020
353176
|
\*****************************************************************************************************************************************************/
|
|
353021
353177
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
353022
353178
|
|
|
@@ -353061,32 +353217,31 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
353061
353217
|
})();
|
|
353062
353218
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353063
353219
|
exports.TypedPrimitiveValue = exports.PrimitiveValue = exports.InstanceKey = exports.trimWhitespace = exports.releaseMainThread = exports.parseFullClassName = exports.normalizeFullClassName = exports.julianToDateTime = exports.createMainThreadReleaseOnTimePassedHandler = exports.getClass = exports.createCachingECClassHierarchyInspector = exports.NOOP_LOGGER = exports.parseInstanceLabel = exports.createBisInstanceLabelSelectClauseFactory = exports.createClassBasedInstanceLabelSelectClauseFactory = exports.createDefaultInstanceLabelSelectClauseFactory = exports.formatConcatenatedValue = exports.createDefaultValueFormatter = exports.ConcatenatedValuePart = exports.ConcatenatedValue = exports.ECSql = void 0;
|
|
353064
|
-
|
|
353065
|
-
|
|
353066
|
-
var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.11/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
|
|
353220
|
+
exports.ECSql = __importStar(__webpack_require__(/*! ./shared/ecsql-snippets/index.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js"));
|
|
353221
|
+
var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
|
|
353067
353222
|
Object.defineProperty(exports, "ConcatenatedValue", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValue; } }));
|
|
353068
353223
|
Object.defineProperty(exports, "ConcatenatedValuePart", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValuePart; } }));
|
|
353069
|
-
var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353224
|
+
var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js");
|
|
353070
353225
|
Object.defineProperty(exports, "createDefaultValueFormatter", ({ enumerable: true, get: function () { return Formatting_js_1.createDefaultValueFormatter; } }));
|
|
353071
353226
|
Object.defineProperty(exports, "formatConcatenatedValue", ({ enumerable: true, get: function () { return Formatting_js_1.formatConcatenatedValue; } }));
|
|
353072
|
-
var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353227
|
+
var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js");
|
|
353073
353228
|
Object.defineProperty(exports, "createDefaultInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createDefaultInstanceLabelSelectClauseFactory; } }));
|
|
353074
353229
|
Object.defineProperty(exports, "createClassBasedInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createClassBasedInstanceLabelSelectClauseFactory; } }));
|
|
353075
353230
|
Object.defineProperty(exports, "createBisInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createBisInstanceLabelSelectClauseFactory; } }));
|
|
353076
353231
|
Object.defineProperty(exports, "parseInstanceLabel", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.parseInstanceLabel; } }));
|
|
353077
|
-
var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353232
|
+
var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js");
|
|
353078
353233
|
Object.defineProperty(exports, "NOOP_LOGGER", ({ enumerable: true, get: function () { return Logging_js_1.NOOP_LOGGER; } }));
|
|
353079
|
-
var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353234
|
+
var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
|
|
353080
353235
|
Object.defineProperty(exports, "createCachingECClassHierarchyInspector", ({ enumerable: true, get: function () { return Metadata_js_1.createCachingECClassHierarchyInspector; } }));
|
|
353081
353236
|
Object.defineProperty(exports, "getClass", ({ enumerable: true, get: function () { return Metadata_js_1.getClass; } }));
|
|
353082
|
-
var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353237
|
+
var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
|
|
353083
353238
|
Object.defineProperty(exports, "createMainThreadReleaseOnTimePassedHandler", ({ enumerable: true, get: function () { return Utils_js_1.createMainThreadReleaseOnTimePassedHandler; } }));
|
|
353084
353239
|
Object.defineProperty(exports, "julianToDateTime", ({ enumerable: true, get: function () { return Utils_js_1.julianToDateTime; } }));
|
|
353085
353240
|
Object.defineProperty(exports, "normalizeFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.normalizeFullClassName; } }));
|
|
353086
353241
|
Object.defineProperty(exports, "parseFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.parseFullClassName; } }));
|
|
353087
353242
|
Object.defineProperty(exports, "releaseMainThread", ({ enumerable: true, get: function () { return Utils_js_1.releaseMainThread; } }));
|
|
353088
353243
|
Object.defineProperty(exports, "trimWhitespace", ({ enumerable: true, get: function () { return Utils_js_1.trimWhitespace; } }));
|
|
353089
|
-
var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353244
|
+
var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
|
|
353090
353245
|
Object.defineProperty(exports, "InstanceKey", ({ enumerable: true, get: function () { return Values_js_1.InstanceKey; } }));
|
|
353091
353246
|
Object.defineProperty(exports, "PrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.PrimitiveValue; } }));
|
|
353092
353247
|
Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.TypedPrimitiveValue; } }));
|
|
@@ -353094,9 +353249,9 @@ Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get:
|
|
|
353094
353249
|
|
|
353095
353250
|
/***/ }),
|
|
353096
353251
|
|
|
353097
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353252
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
|
|
353098
353253
|
/*!**********************************************************************************************************************************************************!*\
|
|
353099
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353254
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
|
|
353100
353255
|
\**********************************************************************************************************************************************************/
|
|
353101
353256
|
/***/ ((__unused_webpack_module, exports) => {
|
|
353102
353257
|
|
|
@@ -353153,9 +353308,9 @@ var ConcatenatedValue;
|
|
|
353153
353308
|
|
|
353154
353309
|
/***/ }),
|
|
353155
353310
|
|
|
353156
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353311
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
|
|
353157
353312
|
/*!***************************************************************************************************************************************************!*\
|
|
353158
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353313
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
|
|
353159
353314
|
\***************************************************************************************************************************************************/
|
|
353160
353315
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353161
353316
|
|
|
@@ -353168,9 +353323,9 @@ var ConcatenatedValue;
|
|
|
353168
353323
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353169
353324
|
exports.formatConcatenatedValue = formatConcatenatedValue;
|
|
353170
353325
|
exports.createDefaultValueFormatter = createDefaultValueFormatter;
|
|
353171
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353172
|
-
const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353173
|
-
const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353326
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
353327
|
+
const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
|
|
353328
|
+
const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
|
|
353174
353329
|
/**
|
|
353175
353330
|
* Formats a concatenated value into a string, taking into account different types of `ConcatenatedValuePart` that
|
|
353176
353331
|
* the value consists of.
|
|
@@ -353187,10 +353342,7 @@ async function formatConcatenatedValue(props) {
|
|
|
353187
353342
|
partFormatter: async (part) => {
|
|
353188
353343
|
// strings are converted to typed strings
|
|
353189
353344
|
if (ConcatenatedValue_js_1.ConcatenatedValuePart.isString(part)) {
|
|
353190
|
-
part = {
|
|
353191
|
-
value: part,
|
|
353192
|
-
type: "String",
|
|
353193
|
-
};
|
|
353345
|
+
part = { value: part, type: "String" };
|
|
353194
353346
|
}
|
|
353195
353347
|
// finally, use provided value formatter to create a string from `TypedPrimitiveValue`
|
|
353196
353348
|
return valueFormatter(part);
|
|
@@ -353230,7 +353382,10 @@ function createDefaultValueFormatter() {
|
|
|
353230
353382
|
return result;
|
|
353231
353383
|
}
|
|
353232
353384
|
}
|
|
353233
|
-
(0, core_bentley_1.assert)(typeof value.value === "undefined" ||
|
|
353385
|
+
(0, core_bentley_1.assert)(typeof value.value === "undefined" ||
|
|
353386
|
+
typeof value.value === "boolean" ||
|
|
353387
|
+
typeof value.value === "number" ||
|
|
353388
|
+
typeof value.value === "string");
|
|
353234
353389
|
return value.value.toString();
|
|
353235
353390
|
};
|
|
353236
353391
|
}
|
|
@@ -353251,7 +353406,11 @@ function applyNumericFormatting(value) {
|
|
|
353251
353406
|
}
|
|
353252
353407
|
function applyDatesFormatting(value) {
|
|
353253
353408
|
function getDate(julianOrDate) {
|
|
353254
|
-
return typeof julianOrDate === "number"
|
|
353409
|
+
return typeof julianOrDate === "number"
|
|
353410
|
+
? (0, Utils_js_1.julianToDateTime)(julianOrDate)
|
|
353411
|
+
: typeof julianOrDate === "string"
|
|
353412
|
+
? new Date(julianOrDate)
|
|
353413
|
+
: julianOrDate;
|
|
353255
353414
|
}
|
|
353256
353415
|
if (value.type !== "DateTime") {
|
|
353257
353416
|
return undefined;
|
|
@@ -353277,9 +353436,9 @@ function applyPointsFormatting(value) {
|
|
|
353277
353436
|
|
|
353278
353437
|
/***/ }),
|
|
353279
353438
|
|
|
353280
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353439
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
|
|
353281
353440
|
/*!*************************************************************************************************************************************************************************!*\
|
|
353282
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353441
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
|
|
353283
353442
|
\*************************************************************************************************************************************************************************/
|
|
353284
353443
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353285
353444
|
|
|
@@ -353290,11 +353449,14 @@ function applyPointsFormatting(value) {
|
|
|
353290
353449
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
353291
353450
|
*--------------------------------------------------------------------------------------------*/
|
|
353292
353451
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353452
|
+
exports.ALIAS_PREFIX = void 0;
|
|
353293
353453
|
exports.parseInstanceLabel = parseInstanceLabel;
|
|
353294
353454
|
exports.createDefaultInstanceLabelSelectClauseFactory = createDefaultInstanceLabelSelectClauseFactory;
|
|
353295
353455
|
exports.createClassBasedInstanceLabelSelectClauseFactory = createClassBasedInstanceLabelSelectClauseFactory;
|
|
353296
353456
|
exports.createBisInstanceLabelSelectClauseFactory = createBisInstanceLabelSelectClauseFactory;
|
|
353297
|
-
const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353457
|
+
const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
|
|
353458
|
+
/** @internal */
|
|
353459
|
+
exports.ALIAS_PREFIX = "pres_";
|
|
353298
353460
|
/**
|
|
353299
353461
|
* Parses an instance label from query result into a string or a `ConcatenatedValue`. The latter type of result
|
|
353300
353462
|
* is expected when label selector is created using `IInstanceLabelSelectClauseFactory.createSelectClause` with
|
|
@@ -353327,6 +353489,7 @@ function parseInstanceLabel(value) {
|
|
|
353327
353489
|
* @public
|
|
353328
353490
|
*/
|
|
353329
353491
|
function createDefaultInstanceLabelSelectClauseFactory() {
|
|
353492
|
+
const alias = `${exports.ALIAS_PREFIX}c`;
|
|
353330
353493
|
return {
|
|
353331
353494
|
async createSelectClause(props) {
|
|
353332
353495
|
return `(
|
|
@@ -353334,14 +353497,14 @@ function createDefaultInstanceLabelSelectClauseFactory() {
|
|
|
353334
353497
|
${concatenate(props, [
|
|
353335
353498
|
{
|
|
353336
353499
|
selector: `COALESCE(
|
|
353337
|
-
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(
|
|
353338
|
-
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(
|
|
353500
|
+
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(alias, "DisplayLabel")},
|
|
353501
|
+
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(alias, "Name")}
|
|
353339
353502
|
)`,
|
|
353340
353503
|
},
|
|
353341
353504
|
...createECInstanceIdSuffixSelectors(props.classAlias),
|
|
353342
353505
|
])}
|
|
353343
|
-
FROM [meta].[ECClassDef] AS [
|
|
353344
|
-
WHERE [
|
|
353506
|
+
FROM [meta].[ECClassDef] AS [${alias}]
|
|
353507
|
+
WHERE [${alias}].[ECInstanceId] = ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(props.classAlias, "ECClassId")}
|
|
353345
353508
|
)`;
|
|
353346
353509
|
},
|
|
353347
353510
|
};
|
|
@@ -353377,14 +353540,13 @@ function createClassBasedInstanceLabelSelectClauseFactory(props) {
|
|
|
353377
353540
|
if (labelClausesByClass.length === 0) {
|
|
353378
353541
|
return defaultClauseFactory.createSelectClause(clauseProps);
|
|
353379
353542
|
}
|
|
353380
|
-
const labelClausePromises = clauseProps.className
|
|
353543
|
+
const labelClausePromises = clauseProps.className
|
|
353544
|
+
? await getLabelClausesForClass(clauseProps.className)
|
|
353545
|
+
: labelClausesByClass;
|
|
353381
353546
|
if (labelClausePromises.length === 0) {
|
|
353382
353547
|
return defaultClauseFactory.createSelectClause(clauseProps);
|
|
353383
353548
|
}
|
|
353384
|
-
const labelClauses = await Promise.all(labelClausePromises.map(async ({ className, clause }) => ({
|
|
353385
|
-
className,
|
|
353386
|
-
clause: await clause(clauseProps),
|
|
353387
|
-
})));
|
|
353549
|
+
const labelClauses = await Promise.all(labelClausePromises.map(async ({ className, clause }) => ({ className, clause: await clause(clauseProps) })));
|
|
353388
353550
|
return `COALESCE(
|
|
353389
353551
|
${labelClauses
|
|
353390
353552
|
.map(({ className, clause }) => `
|
|
@@ -353411,12 +353573,16 @@ function createBisInstanceLabelSelectClauseFactory(props) {
|
|
|
353411
353573
|
classHierarchyInspector: props.classHierarchyInspector,
|
|
353412
353574
|
clauses,
|
|
353413
353575
|
});
|
|
353576
|
+
const elementAlias = `${exports.ALIAS_PREFIX}e`;
|
|
353414
353577
|
clauses.push({
|
|
353415
353578
|
className: "BisCore.GeometricElement",
|
|
353416
353579
|
clause: async ({ classAlias, ...rest }) => `
|
|
353417
353580
|
COALESCE(
|
|
353418
353581
|
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "CodeValue")},
|
|
353419
|
-
${concatenate(rest, [
|
|
353582
|
+
${concatenate(rest, [
|
|
353583
|
+
{ selector: (0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "UserLabel") },
|
|
353584
|
+
...createECInstanceIdSuffixSelectors(classAlias),
|
|
353585
|
+
], `${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "UserLabel")} IS NOT NULL`)}
|
|
353420
353586
|
)
|
|
353421
353587
|
`,
|
|
353422
353588
|
}, {
|
|
@@ -353430,9 +353596,9 @@ function createBisInstanceLabelSelectClauseFactory(props) {
|
|
|
353430
353596
|
}, {
|
|
353431
353597
|
className: "BisCore.Model",
|
|
353432
353598
|
clause: async ({ classAlias, ...rest }) => `(
|
|
353433
|
-
SELECT ${await factory.createSelectClause({ ...rest, classAlias:
|
|
353434
|
-
FROM [bis].[Element] AS [
|
|
353435
|
-
WHERE [
|
|
353599
|
+
SELECT ${await factory.createSelectClause({ ...rest, classAlias: elementAlias, className: "BisCore.Element" })}
|
|
353600
|
+
FROM [bis].[Element] AS [${elementAlias}]
|
|
353601
|
+
WHERE [${elementAlias}].[ECInstanceId] = ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ModeledElement", "Id")}
|
|
353436
353602
|
)`,
|
|
353437
353603
|
});
|
|
353438
353604
|
return factory;
|
|
@@ -353442,7 +353608,9 @@ function createECInstanceIdSuffixSelectors(classAlias) {
|
|
|
353442
353608
|
{ value: ` [`, type: "String" },
|
|
353443
353609
|
{ selector: `CAST(base36(${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ECInstanceId")} >> 40) AS TEXT)` },
|
|
353444
353610
|
{ value: `-`, type: "String" },
|
|
353445
|
-
{
|
|
353611
|
+
{
|
|
353612
|
+
selector: `CAST(base36(${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ECInstanceId")} & ((1 << 40) - 1)) AS TEXT)`,
|
|
353613
|
+
},
|
|
353446
353614
|
{ value: `]`, type: "String" },
|
|
353447
353615
|
];
|
|
353448
353616
|
}
|
|
@@ -353453,9 +353621,9 @@ function concatenate(props, selectors, checkSelector) {
|
|
|
353453
353621
|
|
|
353454
353622
|
/***/ }),
|
|
353455
353623
|
|
|
353456
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353624
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
|
|
353457
353625
|
/*!************************************************************************************************************************************************!*\
|
|
353458
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353626
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
|
|
353459
353627
|
\************************************************************************************************************************************************/
|
|
353460
353628
|
/***/ ((__unused_webpack_module, exports) => {
|
|
353461
353629
|
|
|
@@ -353484,9 +353652,9 @@ exports.NOOP_LOGGER = {
|
|
|
353484
353652
|
|
|
353485
353653
|
/***/ }),
|
|
353486
353654
|
|
|
353487
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353655
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
|
|
353488
353656
|
/*!*************************************************************************************************************************************************!*\
|
|
353489
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353657
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
|
|
353490
353658
|
\*************************************************************************************************************************************************/
|
|
353491
353659
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353492
353660
|
|
|
@@ -353499,8 +353667,8 @@ exports.NOOP_LOGGER = {
|
|
|
353499
353667
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353500
353668
|
exports.createCachingECClassHierarchyInspector = createCachingECClassHierarchyInspector;
|
|
353501
353669
|
exports.getClass = getClass;
|
|
353502
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353503
|
-
const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353670
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
353671
|
+
const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
|
|
353504
353672
|
/**
|
|
353505
353673
|
* Creates a new `ECClassHierarchyInspector` that caches results of `derivesFrom` calls.
|
|
353506
353674
|
* @public
|
|
@@ -353515,7 +353683,10 @@ function createCachingECClassHierarchyInspector(props) {
|
|
|
353515
353683
|
const cacheKey = createCacheKey(derivedClassFullName, candidateBaseClassFullName);
|
|
353516
353684
|
let result = map.get(cacheKey);
|
|
353517
353685
|
if (result === undefined) {
|
|
353518
|
-
result = Promise.all([
|
|
353686
|
+
result = Promise.all([
|
|
353687
|
+
getClass(props.schemaProvider, derivedClassFullName),
|
|
353688
|
+
getClass(props.schemaProvider, candidateBaseClassFullName),
|
|
353689
|
+
]).then(async ([derivedClass, baseClass]) => {
|
|
353519
353690
|
const resolvedResult = await derivedClass.is(baseClass);
|
|
353520
353691
|
map.set(cacheKey, resolvedResult);
|
|
353521
353692
|
return resolvedResult;
|
|
@@ -353547,9 +353718,9 @@ async function getClass(schemaProvider, fullClassName) {
|
|
|
353547
353718
|
|
|
353548
353719
|
/***/ }),
|
|
353549
353720
|
|
|
353550
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353721
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
|
|
353551
353722
|
/*!**********************************************************************************************************************************************!*\
|
|
353552
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353723
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
|
|
353553
353724
|
\**********************************************************************************************************************************************/
|
|
353554
353725
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353555
353726
|
|
|
@@ -353566,7 +353737,7 @@ exports.trimWhitespace = trimWhitespace;
|
|
|
353566
353737
|
exports.releaseMainThread = releaseMainThread;
|
|
353567
353738
|
exports.createMainThreadReleaseOnTimePassedHandler = createMainThreadReleaseOnTimePassedHandler;
|
|
353568
353739
|
exports.julianToDateTime = julianToDateTime;
|
|
353569
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353740
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
353570
353741
|
/**
|
|
353571
353742
|
* An utility to parse schema and class names from full class name, where
|
|
353572
353743
|
* schema and class names are separated by either `:` or `.`.
|
|
@@ -353653,9 +353824,9 @@ function julianToDateTime(julianDate) {
|
|
|
353653
353824
|
|
|
353654
353825
|
/***/ }),
|
|
353655
353826
|
|
|
353656
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353827
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
|
|
353657
353828
|
/*!***********************************************************************************************************************************************!*\
|
|
353658
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353829
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
|
|
353659
353830
|
\***********************************************************************************************************************************************/
|
|
353660
353831
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353661
353832
|
|
|
@@ -353667,7 +353838,7 @@ function julianToDateTime(julianDate) {
|
|
|
353667
353838
|
*--------------------------------------------------------------------------------------------*/
|
|
353668
353839
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353669
353840
|
exports.TypedPrimitiveValue = exports.PrimitiveValue = exports.InstanceKey = void 0;
|
|
353670
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353841
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
353671
353842
|
/** @public */
|
|
353672
353843
|
var InstanceKey;
|
|
353673
353844
|
(function (InstanceKey) {
|
|
@@ -353739,75 +353910,42 @@ var TypedPrimitiveValue;
|
|
|
353739
353910
|
case "Integer":
|
|
353740
353911
|
case "Long":
|
|
353741
353912
|
if (typeof value === "number") {
|
|
353742
|
-
return {
|
|
353743
|
-
type,
|
|
353744
|
-
extendedType,
|
|
353745
|
-
value,
|
|
353746
|
-
};
|
|
353913
|
+
return { type, extendedType, value };
|
|
353747
353914
|
}
|
|
353748
353915
|
break;
|
|
353749
353916
|
case "Double":
|
|
353750
353917
|
if (typeof value === "number") {
|
|
353751
|
-
return {
|
|
353752
|
-
type,
|
|
353753
|
-
koqName,
|
|
353754
|
-
extendedType,
|
|
353755
|
-
value,
|
|
353756
|
-
};
|
|
353918
|
+
return { type, koqName, extendedType, value };
|
|
353757
353919
|
}
|
|
353758
353920
|
break;
|
|
353759
353921
|
case "Boolean":
|
|
353760
353922
|
if (typeof value === "boolean") {
|
|
353761
|
-
return {
|
|
353762
|
-
type,
|
|
353763
|
-
extendedType,
|
|
353764
|
-
value,
|
|
353765
|
-
};
|
|
353923
|
+
return { type, extendedType, value };
|
|
353766
353924
|
}
|
|
353767
353925
|
break;
|
|
353768
353926
|
case "Id":
|
|
353769
353927
|
if (typeof value === "string" && core_bentley_1.Id64.isId64(value)) {
|
|
353770
|
-
return {
|
|
353771
|
-
type,
|
|
353772
|
-
extendedType,
|
|
353773
|
-
value,
|
|
353774
|
-
};
|
|
353928
|
+
return { type, extendedType, value };
|
|
353775
353929
|
}
|
|
353776
353930
|
break;
|
|
353777
353931
|
case "String":
|
|
353778
353932
|
if (typeof value === "string") {
|
|
353779
|
-
return {
|
|
353780
|
-
type,
|
|
353781
|
-
extendedType,
|
|
353782
|
-
value,
|
|
353783
|
-
};
|
|
353933
|
+
return { type, extendedType, value };
|
|
353784
353934
|
}
|
|
353785
353935
|
break;
|
|
353786
353936
|
case "DateTime":
|
|
353787
353937
|
if (typeof value === "string" || typeof value === "number" || value instanceof Date) {
|
|
353788
|
-
return {
|
|
353789
|
-
type,
|
|
353790
|
-
extendedType,
|
|
353791
|
-
value,
|
|
353792
|
-
};
|
|
353938
|
+
return { type, extendedType, value };
|
|
353793
353939
|
}
|
|
353794
353940
|
break;
|
|
353795
353941
|
case "Point3d":
|
|
353796
353942
|
if (PrimitiveValue.isPoint3d(value)) {
|
|
353797
|
-
return {
|
|
353798
|
-
type,
|
|
353799
|
-
extendedType,
|
|
353800
|
-
value,
|
|
353801
|
-
};
|
|
353943
|
+
return { type, extendedType, value };
|
|
353802
353944
|
}
|
|
353803
353945
|
break;
|
|
353804
353946
|
case "Point2d":
|
|
353805
353947
|
if (PrimitiveValue.isPoint2d(value)) {
|
|
353806
|
-
return {
|
|
353807
|
-
type,
|
|
353808
|
-
extendedType,
|
|
353809
|
-
value,
|
|
353810
|
-
};
|
|
353948
|
+
return { type, extendedType, value };
|
|
353811
353949
|
}
|
|
353812
353950
|
break;
|
|
353813
353951
|
}
|
|
@@ -353819,9 +353957,9 @@ var TypedPrimitiveValue;
|
|
|
353819
353957
|
|
|
353820
353958
|
/***/ }),
|
|
353821
353959
|
|
|
353822
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353960
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
|
|
353823
353961
|
/*!*************************************************************************************************************************************************************************!*\
|
|
353824
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353962
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
|
|
353825
353963
|
\*************************************************************************************************************************************************************************/
|
|
353826
353964
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353827
353965
|
|
|
@@ -353833,8 +353971,8 @@ var TypedPrimitiveValue;
|
|
|
353833
353971
|
*--------------------------------------------------------------------------------------------*/
|
|
353834
353972
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353835
353973
|
exports.createRelationshipPathJoinClause = createRelationshipPathJoinClause;
|
|
353836
|
-
const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353837
|
-
const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353974
|
+
const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
|
|
353975
|
+
const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
|
|
353838
353976
|
/**
|
|
353839
353977
|
* Creates an ECSQL JOIN snippet for given relationships' path.
|
|
353840
353978
|
*
|
|
@@ -353887,11 +354025,7 @@ async function createRelationshipPathJoinClause(props) {
|
|
|
353887
354025
|
${getJoinClause(step.joinType)} ${getClassSelectClause(step.target, step.targetAlias)}
|
|
353888
354026
|
ON ${relationshipJoinPropertyNames.this} = ${relationshipJoinPropertyNames.next}
|
|
353889
354027
|
`;
|
|
353890
|
-
prev = {
|
|
353891
|
-
alias: step.targetAlias,
|
|
353892
|
-
className: step.target.fullName,
|
|
353893
|
-
joinPropertyName: "ECInstanceId",
|
|
353894
|
-
};
|
|
354028
|
+
prev = { alias: step.targetAlias, className: step.target.fullName, joinPropertyName: "ECInstanceId" };
|
|
353895
354029
|
}
|
|
353896
354030
|
else {
|
|
353897
354031
|
const relationshipJoinPropertyNames = !step.relationshipReverse
|
|
@@ -353922,11 +354056,7 @@ async function createRelationshipPathJoinClause(props) {
|
|
|
353922
354056
|
ON ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(step.targetAlias, "ECInstanceId")}
|
|
353923
354057
|
= ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(step.relationshipAlias, relationshipJoinPropertyNames.next)}
|
|
353924
354058
|
`;
|
|
353925
|
-
prev = {
|
|
353926
|
-
alias: step.targetAlias,
|
|
353927
|
-
className: step.target.fullName,
|
|
353928
|
-
joinPropertyName: "ECInstanceId",
|
|
353929
|
-
};
|
|
354059
|
+
prev = { alias: step.targetAlias, className: step.target.fullName, joinPropertyName: "ECInstanceId" };
|
|
353930
354060
|
}
|
|
353931
354061
|
}
|
|
353932
354062
|
return clause;
|
|
@@ -353945,13 +354075,17 @@ async function getNavigationProperty(step) {
|
|
|
353945
354075
|
const target = !step.relationshipReverse ? step.target : step.source;
|
|
353946
354076
|
for (const prop of await source.getProperties()) {
|
|
353947
354077
|
/* v8 ignore else -- @preserve */
|
|
353948
|
-
if (prop.isNavigation() &&
|
|
354078
|
+
if (prop.isNavigation() &&
|
|
354079
|
+
prop.direction === "Forward" &&
|
|
354080
|
+
(await prop.relationshipClass).fullName === step.relationship.fullName) {
|
|
353949
354081
|
return prop;
|
|
353950
354082
|
}
|
|
353951
354083
|
}
|
|
353952
354084
|
for (const prop of await target.getProperties()) {
|
|
353953
354085
|
/* v8 ignore else -- @preserve */
|
|
353954
|
-
if (prop.isNavigation() &&
|
|
354086
|
+
if (prop.isNavigation() &&
|
|
354087
|
+
prop.direction === "Backward" &&
|
|
354088
|
+
(await prop.relationshipClass).fullName === step.relationship.fullName) {
|
|
353955
354089
|
return prop;
|
|
353956
354090
|
}
|
|
353957
354091
|
}
|
|
@@ -353971,9 +354105,9 @@ function getClassSelectClause(ecClass, alias) {
|
|
|
353971
354105
|
|
|
353972
354106
|
/***/ }),
|
|
353973
354107
|
|
|
353974
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354108
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
|
|
353975
354109
|
/*!**********************************************************************************************************************************************************************************!*\
|
|
353976
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354110
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
|
|
353977
354111
|
\**********************************************************************************************************************************************************************************/
|
|
353978
354112
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353979
354113
|
|
|
@@ -353992,9 +354126,9 @@ exports.createInstanceKeySelector = createInstanceKeySelector;
|
|
|
353992
354126
|
exports.createNullableSelector = createNullableSelector;
|
|
353993
354127
|
exports.createConcatenatedValueJsonSelector = createConcatenatedValueJsonSelector;
|
|
353994
354128
|
exports.createConcatenatedValueStringSelector = createConcatenatedValueStringSelector;
|
|
353995
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353996
|
-
const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353997
|
-
const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354129
|
+
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.9.0/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
|
|
354130
|
+
const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
|
|
354131
|
+
const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
|
|
353998
354132
|
/** @public */
|
|
353999
354133
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
354000
354134
|
var TypedValueSelectClauseProps;
|
|
@@ -354213,7 +354347,9 @@ function createPrimitiveValueJsonSelector(value) {
|
|
|
354213
354347
|
* @public
|
|
354214
354348
|
*/
|
|
354215
354349
|
function createConcatenatedValueStringSelector(selectors, checkSelector) {
|
|
354216
|
-
const combinedSelectors = selectors.length
|
|
354350
|
+
const combinedSelectors = selectors.length
|
|
354351
|
+
? selectors.map((sel) => createTypedValueStringSelector(sel)).join(" || ")
|
|
354352
|
+
: "''";
|
|
354217
354353
|
if (checkSelector) {
|
|
354218
354354
|
return createNullableSelector({ checkSelector, valueSelector: combinedSelectors });
|
|
354219
354355
|
}
|
|
@@ -354241,9 +354377,9 @@ function createPrimitiveValueStringSelector(value) {
|
|
|
354241
354377
|
|
|
354242
354378
|
/***/ }),
|
|
354243
354379
|
|
|
354244
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354380
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
|
|
354245
354381
|
/*!*************************************************************************************************************************************************************!*\
|
|
354246
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354382
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
|
|
354247
354383
|
\*************************************************************************************************************************************************************/
|
|
354248
354384
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
354249
354385
|
|
|
@@ -354255,7 +354391,7 @@ function createPrimitiveValueStringSelector(value) {
|
|
|
354255
354391
|
*--------------------------------------------------------------------------------------------*/
|
|
354256
354392
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
354257
354393
|
exports.createRelationshipPathJoinClause = exports.createPrimitivePropertyValueSelectorProps = exports.createInstanceKeySelector = exports.createConcatenatedValueStringSelector = exports.createConcatenatedValueJsonSelector = exports.createNullableSelector = exports.createRawPrimitiveValueSelector = exports.createRawPropertyValueSelector = void 0;
|
|
354258
|
-
var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354394
|
+
var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
|
|
354259
354395
|
Object.defineProperty(exports, "createRawPropertyValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector; } }));
|
|
354260
354396
|
Object.defineProperty(exports, "createRawPrimitiveValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPrimitiveValueSelector; } }));
|
|
354261
354397
|
Object.defineProperty(exports, "createNullableSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createNullableSelector; } }));
|
|
@@ -354263,7 +354399,7 @@ Object.defineProperty(exports, "createConcatenatedValueJsonSelector", ({ enumera
|
|
|
354263
354399
|
Object.defineProperty(exports, "createConcatenatedValueStringSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createConcatenatedValueStringSelector; } }));
|
|
354264
354400
|
Object.defineProperty(exports, "createInstanceKeySelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createInstanceKeySelector; } }));
|
|
354265
354401
|
Object.defineProperty(exports, "createPrimitivePropertyValueSelectorProps", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createPrimitivePropertyValueSelectorProps; } }));
|
|
354266
|
-
var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354402
|
+
var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js");
|
|
354267
354403
|
Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable: true, get: function () { return ECSqlJoinSnippets_js_1.createRelationshipPathJoinClause; } }));
|
|
354268
354404
|
|
|
354269
354405
|
|
|
@@ -355952,7 +356088,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
355952
356088
|
exports.createHiliteSetProvider = createHiliteSetProvider;
|
|
355953
356089
|
const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
|
|
355954
356090
|
const rxjs_for_await_1 = __webpack_require__(/*! rxjs-for-await */ "../../common/temp/node_modules/.pnpm/rxjs-for-await@1.0.0_rxjs@7.8.2/node_modules/rxjs-for-await/dist/esm/index.js");
|
|
355955
|
-
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
356091
|
+
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
|
|
355956
356092
|
const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+unified-selection@1.2.0/node_modules/@itwin/unified-selection/lib/cjs/unified-selection/Utils.js");
|
|
355957
356093
|
const HILITE_SET_EMIT_FREQUENCY = 20;
|
|
355958
356094
|
/**
|
|
@@ -356305,7 +356441,7 @@ async function* executeQuery(queryExecutor, query) {
|
|
|
356305
356441
|
*--------------------------------------------------------------------------------------------*/
|
|
356306
356442
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
356307
356443
|
exports.Selectables = exports.TRANSIENT_ELEMENT_CLASSNAME = exports.Selectable = void 0;
|
|
356308
|
-
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
356444
|
+
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
|
|
356309
356445
|
/** @public */
|
|
356310
356446
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
356311
356447
|
var Selectable;
|
|
@@ -356907,7 +357043,7 @@ exports.genericExecuteQuery = genericExecuteQuery;
|
|
|
356907
357043
|
exports.releaseMainThreadOnItemsCount = releaseMainThreadOnItemsCount;
|
|
356908
357044
|
exports.safeDispose = safeDispose;
|
|
356909
357045
|
const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
|
|
356910
|
-
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
357046
|
+
const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
|
|
356911
357047
|
/**
|
|
356912
357048
|
* Forms ECSql bindings from given ID's.
|
|
356913
357049
|
* @internal
|
|
@@ -369084,9 +369220,9 @@ function _unsupportedIterableToArray(r, a) {
|
|
|
369084
369220
|
|
|
369085
369221
|
/***/ }),
|
|
369086
369222
|
|
|
369087
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369223
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/index.js":
|
|
369088
369224
|
/*!*************************************************************************************!*\
|
|
369089
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369225
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/index.js ***!
|
|
369090
369226
|
\*************************************************************************************/
|
|
369091
369227
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369092
369228
|
|
|
@@ -369102,6 +369238,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369102
369238
|
/* harmony export */ HttpStatusCode: () => (/* binding */ HttpStatusCode),
|
|
369103
369239
|
/* harmony export */ VERSION: () => (/* binding */ VERSION),
|
|
369104
369240
|
/* harmony export */ all: () => (/* binding */ all),
|
|
369241
|
+
/* harmony export */ create: () => (/* binding */ create),
|
|
369105
369242
|
/* harmony export */ "default": () => (/* reexport safe */ _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__["default"]),
|
|
369106
369243
|
/* harmony export */ formToJSON: () => (/* binding */ formToJSON),
|
|
369107
369244
|
/* harmony export */ getAdapter: () => (/* binding */ getAdapter),
|
|
@@ -369111,7 +369248,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369111
369248
|
/* harmony export */ spread: () => (/* binding */ spread),
|
|
369112
369249
|
/* harmony export */ toFormData: () => (/* binding */ toFormData)
|
|
369113
369250
|
/* harmony export */ });
|
|
369114
|
-
/* harmony import */ var _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lib/axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369251
|
+
/* harmony import */ var _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lib/axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js");
|
|
369115
369252
|
|
|
369116
369253
|
|
|
369117
369254
|
// This module is intended to unwrap Axios default export as named.
|
|
@@ -369134,6 +369271,7 @@ const {
|
|
|
369134
369271
|
formToJSON,
|
|
369135
369272
|
getAdapter,
|
|
369136
369273
|
mergeConfig,
|
|
369274
|
+
create,
|
|
369137
369275
|
} = _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369138
369276
|
|
|
369139
369277
|
|
|
@@ -369141,9 +369279,9 @@ const {
|
|
|
369141
369279
|
|
|
369142
369280
|
/***/ }),
|
|
369143
369281
|
|
|
369144
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369282
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js":
|
|
369145
369283
|
/*!*****************************************************************************************************!*\
|
|
369146
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369284
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js ***!
|
|
369147
369285
|
\*****************************************************************************************************/
|
|
369148
369286
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369149
369287
|
|
|
@@ -369152,11 +369290,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369152
369290
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369153
369291
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369154
369292
|
/* harmony export */ });
|
|
369155
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369156
|
-
/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369157
|
-
/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369158
|
-
/* harmony import */ var _fetch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fetch.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369159
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369293
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
369294
|
+
/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js");
|
|
369295
|
+
/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/xhr.js");
|
|
369296
|
+
/* harmony import */ var _fetch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fetch.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/fetch.js");
|
|
369297
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
369160
369298
|
|
|
369161
369299
|
|
|
369162
369300
|
|
|
@@ -369184,11 +369322,13 @@ const knownAdapters = {
|
|
|
369184
369322
|
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(knownAdapters, (fn, value) => {
|
|
369185
369323
|
if (fn) {
|
|
369186
369324
|
try {
|
|
369187
|
-
Object.
|
|
369325
|
+
// Null-proto descriptors so a polluted Object.prototype.get cannot turn
|
|
369326
|
+
// these data descriptors into accessor descriptors on the way in.
|
|
369327
|
+
Object.defineProperty(fn, 'name', { __proto__: null, value });
|
|
369188
369328
|
} catch (e) {
|
|
369189
369329
|
// eslint-disable-next-line no-empty
|
|
369190
369330
|
}
|
|
369191
|
-
Object.defineProperty(fn, 'adapterName', { value });
|
|
369331
|
+
Object.defineProperty(fn, 'adapterName', { __proto__: null, value });
|
|
369192
369332
|
}
|
|
369193
369333
|
});
|
|
369194
369334
|
|
|
@@ -369291,9 +369431,9 @@ function getAdapter(adapters, config) {
|
|
|
369291
369431
|
|
|
369292
369432
|
/***/ }),
|
|
369293
369433
|
|
|
369294
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369434
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/fetch.js":
|
|
369295
369435
|
/*!**************************************************************************************************!*\
|
|
369296
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369436
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/fetch.js ***!
|
|
369297
369437
|
\**************************************************************************************************/
|
|
369298
369438
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369299
369439
|
|
|
@@ -369303,15 +369443,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369303
369443
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
369304
369444
|
/* harmony export */ getFetch: () => (/* binding */ getFetch)
|
|
369305
369445
|
/* harmony export */ });
|
|
369306
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369307
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369308
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369309
|
-
/* harmony import */ var _helpers_composeSignals_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/composeSignals.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369310
|
-
/* harmony import */ var
|
|
369311
|
-
/* harmony import */ var
|
|
369312
|
-
/* harmony import */ var
|
|
369313
|
-
/* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369314
|
-
/* harmony import */ var
|
|
369446
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
369447
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
369448
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
369449
|
+
/* harmony import */ var _helpers_composeSignals_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/composeSignals.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/composeSignals.js");
|
|
369450
|
+
/* harmony import */ var _helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../helpers/trackStream.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/trackStream.js");
|
|
369451
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
369452
|
+
/* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js");
|
|
369453
|
+
/* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js");
|
|
369454
|
+
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js");
|
|
369455
|
+
/* harmony import */ var _helpers_estimateDataURLDecodedBytes_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../helpers/estimateDataURLDecodedBytes.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js");
|
|
369456
|
+
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js");
|
|
369315
369457
|
|
|
369316
369458
|
|
|
369317
369459
|
|
|
@@ -369322,16 +369464,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369322
369464
|
|
|
369323
369465
|
|
|
369324
369466
|
|
|
369325
|
-
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
369326
369467
|
|
|
369327
|
-
const { isFunction } = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369328
369468
|
|
|
369329
|
-
const
|
|
369330
|
-
Request,
|
|
369331
|
-
Response,
|
|
369332
|
-
}))(_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].global);
|
|
369469
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
369333
369470
|
|
|
369334
|
-
const {
|
|
369471
|
+
const { isFunction } = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369335
369472
|
|
|
369336
369473
|
const test = (fn, ...args) => {
|
|
369337
369474
|
try {
|
|
@@ -369342,11 +369479,17 @@ const test = (fn, ...args) => {
|
|
|
369342
369479
|
};
|
|
369343
369480
|
|
|
369344
369481
|
const factory = (env) => {
|
|
369482
|
+
const globalObject = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].global ?? globalThis;
|
|
369483
|
+
const { ReadableStream, TextEncoder } = globalObject;
|
|
369484
|
+
|
|
369345
369485
|
env = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].merge.call(
|
|
369346
369486
|
{
|
|
369347
369487
|
skipUndefined: true,
|
|
369348
369488
|
},
|
|
369349
|
-
|
|
369489
|
+
{
|
|
369490
|
+
Request: globalObject.Request,
|
|
369491
|
+
Response: globalObject.Response,
|
|
369492
|
+
},
|
|
369350
369493
|
env
|
|
369351
369494
|
);
|
|
369352
369495
|
|
|
@@ -369376,18 +369519,20 @@ const factory = (env) => {
|
|
|
369376
369519
|
test(() => {
|
|
369377
369520
|
let duplexAccessed = false;
|
|
369378
369521
|
|
|
369379
|
-
const
|
|
369380
|
-
|
|
369381
|
-
const hasContentType = new Request(_platform_index_js__WEBPACK_IMPORTED_MODULE_1__["default"].origin, {
|
|
369382
|
-
body,
|
|
369522
|
+
const request = new Request(_platform_index_js__WEBPACK_IMPORTED_MODULE_1__["default"].origin, {
|
|
369523
|
+
body: new ReadableStream(),
|
|
369383
369524
|
method: 'POST',
|
|
369384
369525
|
get duplex() {
|
|
369385
369526
|
duplexAccessed = true;
|
|
369386
369527
|
return 'half';
|
|
369387
369528
|
},
|
|
369388
|
-
})
|
|
369529
|
+
});
|
|
369530
|
+
|
|
369531
|
+
const hasContentType = request.headers.has('Content-Type');
|
|
369389
369532
|
|
|
369390
|
-
body
|
|
369533
|
+
if (request.body != null) {
|
|
369534
|
+
request.body.cancel();
|
|
369535
|
+
}
|
|
369391
369536
|
|
|
369392
369537
|
return duplexAccessed && !hasContentType;
|
|
369393
369538
|
});
|
|
@@ -369471,8 +369616,13 @@ const factory = (env) => {
|
|
|
369471
369616
|
headers,
|
|
369472
369617
|
withCredentials = 'same-origin',
|
|
369473
369618
|
fetchOptions,
|
|
369619
|
+
maxContentLength,
|
|
369620
|
+
maxBodyLength,
|
|
369474
369621
|
} = (0,_helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__["default"])(config);
|
|
369475
369622
|
|
|
369623
|
+
const hasMaxContentLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isNumber(maxContentLength) && maxContentLength > -1;
|
|
369624
|
+
const hasMaxBodyLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isNumber(maxBodyLength) && maxBodyLength > -1;
|
|
369625
|
+
|
|
369476
369626
|
let _fetch = envFetch || fetch;
|
|
369477
369627
|
|
|
369478
369628
|
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
|
@@ -369494,6 +369644,41 @@ const factory = (env) => {
|
|
|
369494
369644
|
let requestContentLength;
|
|
369495
369645
|
|
|
369496
369646
|
try {
|
|
369647
|
+
// Enforce maxContentLength for data: URLs up-front so we never materialize
|
|
369648
|
+
// an oversized payload. The HTTP adapter applies the same check (see http.js
|
|
369649
|
+
// "if (protocol === 'data:')" branch).
|
|
369650
|
+
if (hasMaxContentLength && typeof url === 'string' && url.startsWith('data:')) {
|
|
369651
|
+
const estimated = (0,_helpers_estimateDataURLDecodedBytes_js__WEBPACK_IMPORTED_MODULE_5__["default"])(url);
|
|
369652
|
+
if (estimated > maxContentLength) {
|
|
369653
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369654
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369655
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369656
|
+
config,
|
|
369657
|
+
request
|
|
369658
|
+
);
|
|
369659
|
+
}
|
|
369660
|
+
}
|
|
369661
|
+
|
|
369662
|
+
// Enforce maxBodyLength against the outbound request body before dispatch.
|
|
369663
|
+
// Mirrors http.js behavior (ERR_BAD_REQUEST / 'Request body larger than
|
|
369664
|
+
// maxBodyLength limit'). Skip when the body length cannot be determined
|
|
369665
|
+
// (e.g. a live ReadableStream supplied by the caller).
|
|
369666
|
+
if (hasMaxBodyLength && method !== 'get' && method !== 'head') {
|
|
369667
|
+
const outboundLength = await resolveBodyLength(headers, data);
|
|
369668
|
+
if (
|
|
369669
|
+
typeof outboundLength === 'number' &&
|
|
369670
|
+
isFinite(outboundLength) &&
|
|
369671
|
+
outboundLength > maxBodyLength
|
|
369672
|
+
) {
|
|
369673
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369674
|
+
'Request body larger than maxBodyLength limit',
|
|
369675
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_REQUEST,
|
|
369676
|
+
config,
|
|
369677
|
+
request
|
|
369678
|
+
);
|
|
369679
|
+
}
|
|
369680
|
+
}
|
|
369681
|
+
|
|
369497
369682
|
if (
|
|
369498
369683
|
onUploadProgress &&
|
|
369499
369684
|
supportsRequestStream &&
|
|
@@ -369514,12 +369699,12 @@ const factory = (env) => {
|
|
|
369514
369699
|
}
|
|
369515
369700
|
|
|
369516
369701
|
if (_request.body) {
|
|
369517
|
-
const [onProgress, flush] = (0,
|
|
369702
|
+
const [onProgress, flush] = (0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventDecorator)(
|
|
369518
369703
|
requestContentLength,
|
|
369519
|
-
(0,
|
|
369704
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventReducer)((0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.asyncDecorator)(onUploadProgress))
|
|
369520
369705
|
);
|
|
369521
369706
|
|
|
369522
|
-
data = (0,
|
|
369707
|
+
data = (0,_helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_7__.trackStream)(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
369523
369708
|
}
|
|
369524
369709
|
}
|
|
369525
369710
|
|
|
@@ -369531,6 +369716,22 @@ const factory = (env) => {
|
|
|
369531
369716
|
// see https://github.com/cloudflare/workerd/issues/902
|
|
369532
369717
|
const isCredentialsSupported = isRequestSupported && 'credentials' in Request.prototype;
|
|
369533
369718
|
|
|
369719
|
+
// If data is FormData and Content-Type is multipart/form-data without boundary,
|
|
369720
|
+
// delete it so fetch can set it correctly with the boundary
|
|
369721
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFormData(data)) {
|
|
369722
|
+
const contentType = headers.getContentType();
|
|
369723
|
+
if (
|
|
369724
|
+
contentType &&
|
|
369725
|
+
/^multipart\/form-data/i.test(contentType) &&
|
|
369726
|
+
!/boundary=/i.test(contentType)
|
|
369727
|
+
) {
|
|
369728
|
+
headers.delete('content-type');
|
|
369729
|
+
}
|
|
369730
|
+
}
|
|
369731
|
+
|
|
369732
|
+
// Set User-Agent header if not already set (fetch defaults to 'node' in Node.js)
|
|
369733
|
+
headers.set('User-Agent', 'axios/' + _env_data_js__WEBPACK_IMPORTED_MODULE_8__.VERSION, false);
|
|
369734
|
+
|
|
369534
369735
|
const resolvedOptions = {
|
|
369535
369736
|
...fetchOptions,
|
|
369536
369737
|
signal: composedSignal,
|
|
@@ -369547,10 +369748,28 @@ const factory = (env) => {
|
|
|
369547
369748
|
? _fetch(request, fetchOptions)
|
|
369548
369749
|
: _fetch(url, resolvedOptions));
|
|
369549
369750
|
|
|
369751
|
+
// Cheap pre-check: if the server honestly declares a content-length that
|
|
369752
|
+
// already exceeds the cap, reject before we start streaming.
|
|
369753
|
+
if (hasMaxContentLength) {
|
|
369754
|
+
const declaredLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toFiniteNumber(response.headers.get('content-length'));
|
|
369755
|
+
if (declaredLength != null && declaredLength > maxContentLength) {
|
|
369756
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369757
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369758
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369759
|
+
config,
|
|
369760
|
+
request
|
|
369761
|
+
);
|
|
369762
|
+
}
|
|
369763
|
+
}
|
|
369764
|
+
|
|
369550
369765
|
const isStreamResponse =
|
|
369551
369766
|
supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
369552
369767
|
|
|
369553
|
-
if (
|
|
369768
|
+
if (
|
|
369769
|
+
supportsResponseStream &&
|
|
369770
|
+
response.body &&
|
|
369771
|
+
(onDownloadProgress || hasMaxContentLength || (isStreamResponse && unsubscribe))
|
|
369772
|
+
) {
|
|
369554
369773
|
const options = {};
|
|
369555
369774
|
|
|
369556
369775
|
['status', 'statusText', 'headers'].forEach((prop) => {
|
|
@@ -369561,14 +369780,30 @@ const factory = (env) => {
|
|
|
369561
369780
|
|
|
369562
369781
|
const [onProgress, flush] =
|
|
369563
369782
|
(onDownloadProgress &&
|
|
369564
|
-
(0,
|
|
369783
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventDecorator)(
|
|
369565
369784
|
responseContentLength,
|
|
369566
|
-
(0,
|
|
369785
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventReducer)((0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.asyncDecorator)(onDownloadProgress), true)
|
|
369567
369786
|
)) ||
|
|
369568
369787
|
[];
|
|
369569
369788
|
|
|
369789
|
+
let bytesRead = 0;
|
|
369790
|
+
const onChunkProgress = (loadedBytes) => {
|
|
369791
|
+
if (hasMaxContentLength) {
|
|
369792
|
+
bytesRead = loadedBytes;
|
|
369793
|
+
if (bytesRead > maxContentLength) {
|
|
369794
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369795
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369796
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369797
|
+
config,
|
|
369798
|
+
request
|
|
369799
|
+
);
|
|
369800
|
+
}
|
|
369801
|
+
}
|
|
369802
|
+
onProgress && onProgress(loadedBytes);
|
|
369803
|
+
};
|
|
369804
|
+
|
|
369570
369805
|
response = new Response(
|
|
369571
|
-
(0,
|
|
369806
|
+
(0,_helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_7__.trackStream)(response.body, DEFAULT_CHUNK_SIZE, onChunkProgress, () => {
|
|
369572
369807
|
flush && flush();
|
|
369573
369808
|
unsubscribe && unsubscribe();
|
|
369574
369809
|
}),
|
|
@@ -369583,12 +369818,39 @@ const factory = (env) => {
|
|
|
369583
369818
|
config
|
|
369584
369819
|
);
|
|
369585
369820
|
|
|
369821
|
+
// Fallback enforcement for environments without ReadableStream support
|
|
369822
|
+
// (legacy runtimes). Detect materialized size from typed output; skip
|
|
369823
|
+
// streams/Response passthrough since the user will read those themselves.
|
|
369824
|
+
if (hasMaxContentLength && !supportsResponseStream && !isStreamResponse) {
|
|
369825
|
+
let materializedSize;
|
|
369826
|
+
if (responseData != null) {
|
|
369827
|
+
if (typeof responseData.byteLength === 'number') {
|
|
369828
|
+
materializedSize = responseData.byteLength;
|
|
369829
|
+
} else if (typeof responseData.size === 'number') {
|
|
369830
|
+
materializedSize = responseData.size;
|
|
369831
|
+
} else if (typeof responseData === 'string') {
|
|
369832
|
+
materializedSize =
|
|
369833
|
+
typeof TextEncoder === 'function'
|
|
369834
|
+
? new TextEncoder().encode(responseData).byteLength
|
|
369835
|
+
: responseData.length;
|
|
369836
|
+
}
|
|
369837
|
+
}
|
|
369838
|
+
if (typeof materializedSize === 'number' && materializedSize > maxContentLength) {
|
|
369839
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369840
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369841
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369842
|
+
config,
|
|
369843
|
+
request
|
|
369844
|
+
);
|
|
369845
|
+
}
|
|
369846
|
+
}
|
|
369847
|
+
|
|
369586
369848
|
!isStreamResponse && unsubscribe && unsubscribe();
|
|
369587
369849
|
|
|
369588
369850
|
return await new Promise((resolve, reject) => {
|
|
369589
|
-
(0,
|
|
369851
|
+
(0,_core_settle_js__WEBPACK_IMPORTED_MODULE_9__["default"])(resolve, reject, {
|
|
369590
369852
|
data: responseData,
|
|
369591
|
-
headers:
|
|
369853
|
+
headers: _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_10__["default"].from(response.headers),
|
|
369592
369854
|
status: response.status,
|
|
369593
369855
|
statusText: response.statusText,
|
|
369594
369856
|
config,
|
|
@@ -369598,6 +369860,17 @@ const factory = (env) => {
|
|
|
369598
369860
|
} catch (err) {
|
|
369599
369861
|
unsubscribe && unsubscribe();
|
|
369600
369862
|
|
|
369863
|
+
// Safari can surface fetch aborts as a DOMException-like object whose
|
|
369864
|
+
// branded getters throw. Prefer our composed signal reason before reading
|
|
369865
|
+
// the caught error, preserving timeout vs cancellation semantics.
|
|
369866
|
+
if (composedSignal && composedSignal.aborted && composedSignal.reason instanceof _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"]) {
|
|
369867
|
+
const canceledError = composedSignal.reason;
|
|
369868
|
+
canceledError.config = config;
|
|
369869
|
+
request && (canceledError.request = request);
|
|
369870
|
+
err !== canceledError && (canceledError.cause = err);
|
|
369871
|
+
throw canceledError;
|
|
369872
|
+
}
|
|
369873
|
+
|
|
369601
369874
|
if (err && err.name === 'TypeError' && /Load failed|fetch/i.test(err.message)) {
|
|
369602
369875
|
throw Object.assign(
|
|
369603
369876
|
new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
@@ -369650,9 +369923,9 @@ const adapter = getFetch();
|
|
|
369650
369923
|
|
|
369651
369924
|
/***/ }),
|
|
369652
369925
|
|
|
369653
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369926
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/xhr.js":
|
|
369654
369927
|
/*!************************************************************************************************!*\
|
|
369655
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369928
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/xhr.js ***!
|
|
369656
369929
|
\************************************************************************************************/
|
|
369657
369930
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369658
369931
|
|
|
@@ -369661,16 +369934,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369661
369934
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369662
369935
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369663
369936
|
/* harmony export */ });
|
|
369664
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369665
|
-
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369666
|
-
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369667
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369668
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369669
|
-
/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369670
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369671
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369672
|
-
/* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369673
|
-
/* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369937
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
369938
|
+
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js");
|
|
369939
|
+
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js");
|
|
369940
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
369941
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js");
|
|
369942
|
+
/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseProtocol.js");
|
|
369943
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
369944
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
369945
|
+
/* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js");
|
|
369946
|
+
/* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js");
|
|
369674
369947
|
|
|
369675
369948
|
|
|
369676
369949
|
|
|
@@ -369764,7 +370037,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369764
370037
|
// will return status as 0 even though it's a successful request
|
|
369765
370038
|
if (
|
|
369766
370039
|
request.status === 0 &&
|
|
369767
|
-
!(request.responseURL && request.responseURL.
|
|
370040
|
+
!(request.responseURL && request.responseURL.startsWith('file:'))
|
|
369768
370041
|
) {
|
|
369769
370042
|
return;
|
|
369770
370043
|
}
|
|
@@ -369781,6 +370054,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369781
370054
|
}
|
|
369782
370055
|
|
|
369783
370056
|
reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"]('Request aborted', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"].ECONNABORTED, config, request));
|
|
370057
|
+
done();
|
|
369784
370058
|
|
|
369785
370059
|
// Clean up request
|
|
369786
370060
|
request = null;
|
|
@@ -369796,6 +370070,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369796
370070
|
// attach the underlying event for consumers who want details
|
|
369797
370071
|
err.event = event || null;
|
|
369798
370072
|
reject(err);
|
|
370073
|
+
done();
|
|
369799
370074
|
request = null;
|
|
369800
370075
|
};
|
|
369801
370076
|
|
|
@@ -369816,6 +370091,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369816
370091
|
request
|
|
369817
370092
|
)
|
|
369818
370093
|
);
|
|
370094
|
+
done();
|
|
369819
370095
|
|
|
369820
370096
|
// Clean up request
|
|
369821
370097
|
request = null;
|
|
@@ -369865,6 +370141,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369865
370141
|
}
|
|
369866
370142
|
reject(!cancel || cancel.type ? new _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__["default"](null, config, request) : cancel);
|
|
369867
370143
|
request.abort();
|
|
370144
|
+
done();
|
|
369868
370145
|
request = null;
|
|
369869
370146
|
};
|
|
369870
370147
|
|
|
@@ -369878,7 +370155,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369878
370155
|
|
|
369879
370156
|
const protocol = (0,_helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__["default"])(_config.url);
|
|
369880
370157
|
|
|
369881
|
-
if (protocol && _platform_index_js__WEBPACK_IMPORTED_MODULE_9__["default"].protocols.
|
|
370158
|
+
if (protocol && !_platform_index_js__WEBPACK_IMPORTED_MODULE_9__["default"].protocols.includes(protocol)) {
|
|
369882
370159
|
reject(
|
|
369883
370160
|
new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"](
|
|
369884
370161
|
'Unsupported protocol ' + protocol + ':',
|
|
@@ -369897,9 +370174,9 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369897
370174
|
|
|
369898
370175
|
/***/ }),
|
|
369899
370176
|
|
|
369900
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370177
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js":
|
|
369901
370178
|
/*!*****************************************************************************************!*\
|
|
369902
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370179
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js ***!
|
|
369903
370180
|
\*****************************************************************************************/
|
|
369904
370181
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369905
370182
|
|
|
@@ -369908,23 +370185,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369908
370185
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369909
370186
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369910
370187
|
/* harmony export */ });
|
|
369911
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369912
|
-
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369913
|
-
/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369914
|
-
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369915
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369916
|
-
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369917
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369918
|
-
/* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369919
|
-
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369920
|
-
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369921
|
-
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369922
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369923
|
-
/* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369924
|
-
/* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369925
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369926
|
-
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369927
|
-
/* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370188
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
370189
|
+
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js");
|
|
370190
|
+
/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/Axios.js");
|
|
370191
|
+
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js");
|
|
370192
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js");
|
|
370193
|
+
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js");
|
|
370194
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js");
|
|
370195
|
+
/* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CancelToken.js");
|
|
370196
|
+
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js");
|
|
370197
|
+
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js");
|
|
370198
|
+
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js");
|
|
370199
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
370200
|
+
/* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/spread.js");
|
|
370201
|
+
/* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAxiosError.js");
|
|
370202
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
370203
|
+
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js");
|
|
370204
|
+
/* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/HttpStatusCode.js");
|
|
369928
370205
|
|
|
369929
370206
|
|
|
369930
370207
|
|
|
@@ -370018,9 +370295,9 @@ axios.default = axios;
|
|
|
370018
370295
|
|
|
370019
370296
|
/***/ }),
|
|
370020
370297
|
|
|
370021
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370298
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CancelToken.js":
|
|
370022
370299
|
/*!******************************************************************************************************!*\
|
|
370023
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370300
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CancelToken.js ***!
|
|
370024
370301
|
\******************************************************************************************************/
|
|
370025
370302
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370026
370303
|
|
|
@@ -370029,7 +370306,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370029
370306
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370030
370307
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370031
370308
|
/* harmony export */ });
|
|
370032
|
-
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370309
|
+
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js");
|
|
370033
370310
|
|
|
370034
370311
|
|
|
370035
370312
|
|
|
@@ -370169,9 +370446,9 @@ class CancelToken {
|
|
|
370169
370446
|
|
|
370170
370447
|
/***/ }),
|
|
370171
370448
|
|
|
370172
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370449
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js":
|
|
370173
370450
|
/*!********************************************************************************************************!*\
|
|
370174
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370451
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js ***!
|
|
370175
370452
|
\********************************************************************************************************/
|
|
370176
370453
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370177
370454
|
|
|
@@ -370180,7 +370457,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370180
370457
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370181
370458
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370182
370459
|
/* harmony export */ });
|
|
370183
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370460
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
370184
370461
|
|
|
370185
370462
|
|
|
370186
370463
|
|
|
@@ -370207,9 +370484,9 @@ class CanceledError extends _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["de
|
|
|
370207
370484
|
|
|
370208
370485
|
/***/ }),
|
|
370209
370486
|
|
|
370210
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370487
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js":
|
|
370211
370488
|
/*!***************************************************************************************************!*\
|
|
370212
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370489
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js ***!
|
|
370213
370490
|
\***************************************************************************************************/
|
|
370214
370491
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370215
370492
|
|
|
@@ -370227,9 +370504,9 @@ function isCancel(value) {
|
|
|
370227
370504
|
|
|
370228
370505
|
/***/ }),
|
|
370229
370506
|
|
|
370230
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370507
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/Axios.js":
|
|
370231
370508
|
/*!**********************************************************************************************!*\
|
|
370232
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370509
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/Axios.js ***!
|
|
370233
370510
|
\**********************************************************************************************/
|
|
370234
370511
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370235
370512
|
|
|
@@ -370238,15 +370515,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370238
370515
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370239
370516
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370240
370517
|
/* harmony export */ });
|
|
370241
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370242
|
-
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370243
|
-
/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370244
|
-
/* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370245
|
-
/* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370246
|
-
/* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370247
|
-
/* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370248
|
-
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370249
|
-
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370518
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
370519
|
+
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js");
|
|
370520
|
+
/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/InterceptorManager.js");
|
|
370521
|
+
/* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/dispatchRequest.js");
|
|
370522
|
+
/* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js");
|
|
370523
|
+
/* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js");
|
|
370524
|
+
/* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/validator.js");
|
|
370525
|
+
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
370526
|
+
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js");
|
|
370250
370527
|
|
|
370251
370528
|
|
|
370252
370529
|
|
|
@@ -370397,7 +370674,7 @@ class Axios {
|
|
|
370397
370674
|
let contextHeaders = headers && _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].merge(headers.common, headers[config.method]);
|
|
370398
370675
|
|
|
370399
370676
|
headers &&
|
|
370400
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], (method) => {
|
|
370677
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'query', 'common'], (method) => {
|
|
370401
370678
|
delete headers[method];
|
|
370402
370679
|
});
|
|
370403
370680
|
|
|
@@ -370500,7 +370777,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'hea
|
|
|
370500
370777
|
};
|
|
370501
370778
|
});
|
|
370502
370779
|
|
|
370503
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
370780
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch', 'query'], function forEachMethodWithData(method) {
|
|
370504
370781
|
function generateHTTPMethod(isForm) {
|
|
370505
370782
|
return function httpMethod(url, data, config) {
|
|
370506
370783
|
return this.request(
|
|
@@ -370520,7 +370797,11 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
370520
370797
|
|
|
370521
370798
|
Axios.prototype[method] = generateHTTPMethod();
|
|
370522
370799
|
|
|
370523
|
-
|
|
370800
|
+
// QUERY is a safe/idempotent read method; multipart form bodies don't fit
|
|
370801
|
+
// its semantics, so no queryForm shorthand is generated.
|
|
370802
|
+
if (method !== 'query') {
|
|
370803
|
+
Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
|
|
370804
|
+
}
|
|
370524
370805
|
});
|
|
370525
370806
|
|
|
370526
370807
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Axios);
|
|
@@ -370528,9 +370809,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
370528
370809
|
|
|
370529
370810
|
/***/ }),
|
|
370530
370811
|
|
|
370531
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370812
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js":
|
|
370532
370813
|
/*!***************************************************************************************************!*\
|
|
370533
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370814
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js ***!
|
|
370534
370815
|
\***************************************************************************************************/
|
|
370535
370816
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370536
370817
|
|
|
@@ -370539,10 +370820,81 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370539
370820
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370540
370821
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370541
370822
|
/* harmony export */ });
|
|
370542
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370823
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
370824
|
+
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
370825
|
+
|
|
370826
|
+
|
|
370827
|
+
|
|
370828
|
+
|
|
370829
|
+
|
|
370830
|
+
const REDACTED = '[REDACTED ****]';
|
|
370543
370831
|
|
|
370832
|
+
function hasOwnOrPrototypeToJSON(source) {
|
|
370833
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(source, 'toJSON')) {
|
|
370834
|
+
return true;
|
|
370835
|
+
}
|
|
370544
370836
|
|
|
370837
|
+
let prototype = Object.getPrototypeOf(source);
|
|
370838
|
+
|
|
370839
|
+
while (prototype && prototype !== Object.prototype) {
|
|
370840
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(prototype, 'toJSON')) {
|
|
370841
|
+
return true;
|
|
370842
|
+
}
|
|
370545
370843
|
|
|
370844
|
+
prototype = Object.getPrototypeOf(prototype);
|
|
370845
|
+
}
|
|
370846
|
+
|
|
370847
|
+
return false;
|
|
370848
|
+
}
|
|
370849
|
+
|
|
370850
|
+
// Build a plain-object snapshot of `config` and replace the value of any key
|
|
370851
|
+
// (case-insensitive) listed in `redactKeys` with REDACTED. Walks through arrays
|
|
370852
|
+
// and AxiosHeaders, and short-circuits on circular references.
|
|
370853
|
+
function redactConfig(config, redactKeys) {
|
|
370854
|
+
const lowerKeys = new Set(redactKeys.map((k) => String(k).toLowerCase()));
|
|
370855
|
+
const seen = [];
|
|
370856
|
+
|
|
370857
|
+
const visit = (source) => {
|
|
370858
|
+
if (source === null || typeof source !== 'object') return source;
|
|
370859
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isBuffer(source)) return source;
|
|
370860
|
+
if (seen.indexOf(source) !== -1) return undefined;
|
|
370861
|
+
|
|
370862
|
+
if (source instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"]) {
|
|
370863
|
+
source = source.toJSON();
|
|
370864
|
+
}
|
|
370865
|
+
|
|
370866
|
+
seen.push(source);
|
|
370867
|
+
|
|
370868
|
+
let result;
|
|
370869
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(source)) {
|
|
370870
|
+
result = [];
|
|
370871
|
+
source.forEach((v, i) => {
|
|
370872
|
+
const reducedValue = visit(v);
|
|
370873
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(reducedValue)) {
|
|
370874
|
+
result[i] = reducedValue;
|
|
370875
|
+
}
|
|
370876
|
+
});
|
|
370877
|
+
} else {
|
|
370878
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isPlainObject(source) && hasOwnOrPrototypeToJSON(source)) {
|
|
370879
|
+
seen.pop();
|
|
370880
|
+
return source;
|
|
370881
|
+
}
|
|
370882
|
+
|
|
370883
|
+
result = Object.create(null);
|
|
370884
|
+
for (const [key, value] of Object.entries(source)) {
|
|
370885
|
+
const reducedValue = lowerKeys.has(key.toLowerCase()) ? REDACTED : visit(value);
|
|
370886
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(reducedValue)) {
|
|
370887
|
+
result[key] = reducedValue;
|
|
370888
|
+
}
|
|
370889
|
+
}
|
|
370890
|
+
}
|
|
370891
|
+
|
|
370892
|
+
seen.pop();
|
|
370893
|
+
return result;
|
|
370894
|
+
};
|
|
370895
|
+
|
|
370896
|
+
return visit(config);
|
|
370897
|
+
}
|
|
370546
370898
|
|
|
370547
370899
|
class AxiosError extends Error {
|
|
370548
370900
|
static from(error, code, config, request, response, customProps) {
|
|
@@ -370559,42 +370911,56 @@ class AxiosError extends Error {
|
|
|
370559
370911
|
return axiosError;
|
|
370560
370912
|
}
|
|
370561
370913
|
|
|
370562
|
-
|
|
370563
|
-
|
|
370564
|
-
|
|
370565
|
-
|
|
370566
|
-
|
|
370567
|
-
|
|
370568
|
-
|
|
370569
|
-
|
|
370570
|
-
|
|
370571
|
-
|
|
370572
|
-
|
|
370573
|
-
|
|
370574
|
-
|
|
370575
|
-
|
|
370576
|
-
|
|
370577
|
-
|
|
370578
|
-
|
|
370579
|
-
|
|
370580
|
-
|
|
370581
|
-
|
|
370582
|
-
|
|
370583
|
-
|
|
370584
|
-
|
|
370585
|
-
|
|
370586
|
-
|
|
370587
|
-
|
|
370588
|
-
|
|
370589
|
-
|
|
370590
|
-
|
|
370591
|
-
|
|
370592
|
-
|
|
370593
|
-
|
|
370594
|
-
|
|
370914
|
+
/**
|
|
370915
|
+
* Create an Error with the specified message, config, error code, request and response.
|
|
370916
|
+
*
|
|
370917
|
+
* @param {string} message The error message.
|
|
370918
|
+
* @param {string} [code] The error code (for example, 'ECONNABORTED').
|
|
370919
|
+
* @param {Object} [config] The config.
|
|
370920
|
+
* @param {Object} [request] The request.
|
|
370921
|
+
* @param {Object} [response] The response.
|
|
370922
|
+
*
|
|
370923
|
+
* @returns {Error} The created error.
|
|
370924
|
+
*/
|
|
370925
|
+
constructor(message, code, config, request, response) {
|
|
370926
|
+
super(message);
|
|
370927
|
+
|
|
370928
|
+
// Make message enumerable to maintain backward compatibility
|
|
370929
|
+
// The native Error constructor sets message as non-enumerable,
|
|
370930
|
+
// but axios < v1.13.3 had it as enumerable
|
|
370931
|
+
Object.defineProperty(this, 'message', {
|
|
370932
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
370933
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
370934
|
+
__proto__: null,
|
|
370935
|
+
value: message,
|
|
370936
|
+
enumerable: true,
|
|
370937
|
+
writable: true,
|
|
370938
|
+
configurable: true,
|
|
370939
|
+
});
|
|
370940
|
+
|
|
370941
|
+
this.name = 'AxiosError';
|
|
370942
|
+
this.isAxiosError = true;
|
|
370943
|
+
code && (this.code = code);
|
|
370944
|
+
config && (this.config = config);
|
|
370945
|
+
request && (this.request = request);
|
|
370946
|
+
if (response) {
|
|
370947
|
+
this.response = response;
|
|
370948
|
+
this.status = response.status;
|
|
370595
370949
|
}
|
|
370950
|
+
}
|
|
370596
370951
|
|
|
370597
370952
|
toJSON() {
|
|
370953
|
+
// Opt-in redaction: when the request config carries a `redact` array, the
|
|
370954
|
+
// value of any matching key (case-insensitive, at any depth) is replaced
|
|
370955
|
+
// with REDACTED in the serialized snapshot. Undefined or empty leaves the
|
|
370956
|
+
// existing serialization behavior unchanged.
|
|
370957
|
+
const config = this.config;
|
|
370958
|
+
const redactKeys = config && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(config, 'redact') ? config.redact : undefined;
|
|
370959
|
+
const serializedConfig =
|
|
370960
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(redactKeys) && redactKeys.length > 0
|
|
370961
|
+
? redactConfig(config, redactKeys)
|
|
370962
|
+
: _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toJSONObject(config);
|
|
370963
|
+
|
|
370598
370964
|
return {
|
|
370599
370965
|
// Standard
|
|
370600
370966
|
message: this.message,
|
|
@@ -370608,7 +370974,7 @@ class AxiosError extends Error {
|
|
|
370608
370974
|
columnNumber: this.columnNumber,
|
|
370609
370975
|
stack: this.stack,
|
|
370610
370976
|
// Axios
|
|
370611
|
-
config:
|
|
370977
|
+
config: serializedConfig,
|
|
370612
370978
|
code: this.code,
|
|
370613
370979
|
status: this.status,
|
|
370614
370980
|
};
|
|
@@ -370620,6 +370986,7 @@ AxiosError.ERR_BAD_OPTION_VALUE = 'ERR_BAD_OPTION_VALUE';
|
|
|
370620
370986
|
AxiosError.ERR_BAD_OPTION = 'ERR_BAD_OPTION';
|
|
370621
370987
|
AxiosError.ECONNABORTED = 'ECONNABORTED';
|
|
370622
370988
|
AxiosError.ETIMEDOUT = 'ETIMEDOUT';
|
|
370989
|
+
AxiosError.ECONNREFUSED = 'ECONNREFUSED';
|
|
370623
370990
|
AxiosError.ERR_NETWORK = 'ERR_NETWORK';
|
|
370624
370991
|
AxiosError.ERR_FR_TOO_MANY_REDIRECTS = 'ERR_FR_TOO_MANY_REDIRECTS';
|
|
370625
370992
|
AxiosError.ERR_DEPRECATED = 'ERR_DEPRECATED';
|
|
@@ -370628,15 +370995,16 @@ AxiosError.ERR_BAD_REQUEST = 'ERR_BAD_REQUEST';
|
|
|
370628
370995
|
AxiosError.ERR_CANCELED = 'ERR_CANCELED';
|
|
370629
370996
|
AxiosError.ERR_NOT_SUPPORT = 'ERR_NOT_SUPPORT';
|
|
370630
370997
|
AxiosError.ERR_INVALID_URL = 'ERR_INVALID_URL';
|
|
370998
|
+
AxiosError.ERR_FORM_DATA_DEPTH_EXCEEDED = 'ERR_FORM_DATA_DEPTH_EXCEEDED';
|
|
370631
370999
|
|
|
370632
371000
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AxiosError);
|
|
370633
371001
|
|
|
370634
371002
|
|
|
370635
371003
|
/***/ }),
|
|
370636
371004
|
|
|
370637
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371005
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js":
|
|
370638
371006
|
/*!*****************************************************************************************************!*\
|
|
370639
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371007
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js ***!
|
|
370640
371008
|
\*****************************************************************************************************/
|
|
370641
371009
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370642
371010
|
|
|
@@ -370645,8 +371013,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370645
371013
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370646
371014
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370647
371015
|
/* harmony export */ });
|
|
370648
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370649
|
-
/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371016
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
371017
|
+
/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseHeaders.js");
|
|
370650
371018
|
|
|
370651
371019
|
|
|
370652
371020
|
|
|
@@ -370654,41 +371022,41 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370654
371022
|
|
|
370655
371023
|
const $internals = Symbol('internals');
|
|
370656
371024
|
|
|
370657
|
-
const
|
|
371025
|
+
const INVALID_HEADER_VALUE_CHARS_RE = /[^\x09\x20-\x7E\x80-\xFF]/g;
|
|
370658
371026
|
|
|
370659
|
-
function
|
|
370660
|
-
|
|
370661
|
-
|
|
370662
|
-
}
|
|
370663
|
-
|
|
370664
|
-
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(value)) {
|
|
370665
|
-
value.forEach((v) => assertValidHeaderValue(v, header));
|
|
370666
|
-
return;
|
|
370667
|
-
}
|
|
371027
|
+
function trimSPorHTAB(str) {
|
|
371028
|
+
let start = 0;
|
|
371029
|
+
let end = str.length;
|
|
370668
371030
|
|
|
370669
|
-
|
|
370670
|
-
|
|
370671
|
-
}
|
|
370672
|
-
}
|
|
371031
|
+
while (start < end) {
|
|
371032
|
+
const code = str.charCodeAt(start);
|
|
370673
371033
|
|
|
370674
|
-
|
|
370675
|
-
|
|
370676
|
-
}
|
|
371034
|
+
if (code !== 0x09 && code !== 0x20) {
|
|
371035
|
+
break;
|
|
371036
|
+
}
|
|
370677
371037
|
|
|
370678
|
-
|
|
370679
|
-
|
|
371038
|
+
start += 1;
|
|
371039
|
+
}
|
|
370680
371040
|
|
|
370681
|
-
while (end >
|
|
370682
|
-
const
|
|
371041
|
+
while (end > start) {
|
|
371042
|
+
const code = str.charCodeAt(end - 1);
|
|
370683
371043
|
|
|
370684
|
-
if (
|
|
371044
|
+
if (code !== 0x09 && code !== 0x20) {
|
|
370685
371045
|
break;
|
|
370686
371046
|
}
|
|
370687
371047
|
|
|
370688
371048
|
end -= 1;
|
|
370689
371049
|
}
|
|
370690
371050
|
|
|
370691
|
-
return end === str.length ? str : str.slice(
|
|
371051
|
+
return start === 0 && end === str.length ? str : str.slice(start, end);
|
|
371052
|
+
}
|
|
371053
|
+
|
|
371054
|
+
function normalizeHeader(header) {
|
|
371055
|
+
return header && String(header).trim().toLowerCase();
|
|
371056
|
+
}
|
|
371057
|
+
|
|
371058
|
+
function sanitizeHeaderValue(str) {
|
|
371059
|
+
return trimSPorHTAB(str.replace(INVALID_HEADER_VALUE_CHARS_RE, ''));
|
|
370692
371060
|
}
|
|
370693
371061
|
|
|
370694
371062
|
function normalizeValue(value) {
|
|
@@ -370696,7 +371064,7 @@ function normalizeValue(value) {
|
|
|
370696
371064
|
return value;
|
|
370697
371065
|
}
|
|
370698
371066
|
|
|
370699
|
-
return _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(value) ? value.map(normalizeValue) :
|
|
371067
|
+
return _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(value) ? value.map(normalizeValue) : sanitizeHeaderValue(String(value));
|
|
370700
371068
|
}
|
|
370701
371069
|
|
|
370702
371070
|
function parseTokens(str) {
|
|
@@ -370747,6 +371115,9 @@ function buildAccessors(obj, header) {
|
|
|
370747
371115
|
|
|
370748
371116
|
['get', 'set', 'has'].forEach((methodName) => {
|
|
370749
371117
|
Object.defineProperty(obj, methodName + accessorName, {
|
|
371118
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
371119
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
371120
|
+
__proto__: null,
|
|
370750
371121
|
value: function (arg1, arg2, arg3) {
|
|
370751
371122
|
return this[methodName].call(this, header, arg1, arg2, arg3);
|
|
370752
371123
|
},
|
|
@@ -370778,7 +371149,6 @@ class AxiosHeaders {
|
|
|
370778
371149
|
_rewrite === true ||
|
|
370779
371150
|
(_rewrite === undefined && self[key] !== false)
|
|
370780
371151
|
) {
|
|
370781
|
-
assertValidHeaderValue(_value, _header);
|
|
370782
371152
|
self[key || _header] = normalizeValue(_value);
|
|
370783
371153
|
}
|
|
370784
371154
|
}
|
|
@@ -371029,9 +371399,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
|
|
|
371029
371399
|
|
|
371030
371400
|
/***/ }),
|
|
371031
371401
|
|
|
371032
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371402
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/InterceptorManager.js":
|
|
371033
371403
|
/*!***********************************************************************************************************!*\
|
|
371034
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371404
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/InterceptorManager.js ***!
|
|
371035
371405
|
\***********************************************************************************************************/
|
|
371036
371406
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371037
371407
|
|
|
@@ -371040,7 +371410,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371040
371410
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371041
371411
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371042
371412
|
/* harmony export */ });
|
|
371043
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371413
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
371044
371414
|
|
|
371045
371415
|
|
|
371046
371416
|
|
|
@@ -371117,9 +371487,9 @@ class InterceptorManager {
|
|
|
371117
371487
|
|
|
371118
371488
|
/***/ }),
|
|
371119
371489
|
|
|
371120
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371490
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js":
|
|
371121
371491
|
/*!******************************************************************************************************!*\
|
|
371122
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371492
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js ***!
|
|
371123
371493
|
\******************************************************************************************************/
|
|
371124
371494
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371125
371495
|
|
|
@@ -371128,8 +371498,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371128
371498
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371129
371499
|
/* harmony export */ "default": () => (/* binding */ buildFullPath)
|
|
371130
371500
|
/* harmony export */ });
|
|
371131
|
-
/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371132
|
-
/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371501
|
+
/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
|
371502
|
+
/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/combineURLs.js");
|
|
371133
371503
|
|
|
371134
371504
|
|
|
371135
371505
|
|
|
@@ -371147,7 +371517,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371147
371517
|
*/
|
|
371148
371518
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
371149
371519
|
let isRelativeUrl = !(0,_helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__["default"])(requestedURL);
|
|
371150
|
-
if (baseURL && (isRelativeUrl || allowAbsoluteUrls
|
|
371520
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls === false)) {
|
|
371151
371521
|
return (0,_helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__["default"])(baseURL, requestedURL);
|
|
371152
371522
|
}
|
|
371153
371523
|
return requestedURL;
|
|
@@ -371156,9 +371526,9 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
|
371156
371526
|
|
|
371157
371527
|
/***/ }),
|
|
371158
371528
|
|
|
371159
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371529
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/dispatchRequest.js":
|
|
371160
371530
|
/*!********************************************************************************************************!*\
|
|
371161
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371531
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/dispatchRequest.js ***!
|
|
371162
371532
|
\********************************************************************************************************/
|
|
371163
371533
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371164
371534
|
|
|
@@ -371167,12 +371537,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371167
371537
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371168
371538
|
/* harmony export */ "default": () => (/* binding */ dispatchRequest)
|
|
371169
371539
|
/* harmony export */ });
|
|
371170
|
-
/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371171
|
-
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371172
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371173
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371174
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371175
|
-
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371540
|
+
/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/transformData.js");
|
|
371541
|
+
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js");
|
|
371542
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js");
|
|
371543
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js");
|
|
371544
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
371545
|
+
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js");
|
|
371176
371546
|
|
|
371177
371547
|
|
|
371178
371548
|
|
|
@@ -371224,8 +371594,15 @@ function dispatchRequest(config) {
|
|
|
371224
371594
|
function onAdapterResolution(response) {
|
|
371225
371595
|
throwIfCancellationRequested(config);
|
|
371226
371596
|
|
|
371227
|
-
//
|
|
371228
|
-
|
|
371597
|
+
// Expose the current response on config so that transformResponse can
|
|
371598
|
+
// attach it to any AxiosError it throws (e.g. on JSON parse failure).
|
|
371599
|
+
// We clean it up afterwards to avoid polluting the config object.
|
|
371600
|
+
config.response = response;
|
|
371601
|
+
try {
|
|
371602
|
+
response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_2__["default"].call(config, config.transformResponse, response);
|
|
371603
|
+
} finally {
|
|
371604
|
+
delete config.response;
|
|
371605
|
+
}
|
|
371229
371606
|
|
|
371230
371607
|
response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(response.headers);
|
|
371231
371608
|
|
|
@@ -371237,11 +371614,16 @@ function dispatchRequest(config) {
|
|
|
371237
371614
|
|
|
371238
371615
|
// Transform response data
|
|
371239
371616
|
if (reason && reason.response) {
|
|
371240
|
-
|
|
371241
|
-
|
|
371242
|
-
|
|
371243
|
-
|
|
371244
|
-
|
|
371617
|
+
config.response = reason.response;
|
|
371618
|
+
try {
|
|
371619
|
+
reason.response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_2__["default"].call(
|
|
371620
|
+
config,
|
|
371621
|
+
config.transformResponse,
|
|
371622
|
+
reason.response
|
|
371623
|
+
);
|
|
371624
|
+
} finally {
|
|
371625
|
+
delete config.response;
|
|
371626
|
+
}
|
|
371245
371627
|
reason.response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(reason.response.headers);
|
|
371246
371628
|
}
|
|
371247
371629
|
}
|
|
@@ -371254,9 +371636,9 @@ function dispatchRequest(config) {
|
|
|
371254
371636
|
|
|
371255
371637
|
/***/ }),
|
|
371256
371638
|
|
|
371257
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371639
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js":
|
|
371258
371640
|
/*!****************************************************************************************************!*\
|
|
371259
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371641
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js ***!
|
|
371260
371642
|
\****************************************************************************************************/
|
|
371261
371643
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371262
371644
|
|
|
@@ -371265,8 +371647,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371265
371647
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371266
371648
|
/* harmony export */ "default": () => (/* binding */ mergeConfig)
|
|
371267
371649
|
/* harmony export */ });
|
|
371268
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371269
|
-
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371650
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
371651
|
+
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
371270
371652
|
|
|
371271
371653
|
|
|
371272
371654
|
|
|
@@ -371286,7 +371668,21 @@ const headersToObject = (thing) => (thing instanceof _AxiosHeaders_js__WEBPACK_I
|
|
|
371286
371668
|
function mergeConfig(config1, config2) {
|
|
371287
371669
|
// eslint-disable-next-line no-param-reassign
|
|
371288
371670
|
config2 = config2 || {};
|
|
371289
|
-
|
|
371671
|
+
|
|
371672
|
+
// Use a null-prototype object so that downstream reads such as `config.auth`
|
|
371673
|
+
// or `config.baseURL` cannot inherit polluted values from Object.prototype.
|
|
371674
|
+
// `hasOwnProperty` is restored as a non-enumerable own slot to preserve
|
|
371675
|
+
// ergonomics for user code that relies on it.
|
|
371676
|
+
const config = Object.create(null);
|
|
371677
|
+
Object.defineProperty(config, 'hasOwnProperty', {
|
|
371678
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
371679
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
371680
|
+
__proto__: null,
|
|
371681
|
+
value: Object.prototype.hasOwnProperty,
|
|
371682
|
+
enumerable: false,
|
|
371683
|
+
writable: true,
|
|
371684
|
+
configurable: true,
|
|
371685
|
+
});
|
|
371290
371686
|
|
|
371291
371687
|
function getMergedValue(target, source, prop, caseless) {
|
|
371292
371688
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isPlainObject(target) && _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isPlainObject(source)) {
|
|
@@ -371325,9 +371721,9 @@ function mergeConfig(config1, config2) {
|
|
|
371325
371721
|
|
|
371326
371722
|
// eslint-disable-next-line consistent-return
|
|
371327
371723
|
function mergeDirectKeys(a, b, prop) {
|
|
371328
|
-
if (prop
|
|
371724
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config2, prop)) {
|
|
371329
371725
|
return getMergedValue(a, b);
|
|
371330
|
-
} else if (prop
|
|
371726
|
+
} else if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config1, prop)) {
|
|
371331
371727
|
return getMergedValue(undefined, a);
|
|
371332
371728
|
}
|
|
371333
371729
|
}
|
|
@@ -371359,6 +371755,7 @@ function mergeConfig(config1, config2) {
|
|
|
371359
371755
|
httpsAgent: defaultToConfig2,
|
|
371360
371756
|
cancelToken: defaultToConfig2,
|
|
371361
371757
|
socketPath: defaultToConfig2,
|
|
371758
|
+
allowedSocketPaths: defaultToConfig2,
|
|
371362
371759
|
responseEncoding: defaultToConfig2,
|
|
371363
371760
|
validateStatus: mergeDirectKeys,
|
|
371364
371761
|
headers: (a, b, prop) =>
|
|
@@ -371368,7 +371765,9 @@ function mergeConfig(config1, config2) {
|
|
|
371368
371765
|
_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
|
|
371369
371766
|
if (prop === '__proto__' || prop === 'constructor' || prop === 'prototype') return;
|
|
371370
371767
|
const merge = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
|
|
371371
|
-
const
|
|
371768
|
+
const a = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config1, prop) ? config1[prop] : undefined;
|
|
371769
|
+
const b = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config2, prop) ? config2[prop] : undefined;
|
|
371770
|
+
const configValue = merge(a, b, prop);
|
|
371372
371771
|
(_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
371373
371772
|
});
|
|
371374
371773
|
|
|
@@ -371378,9 +371777,9 @@ function mergeConfig(config1, config2) {
|
|
|
371378
371777
|
|
|
371379
371778
|
/***/ }),
|
|
371380
371779
|
|
|
371381
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371780
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js":
|
|
371382
371781
|
/*!***********************************************************************************************!*\
|
|
371383
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371782
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js ***!
|
|
371384
371783
|
\***********************************************************************************************/
|
|
371385
371784
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371386
371785
|
|
|
@@ -371389,7 +371788,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371389
371788
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371390
371789
|
/* harmony export */ "default": () => (/* binding */ settle)
|
|
371391
371790
|
/* harmony export */ });
|
|
371392
|
-
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371791
|
+
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
371393
371792
|
|
|
371394
371793
|
|
|
371395
371794
|
|
|
@@ -371408,26 +371807,22 @@ function settle(resolve, reject, response) {
|
|
|
371408
371807
|
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
|
371409
371808
|
resolve(response);
|
|
371410
371809
|
} else {
|
|
371411
|
-
reject(
|
|
371412
|
-
|
|
371413
|
-
|
|
371414
|
-
|
|
371415
|
-
|
|
371416
|
-
|
|
371417
|
-
|
|
371418
|
-
response.request,
|
|
371419
|
-
response
|
|
371420
|
-
)
|
|
371421
|
-
);
|
|
371810
|
+
reject(new _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["default"](
|
|
371811
|
+
'Request failed with status code ' + response.status,
|
|
371812
|
+
response.status >= 400 && response.status < 500 ? _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERR_BAD_REQUEST : _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["default"].ERR_BAD_RESPONSE,
|
|
371813
|
+
response.config,
|
|
371814
|
+
response.request,
|
|
371815
|
+
response
|
|
371816
|
+
));
|
|
371422
371817
|
}
|
|
371423
371818
|
}
|
|
371424
371819
|
|
|
371425
371820
|
|
|
371426
371821
|
/***/ }),
|
|
371427
371822
|
|
|
371428
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371823
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/transformData.js":
|
|
371429
371824
|
/*!******************************************************************************************************!*\
|
|
371430
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371825
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/transformData.js ***!
|
|
371431
371826
|
\******************************************************************************************************/
|
|
371432
371827
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371433
371828
|
|
|
@@ -371436,9 +371831,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371436
371831
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371437
371832
|
/* harmony export */ "default": () => (/* binding */ transformData)
|
|
371438
371833
|
/* harmony export */ });
|
|
371439
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371440
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371441
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371834
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
371835
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js");
|
|
371836
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
371442
371837
|
|
|
371443
371838
|
|
|
371444
371839
|
|
|
@@ -371471,9 +371866,9 @@ function transformData(fns, response) {
|
|
|
371471
371866
|
|
|
371472
371867
|
/***/ }),
|
|
371473
371868
|
|
|
371474
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371869
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js":
|
|
371475
371870
|
/*!**************************************************************************************************!*\
|
|
371476
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371871
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js ***!
|
|
371477
371872
|
\**************************************************************************************************/
|
|
371478
371873
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371479
371874
|
|
|
@@ -371482,13 +371877,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371482
371877
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371483
371878
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371484
371879
|
/* harmony export */ });
|
|
371485
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371486
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371487
|
-
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371488
|
-
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371489
|
-
/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371490
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371491
|
-
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371880
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
371881
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
371882
|
+
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js");
|
|
371883
|
+
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js");
|
|
371884
|
+
/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toURLEncodedForm.js");
|
|
371885
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
371886
|
+
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js");
|
|
371492
371887
|
|
|
371493
371888
|
|
|
371494
371889
|
|
|
@@ -371499,6 +371894,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371499
371894
|
|
|
371500
371895
|
|
|
371501
371896
|
|
|
371897
|
+
const own = (obj, key) => (obj != null && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(obj, key) ? obj[key] : undefined);
|
|
371898
|
+
|
|
371502
371899
|
/**
|
|
371503
371900
|
* It takes a string, tries to parse it, and if it fails, it returns the stringified version
|
|
371504
371901
|
* of the input
|
|
@@ -371566,20 +371963,22 @@ const defaults = {
|
|
|
371566
371963
|
let isFileList;
|
|
371567
371964
|
|
|
371568
371965
|
if (isObjectPayload) {
|
|
371966
|
+
const formSerializer = own(this, 'formSerializer');
|
|
371569
371967
|
if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {
|
|
371570
|
-
return (0,_helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__["default"])(data,
|
|
371968
|
+
return (0,_helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__["default"])(data, formSerializer).toString();
|
|
371571
371969
|
}
|
|
371572
371970
|
|
|
371573
371971
|
if (
|
|
371574
371972
|
(isFileList = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFileList(data)) ||
|
|
371575
371973
|
contentType.indexOf('multipart/form-data') > -1
|
|
371576
371974
|
) {
|
|
371577
|
-
const
|
|
371975
|
+
const env = own(this, 'env');
|
|
371976
|
+
const _FormData = env && env.FormData;
|
|
371578
371977
|
|
|
371579
371978
|
return (0,_helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__["default"])(
|
|
371580
371979
|
isFileList ? { 'files[]': data } : data,
|
|
371581
371980
|
_FormData && new _FormData(),
|
|
371582
|
-
|
|
371981
|
+
formSerializer
|
|
371583
371982
|
);
|
|
371584
371983
|
}
|
|
371585
371984
|
}
|
|
@@ -371595,9 +371994,10 @@ const defaults = {
|
|
|
371595
371994
|
|
|
371596
371995
|
transformResponse: [
|
|
371597
371996
|
function transformResponse(data) {
|
|
371598
|
-
const transitional = this
|
|
371997
|
+
const transitional = own(this, 'transitional') || defaults.transitional;
|
|
371599
371998
|
const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
|
|
371600
|
-
const
|
|
371999
|
+
const responseType = own(this, 'responseType');
|
|
372000
|
+
const JSONRequested = responseType === 'json';
|
|
371601
372001
|
|
|
371602
372002
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isResponse(data) || _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isReadableStream(data)) {
|
|
371603
372003
|
return data;
|
|
@@ -371606,17 +372006,17 @@ const defaults = {
|
|
|
371606
372006
|
if (
|
|
371607
372007
|
data &&
|
|
371608
372008
|
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isString(data) &&
|
|
371609
|
-
((forcedJSONParsing && !
|
|
372009
|
+
((forcedJSONParsing && !responseType) || JSONRequested)
|
|
371610
372010
|
) {
|
|
371611
372011
|
const silentJSONParsing = transitional && transitional.silentJSONParsing;
|
|
371612
372012
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
371613
372013
|
|
|
371614
372014
|
try {
|
|
371615
|
-
return JSON.parse(data, this
|
|
372015
|
+
return JSON.parse(data, own(this, 'parseReviver'));
|
|
371616
372016
|
} catch (e) {
|
|
371617
372017
|
if (strictJSONParsing) {
|
|
371618
372018
|
if (e.name === 'SyntaxError') {
|
|
371619
|
-
throw _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__["default"].from(e, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__["default"].ERR_BAD_RESPONSE, this, null, this
|
|
372019
|
+
throw _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__["default"].from(e, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__["default"].ERR_BAD_RESPONSE, this, null, own(this, 'response'));
|
|
371620
372020
|
}
|
|
371621
372021
|
throw e;
|
|
371622
372022
|
}
|
|
@@ -371656,7 +372056,7 @@ const defaults = {
|
|
|
371656
372056
|
},
|
|
371657
372057
|
};
|
|
371658
372058
|
|
|
371659
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {
|
|
372059
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'query'], (method) => {
|
|
371660
372060
|
defaults.headers[method] = {};
|
|
371661
372061
|
});
|
|
371662
372062
|
|
|
@@ -371665,9 +372065,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
|
|
|
371665
372065
|
|
|
371666
372066
|
/***/ }),
|
|
371667
372067
|
|
|
371668
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372068
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js":
|
|
371669
372069
|
/*!*********************************************************************************************************!*\
|
|
371670
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372070
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js ***!
|
|
371671
372071
|
\*********************************************************************************************************/
|
|
371672
372072
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371673
372073
|
|
|
@@ -371688,9 +372088,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371688
372088
|
|
|
371689
372089
|
/***/ }),
|
|
371690
372090
|
|
|
371691
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372091
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js":
|
|
371692
372092
|
/*!********************************************************************************************!*\
|
|
371693
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372093
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js ***!
|
|
371694
372094
|
\********************************************************************************************/
|
|
371695
372095
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371696
372096
|
|
|
@@ -371699,13 +372099,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371699
372099
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371700
372100
|
/* harmony export */ VERSION: () => (/* binding */ VERSION)
|
|
371701
372101
|
/* harmony export */ });
|
|
371702
|
-
const VERSION = "1.
|
|
372102
|
+
const VERSION = "1.16.0";
|
|
371703
372103
|
|
|
371704
372104
|
/***/ }),
|
|
371705
372105
|
|
|
371706
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372106
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js":
|
|
371707
372107
|
/*!****************************************************************************************************************!*\
|
|
371708
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372108
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
|
|
371709
372109
|
\****************************************************************************************************************/
|
|
371710
372110
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371711
372111
|
|
|
@@ -371714,7 +372114,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371714
372114
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371715
372115
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371716
372116
|
/* harmony export */ });
|
|
371717
|
-
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372117
|
+
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js");
|
|
371718
372118
|
|
|
371719
372119
|
|
|
371720
372120
|
|
|
@@ -371735,9 +372135,8 @@ function encode(str) {
|
|
|
371735
372135
|
')': '%29',
|
|
371736
372136
|
'~': '%7E',
|
|
371737
372137
|
'%20': '+',
|
|
371738
|
-
'%00': '\x00',
|
|
371739
372138
|
};
|
|
371740
|
-
return encodeURIComponent(str).replace(/[!'()~]|%20
|
|
372139
|
+
return encodeURIComponent(str).replace(/[!'()~]|%20/g, function replacer(match) {
|
|
371741
372140
|
return charMap[match];
|
|
371742
372141
|
});
|
|
371743
372142
|
}
|
|
@@ -371781,9 +372180,9 @@ prototype.toString = function toString(encoder) {
|
|
|
371781
372180
|
|
|
371782
372181
|
/***/ }),
|
|
371783
372182
|
|
|
371784
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372183
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/HttpStatusCode.js":
|
|
371785
372184
|
/*!**********************************************************************************************************!*\
|
|
371786
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372185
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/HttpStatusCode.js ***!
|
|
371787
372186
|
\**********************************************************************************************************/
|
|
371788
372187
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371789
372188
|
|
|
@@ -371873,9 +372272,9 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
371873
372272
|
|
|
371874
372273
|
/***/ }),
|
|
371875
372274
|
|
|
371876
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372275
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js":
|
|
371877
372276
|
/*!************************************************************************************************!*\
|
|
371878
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372277
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js ***!
|
|
371879
372278
|
\************************************************************************************************/
|
|
371880
372279
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371881
372280
|
|
|
@@ -371902,19 +372301,20 @@ function bind(fn, thisArg) {
|
|
|
371902
372301
|
|
|
371903
372302
|
/***/ }),
|
|
371904
372303
|
|
|
371905
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372304
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js":
|
|
371906
372305
|
/*!****************************************************************************************************!*\
|
|
371907
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372306
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js ***!
|
|
371908
372307
|
\****************************************************************************************************/
|
|
371909
372308
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371910
372309
|
|
|
371911
372310
|
"use strict";
|
|
371912
372311
|
__webpack_require__.r(__webpack_exports__);
|
|
371913
372312
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371914
|
-
/* harmony export */ "default": () => (/* binding */ buildURL)
|
|
372313
|
+
/* harmony export */ "default": () => (/* binding */ buildURL),
|
|
372314
|
+
/* harmony export */ encode: () => (/* binding */ encode)
|
|
371915
372315
|
/* harmony export */ });
|
|
371916
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371917
|
-
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372316
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372317
|
+
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
371918
372318
|
|
|
371919
372319
|
|
|
371920
372320
|
|
|
@@ -371985,9 +372385,9 @@ function buildURL(url, params, options) {
|
|
|
371985
372385
|
|
|
371986
372386
|
/***/ }),
|
|
371987
372387
|
|
|
371988
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372388
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/combineURLs.js":
|
|
371989
372389
|
/*!*******************************************************************************************************!*\
|
|
371990
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372390
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/combineURLs.js ***!
|
|
371991
372391
|
\*******************************************************************************************************/
|
|
371992
372392
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371993
372393
|
|
|
@@ -372015,9 +372415,9 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
372015
372415
|
|
|
372016
372416
|
/***/ }),
|
|
372017
372417
|
|
|
372018
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372418
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/composeSignals.js":
|
|
372019
372419
|
/*!**********************************************************************************************************!*\
|
|
372020
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372420
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/composeSignals.js ***!
|
|
372021
372421
|
\**********************************************************************************************************/
|
|
372022
372422
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372023
372423
|
|
|
@@ -372026,9 +372426,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372026
372426
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372027
372427
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372028
372428
|
/* harmony export */ });
|
|
372029
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372030
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372031
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372429
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js");
|
|
372430
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
372431
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372032
372432
|
|
|
372033
372433
|
|
|
372034
372434
|
|
|
@@ -372089,9 +372489,9 @@ const composeSignals = (signals, timeout) => {
|
|
|
372089
372489
|
|
|
372090
372490
|
/***/ }),
|
|
372091
372491
|
|
|
372092
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372492
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/cookies.js":
|
|
372093
372493
|
/*!***************************************************************************************************!*\
|
|
372094
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372494
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/cookies.js ***!
|
|
372095
372495
|
\***************************************************************************************************/
|
|
372096
372496
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372097
372497
|
|
|
@@ -372100,8 +372500,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372100
372500
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372101
372501
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372102
372502
|
/* harmony export */ });
|
|
372103
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372104
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372503
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372504
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
372105
372505
|
|
|
372106
372506
|
|
|
372107
372507
|
|
|
@@ -372134,8 +372534,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372134
372534
|
|
|
372135
372535
|
read(name) {
|
|
372136
372536
|
if (typeof document === 'undefined') return null;
|
|
372137
|
-
|
|
372138
|
-
|
|
372537
|
+
// Match name=value by splitting on the semicolon separator instead of building a
|
|
372538
|
+
// RegExp from `name` — interpolating an unescaped string into a RegExp would let
|
|
372539
|
+
// metacharacters (e.g. `.+?` in an attacker-influenced cookie name) cause ReDoS or
|
|
372540
|
+
// match the wrong cookie. Browsers may serialize cookie pairs as either ";" or
|
|
372541
|
+
// "; ", so ignore optional whitespace before each cookie name.
|
|
372542
|
+
const cookies = document.cookie.split(';');
|
|
372543
|
+
for (let i = 0; i < cookies.length; i++) {
|
|
372544
|
+
const cookie = cookies[i].replace(/^\s+/, '');
|
|
372545
|
+
const eq = cookie.indexOf('=');
|
|
372546
|
+
if (eq !== -1 && cookie.slice(0, eq) === name) {
|
|
372547
|
+
return decodeURIComponent(cookie.slice(eq + 1));
|
|
372548
|
+
}
|
|
372549
|
+
}
|
|
372550
|
+
return null;
|
|
372139
372551
|
},
|
|
372140
372552
|
|
|
372141
372553
|
remove(name) {
|
|
@@ -372154,9 +372566,124 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372154
372566
|
|
|
372155
372567
|
/***/ }),
|
|
372156
372568
|
|
|
372157
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372569
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js":
|
|
372570
|
+
/*!***********************************************************************************************************************!*\
|
|
372571
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js ***!
|
|
372572
|
+
\***********************************************************************************************************************/
|
|
372573
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372574
|
+
|
|
372575
|
+
"use strict";
|
|
372576
|
+
__webpack_require__.r(__webpack_exports__);
|
|
372577
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372578
|
+
/* harmony export */ "default": () => (/* binding */ estimateDataURLDecodedBytes)
|
|
372579
|
+
/* harmony export */ });
|
|
372580
|
+
/**
|
|
372581
|
+
* Estimate decoded byte length of a data:// URL *without* allocating large buffers.
|
|
372582
|
+
* - For base64: compute exact decoded size using length and padding;
|
|
372583
|
+
* handle %XX at the character-count level (no string allocation).
|
|
372584
|
+
* - For non-base64: use UTF-8 byteLength of the encoded body as a safe upper bound.
|
|
372585
|
+
*
|
|
372586
|
+
* @param {string} url
|
|
372587
|
+
* @returns {number}
|
|
372588
|
+
*/
|
|
372589
|
+
function estimateDataURLDecodedBytes(url) {
|
|
372590
|
+
if (!url || typeof url !== 'string') return 0;
|
|
372591
|
+
if (!url.startsWith('data:')) return 0;
|
|
372592
|
+
|
|
372593
|
+
const comma = url.indexOf(',');
|
|
372594
|
+
if (comma < 0) return 0;
|
|
372595
|
+
|
|
372596
|
+
const meta = url.slice(5, comma);
|
|
372597
|
+
const body = url.slice(comma + 1);
|
|
372598
|
+
const isBase64 = /;base64/i.test(meta);
|
|
372599
|
+
|
|
372600
|
+
if (isBase64) {
|
|
372601
|
+
let effectiveLen = body.length;
|
|
372602
|
+
const len = body.length; // cache length
|
|
372603
|
+
|
|
372604
|
+
for (let i = 0; i < len; i++) {
|
|
372605
|
+
if (body.charCodeAt(i) === 37 /* '%' */ && i + 2 < len) {
|
|
372606
|
+
const a = body.charCodeAt(i + 1);
|
|
372607
|
+
const b = body.charCodeAt(i + 2);
|
|
372608
|
+
const isHex =
|
|
372609
|
+
((a >= 48 && a <= 57) || (a >= 65 && a <= 70) || (a >= 97 && a <= 102)) &&
|
|
372610
|
+
((b >= 48 && b <= 57) || (b >= 65 && b <= 70) || (b >= 97 && b <= 102));
|
|
372611
|
+
|
|
372612
|
+
if (isHex) {
|
|
372613
|
+
effectiveLen -= 2;
|
|
372614
|
+
i += 2;
|
|
372615
|
+
}
|
|
372616
|
+
}
|
|
372617
|
+
}
|
|
372618
|
+
|
|
372619
|
+
let pad = 0;
|
|
372620
|
+
let idx = len - 1;
|
|
372621
|
+
|
|
372622
|
+
const tailIsPct3D = (j) =>
|
|
372623
|
+
j >= 2 &&
|
|
372624
|
+
body.charCodeAt(j - 2) === 37 && // '%'
|
|
372625
|
+
body.charCodeAt(j - 1) === 51 && // '3'
|
|
372626
|
+
(body.charCodeAt(j) === 68 || body.charCodeAt(j) === 100); // 'D' or 'd'
|
|
372627
|
+
|
|
372628
|
+
if (idx >= 0) {
|
|
372629
|
+
if (body.charCodeAt(idx) === 61 /* '=' */) {
|
|
372630
|
+
pad++;
|
|
372631
|
+
idx--;
|
|
372632
|
+
} else if (tailIsPct3D(idx)) {
|
|
372633
|
+
pad++;
|
|
372634
|
+
idx -= 3;
|
|
372635
|
+
}
|
|
372636
|
+
}
|
|
372637
|
+
|
|
372638
|
+
if (pad === 1 && idx >= 0) {
|
|
372639
|
+
if (body.charCodeAt(idx) === 61 /* '=' */) {
|
|
372640
|
+
pad++;
|
|
372641
|
+
} else if (tailIsPct3D(idx)) {
|
|
372642
|
+
pad++;
|
|
372643
|
+
}
|
|
372644
|
+
}
|
|
372645
|
+
|
|
372646
|
+
const groups = Math.floor(effectiveLen / 4);
|
|
372647
|
+
const bytes = groups * 3 - (pad || 0);
|
|
372648
|
+
return bytes > 0 ? bytes : 0;
|
|
372649
|
+
}
|
|
372650
|
+
|
|
372651
|
+
if (typeof Buffer !== 'undefined' && typeof Buffer.byteLength === 'function') {
|
|
372652
|
+
return Buffer.byteLength(body, 'utf8');
|
|
372653
|
+
}
|
|
372654
|
+
|
|
372655
|
+
// Compute UTF-8 byte length directly from UTF-16 code units without allocating
|
|
372656
|
+
// a byte buffer (TextEncoder.encode would defeat the DoS guard on large bodies).
|
|
372657
|
+
// Using body.length here would undercount non-ASCII (e.g. '€' is 1 code unit
|
|
372658
|
+
// but 3 UTF-8 bytes).
|
|
372659
|
+
let bytes = 0;
|
|
372660
|
+
for (let i = 0, len = body.length; i < len; i++) {
|
|
372661
|
+
const c = body.charCodeAt(i);
|
|
372662
|
+
if (c < 0x80) {
|
|
372663
|
+
bytes += 1;
|
|
372664
|
+
} else if (c < 0x800) {
|
|
372665
|
+
bytes += 2;
|
|
372666
|
+
} else if (c >= 0xd800 && c <= 0xdbff && i + 1 < len) {
|
|
372667
|
+
const next = body.charCodeAt(i + 1);
|
|
372668
|
+
if (next >= 0xdc00 && next <= 0xdfff) {
|
|
372669
|
+
bytes += 4;
|
|
372670
|
+
i++;
|
|
372671
|
+
} else {
|
|
372672
|
+
bytes += 3;
|
|
372673
|
+
}
|
|
372674
|
+
} else {
|
|
372675
|
+
bytes += 3;
|
|
372676
|
+
}
|
|
372677
|
+
}
|
|
372678
|
+
return bytes;
|
|
372679
|
+
}
|
|
372680
|
+
|
|
372681
|
+
|
|
372682
|
+
/***/ }),
|
|
372683
|
+
|
|
372684
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js":
|
|
372158
372685
|
/*!**********************************************************************************************************!*\
|
|
372159
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372686
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js ***!
|
|
372160
372687
|
\**********************************************************************************************************/
|
|
372161
372688
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372162
372689
|
|
|
@@ -372165,7 +372692,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372165
372692
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372166
372693
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372167
372694
|
/* harmony export */ });
|
|
372168
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372695
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372169
372696
|
|
|
372170
372697
|
|
|
372171
372698
|
|
|
@@ -372226,7 +372753,9 @@ function formDataToJSON(formData) {
|
|
|
372226
372753
|
|
|
372227
372754
|
if (isLast) {
|
|
372228
372755
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(target, name)) {
|
|
372229
|
-
target[name] = [target[name]
|
|
372756
|
+
target[name] = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(target[name])
|
|
372757
|
+
? target[name].concat(value)
|
|
372758
|
+
: [target[name], value];
|
|
372230
372759
|
} else {
|
|
372231
372760
|
target[name] = value;
|
|
372232
372761
|
}
|
|
@@ -372265,9 +372794,9 @@ function formDataToJSON(formData) {
|
|
|
372265
372794
|
|
|
372266
372795
|
/***/ }),
|
|
372267
372796
|
|
|
372268
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372797
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAbsoluteURL.js":
|
|
372269
372798
|
/*!*********************************************************************************************************!*\
|
|
372270
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372799
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
|
|
372271
372800
|
\*********************************************************************************************************/
|
|
372272
372801
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372273
372802
|
|
|
@@ -372299,9 +372828,9 @@ function isAbsoluteURL(url) {
|
|
|
372299
372828
|
|
|
372300
372829
|
/***/ }),
|
|
372301
372830
|
|
|
372302
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372831
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAxiosError.js":
|
|
372303
372832
|
/*!********************************************************************************************************!*\
|
|
372304
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372833
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAxiosError.js ***!
|
|
372305
372834
|
\********************************************************************************************************/
|
|
372306
372835
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372307
372836
|
|
|
@@ -372310,7 +372839,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372310
372839
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372311
372840
|
/* harmony export */ "default": () => (/* binding */ isAxiosError)
|
|
372312
372841
|
/* harmony export */ });
|
|
372313
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372842
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372314
372843
|
|
|
372315
372844
|
|
|
372316
372845
|
|
|
@@ -372329,9 +372858,9 @@ function isAxiosError(payload) {
|
|
|
372329
372858
|
|
|
372330
372859
|
/***/ }),
|
|
372331
372860
|
|
|
372332
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372861
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
|
372333
372862
|
/*!***********************************************************************************************************!*\
|
|
372334
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372863
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
|
|
372335
372864
|
\***********************************************************************************************************/
|
|
372336
372865
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372337
372866
|
|
|
@@ -372340,7 +372869,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372340
372869
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372341
372870
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372342
372871
|
/* harmony export */ });
|
|
372343
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372872
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
372344
372873
|
|
|
372345
372874
|
|
|
372346
372875
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv
|
|
@@ -372361,9 +372890,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372361
372890
|
|
|
372362
372891
|
/***/ }),
|
|
372363
372892
|
|
|
372364
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372893
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js":
|
|
372365
372894
|
/*!************************************************************************************************!*\
|
|
372366
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372895
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js ***!
|
|
372367
372896
|
\************************************************************************************************/
|
|
372368
372897
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372369
372898
|
|
|
@@ -372378,9 +372907,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372378
372907
|
|
|
372379
372908
|
/***/ }),
|
|
372380
372909
|
|
|
372381
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372910
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseHeaders.js":
|
|
372382
372911
|
/*!********************************************************************************************************!*\
|
|
372383
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372912
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseHeaders.js ***!
|
|
372384
372913
|
\********************************************************************************************************/
|
|
372385
372914
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372386
372915
|
|
|
@@ -372389,7 +372918,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372389
372918
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372390
372919
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372391
372920
|
/* harmony export */ });
|
|
372392
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372921
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372393
372922
|
|
|
372394
372923
|
|
|
372395
372924
|
|
|
@@ -372463,9 +372992,9 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
|
|
|
372463
372992
|
|
|
372464
372993
|
/***/ }),
|
|
372465
372994
|
|
|
372466
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372995
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseProtocol.js":
|
|
372467
372996
|
/*!*********************************************************************************************************!*\
|
|
372468
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372997
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseProtocol.js ***!
|
|
372469
372998
|
\*********************************************************************************************************/
|
|
372470
372999
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372471
373000
|
|
|
@@ -372477,16 +373006,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372477
373006
|
|
|
372478
373007
|
|
|
372479
373008
|
function parseProtocol(url) {
|
|
372480
|
-
const match = /^([-+\w]{1,25})(
|
|
373009
|
+
const match = /^([-+\w]{1,25}):(?:\/\/)?/.exec(url);
|
|
372481
373010
|
return (match && match[1]) || '';
|
|
372482
373011
|
}
|
|
372483
373012
|
|
|
372484
373013
|
|
|
372485
373014
|
/***/ }),
|
|
372486
373015
|
|
|
372487
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373016
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js":
|
|
372488
373017
|
/*!****************************************************************************************************************!*\
|
|
372489
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373018
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js ***!
|
|
372490
373019
|
\****************************************************************************************************************/
|
|
372491
373020
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372492
373021
|
|
|
@@ -372497,9 +373026,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372497
373026
|
/* harmony export */ progressEventDecorator: () => (/* binding */ progressEventDecorator),
|
|
372498
373027
|
/* harmony export */ progressEventReducer: () => (/* binding */ progressEventReducer)
|
|
372499
373028
|
/* harmony export */ });
|
|
372500
|
-
/* harmony import */ var _speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372501
|
-
/* harmony import */ var _throttle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./throttle.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372502
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373029
|
+
/* harmony import */ var _speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/speedometer.js");
|
|
373030
|
+
/* harmony import */ var _throttle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./throttle.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/throttle.js");
|
|
373031
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
372503
373032
|
|
|
372504
373033
|
|
|
372505
373034
|
|
|
@@ -372509,13 +373038,13 @@ const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
|
372509
373038
|
const _speedometer = (0,_speedometer_js__WEBPACK_IMPORTED_MODULE_0__["default"])(50, 250);
|
|
372510
373039
|
|
|
372511
373040
|
return (0,_throttle_js__WEBPACK_IMPORTED_MODULE_1__["default"])((e) => {
|
|
372512
|
-
const
|
|
373041
|
+
const rawLoaded = e.loaded;
|
|
372513
373042
|
const total = e.lengthComputable ? e.total : undefined;
|
|
372514
|
-
const
|
|
373043
|
+
const loaded = total != null ? Math.min(rawLoaded, total) : rawLoaded;
|
|
373044
|
+
const progressBytes = Math.max(0, loaded - bytesNotified);
|
|
372515
373045
|
const rate = _speedometer(progressBytes);
|
|
372516
|
-
const inRange = loaded <= total;
|
|
372517
373046
|
|
|
372518
|
-
bytesNotified = loaded;
|
|
373047
|
+
bytesNotified = Math.max(bytesNotified, loaded);
|
|
372519
373048
|
|
|
372520
373049
|
const data = {
|
|
372521
373050
|
loaded,
|
|
@@ -372523,7 +373052,7 @@ const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
|
372523
373052
|
progress: total ? loaded / total : undefined,
|
|
372524
373053
|
bytes: progressBytes,
|
|
372525
373054
|
rate: rate ? rate : undefined,
|
|
372526
|
-
estimated: rate && total
|
|
373055
|
+
estimated: rate && total ? (total - loaded) / rate : undefined,
|
|
372527
373056
|
event: e,
|
|
372528
373057
|
lengthComputable: total != null,
|
|
372529
373058
|
[isDownloadStream ? 'download' : 'upload']: true,
|
|
@@ -372555,9 +373084,9 @@ const asyncDecorator =
|
|
|
372555
373084
|
|
|
372556
373085
|
/***/ }),
|
|
372557
373086
|
|
|
372558
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373087
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js":
|
|
372559
373088
|
/*!*********************************************************************************************************!*\
|
|
372560
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373089
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js ***!
|
|
372561
373090
|
\*********************************************************************************************************/
|
|
372562
373091
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372563
373092
|
|
|
@@ -372566,14 +373095,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372566
373095
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372567
373096
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372568
373097
|
/* harmony export */ });
|
|
372569
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372570
|
-
/* harmony import */ var
|
|
372571
|
-
/* harmony import */ var _isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372572
|
-
/* harmony import */ var _cookies_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372573
|
-
/* harmony import */ var
|
|
372574
|
-
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372575
|
-
/* harmony import */ var
|
|
372576
|
-
/* harmony import */ var
|
|
373098
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
373099
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
373100
|
+
/* harmony import */ var _isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
|
373101
|
+
/* harmony import */ var _cookies_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/cookies.js");
|
|
373102
|
+
/* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js");
|
|
373103
|
+
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js");
|
|
373104
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
373105
|
+
/* harmony import */ var _buildURL_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js");
|
|
373106
|
+
|
|
372577
373107
|
|
|
372578
373108
|
|
|
372579
373109
|
|
|
@@ -372582,16 +373112,55 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372582
373112
|
|
|
372583
373113
|
|
|
372584
373114
|
|
|
373115
|
+
const FORM_DATA_CONTENT_HEADERS = ['content-type', 'content-length'];
|
|
373116
|
+
|
|
373117
|
+
function setFormDataHeaders(headers, formHeaders, policy) {
|
|
373118
|
+
if (policy !== 'content-only') {
|
|
373119
|
+
headers.set(formHeaders);
|
|
373120
|
+
return;
|
|
373121
|
+
}
|
|
373122
|
+
|
|
373123
|
+
Object.entries(formHeaders).forEach(([key, val]) => {
|
|
373124
|
+
if (FORM_DATA_CONTENT_HEADERS.includes(key.toLowerCase())) {
|
|
373125
|
+
headers.set(key, val);
|
|
373126
|
+
}
|
|
373127
|
+
});
|
|
373128
|
+
}
|
|
373129
|
+
|
|
373130
|
+
/**
|
|
373131
|
+
* Encode a UTF-8 string to a Latin-1 byte string for use with btoa().
|
|
373132
|
+
* This is a modern replacement for the deprecated unescape(encodeURIComponent(str)) pattern.
|
|
373133
|
+
*
|
|
373134
|
+
* @param {string} str The string to encode
|
|
373135
|
+
*
|
|
373136
|
+
* @returns {string} UTF-8 bytes as a Latin-1 string
|
|
373137
|
+
*/
|
|
373138
|
+
const encodeUTF8 = (str) =>
|
|
373139
|
+
encodeURIComponent(str).replace(/%([0-9A-F]{2})/gi, (_, hex) =>
|
|
373140
|
+
String.fromCharCode(parseInt(hex, 16))
|
|
373141
|
+
);
|
|
372585
373142
|
|
|
372586
373143
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((config) => {
|
|
372587
373144
|
const newConfig = (0,_core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__["default"])({}, config);
|
|
372588
373145
|
|
|
372589
|
-
|
|
373146
|
+
// Read only own properties to prevent prototype pollution gadgets
|
|
373147
|
+
// (e.g. Object.prototype.baseURL = 'https://evil.com').
|
|
373148
|
+
const own = (key) => (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(newConfig, key) ? newConfig[key] : undefined);
|
|
373149
|
+
|
|
373150
|
+
const data = own('data');
|
|
373151
|
+
let withXSRFToken = own('withXSRFToken');
|
|
373152
|
+
const xsrfHeaderName = own('xsrfHeaderName');
|
|
373153
|
+
const xsrfCookieName = own('xsrfCookieName');
|
|
373154
|
+
let headers = own('headers');
|
|
373155
|
+
const auth = own('auth');
|
|
373156
|
+
const baseURL = own('baseURL');
|
|
373157
|
+
const allowAbsoluteUrls = own('allowAbsoluteUrls');
|
|
373158
|
+
const url = own('url');
|
|
372590
373159
|
|
|
372591
|
-
newConfig.headers = headers =
|
|
373160
|
+
newConfig.headers = headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_2__["default"].from(headers);
|
|
372592
373161
|
|
|
372593
|
-
newConfig.url = (0,
|
|
372594
|
-
(0,
|
|
373162
|
+
newConfig.url = (0,_buildURL_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
|
|
373163
|
+
(0,_core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__["default"])(baseURL, url, allowAbsoluteUrls),
|
|
372595
373164
|
config.params,
|
|
372596
373165
|
config.paramsSerializer
|
|
372597
373166
|
);
|
|
@@ -372601,27 +373170,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372601
373170
|
headers.set(
|
|
372602
373171
|
'Authorization',
|
|
372603
373172
|
'Basic ' +
|
|
372604
|
-
btoa(
|
|
372605
|
-
(auth.username || '') +
|
|
372606
|
-
':' +
|
|
372607
|
-
(auth.password ? unescape(encodeURIComponent(auth.password)) : '')
|
|
372608
|
-
)
|
|
373173
|
+
btoa((auth.username || '') + ':' + (auth.password ? encodeUTF8(auth.password) : ''))
|
|
372609
373174
|
);
|
|
372610
373175
|
}
|
|
372611
373176
|
|
|
372612
|
-
if (
|
|
373177
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFormData(data)) {
|
|
372613
373178
|
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserEnv || _platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserWebWorkerEnv) {
|
|
372614
373179
|
headers.setContentType(undefined); // browser handles it
|
|
372615
|
-
} else if (
|
|
373180
|
+
} else if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFunction(data.getHeaders)) {
|
|
372616
373181
|
// Node.js FormData (like form-data package)
|
|
372617
|
-
|
|
372618
|
-
// Only set safe headers to avoid overwriting security headers
|
|
372619
|
-
const allowedHeaders = ['content-type', 'content-length'];
|
|
372620
|
-
Object.entries(formHeaders).forEach(([key, val]) => {
|
|
372621
|
-
if (allowedHeaders.includes(key.toLowerCase())) {
|
|
372622
|
-
headers.set(key, val);
|
|
372623
|
-
}
|
|
372624
|
-
});
|
|
373182
|
+
setFormDataHeaders(headers, data.getHeaders(), own('formDataHeaderPolicy'));
|
|
372625
373183
|
}
|
|
372626
373184
|
}
|
|
372627
373185
|
|
|
@@ -372630,10 +373188,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372630
373188
|
// Specifically not if we're in a web worker, or react-native.
|
|
372631
373189
|
|
|
372632
373190
|
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserEnv) {
|
|
372633
|
-
|
|
373191
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFunction(withXSRFToken)) {
|
|
373192
|
+
withXSRFToken = withXSRFToken(newConfig);
|
|
373193
|
+
}
|
|
372634
373194
|
|
|
372635
|
-
|
|
372636
|
-
|
|
373195
|
+
// Strict boolean check — prevents proto-pollution gadgets (e.g. Object.prototype.withXSRFToken = 1)
|
|
373196
|
+
// and misconfigurations (e.g. "false") from short-circuiting the same-origin check and leaking
|
|
373197
|
+
// the XSRF token cross-origin.
|
|
373198
|
+
const shouldSendXSRF =
|
|
373199
|
+
withXSRFToken === true || (withXSRFToken == null && (0,_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__["default"])(newConfig.url));
|
|
373200
|
+
|
|
373201
|
+
if (shouldSendXSRF) {
|
|
372637
373202
|
const xsrfValue = xsrfHeaderName && xsrfCookieName && _cookies_js__WEBPACK_IMPORTED_MODULE_7__["default"].read(xsrfCookieName);
|
|
372638
373203
|
|
|
372639
373204
|
if (xsrfValue) {
|
|
@@ -372648,9 +373213,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372648
373213
|
|
|
372649
373214
|
/***/ }),
|
|
372650
373215
|
|
|
372651
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373216
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/speedometer.js":
|
|
372652
373217
|
/*!*******************************************************************************************************!*\
|
|
372653
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373218
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/speedometer.js ***!
|
|
372654
373219
|
\*******************************************************************************************************/
|
|
372655
373220
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372656
373221
|
|
|
@@ -372718,9 +373283,9 @@ function speedometer(samplesCount, min) {
|
|
|
372718
373283
|
|
|
372719
373284
|
/***/ }),
|
|
372720
373285
|
|
|
372721
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373286
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/spread.js":
|
|
372722
373287
|
/*!**************************************************************************************************!*\
|
|
372723
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373288
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/spread.js ***!
|
|
372724
373289
|
\**************************************************************************************************/
|
|
372725
373290
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372726
373291
|
|
|
@@ -372761,9 +373326,9 @@ function spread(callback) {
|
|
|
372761
373326
|
|
|
372762
373327
|
/***/ }),
|
|
372763
373328
|
|
|
372764
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373329
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/throttle.js":
|
|
372765
373330
|
/*!****************************************************************************************************!*\
|
|
372766
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373331
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/throttle.js ***!
|
|
372767
373332
|
\****************************************************************************************************/
|
|
372768
373333
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372769
373334
|
|
|
@@ -372820,9 +373385,9 @@ function throttle(fn, freq) {
|
|
|
372820
373385
|
|
|
372821
373386
|
/***/ }),
|
|
372822
373387
|
|
|
372823
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373388
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js":
|
|
372824
373389
|
/*!******************************************************************************************************!*\
|
|
372825
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373390
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js ***!
|
|
372826
373391
|
\******************************************************************************************************/
|
|
372827
373392
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372828
373393
|
|
|
@@ -372831,9 +373396,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372831
373396
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372832
373397
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372833
373398
|
/* harmony export */ });
|
|
372834
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372835
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372836
|
-
/* harmony import */ var _platform_node_classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/node/classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373399
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
373400
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
373401
|
+
/* harmony import */ var _platform_node_classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/node/classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js");
|
|
372837
373402
|
|
|
372838
373403
|
|
|
372839
373404
|
|
|
@@ -372951,6 +373516,7 @@ function toFormData(obj, formData, options) {
|
|
|
372951
373516
|
const dots = options.dots;
|
|
372952
373517
|
const indexes = options.indexes;
|
|
372953
373518
|
const _Blob = options.Blob || (typeof Blob !== 'undefined' && Blob);
|
|
373519
|
+
const maxDepth = options.maxDepth === undefined ? 100 : options.maxDepth;
|
|
372954
373520
|
const useBlob = _Blob && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isSpecCompliantForm(formData);
|
|
372955
373521
|
|
|
372956
373522
|
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFunction(visitor)) {
|
|
@@ -373043,9 +373609,16 @@ function toFormData(obj, formData, options) {
|
|
|
373043
373609
|
isVisitable,
|
|
373044
373610
|
});
|
|
373045
373611
|
|
|
373046
|
-
function build(value, path) {
|
|
373612
|
+
function build(value, path, depth = 0) {
|
|
373047
373613
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(value)) return;
|
|
373048
373614
|
|
|
373615
|
+
if (depth > maxDepth) {
|
|
373616
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
373617
|
+
'Object is too deeply nested (' + depth + ' levels). Max depth: ' + maxDepth,
|
|
373618
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_FORM_DATA_DEPTH_EXCEEDED
|
|
373619
|
+
);
|
|
373620
|
+
}
|
|
373621
|
+
|
|
373049
373622
|
if (stack.indexOf(value) !== -1) {
|
|
373050
373623
|
throw Error('Circular reference detected in ' + path.join('.'));
|
|
373051
373624
|
}
|
|
@@ -373058,7 +373631,7 @@ function toFormData(obj, formData, options) {
|
|
|
373058
373631
|
visitor.call(formData, el, _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isString(key) ? key.trim() : key, path, exposedHelpers);
|
|
373059
373632
|
|
|
373060
373633
|
if (result === true) {
|
|
373061
|
-
build(el, path ? path.concat(key) : [key]);
|
|
373634
|
+
build(el, path ? path.concat(key) : [key], depth + 1);
|
|
373062
373635
|
}
|
|
373063
373636
|
});
|
|
373064
373637
|
|
|
@@ -373079,9 +373652,9 @@ function toFormData(obj, formData, options) {
|
|
|
373079
373652
|
|
|
373080
373653
|
/***/ }),
|
|
373081
373654
|
|
|
373082
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373655
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toURLEncodedForm.js":
|
|
373083
373656
|
/*!************************************************************************************************************!*\
|
|
373084
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373657
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
|
|
373085
373658
|
\************************************************************************************************************/
|
|
373086
373659
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373087
373660
|
|
|
@@ -373090,9 +373663,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373090
373663
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373091
373664
|
/* harmony export */ "default": () => (/* binding */ toURLEncodedForm)
|
|
373092
373665
|
/* harmony export */ });
|
|
373093
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373094
|
-
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373095
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373666
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js");
|
|
373667
|
+
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js");
|
|
373668
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js");
|
|
373096
373669
|
|
|
373097
373670
|
|
|
373098
373671
|
|
|
@@ -373116,9 +373689,9 @@ function toURLEncodedForm(data, options) {
|
|
|
373116
373689
|
|
|
373117
373690
|
/***/ }),
|
|
373118
373691
|
|
|
373119
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373692
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/trackStream.js":
|
|
373120
373693
|
/*!*******************************************************************************************************!*\
|
|
373121
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373694
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/trackStream.js ***!
|
|
373122
373695
|
\*******************************************************************************************************/
|
|
373123
373696
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373124
373697
|
|
|
@@ -373222,9 +373795,9 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
|
|
|
373222
373795
|
|
|
373223
373796
|
/***/ }),
|
|
373224
373797
|
|
|
373225
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373798
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/validator.js":
|
|
373226
373799
|
/*!*****************************************************************************************************!*\
|
|
373227
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373800
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/validator.js ***!
|
|
373228
373801
|
\*****************************************************************************************************/
|
|
373229
373802
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373230
373803
|
|
|
@@ -373233,8 +373806,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373233
373806
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373234
373807
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373235
373808
|
/* harmony export */ });
|
|
373236
|
-
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373237
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373809
|
+
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js");
|
|
373810
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js");
|
|
373238
373811
|
|
|
373239
373812
|
|
|
373240
373813
|
|
|
@@ -373323,7 +373896,9 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
373323
373896
|
let i = keys.length;
|
|
373324
373897
|
while (i-- > 0) {
|
|
373325
373898
|
const opt = keys[i];
|
|
373326
|
-
|
|
373899
|
+
// Use hasOwnProperty so a polluted Object.prototype.<opt> cannot supply
|
|
373900
|
+
// a non-function validator and cause a TypeError.
|
|
373901
|
+
const validator = Object.prototype.hasOwnProperty.call(schema, opt) ? schema[opt] : undefined;
|
|
373327
373902
|
if (validator) {
|
|
373328
373903
|
const value = options[opt];
|
|
373329
373904
|
const result = value === undefined || validator(value, opt, options);
|
|
@@ -373349,9 +373924,9 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
373349
373924
|
|
|
373350
373925
|
/***/ }),
|
|
373351
373926
|
|
|
373352
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373927
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/Blob.js":
|
|
373353
373928
|
/*!*****************************************************************************************************************!*\
|
|
373354
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373929
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/Blob.js ***!
|
|
373355
373930
|
\*****************************************************************************************************************/
|
|
373356
373931
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373357
373932
|
|
|
@@ -373367,9 +373942,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373367
373942
|
|
|
373368
373943
|
/***/ }),
|
|
373369
373944
|
|
|
373370
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373945
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/FormData.js":
|
|
373371
373946
|
/*!*********************************************************************************************************************!*\
|
|
373372
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373947
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/FormData.js ***!
|
|
373373
373948
|
\*********************************************************************************************************************/
|
|
373374
373949
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373375
373950
|
|
|
@@ -373385,9 +373960,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373385
373960
|
|
|
373386
373961
|
/***/ }),
|
|
373387
373962
|
|
|
373388
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373963
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js":
|
|
373389
373964
|
/*!****************************************************************************************************************************!*\
|
|
373390
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373965
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
|
|
373391
373966
|
\****************************************************************************************************************************/
|
|
373392
373967
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373393
373968
|
|
|
@@ -373396,7 +373971,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373396
373971
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373397
373972
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373398
373973
|
/* harmony export */ });
|
|
373399
|
-
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373974
|
+
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
373400
373975
|
|
|
373401
373976
|
|
|
373402
373977
|
|
|
@@ -373405,9 +373980,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373405
373980
|
|
|
373406
373981
|
/***/ }),
|
|
373407
373982
|
|
|
373408
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373983
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/index.js":
|
|
373409
373984
|
/*!**********************************************************************************************************!*\
|
|
373410
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373985
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/index.js ***!
|
|
373411
373986
|
\**********************************************************************************************************/
|
|
373412
373987
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373413
373988
|
|
|
@@ -373416,9 +373991,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373416
373991
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373417
373992
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373418
373993
|
/* harmony export */ });
|
|
373419
|
-
/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373420
|
-
/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373421
|
-
/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373994
|
+
/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js");
|
|
373995
|
+
/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/FormData.js");
|
|
373996
|
+
/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/Blob.js");
|
|
373422
373997
|
|
|
373423
373998
|
|
|
373424
373999
|
|
|
@@ -373436,9 +374011,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373436
374011
|
|
|
373437
374012
|
/***/ }),
|
|
373438
374013
|
|
|
373439
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374014
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/common/utils.js":
|
|
373440
374015
|
/*!*********************************************************************************************************!*\
|
|
373441
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374016
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/common/utils.js ***!
|
|
373442
374017
|
\*********************************************************************************************************/
|
|
373443
374018
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373444
374019
|
|
|
@@ -373501,9 +374076,9 @@ const origin = (hasBrowserEnv && window.location.href) || 'http://localhost';
|
|
|
373501
374076
|
|
|
373502
374077
|
/***/ }),
|
|
373503
374078
|
|
|
373504
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374079
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js":
|
|
373505
374080
|
/*!**************************************************************************************************!*\
|
|
373506
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374081
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js ***!
|
|
373507
374082
|
\**************************************************************************************************/
|
|
373508
374083
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373509
374084
|
|
|
@@ -373512,8 +374087,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373512
374087
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373513
374088
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373514
374089
|
/* harmony export */ });
|
|
373515
|
-
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373516
|
-
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374090
|
+
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/index.js");
|
|
374091
|
+
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/common/utils.js");
|
|
373517
374092
|
|
|
373518
374093
|
|
|
373519
374094
|
|
|
@@ -373525,9 +374100,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373525
374100
|
|
|
373526
374101
|
/***/ }),
|
|
373527
374102
|
|
|
373528
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374103
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js":
|
|
373529
374104
|
/*!*****************************************************************************************!*\
|
|
373530
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374105
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js ***!
|
|
373531
374106
|
\*****************************************************************************************/
|
|
373532
374107
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373533
374108
|
|
|
@@ -373536,7 +374111,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373536
374111
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373537
374112
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373538
374113
|
/* harmony export */ });
|
|
373539
|
-
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374114
|
+
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js");
|
|
373540
374115
|
|
|
373541
374116
|
|
|
373542
374117
|
|
|
@@ -373731,21 +374306,21 @@ const isFile = kindOfTest('File');
|
|
|
373731
374306
|
* also have a `name` and `type` attribute to specify filename and content type
|
|
373732
374307
|
*
|
|
373733
374308
|
* @see https://github.com/facebook/react-native/blob/26684cf3adf4094eb6c405d345a75bf8c7c0bf88/Libraries/Network/FormData.js#L68-L71
|
|
373734
|
-
*
|
|
374309
|
+
*
|
|
373735
374310
|
* @param {*} value The value to test
|
|
373736
|
-
*
|
|
374311
|
+
*
|
|
373737
374312
|
* @returns {boolean} True if value is a React Native Blob, otherwise false
|
|
373738
374313
|
*/
|
|
373739
374314
|
const isReactNativeBlob = (value) => {
|
|
373740
374315
|
return !!(value && typeof value.uri !== 'undefined');
|
|
373741
|
-
}
|
|
374316
|
+
};
|
|
373742
374317
|
|
|
373743
374318
|
/**
|
|
373744
374319
|
* Determine if environment is React Native
|
|
373745
374320
|
* ReactNative `FormData` has a non-standard `getParts()` method
|
|
373746
|
-
*
|
|
374321
|
+
*
|
|
373747
374322
|
* @param {*} formData The formData to test
|
|
373748
|
-
*
|
|
374323
|
+
*
|
|
373749
374324
|
* @returns {boolean} True if environment is React Native, otherwise false
|
|
373750
374325
|
*/
|
|
373751
374326
|
const isReactNative = (formData) => formData && typeof formData.getParts !== 'undefined';
|
|
@@ -373764,7 +374339,7 @@ const isBlob = kindOfTest('Blob');
|
|
|
373764
374339
|
*
|
|
373765
374340
|
* @param {*} val The value to test
|
|
373766
374341
|
*
|
|
373767
|
-
* @returns {boolean} True if value is a
|
|
374342
|
+
* @returns {boolean} True if value is a FileList, otherwise false
|
|
373768
374343
|
*/
|
|
373769
374344
|
const isFileList = kindOfTest('FileList');
|
|
373770
374345
|
|
|
@@ -373796,15 +374371,17 @@ const G = getGlobal();
|
|
|
373796
374371
|
const FormDataCtor = typeof G.FormData !== 'undefined' ? G.FormData : undefined;
|
|
373797
374372
|
|
|
373798
374373
|
const isFormData = (thing) => {
|
|
373799
|
-
|
|
373800
|
-
|
|
373801
|
-
|
|
373802
|
-
|
|
373803
|
-
|
|
373804
|
-
|
|
373805
|
-
|
|
373806
|
-
|
|
373807
|
-
|
|
374374
|
+
if (!thing) return false;
|
|
374375
|
+
if (FormDataCtor && thing instanceof FormDataCtor) return true;
|
|
374376
|
+
// Reject plain objects inheriting directly from Object.prototype so prototype-pollution gadgets can't spoof FormData.
|
|
374377
|
+
const proto = getPrototypeOf(thing);
|
|
374378
|
+
if (!proto || proto === Object.prototype) return false;
|
|
374379
|
+
if (!isFunction(thing.append)) return false;
|
|
374380
|
+
const kind = kindOf(thing);
|
|
374381
|
+
return (
|
|
374382
|
+
kind === 'formdata' ||
|
|
374383
|
+
// detect form-data instance
|
|
374384
|
+
(kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
|
|
373808
374385
|
);
|
|
373809
374386
|
};
|
|
373810
374387
|
|
|
@@ -373940,7 +374517,7 @@ const isContextDefined = (context) => !isUndefined(context) && context !== _glob
|
|
|
373940
374517
|
*
|
|
373941
374518
|
* @returns {Object} Result of all merge properties
|
|
373942
374519
|
*/
|
|
373943
|
-
function merge(
|
|
374520
|
+
function merge(...objs) {
|
|
373944
374521
|
const { caseless, skipUndefined } = (isContextDefined(this) && this) || {};
|
|
373945
374522
|
const result = {};
|
|
373946
374523
|
const assignValue = (val, key) => {
|
|
@@ -373950,8 +374527,12 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
373950
374527
|
}
|
|
373951
374528
|
|
|
373952
374529
|
const targetKey = (caseless && findKey(result, key)) || key;
|
|
373953
|
-
|
|
373954
|
-
|
|
374530
|
+
// Read via own-prop only — a bare `result[targetKey]` walks the prototype
|
|
374531
|
+
// chain, so a polluted Object.prototype value could surface here and get
|
|
374532
|
+
// copied into the merged result.
|
|
374533
|
+
const existing = hasOwnProperty(result, targetKey) ? result[targetKey] : undefined;
|
|
374534
|
+
if (isPlainObject(existing) && isPlainObject(val)) {
|
|
374535
|
+
result[targetKey] = merge(existing, val);
|
|
373955
374536
|
} else if (isPlainObject(val)) {
|
|
373956
374537
|
result[targetKey] = merge({}, val);
|
|
373957
374538
|
} else if (isArray(val)) {
|
|
@@ -373961,8 +374542,8 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
373961
374542
|
}
|
|
373962
374543
|
};
|
|
373963
374544
|
|
|
373964
|
-
for (let i = 0, l =
|
|
373965
|
-
|
|
374545
|
+
for (let i = 0, l = objs.length; i < l; i++) {
|
|
374546
|
+
objs[i] && forEach(objs[i], assignValue);
|
|
373966
374547
|
}
|
|
373967
374548
|
return result;
|
|
373968
374549
|
}
|
|
@@ -373984,6 +374565,9 @@ const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
|
373984
374565
|
(val, key) => {
|
|
373985
374566
|
if (thisArg && isFunction(val)) {
|
|
373986
374567
|
Object.defineProperty(a, key, {
|
|
374568
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot
|
|
374569
|
+
// hijack defineProperty's accessor-vs-data resolution.
|
|
374570
|
+
__proto__: null,
|
|
373987
374571
|
value: (0,_helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(val, thisArg),
|
|
373988
374572
|
writable: true,
|
|
373989
374573
|
enumerable: true,
|
|
@@ -373991,6 +374575,7 @@ const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
|
373991
374575
|
});
|
|
373992
374576
|
} else {
|
|
373993
374577
|
Object.defineProperty(a, key, {
|
|
374578
|
+
__proto__: null,
|
|
373994
374579
|
value: val,
|
|
373995
374580
|
writable: true,
|
|
373996
374581
|
enumerable: true,
|
|
@@ -374029,12 +374614,14 @@ const stripBOM = (content) => {
|
|
|
374029
374614
|
const inherits = (constructor, superConstructor, props, descriptors) => {
|
|
374030
374615
|
constructor.prototype = Object.create(superConstructor.prototype, descriptors);
|
|
374031
374616
|
Object.defineProperty(constructor.prototype, 'constructor', {
|
|
374617
|
+
__proto__: null,
|
|
374032
374618
|
value: constructor,
|
|
374033
374619
|
writable: true,
|
|
374034
374620
|
enumerable: false,
|
|
374035
374621
|
configurable: true,
|
|
374036
374622
|
});
|
|
374037
374623
|
Object.defineProperty(constructor, 'super', {
|
|
374624
|
+
__proto__: null,
|
|
374038
374625
|
value: superConstructor.prototype,
|
|
374039
374626
|
});
|
|
374040
374627
|
props && Object.assign(constructor.prototype, props);
|
|
@@ -374216,7 +374803,7 @@ const reduceDescriptors = (obj, reducer) => {
|
|
|
374216
374803
|
const freezeMethods = (obj) => {
|
|
374217
374804
|
reduceDescriptors(obj, (descriptor, name) => {
|
|
374218
374805
|
// skip restricted props in strict mode
|
|
374219
|
-
if (isFunction(obj) && ['arguments', 'caller', 'callee'].
|
|
374806
|
+
if (isFunction(obj) && ['arguments', 'caller', 'callee'].includes(name)) {
|
|
374220
374807
|
return false;
|
|
374221
374808
|
}
|
|
374222
374809
|
|
|
@@ -377734,7 +378321,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
377734
378321
|
/***/ ((module) => {
|
|
377735
378322
|
|
|
377736
378323
|
"use strict";
|
|
377737
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.9.
|
|
378324
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.9.2","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.9","@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
377738
378325
|
|
|
377739
378326
|
/***/ }),
|
|
377740
378327
|
|