@itwin/rpcinterface-full-stack-tests 5.9.0 → 5.9.1
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 +1291 -691
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -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) {
|
|
@@ -350459,7 +350628,7 @@ class TestContext {
|
|
|
350459
350628
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
350460
350629
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
350461
350630
|
await core_frontend_1.NoRenderApp.startup({
|
|
350462
|
-
applicationVersion: "5.9.
|
|
350631
|
+
applicationVersion: "5.9.1",
|
|
350463
350632
|
applicationId: this.settings.gprid,
|
|
350464
350633
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
350465
350634
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -353014,9 +353183,9 @@ const getClassName = (obj) => {
|
|
|
353014
353183
|
|
|
353015
353184
|
/***/ }),
|
|
353016
353185
|
|
|
353017
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353186
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
|
|
353018
353187
|
/*!*****************************************************************************************************************************************************!*\
|
|
353019
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353188
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
|
|
353020
353189
|
\*****************************************************************************************************************************************************/
|
|
353021
353190
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
353022
353191
|
|
|
@@ -353061,32 +353230,31 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
353061
353230
|
})();
|
|
353062
353231
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353063
353232
|
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");
|
|
353233
|
+
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"));
|
|
353234
|
+
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
353235
|
Object.defineProperty(exports, "ConcatenatedValue", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValue; } }));
|
|
353068
353236
|
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.
|
|
353237
|
+
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
353238
|
Object.defineProperty(exports, "createDefaultValueFormatter", ({ enumerable: true, get: function () { return Formatting_js_1.createDefaultValueFormatter; } }));
|
|
353071
353239
|
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.
|
|
353240
|
+
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
353241
|
Object.defineProperty(exports, "createDefaultInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createDefaultInstanceLabelSelectClauseFactory; } }));
|
|
353074
353242
|
Object.defineProperty(exports, "createClassBasedInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createClassBasedInstanceLabelSelectClauseFactory; } }));
|
|
353075
353243
|
Object.defineProperty(exports, "createBisInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createBisInstanceLabelSelectClauseFactory; } }));
|
|
353076
353244
|
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.
|
|
353245
|
+
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
353246
|
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.
|
|
353247
|
+
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
353248
|
Object.defineProperty(exports, "createCachingECClassHierarchyInspector", ({ enumerable: true, get: function () { return Metadata_js_1.createCachingECClassHierarchyInspector; } }));
|
|
353081
353249
|
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.
|
|
353250
|
+
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
353251
|
Object.defineProperty(exports, "createMainThreadReleaseOnTimePassedHandler", ({ enumerable: true, get: function () { return Utils_js_1.createMainThreadReleaseOnTimePassedHandler; } }));
|
|
353084
353252
|
Object.defineProperty(exports, "julianToDateTime", ({ enumerable: true, get: function () { return Utils_js_1.julianToDateTime; } }));
|
|
353085
353253
|
Object.defineProperty(exports, "normalizeFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.normalizeFullClassName; } }));
|
|
353086
353254
|
Object.defineProperty(exports, "parseFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.parseFullClassName; } }));
|
|
353087
353255
|
Object.defineProperty(exports, "releaseMainThread", ({ enumerable: true, get: function () { return Utils_js_1.releaseMainThread; } }));
|
|
353088
353256
|
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.
|
|
353257
|
+
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
353258
|
Object.defineProperty(exports, "InstanceKey", ({ enumerable: true, get: function () { return Values_js_1.InstanceKey; } }));
|
|
353091
353259
|
Object.defineProperty(exports, "PrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.PrimitiveValue; } }));
|
|
353092
353260
|
Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.TypedPrimitiveValue; } }));
|
|
@@ -353094,9 +353262,9 @@ Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get:
|
|
|
353094
353262
|
|
|
353095
353263
|
/***/ }),
|
|
353096
353264
|
|
|
353097
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353265
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
|
|
353098
353266
|
/*!**********************************************************************************************************************************************************!*\
|
|
353099
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353267
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
|
|
353100
353268
|
\**********************************************************************************************************************************************************/
|
|
353101
353269
|
/***/ ((__unused_webpack_module, exports) => {
|
|
353102
353270
|
|
|
@@ -353153,9 +353321,9 @@ var ConcatenatedValue;
|
|
|
353153
353321
|
|
|
353154
353322
|
/***/ }),
|
|
353155
353323
|
|
|
353156
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353324
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
|
|
353157
353325
|
/*!***************************************************************************************************************************************************!*\
|
|
353158
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353326
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
|
|
353159
353327
|
\***************************************************************************************************************************************************/
|
|
353160
353328
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353161
353329
|
|
|
@@ -353168,9 +353336,9 @@ var ConcatenatedValue;
|
|
|
353168
353336
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353169
353337
|
exports.formatConcatenatedValue = formatConcatenatedValue;
|
|
353170
353338
|
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.
|
|
353339
|
+
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");
|
|
353340
|
+
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");
|
|
353341
|
+
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
353342
|
/**
|
|
353175
353343
|
* Formats a concatenated value into a string, taking into account different types of `ConcatenatedValuePart` that
|
|
353176
353344
|
* the value consists of.
|
|
@@ -353187,10 +353355,7 @@ async function formatConcatenatedValue(props) {
|
|
|
353187
353355
|
partFormatter: async (part) => {
|
|
353188
353356
|
// strings are converted to typed strings
|
|
353189
353357
|
if (ConcatenatedValue_js_1.ConcatenatedValuePart.isString(part)) {
|
|
353190
|
-
part = {
|
|
353191
|
-
value: part,
|
|
353192
|
-
type: "String",
|
|
353193
|
-
};
|
|
353358
|
+
part = { value: part, type: "String" };
|
|
353194
353359
|
}
|
|
353195
353360
|
// finally, use provided value formatter to create a string from `TypedPrimitiveValue`
|
|
353196
353361
|
return valueFormatter(part);
|
|
@@ -353230,7 +353395,10 @@ function createDefaultValueFormatter() {
|
|
|
353230
353395
|
return result;
|
|
353231
353396
|
}
|
|
353232
353397
|
}
|
|
353233
|
-
(0, core_bentley_1.assert)(typeof value.value === "undefined" ||
|
|
353398
|
+
(0, core_bentley_1.assert)(typeof value.value === "undefined" ||
|
|
353399
|
+
typeof value.value === "boolean" ||
|
|
353400
|
+
typeof value.value === "number" ||
|
|
353401
|
+
typeof value.value === "string");
|
|
353234
353402
|
return value.value.toString();
|
|
353235
353403
|
};
|
|
353236
353404
|
}
|
|
@@ -353251,7 +353419,11 @@ function applyNumericFormatting(value) {
|
|
|
353251
353419
|
}
|
|
353252
353420
|
function applyDatesFormatting(value) {
|
|
353253
353421
|
function getDate(julianOrDate) {
|
|
353254
|
-
return typeof julianOrDate === "number"
|
|
353422
|
+
return typeof julianOrDate === "number"
|
|
353423
|
+
? (0, Utils_js_1.julianToDateTime)(julianOrDate)
|
|
353424
|
+
: typeof julianOrDate === "string"
|
|
353425
|
+
? new Date(julianOrDate)
|
|
353426
|
+
: julianOrDate;
|
|
353255
353427
|
}
|
|
353256
353428
|
if (value.type !== "DateTime") {
|
|
353257
353429
|
return undefined;
|
|
@@ -353277,9 +353449,9 @@ function applyPointsFormatting(value) {
|
|
|
353277
353449
|
|
|
353278
353450
|
/***/ }),
|
|
353279
353451
|
|
|
353280
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353452
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
|
|
353281
353453
|
/*!*************************************************************************************************************************************************************************!*\
|
|
353282
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353454
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
|
|
353283
353455
|
\*************************************************************************************************************************************************************************/
|
|
353284
353456
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353285
353457
|
|
|
@@ -353290,11 +353462,14 @@ function applyPointsFormatting(value) {
|
|
|
353290
353462
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
353291
353463
|
*--------------------------------------------------------------------------------------------*/
|
|
353292
353464
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353465
|
+
exports.ALIAS_PREFIX = void 0;
|
|
353293
353466
|
exports.parseInstanceLabel = parseInstanceLabel;
|
|
353294
353467
|
exports.createDefaultInstanceLabelSelectClauseFactory = createDefaultInstanceLabelSelectClauseFactory;
|
|
353295
353468
|
exports.createClassBasedInstanceLabelSelectClauseFactory = createClassBasedInstanceLabelSelectClauseFactory;
|
|
353296
353469
|
exports.createBisInstanceLabelSelectClauseFactory = createBisInstanceLabelSelectClauseFactory;
|
|
353297
|
-
const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353470
|
+
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");
|
|
353471
|
+
/** @internal */
|
|
353472
|
+
exports.ALIAS_PREFIX = "pres_";
|
|
353298
353473
|
/**
|
|
353299
353474
|
* Parses an instance label from query result into a string or a `ConcatenatedValue`. The latter type of result
|
|
353300
353475
|
* is expected when label selector is created using `IInstanceLabelSelectClauseFactory.createSelectClause` with
|
|
@@ -353327,6 +353502,7 @@ function parseInstanceLabel(value) {
|
|
|
353327
353502
|
* @public
|
|
353328
353503
|
*/
|
|
353329
353504
|
function createDefaultInstanceLabelSelectClauseFactory() {
|
|
353505
|
+
const alias = `${exports.ALIAS_PREFIX}c`;
|
|
353330
353506
|
return {
|
|
353331
353507
|
async createSelectClause(props) {
|
|
353332
353508
|
return `(
|
|
@@ -353334,14 +353510,14 @@ function createDefaultInstanceLabelSelectClauseFactory() {
|
|
|
353334
353510
|
${concatenate(props, [
|
|
353335
353511
|
{
|
|
353336
353512
|
selector: `COALESCE(
|
|
353337
|
-
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(
|
|
353338
|
-
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(
|
|
353513
|
+
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(alias, "DisplayLabel")},
|
|
353514
|
+
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(alias, "Name")}
|
|
353339
353515
|
)`,
|
|
353340
353516
|
},
|
|
353341
353517
|
...createECInstanceIdSuffixSelectors(props.classAlias),
|
|
353342
353518
|
])}
|
|
353343
|
-
FROM [meta].[ECClassDef] AS [
|
|
353344
|
-
WHERE [
|
|
353519
|
+
FROM [meta].[ECClassDef] AS [${alias}]
|
|
353520
|
+
WHERE [${alias}].[ECInstanceId] = ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(props.classAlias, "ECClassId")}
|
|
353345
353521
|
)`;
|
|
353346
353522
|
},
|
|
353347
353523
|
};
|
|
@@ -353377,14 +353553,13 @@ function createClassBasedInstanceLabelSelectClauseFactory(props) {
|
|
|
353377
353553
|
if (labelClausesByClass.length === 0) {
|
|
353378
353554
|
return defaultClauseFactory.createSelectClause(clauseProps);
|
|
353379
353555
|
}
|
|
353380
|
-
const labelClausePromises = clauseProps.className
|
|
353556
|
+
const labelClausePromises = clauseProps.className
|
|
353557
|
+
? await getLabelClausesForClass(clauseProps.className)
|
|
353558
|
+
: labelClausesByClass;
|
|
353381
353559
|
if (labelClausePromises.length === 0) {
|
|
353382
353560
|
return defaultClauseFactory.createSelectClause(clauseProps);
|
|
353383
353561
|
}
|
|
353384
|
-
const labelClauses = await Promise.all(labelClausePromises.map(async ({ className, clause }) => ({
|
|
353385
|
-
className,
|
|
353386
|
-
clause: await clause(clauseProps),
|
|
353387
|
-
})));
|
|
353562
|
+
const labelClauses = await Promise.all(labelClausePromises.map(async ({ className, clause }) => ({ className, clause: await clause(clauseProps) })));
|
|
353388
353563
|
return `COALESCE(
|
|
353389
353564
|
${labelClauses
|
|
353390
353565
|
.map(({ className, clause }) => `
|
|
@@ -353411,12 +353586,16 @@ function createBisInstanceLabelSelectClauseFactory(props) {
|
|
|
353411
353586
|
classHierarchyInspector: props.classHierarchyInspector,
|
|
353412
353587
|
clauses,
|
|
353413
353588
|
});
|
|
353589
|
+
const elementAlias = `${exports.ALIAS_PREFIX}e`;
|
|
353414
353590
|
clauses.push({
|
|
353415
353591
|
className: "BisCore.GeometricElement",
|
|
353416
353592
|
clause: async ({ classAlias, ...rest }) => `
|
|
353417
353593
|
COALESCE(
|
|
353418
353594
|
${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "CodeValue")},
|
|
353419
|
-
${concatenate(rest, [
|
|
353595
|
+
${concatenate(rest, [
|
|
353596
|
+
{ selector: (0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "UserLabel") },
|
|
353597
|
+
...createECInstanceIdSuffixSelectors(classAlias),
|
|
353598
|
+
], `${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "UserLabel")} IS NOT NULL`)}
|
|
353420
353599
|
)
|
|
353421
353600
|
`,
|
|
353422
353601
|
}, {
|
|
@@ -353430,9 +353609,9 @@ function createBisInstanceLabelSelectClauseFactory(props) {
|
|
|
353430
353609
|
}, {
|
|
353431
353610
|
className: "BisCore.Model",
|
|
353432
353611
|
clause: async ({ classAlias, ...rest }) => `(
|
|
353433
|
-
SELECT ${await factory.createSelectClause({ ...rest, classAlias:
|
|
353434
|
-
FROM [bis].[Element] AS [
|
|
353435
|
-
WHERE [
|
|
353612
|
+
SELECT ${await factory.createSelectClause({ ...rest, classAlias: elementAlias, className: "BisCore.Element" })}
|
|
353613
|
+
FROM [bis].[Element] AS [${elementAlias}]
|
|
353614
|
+
WHERE [${elementAlias}].[ECInstanceId] = ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ModeledElement", "Id")}
|
|
353436
353615
|
)`,
|
|
353437
353616
|
});
|
|
353438
353617
|
return factory;
|
|
@@ -353442,7 +353621,9 @@ function createECInstanceIdSuffixSelectors(classAlias) {
|
|
|
353442
353621
|
{ value: ` [`, type: "String" },
|
|
353443
353622
|
{ selector: `CAST(base36(${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ECInstanceId")} >> 40) AS TEXT)` },
|
|
353444
353623
|
{ value: `-`, type: "String" },
|
|
353445
|
-
{
|
|
353624
|
+
{
|
|
353625
|
+
selector: `CAST(base36(${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(classAlias, "ECInstanceId")} & ((1 << 40) - 1)) AS TEXT)`,
|
|
353626
|
+
},
|
|
353446
353627
|
{ value: `]`, type: "String" },
|
|
353447
353628
|
];
|
|
353448
353629
|
}
|
|
@@ -353453,9 +353634,9 @@ function concatenate(props, selectors, checkSelector) {
|
|
|
353453
353634
|
|
|
353454
353635
|
/***/ }),
|
|
353455
353636
|
|
|
353456
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353637
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
|
|
353457
353638
|
/*!************************************************************************************************************************************************!*\
|
|
353458
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353639
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
|
|
353459
353640
|
\************************************************************************************************************************************************/
|
|
353460
353641
|
/***/ ((__unused_webpack_module, exports) => {
|
|
353461
353642
|
|
|
@@ -353484,9 +353665,9 @@ exports.NOOP_LOGGER = {
|
|
|
353484
353665
|
|
|
353485
353666
|
/***/ }),
|
|
353486
353667
|
|
|
353487
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353668
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
|
|
353488
353669
|
/*!*************************************************************************************************************************************************!*\
|
|
353489
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353670
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
|
|
353490
353671
|
\*************************************************************************************************************************************************/
|
|
353491
353672
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353492
353673
|
|
|
@@ -353499,8 +353680,8 @@ exports.NOOP_LOGGER = {
|
|
|
353499
353680
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353500
353681
|
exports.createCachingECClassHierarchyInspector = createCachingECClassHierarchyInspector;
|
|
353501
353682
|
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.
|
|
353683
|
+
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");
|
|
353684
|
+
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
353685
|
/**
|
|
353505
353686
|
* Creates a new `ECClassHierarchyInspector` that caches results of `derivesFrom` calls.
|
|
353506
353687
|
* @public
|
|
@@ -353515,7 +353696,10 @@ function createCachingECClassHierarchyInspector(props) {
|
|
|
353515
353696
|
const cacheKey = createCacheKey(derivedClassFullName, candidateBaseClassFullName);
|
|
353516
353697
|
let result = map.get(cacheKey);
|
|
353517
353698
|
if (result === undefined) {
|
|
353518
|
-
result = Promise.all([
|
|
353699
|
+
result = Promise.all([
|
|
353700
|
+
getClass(props.schemaProvider, derivedClassFullName),
|
|
353701
|
+
getClass(props.schemaProvider, candidateBaseClassFullName),
|
|
353702
|
+
]).then(async ([derivedClass, baseClass]) => {
|
|
353519
353703
|
const resolvedResult = await derivedClass.is(baseClass);
|
|
353520
353704
|
map.set(cacheKey, resolvedResult);
|
|
353521
353705
|
return resolvedResult;
|
|
@@ -353547,9 +353731,9 @@ async function getClass(schemaProvider, fullClassName) {
|
|
|
353547
353731
|
|
|
353548
353732
|
/***/ }),
|
|
353549
353733
|
|
|
353550
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353734
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
|
|
353551
353735
|
/*!**********************************************************************************************************************************************!*\
|
|
353552
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353736
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
|
|
353553
353737
|
\**********************************************************************************************************************************************/
|
|
353554
353738
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353555
353739
|
|
|
@@ -353566,7 +353750,7 @@ exports.trimWhitespace = trimWhitespace;
|
|
|
353566
353750
|
exports.releaseMainThread = releaseMainThread;
|
|
353567
353751
|
exports.createMainThreadReleaseOnTimePassedHandler = createMainThreadReleaseOnTimePassedHandler;
|
|
353568
353752
|
exports.julianToDateTime = julianToDateTime;
|
|
353569
|
-
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.
|
|
353753
|
+
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
353754
|
/**
|
|
353571
353755
|
* An utility to parse schema and class names from full class name, where
|
|
353572
353756
|
* schema and class names are separated by either `:` or `.`.
|
|
@@ -353653,9 +353837,9 @@ function julianToDateTime(julianDate) {
|
|
|
353653
353837
|
|
|
353654
353838
|
/***/ }),
|
|
353655
353839
|
|
|
353656
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353840
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
|
|
353657
353841
|
/*!***********************************************************************************************************************************************!*\
|
|
353658
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353842
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
|
|
353659
353843
|
\***********************************************************************************************************************************************/
|
|
353660
353844
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353661
353845
|
|
|
@@ -353667,7 +353851,7 @@ function julianToDateTime(julianDate) {
|
|
|
353667
353851
|
*--------------------------------------------------------------------------------------------*/
|
|
353668
353852
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353669
353853
|
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.
|
|
353854
|
+
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
353855
|
/** @public */
|
|
353672
353856
|
var InstanceKey;
|
|
353673
353857
|
(function (InstanceKey) {
|
|
@@ -353739,75 +353923,42 @@ var TypedPrimitiveValue;
|
|
|
353739
353923
|
case "Integer":
|
|
353740
353924
|
case "Long":
|
|
353741
353925
|
if (typeof value === "number") {
|
|
353742
|
-
return {
|
|
353743
|
-
type,
|
|
353744
|
-
extendedType,
|
|
353745
|
-
value,
|
|
353746
|
-
};
|
|
353926
|
+
return { type, extendedType, value };
|
|
353747
353927
|
}
|
|
353748
353928
|
break;
|
|
353749
353929
|
case "Double":
|
|
353750
353930
|
if (typeof value === "number") {
|
|
353751
|
-
return {
|
|
353752
|
-
type,
|
|
353753
|
-
koqName,
|
|
353754
|
-
extendedType,
|
|
353755
|
-
value,
|
|
353756
|
-
};
|
|
353931
|
+
return { type, koqName, extendedType, value };
|
|
353757
353932
|
}
|
|
353758
353933
|
break;
|
|
353759
353934
|
case "Boolean":
|
|
353760
353935
|
if (typeof value === "boolean") {
|
|
353761
|
-
return {
|
|
353762
|
-
type,
|
|
353763
|
-
extendedType,
|
|
353764
|
-
value,
|
|
353765
|
-
};
|
|
353936
|
+
return { type, extendedType, value };
|
|
353766
353937
|
}
|
|
353767
353938
|
break;
|
|
353768
353939
|
case "Id":
|
|
353769
353940
|
if (typeof value === "string" && core_bentley_1.Id64.isId64(value)) {
|
|
353770
|
-
return {
|
|
353771
|
-
type,
|
|
353772
|
-
extendedType,
|
|
353773
|
-
value,
|
|
353774
|
-
};
|
|
353941
|
+
return { type, extendedType, value };
|
|
353775
353942
|
}
|
|
353776
353943
|
break;
|
|
353777
353944
|
case "String":
|
|
353778
353945
|
if (typeof value === "string") {
|
|
353779
|
-
return {
|
|
353780
|
-
type,
|
|
353781
|
-
extendedType,
|
|
353782
|
-
value,
|
|
353783
|
-
};
|
|
353946
|
+
return { type, extendedType, value };
|
|
353784
353947
|
}
|
|
353785
353948
|
break;
|
|
353786
353949
|
case "DateTime":
|
|
353787
353950
|
if (typeof value === "string" || typeof value === "number" || value instanceof Date) {
|
|
353788
|
-
return {
|
|
353789
|
-
type,
|
|
353790
|
-
extendedType,
|
|
353791
|
-
value,
|
|
353792
|
-
};
|
|
353951
|
+
return { type, extendedType, value };
|
|
353793
353952
|
}
|
|
353794
353953
|
break;
|
|
353795
353954
|
case "Point3d":
|
|
353796
353955
|
if (PrimitiveValue.isPoint3d(value)) {
|
|
353797
|
-
return {
|
|
353798
|
-
type,
|
|
353799
|
-
extendedType,
|
|
353800
|
-
value,
|
|
353801
|
-
};
|
|
353956
|
+
return { type, extendedType, value };
|
|
353802
353957
|
}
|
|
353803
353958
|
break;
|
|
353804
353959
|
case "Point2d":
|
|
353805
353960
|
if (PrimitiveValue.isPoint2d(value)) {
|
|
353806
|
-
return {
|
|
353807
|
-
type,
|
|
353808
|
-
extendedType,
|
|
353809
|
-
value,
|
|
353810
|
-
};
|
|
353961
|
+
return { type, extendedType, value };
|
|
353811
353962
|
}
|
|
353812
353963
|
break;
|
|
353813
353964
|
}
|
|
@@ -353819,9 +353970,9 @@ var TypedPrimitiveValue;
|
|
|
353819
353970
|
|
|
353820
353971
|
/***/ }),
|
|
353821
353972
|
|
|
353822
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353973
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
|
|
353823
353974
|
/*!*************************************************************************************************************************************************************************!*\
|
|
353824
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
353975
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
|
|
353825
353976
|
\*************************************************************************************************************************************************************************/
|
|
353826
353977
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353827
353978
|
|
|
@@ -353833,8 +353984,8 @@ var TypedPrimitiveValue;
|
|
|
353833
353984
|
*--------------------------------------------------------------------------------------------*/
|
|
353834
353985
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
353835
353986
|
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.
|
|
353987
|
+
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");
|
|
353988
|
+
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
353989
|
/**
|
|
353839
353990
|
* Creates an ECSQL JOIN snippet for given relationships' path.
|
|
353840
353991
|
*
|
|
@@ -353887,11 +354038,7 @@ async function createRelationshipPathJoinClause(props) {
|
|
|
353887
354038
|
${getJoinClause(step.joinType)} ${getClassSelectClause(step.target, step.targetAlias)}
|
|
353888
354039
|
ON ${relationshipJoinPropertyNames.this} = ${relationshipJoinPropertyNames.next}
|
|
353889
354040
|
`;
|
|
353890
|
-
prev = {
|
|
353891
|
-
alias: step.targetAlias,
|
|
353892
|
-
className: step.target.fullName,
|
|
353893
|
-
joinPropertyName: "ECInstanceId",
|
|
353894
|
-
};
|
|
354041
|
+
prev = { alias: step.targetAlias, className: step.target.fullName, joinPropertyName: "ECInstanceId" };
|
|
353895
354042
|
}
|
|
353896
354043
|
else {
|
|
353897
354044
|
const relationshipJoinPropertyNames = !step.relationshipReverse
|
|
@@ -353922,11 +354069,7 @@ async function createRelationshipPathJoinClause(props) {
|
|
|
353922
354069
|
ON ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(step.targetAlias, "ECInstanceId")}
|
|
353923
354070
|
= ${(0, ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector)(step.relationshipAlias, relationshipJoinPropertyNames.next)}
|
|
353924
354071
|
`;
|
|
353925
|
-
prev = {
|
|
353926
|
-
alias: step.targetAlias,
|
|
353927
|
-
className: step.target.fullName,
|
|
353928
|
-
joinPropertyName: "ECInstanceId",
|
|
353929
|
-
};
|
|
354072
|
+
prev = { alias: step.targetAlias, className: step.target.fullName, joinPropertyName: "ECInstanceId" };
|
|
353930
354073
|
}
|
|
353931
354074
|
}
|
|
353932
354075
|
return clause;
|
|
@@ -353945,13 +354088,17 @@ async function getNavigationProperty(step) {
|
|
|
353945
354088
|
const target = !step.relationshipReverse ? step.target : step.source;
|
|
353946
354089
|
for (const prop of await source.getProperties()) {
|
|
353947
354090
|
/* v8 ignore else -- @preserve */
|
|
353948
|
-
if (prop.isNavigation() &&
|
|
354091
|
+
if (prop.isNavigation() &&
|
|
354092
|
+
prop.direction === "Forward" &&
|
|
354093
|
+
(await prop.relationshipClass).fullName === step.relationship.fullName) {
|
|
353949
354094
|
return prop;
|
|
353950
354095
|
}
|
|
353951
354096
|
}
|
|
353952
354097
|
for (const prop of await target.getProperties()) {
|
|
353953
354098
|
/* v8 ignore else -- @preserve */
|
|
353954
|
-
if (prop.isNavigation() &&
|
|
354099
|
+
if (prop.isNavigation() &&
|
|
354100
|
+
prop.direction === "Backward" &&
|
|
354101
|
+
(await prop.relationshipClass).fullName === step.relationship.fullName) {
|
|
353955
354102
|
return prop;
|
|
353956
354103
|
}
|
|
353957
354104
|
}
|
|
@@ -353971,9 +354118,9 @@ function getClassSelectClause(ecClass, alias) {
|
|
|
353971
354118
|
|
|
353972
354119
|
/***/ }),
|
|
353973
354120
|
|
|
353974
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354121
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
|
|
353975
354122
|
/*!**********************************************************************************************************************************************************************************!*\
|
|
353976
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354123
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
|
|
353977
354124
|
\**********************************************************************************************************************************************************************************/
|
|
353978
354125
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
353979
354126
|
|
|
@@ -353992,9 +354139,9 @@ exports.createInstanceKeySelector = createInstanceKeySelector;
|
|
|
353992
354139
|
exports.createNullableSelector = createNullableSelector;
|
|
353993
354140
|
exports.createConcatenatedValueJsonSelector = createConcatenatedValueJsonSelector;
|
|
353994
354141
|
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.
|
|
354142
|
+
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");
|
|
354143
|
+
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");
|
|
354144
|
+
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
354145
|
/** @public */
|
|
353999
354146
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
354000
354147
|
var TypedValueSelectClauseProps;
|
|
@@ -354213,7 +354360,9 @@ function createPrimitiveValueJsonSelector(value) {
|
|
|
354213
354360
|
* @public
|
|
354214
354361
|
*/
|
|
354215
354362
|
function createConcatenatedValueStringSelector(selectors, checkSelector) {
|
|
354216
|
-
const combinedSelectors = selectors.length
|
|
354363
|
+
const combinedSelectors = selectors.length
|
|
354364
|
+
? selectors.map((sel) => createTypedValueStringSelector(sel)).join(" || ")
|
|
354365
|
+
: "''";
|
|
354217
354366
|
if (checkSelector) {
|
|
354218
354367
|
return createNullableSelector({ checkSelector, valueSelector: combinedSelectors });
|
|
354219
354368
|
}
|
|
@@ -354241,9 +354390,9 @@ function createPrimitiveValueStringSelector(value) {
|
|
|
354241
354390
|
|
|
354242
354391
|
/***/ }),
|
|
354243
354392
|
|
|
354244
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354393
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
|
|
354245
354394
|
/*!*************************************************************************************************************************************************************!*\
|
|
354246
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.
|
|
354395
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.12/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
|
|
354247
354396
|
\*************************************************************************************************************************************************************/
|
|
354248
354397
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
354249
354398
|
|
|
@@ -354255,7 +354404,7 @@ function createPrimitiveValueStringSelector(value) {
|
|
|
354255
354404
|
*--------------------------------------------------------------------------------------------*/
|
|
354256
354405
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
354257
354406
|
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.
|
|
354407
|
+
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
354408
|
Object.defineProperty(exports, "createRawPropertyValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector; } }));
|
|
354260
354409
|
Object.defineProperty(exports, "createRawPrimitiveValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPrimitiveValueSelector; } }));
|
|
354261
354410
|
Object.defineProperty(exports, "createNullableSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createNullableSelector; } }));
|
|
@@ -354263,7 +354412,7 @@ Object.defineProperty(exports, "createConcatenatedValueJsonSelector", ({ enumera
|
|
|
354263
354412
|
Object.defineProperty(exports, "createConcatenatedValueStringSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createConcatenatedValueStringSelector; } }));
|
|
354264
354413
|
Object.defineProperty(exports, "createInstanceKeySelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createInstanceKeySelector; } }));
|
|
354265
354414
|
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.
|
|
354415
|
+
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
354416
|
Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable: true, get: function () { return ECSqlJoinSnippets_js_1.createRelationshipPathJoinClause; } }));
|
|
354268
354417
|
|
|
354269
354418
|
|
|
@@ -355952,7 +356101,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
355952
356101
|
exports.createHiliteSetProvider = createHiliteSetProvider;
|
|
355953
356102
|
const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
|
|
355954
356103
|
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.
|
|
356104
|
+
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
356105
|
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
356106
|
const HILITE_SET_EMIT_FREQUENCY = 20;
|
|
355958
356107
|
/**
|
|
@@ -356305,7 +356454,7 @@ async function* executeQuery(queryExecutor, query) {
|
|
|
356305
356454
|
*--------------------------------------------------------------------------------------------*/
|
|
356306
356455
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
356307
356456
|
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.
|
|
356457
|
+
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
356458
|
/** @public */
|
|
356310
356459
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
356311
356460
|
var Selectable;
|
|
@@ -356907,7 +357056,7 @@ exports.genericExecuteQuery = genericExecuteQuery;
|
|
|
356907
357056
|
exports.releaseMainThreadOnItemsCount = releaseMainThreadOnItemsCount;
|
|
356908
357057
|
exports.safeDispose = safeDispose;
|
|
356909
357058
|
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.
|
|
357059
|
+
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
357060
|
/**
|
|
356912
357061
|
* Forms ECSql bindings from given ID's.
|
|
356913
357062
|
* @internal
|
|
@@ -369084,9 +369233,9 @@ function _unsupportedIterableToArray(r, a) {
|
|
|
369084
369233
|
|
|
369085
369234
|
/***/ }),
|
|
369086
369235
|
|
|
369087
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369236
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/index.js":
|
|
369088
369237
|
/*!*************************************************************************************!*\
|
|
369089
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369238
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/index.js ***!
|
|
369090
369239
|
\*************************************************************************************/
|
|
369091
369240
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369092
369241
|
|
|
@@ -369102,6 +369251,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369102
369251
|
/* harmony export */ HttpStatusCode: () => (/* binding */ HttpStatusCode),
|
|
369103
369252
|
/* harmony export */ VERSION: () => (/* binding */ VERSION),
|
|
369104
369253
|
/* harmony export */ all: () => (/* binding */ all),
|
|
369254
|
+
/* harmony export */ create: () => (/* binding */ create),
|
|
369105
369255
|
/* harmony export */ "default": () => (/* reexport safe */ _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__["default"]),
|
|
369106
369256
|
/* harmony export */ formToJSON: () => (/* binding */ formToJSON),
|
|
369107
369257
|
/* harmony export */ getAdapter: () => (/* binding */ getAdapter),
|
|
@@ -369111,7 +369261,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369111
369261
|
/* harmony export */ spread: () => (/* binding */ spread),
|
|
369112
369262
|
/* harmony export */ toFormData: () => (/* binding */ toFormData)
|
|
369113
369263
|
/* 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.
|
|
369264
|
+
/* 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
369265
|
|
|
369116
369266
|
|
|
369117
369267
|
// This module is intended to unwrap Axios default export as named.
|
|
@@ -369134,6 +369284,7 @@ const {
|
|
|
369134
369284
|
formToJSON,
|
|
369135
369285
|
getAdapter,
|
|
369136
369286
|
mergeConfig,
|
|
369287
|
+
create,
|
|
369137
369288
|
} = _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369138
369289
|
|
|
369139
369290
|
|
|
@@ -369141,9 +369292,9 @@ const {
|
|
|
369141
369292
|
|
|
369142
369293
|
/***/ }),
|
|
369143
369294
|
|
|
369144
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369295
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js":
|
|
369145
369296
|
/*!*****************************************************************************************************!*\
|
|
369146
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369297
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/adapters.js ***!
|
|
369147
369298
|
\*****************************************************************************************************/
|
|
369148
369299
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369149
369300
|
|
|
@@ -369152,11 +369303,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369152
369303
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369153
369304
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369154
369305
|
/* 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.
|
|
369306
|
+
/* 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");
|
|
369307
|
+
/* 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");
|
|
369308
|
+
/* 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");
|
|
369309
|
+
/* 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");
|
|
369310
|
+
/* 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
369311
|
|
|
369161
369312
|
|
|
369162
369313
|
|
|
@@ -369184,11 +369335,13 @@ const knownAdapters = {
|
|
|
369184
369335
|
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(knownAdapters, (fn, value) => {
|
|
369185
369336
|
if (fn) {
|
|
369186
369337
|
try {
|
|
369187
|
-
Object.
|
|
369338
|
+
// Null-proto descriptors so a polluted Object.prototype.get cannot turn
|
|
369339
|
+
// these data descriptors into accessor descriptors on the way in.
|
|
369340
|
+
Object.defineProperty(fn, 'name', { __proto__: null, value });
|
|
369188
369341
|
} catch (e) {
|
|
369189
369342
|
// eslint-disable-next-line no-empty
|
|
369190
369343
|
}
|
|
369191
|
-
Object.defineProperty(fn, 'adapterName', { value });
|
|
369344
|
+
Object.defineProperty(fn, 'adapterName', { __proto__: null, value });
|
|
369192
369345
|
}
|
|
369193
369346
|
});
|
|
369194
369347
|
|
|
@@ -369291,9 +369444,9 @@ function getAdapter(adapters, config) {
|
|
|
369291
369444
|
|
|
369292
369445
|
/***/ }),
|
|
369293
369446
|
|
|
369294
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369447
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/fetch.js":
|
|
369295
369448
|
/*!**************************************************************************************************!*\
|
|
369296
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369449
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/fetch.js ***!
|
|
369297
369450
|
\**************************************************************************************************/
|
|
369298
369451
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369299
369452
|
|
|
@@ -369303,15 +369456,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369303
369456
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
369304
369457
|
/* harmony export */ getFetch: () => (/* binding */ getFetch)
|
|
369305
369458
|
/* 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
|
|
369459
|
+
/* 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");
|
|
369460
|
+
/* 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");
|
|
369461
|
+
/* 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");
|
|
369462
|
+
/* 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");
|
|
369463
|
+
/* 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");
|
|
369464
|
+
/* 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");
|
|
369465
|
+
/* 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");
|
|
369466
|
+
/* 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");
|
|
369467
|
+
/* 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");
|
|
369468
|
+
/* 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");
|
|
369469
|
+
/* 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
369470
|
|
|
369316
369471
|
|
|
369317
369472
|
|
|
@@ -369322,16 +369477,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369322
369477
|
|
|
369323
369478
|
|
|
369324
369479
|
|
|
369325
|
-
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
369326
369480
|
|
|
369327
|
-
const { isFunction } = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369328
369481
|
|
|
369329
|
-
const
|
|
369330
|
-
Request,
|
|
369331
|
-
Response,
|
|
369332
|
-
}))(_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].global);
|
|
369482
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
369333
369483
|
|
|
369334
|
-
const {
|
|
369484
|
+
const { isFunction } = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"];
|
|
369335
369485
|
|
|
369336
369486
|
const test = (fn, ...args) => {
|
|
369337
369487
|
try {
|
|
@@ -369342,11 +369492,17 @@ const test = (fn, ...args) => {
|
|
|
369342
369492
|
};
|
|
369343
369493
|
|
|
369344
369494
|
const factory = (env) => {
|
|
369495
|
+
const globalObject = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].global ?? globalThis;
|
|
369496
|
+
const { ReadableStream, TextEncoder } = globalObject;
|
|
369497
|
+
|
|
369345
369498
|
env = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].merge.call(
|
|
369346
369499
|
{
|
|
369347
369500
|
skipUndefined: true,
|
|
369348
369501
|
},
|
|
369349
|
-
|
|
369502
|
+
{
|
|
369503
|
+
Request: globalObject.Request,
|
|
369504
|
+
Response: globalObject.Response,
|
|
369505
|
+
},
|
|
369350
369506
|
env
|
|
369351
369507
|
);
|
|
369352
369508
|
|
|
@@ -369376,18 +369532,20 @@ const factory = (env) => {
|
|
|
369376
369532
|
test(() => {
|
|
369377
369533
|
let duplexAccessed = false;
|
|
369378
369534
|
|
|
369379
|
-
const
|
|
369380
|
-
|
|
369381
|
-
const hasContentType = new Request(_platform_index_js__WEBPACK_IMPORTED_MODULE_1__["default"].origin, {
|
|
369382
|
-
body,
|
|
369535
|
+
const request = new Request(_platform_index_js__WEBPACK_IMPORTED_MODULE_1__["default"].origin, {
|
|
369536
|
+
body: new ReadableStream(),
|
|
369383
369537
|
method: 'POST',
|
|
369384
369538
|
get duplex() {
|
|
369385
369539
|
duplexAccessed = true;
|
|
369386
369540
|
return 'half';
|
|
369387
369541
|
},
|
|
369388
|
-
})
|
|
369542
|
+
});
|
|
369389
369543
|
|
|
369390
|
-
|
|
369544
|
+
const hasContentType = request.headers.has('Content-Type');
|
|
369545
|
+
|
|
369546
|
+
if (request.body != null) {
|
|
369547
|
+
request.body.cancel();
|
|
369548
|
+
}
|
|
369391
369549
|
|
|
369392
369550
|
return duplexAccessed && !hasContentType;
|
|
369393
369551
|
});
|
|
@@ -369471,8 +369629,13 @@ const factory = (env) => {
|
|
|
369471
369629
|
headers,
|
|
369472
369630
|
withCredentials = 'same-origin',
|
|
369473
369631
|
fetchOptions,
|
|
369632
|
+
maxContentLength,
|
|
369633
|
+
maxBodyLength,
|
|
369474
369634
|
} = (0,_helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__["default"])(config);
|
|
369475
369635
|
|
|
369636
|
+
const hasMaxContentLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isNumber(maxContentLength) && maxContentLength > -1;
|
|
369637
|
+
const hasMaxBodyLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isNumber(maxBodyLength) && maxBodyLength > -1;
|
|
369638
|
+
|
|
369476
369639
|
let _fetch = envFetch || fetch;
|
|
369477
369640
|
|
|
369478
369641
|
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
|
@@ -369494,6 +369657,41 @@ const factory = (env) => {
|
|
|
369494
369657
|
let requestContentLength;
|
|
369495
369658
|
|
|
369496
369659
|
try {
|
|
369660
|
+
// Enforce maxContentLength for data: URLs up-front so we never materialize
|
|
369661
|
+
// an oversized payload. The HTTP adapter applies the same check (see http.js
|
|
369662
|
+
// "if (protocol === 'data:')" branch).
|
|
369663
|
+
if (hasMaxContentLength && typeof url === 'string' && url.startsWith('data:')) {
|
|
369664
|
+
const estimated = (0,_helpers_estimateDataURLDecodedBytes_js__WEBPACK_IMPORTED_MODULE_5__["default"])(url);
|
|
369665
|
+
if (estimated > maxContentLength) {
|
|
369666
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369667
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369668
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369669
|
+
config,
|
|
369670
|
+
request
|
|
369671
|
+
);
|
|
369672
|
+
}
|
|
369673
|
+
}
|
|
369674
|
+
|
|
369675
|
+
// Enforce maxBodyLength against the outbound request body before dispatch.
|
|
369676
|
+
// Mirrors http.js behavior (ERR_BAD_REQUEST / 'Request body larger than
|
|
369677
|
+
// maxBodyLength limit'). Skip when the body length cannot be determined
|
|
369678
|
+
// (e.g. a live ReadableStream supplied by the caller).
|
|
369679
|
+
if (hasMaxBodyLength && method !== 'get' && method !== 'head') {
|
|
369680
|
+
const outboundLength = await resolveBodyLength(headers, data);
|
|
369681
|
+
if (
|
|
369682
|
+
typeof outboundLength === 'number' &&
|
|
369683
|
+
isFinite(outboundLength) &&
|
|
369684
|
+
outboundLength > maxBodyLength
|
|
369685
|
+
) {
|
|
369686
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369687
|
+
'Request body larger than maxBodyLength limit',
|
|
369688
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_REQUEST,
|
|
369689
|
+
config,
|
|
369690
|
+
request
|
|
369691
|
+
);
|
|
369692
|
+
}
|
|
369693
|
+
}
|
|
369694
|
+
|
|
369497
369695
|
if (
|
|
369498
369696
|
onUploadProgress &&
|
|
369499
369697
|
supportsRequestStream &&
|
|
@@ -369514,12 +369712,12 @@ const factory = (env) => {
|
|
|
369514
369712
|
}
|
|
369515
369713
|
|
|
369516
369714
|
if (_request.body) {
|
|
369517
|
-
const [onProgress, flush] = (0,
|
|
369715
|
+
const [onProgress, flush] = (0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventDecorator)(
|
|
369518
369716
|
requestContentLength,
|
|
369519
|
-
(0,
|
|
369717
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventReducer)((0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.asyncDecorator)(onUploadProgress))
|
|
369520
369718
|
);
|
|
369521
369719
|
|
|
369522
|
-
data = (0,
|
|
369720
|
+
data = (0,_helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_7__.trackStream)(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
369523
369721
|
}
|
|
369524
369722
|
}
|
|
369525
369723
|
|
|
@@ -369531,6 +369729,22 @@ const factory = (env) => {
|
|
|
369531
369729
|
// see https://github.com/cloudflare/workerd/issues/902
|
|
369532
369730
|
const isCredentialsSupported = isRequestSupported && 'credentials' in Request.prototype;
|
|
369533
369731
|
|
|
369732
|
+
// If data is FormData and Content-Type is multipart/form-data without boundary,
|
|
369733
|
+
// delete it so fetch can set it correctly with the boundary
|
|
369734
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFormData(data)) {
|
|
369735
|
+
const contentType = headers.getContentType();
|
|
369736
|
+
if (
|
|
369737
|
+
contentType &&
|
|
369738
|
+
/^multipart\/form-data/i.test(contentType) &&
|
|
369739
|
+
!/boundary=/i.test(contentType)
|
|
369740
|
+
) {
|
|
369741
|
+
headers.delete('content-type');
|
|
369742
|
+
}
|
|
369743
|
+
}
|
|
369744
|
+
|
|
369745
|
+
// Set User-Agent header if not already set (fetch defaults to 'node' in Node.js)
|
|
369746
|
+
headers.set('User-Agent', 'axios/' + _env_data_js__WEBPACK_IMPORTED_MODULE_8__.VERSION, false);
|
|
369747
|
+
|
|
369534
369748
|
const resolvedOptions = {
|
|
369535
369749
|
...fetchOptions,
|
|
369536
369750
|
signal: composedSignal,
|
|
@@ -369547,10 +369761,28 @@ const factory = (env) => {
|
|
|
369547
369761
|
? _fetch(request, fetchOptions)
|
|
369548
369762
|
: _fetch(url, resolvedOptions));
|
|
369549
369763
|
|
|
369764
|
+
// Cheap pre-check: if the server honestly declares a content-length that
|
|
369765
|
+
// already exceeds the cap, reject before we start streaming.
|
|
369766
|
+
if (hasMaxContentLength) {
|
|
369767
|
+
const declaredLength = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toFiniteNumber(response.headers.get('content-length'));
|
|
369768
|
+
if (declaredLength != null && declaredLength > maxContentLength) {
|
|
369769
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369770
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369771
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369772
|
+
config,
|
|
369773
|
+
request
|
|
369774
|
+
);
|
|
369775
|
+
}
|
|
369776
|
+
}
|
|
369777
|
+
|
|
369550
369778
|
const isStreamResponse =
|
|
369551
369779
|
supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
369552
369780
|
|
|
369553
|
-
if (
|
|
369781
|
+
if (
|
|
369782
|
+
supportsResponseStream &&
|
|
369783
|
+
response.body &&
|
|
369784
|
+
(onDownloadProgress || hasMaxContentLength || (isStreamResponse && unsubscribe))
|
|
369785
|
+
) {
|
|
369554
369786
|
const options = {};
|
|
369555
369787
|
|
|
369556
369788
|
['status', 'statusText', 'headers'].forEach((prop) => {
|
|
@@ -369561,14 +369793,30 @@ const factory = (env) => {
|
|
|
369561
369793
|
|
|
369562
369794
|
const [onProgress, flush] =
|
|
369563
369795
|
(onDownloadProgress &&
|
|
369564
|
-
(0,
|
|
369796
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventDecorator)(
|
|
369565
369797
|
responseContentLength,
|
|
369566
|
-
(0,
|
|
369798
|
+
(0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.progressEventReducer)((0,_helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__.asyncDecorator)(onDownloadProgress), true)
|
|
369567
369799
|
)) ||
|
|
369568
369800
|
[];
|
|
369569
369801
|
|
|
369802
|
+
let bytesRead = 0;
|
|
369803
|
+
const onChunkProgress = (loadedBytes) => {
|
|
369804
|
+
if (hasMaxContentLength) {
|
|
369805
|
+
bytesRead = loadedBytes;
|
|
369806
|
+
if (bytesRead > maxContentLength) {
|
|
369807
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369808
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369809
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369810
|
+
config,
|
|
369811
|
+
request
|
|
369812
|
+
);
|
|
369813
|
+
}
|
|
369814
|
+
}
|
|
369815
|
+
onProgress && onProgress(loadedBytes);
|
|
369816
|
+
};
|
|
369817
|
+
|
|
369570
369818
|
response = new Response(
|
|
369571
|
-
(0,
|
|
369819
|
+
(0,_helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_7__.trackStream)(response.body, DEFAULT_CHUNK_SIZE, onChunkProgress, () => {
|
|
369572
369820
|
flush && flush();
|
|
369573
369821
|
unsubscribe && unsubscribe();
|
|
369574
369822
|
}),
|
|
@@ -369583,12 +369831,39 @@ const factory = (env) => {
|
|
|
369583
369831
|
config
|
|
369584
369832
|
);
|
|
369585
369833
|
|
|
369834
|
+
// Fallback enforcement for environments without ReadableStream support
|
|
369835
|
+
// (legacy runtimes). Detect materialized size from typed output; skip
|
|
369836
|
+
// streams/Response passthrough since the user will read those themselves.
|
|
369837
|
+
if (hasMaxContentLength && !supportsResponseStream && !isStreamResponse) {
|
|
369838
|
+
let materializedSize;
|
|
369839
|
+
if (responseData != null) {
|
|
369840
|
+
if (typeof responseData.byteLength === 'number') {
|
|
369841
|
+
materializedSize = responseData.byteLength;
|
|
369842
|
+
} else if (typeof responseData.size === 'number') {
|
|
369843
|
+
materializedSize = responseData.size;
|
|
369844
|
+
} else if (typeof responseData === 'string') {
|
|
369845
|
+
materializedSize =
|
|
369846
|
+
typeof TextEncoder === 'function'
|
|
369847
|
+
? new TextEncoder().encode(responseData).byteLength
|
|
369848
|
+
: responseData.length;
|
|
369849
|
+
}
|
|
369850
|
+
}
|
|
369851
|
+
if (typeof materializedSize === 'number' && materializedSize > maxContentLength) {
|
|
369852
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
369853
|
+
'maxContentLength size of ' + maxContentLength + ' exceeded',
|
|
369854
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_BAD_RESPONSE,
|
|
369855
|
+
config,
|
|
369856
|
+
request
|
|
369857
|
+
);
|
|
369858
|
+
}
|
|
369859
|
+
}
|
|
369860
|
+
|
|
369586
369861
|
!isStreamResponse && unsubscribe && unsubscribe();
|
|
369587
369862
|
|
|
369588
369863
|
return await new Promise((resolve, reject) => {
|
|
369589
|
-
(0,
|
|
369864
|
+
(0,_core_settle_js__WEBPACK_IMPORTED_MODULE_9__["default"])(resolve, reject, {
|
|
369590
369865
|
data: responseData,
|
|
369591
|
-
headers:
|
|
369866
|
+
headers: _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_10__["default"].from(response.headers),
|
|
369592
369867
|
status: response.status,
|
|
369593
369868
|
statusText: response.statusText,
|
|
369594
369869
|
config,
|
|
@@ -369598,6 +369873,17 @@ const factory = (env) => {
|
|
|
369598
369873
|
} catch (err) {
|
|
369599
369874
|
unsubscribe && unsubscribe();
|
|
369600
369875
|
|
|
369876
|
+
// Safari can surface fetch aborts as a DOMException-like object whose
|
|
369877
|
+
// branded getters throw. Prefer our composed signal reason before reading
|
|
369878
|
+
// the caught error, preserving timeout vs cancellation semantics.
|
|
369879
|
+
if (composedSignal && composedSignal.aborted && composedSignal.reason instanceof _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"]) {
|
|
369880
|
+
const canceledError = composedSignal.reason;
|
|
369881
|
+
canceledError.config = config;
|
|
369882
|
+
request && (canceledError.request = request);
|
|
369883
|
+
err !== canceledError && (canceledError.cause = err);
|
|
369884
|
+
throw canceledError;
|
|
369885
|
+
}
|
|
369886
|
+
|
|
369601
369887
|
if (err && err.name === 'TypeError' && /Load failed|fetch/i.test(err.message)) {
|
|
369602
369888
|
throw Object.assign(
|
|
369603
369889
|
new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
@@ -369650,9 +369936,9 @@ const adapter = getFetch();
|
|
|
369650
369936
|
|
|
369651
369937
|
/***/ }),
|
|
369652
369938
|
|
|
369653
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
369939
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/xhr.js":
|
|
369654
369940
|
/*!************************************************************************************************!*\
|
|
369655
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
369941
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/adapters/xhr.js ***!
|
|
369656
369942
|
\************************************************************************************************/
|
|
369657
369943
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369658
369944
|
|
|
@@ -369661,16 +369947,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369661
369947
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369662
369948
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369663
369949
|
/* 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.
|
|
369950
|
+
/* 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");
|
|
369951
|
+
/* 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");
|
|
369952
|
+
/* 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");
|
|
369953
|
+
/* 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");
|
|
369954
|
+
/* 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");
|
|
369955
|
+
/* 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");
|
|
369956
|
+
/* 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");
|
|
369957
|
+
/* 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");
|
|
369958
|
+
/* 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");
|
|
369959
|
+
/* 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
369960
|
|
|
369675
369961
|
|
|
369676
369962
|
|
|
@@ -369764,7 +370050,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369764
370050
|
// will return status as 0 even though it's a successful request
|
|
369765
370051
|
if (
|
|
369766
370052
|
request.status === 0 &&
|
|
369767
|
-
!(request.responseURL && request.responseURL.
|
|
370053
|
+
!(request.responseURL && request.responseURL.startsWith('file:'))
|
|
369768
370054
|
) {
|
|
369769
370055
|
return;
|
|
369770
370056
|
}
|
|
@@ -369781,6 +370067,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369781
370067
|
}
|
|
369782
370068
|
|
|
369783
370069
|
reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"]('Request aborted', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"].ECONNABORTED, config, request));
|
|
370070
|
+
done();
|
|
369784
370071
|
|
|
369785
370072
|
// Clean up request
|
|
369786
370073
|
request = null;
|
|
@@ -369796,6 +370083,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369796
370083
|
// attach the underlying event for consumers who want details
|
|
369797
370084
|
err.event = event || null;
|
|
369798
370085
|
reject(err);
|
|
370086
|
+
done();
|
|
369799
370087
|
request = null;
|
|
369800
370088
|
};
|
|
369801
370089
|
|
|
@@ -369816,6 +370104,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369816
370104
|
request
|
|
369817
370105
|
)
|
|
369818
370106
|
);
|
|
370107
|
+
done();
|
|
369819
370108
|
|
|
369820
370109
|
// Clean up request
|
|
369821
370110
|
request = null;
|
|
@@ -369865,6 +370154,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369865
370154
|
}
|
|
369866
370155
|
reject(!cancel || cancel.type ? new _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__["default"](null, config, request) : cancel);
|
|
369867
370156
|
request.abort();
|
|
370157
|
+
done();
|
|
369868
370158
|
request = null;
|
|
369869
370159
|
};
|
|
369870
370160
|
|
|
@@ -369878,7 +370168,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369878
370168
|
|
|
369879
370169
|
const protocol = (0,_helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__["default"])(_config.url);
|
|
369880
370170
|
|
|
369881
|
-
if (protocol && _platform_index_js__WEBPACK_IMPORTED_MODULE_9__["default"].protocols.
|
|
370171
|
+
if (protocol && !_platform_index_js__WEBPACK_IMPORTED_MODULE_9__["default"].protocols.includes(protocol)) {
|
|
369882
370172
|
reject(
|
|
369883
370173
|
new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__["default"](
|
|
369884
370174
|
'Unsupported protocol ' + protocol + ':',
|
|
@@ -369897,9 +370187,9 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
369897
370187
|
|
|
369898
370188
|
/***/ }),
|
|
369899
370189
|
|
|
369900
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370190
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js":
|
|
369901
370191
|
/*!*****************************************************************************************!*\
|
|
369902
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370192
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/axios.js ***!
|
|
369903
370193
|
\*****************************************************************************************/
|
|
369904
370194
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
369905
370195
|
|
|
@@ -369908,23 +370198,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
369908
370198
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
369909
370199
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
369910
370200
|
/* 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.
|
|
370201
|
+
/* 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");
|
|
370202
|
+
/* 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");
|
|
370203
|
+
/* 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");
|
|
370204
|
+
/* 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");
|
|
370205
|
+
/* 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");
|
|
370206
|
+
/* 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");
|
|
370207
|
+
/* 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");
|
|
370208
|
+
/* 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");
|
|
370209
|
+
/* 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");
|
|
370210
|
+
/* 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");
|
|
370211
|
+
/* 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");
|
|
370212
|
+
/* 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");
|
|
370213
|
+
/* 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");
|
|
370214
|
+
/* 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");
|
|
370215
|
+
/* 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");
|
|
370216
|
+
/* 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");
|
|
370217
|
+
/* 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
370218
|
|
|
369929
370219
|
|
|
369930
370220
|
|
|
@@ -370018,9 +370308,9 @@ axios.default = axios;
|
|
|
370018
370308
|
|
|
370019
370309
|
/***/ }),
|
|
370020
370310
|
|
|
370021
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370311
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CancelToken.js":
|
|
370022
370312
|
/*!******************************************************************************************************!*\
|
|
370023
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370313
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CancelToken.js ***!
|
|
370024
370314
|
\******************************************************************************************************/
|
|
370025
370315
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370026
370316
|
|
|
@@ -370029,7 +370319,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370029
370319
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370030
370320
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370031
370321
|
/* harmony export */ });
|
|
370032
|
-
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370322
|
+
/* 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
370323
|
|
|
370034
370324
|
|
|
370035
370325
|
|
|
@@ -370169,9 +370459,9 @@ class CancelToken {
|
|
|
370169
370459
|
|
|
370170
370460
|
/***/ }),
|
|
370171
370461
|
|
|
370172
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370462
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js":
|
|
370173
370463
|
/*!********************************************************************************************************!*\
|
|
370174
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370464
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/CanceledError.js ***!
|
|
370175
370465
|
\********************************************************************************************************/
|
|
370176
370466
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370177
370467
|
|
|
@@ -370180,7 +370470,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370180
370470
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370181
370471
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370182
370472
|
/* 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.
|
|
370473
|
+
/* 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
370474
|
|
|
370185
370475
|
|
|
370186
370476
|
|
|
@@ -370207,9 +370497,9 @@ class CanceledError extends _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["de
|
|
|
370207
370497
|
|
|
370208
370498
|
/***/ }),
|
|
370209
370499
|
|
|
370210
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370500
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js":
|
|
370211
370501
|
/*!***************************************************************************************************!*\
|
|
370212
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370502
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/cancel/isCancel.js ***!
|
|
370213
370503
|
\***************************************************************************************************/
|
|
370214
370504
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370215
370505
|
|
|
@@ -370227,9 +370517,9 @@ function isCancel(value) {
|
|
|
370227
370517
|
|
|
370228
370518
|
/***/ }),
|
|
370229
370519
|
|
|
370230
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370520
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/Axios.js":
|
|
370231
370521
|
/*!**********************************************************************************************!*\
|
|
370232
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370522
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/Axios.js ***!
|
|
370233
370523
|
\**********************************************************************************************/
|
|
370234
370524
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370235
370525
|
|
|
@@ -370238,15 +370528,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370238
370528
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370239
370529
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370240
370530
|
/* 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.
|
|
370531
|
+
/* 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");
|
|
370532
|
+
/* 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");
|
|
370533
|
+
/* 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");
|
|
370534
|
+
/* 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");
|
|
370535
|
+
/* 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");
|
|
370536
|
+
/* 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");
|
|
370537
|
+
/* 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");
|
|
370538
|
+
/* 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");
|
|
370539
|
+
/* 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
370540
|
|
|
370251
370541
|
|
|
370252
370542
|
|
|
@@ -370397,7 +370687,7 @@ class Axios {
|
|
|
370397
370687
|
let contextHeaders = headers && _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].merge(headers.common, headers[config.method]);
|
|
370398
370688
|
|
|
370399
370689
|
headers &&
|
|
370400
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], (method) => {
|
|
370690
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'query', 'common'], (method) => {
|
|
370401
370691
|
delete headers[method];
|
|
370402
370692
|
});
|
|
370403
370693
|
|
|
@@ -370500,7 +370790,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['delete', 'get', 'hea
|
|
|
370500
370790
|
};
|
|
370501
370791
|
});
|
|
370502
370792
|
|
|
370503
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
370793
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch', 'query'], function forEachMethodWithData(method) {
|
|
370504
370794
|
function generateHTTPMethod(isForm) {
|
|
370505
370795
|
return function httpMethod(url, data, config) {
|
|
370506
370796
|
return this.request(
|
|
@@ -370520,7 +370810,11 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
370520
370810
|
|
|
370521
370811
|
Axios.prototype[method] = generateHTTPMethod();
|
|
370522
370812
|
|
|
370523
|
-
|
|
370813
|
+
// QUERY is a safe/idempotent read method; multipart form bodies don't fit
|
|
370814
|
+
// its semantics, so no queryForm shorthand is generated.
|
|
370815
|
+
if (method !== 'query') {
|
|
370816
|
+
Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
|
|
370817
|
+
}
|
|
370524
370818
|
});
|
|
370525
370819
|
|
|
370526
370820
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Axios);
|
|
@@ -370528,9 +370822,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
370528
370822
|
|
|
370529
370823
|
/***/ }),
|
|
370530
370824
|
|
|
370531
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370825
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js":
|
|
370532
370826
|
/*!***************************************************************************************************!*\
|
|
370533
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
370827
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosError.js ***!
|
|
370534
370828
|
\***************************************************************************************************/
|
|
370535
370829
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370536
370830
|
|
|
@@ -370539,11 +370833,82 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370539
370833
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370540
370834
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370541
370835
|
/* harmony export */ });
|
|
370542
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
370836
|
+
/* 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");
|
|
370837
|
+
/* 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");
|
|
370838
|
+
|
|
370543
370839
|
|
|
370544
370840
|
|
|
370545
370841
|
|
|
370546
370842
|
|
|
370843
|
+
const REDACTED = '[REDACTED ****]';
|
|
370844
|
+
|
|
370845
|
+
function hasOwnOrPrototypeToJSON(source) {
|
|
370846
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(source, 'toJSON')) {
|
|
370847
|
+
return true;
|
|
370848
|
+
}
|
|
370849
|
+
|
|
370850
|
+
let prototype = Object.getPrototypeOf(source);
|
|
370851
|
+
|
|
370852
|
+
while (prototype && prototype !== Object.prototype) {
|
|
370853
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(prototype, 'toJSON')) {
|
|
370854
|
+
return true;
|
|
370855
|
+
}
|
|
370856
|
+
|
|
370857
|
+
prototype = Object.getPrototypeOf(prototype);
|
|
370858
|
+
}
|
|
370859
|
+
|
|
370860
|
+
return false;
|
|
370861
|
+
}
|
|
370862
|
+
|
|
370863
|
+
// Build a plain-object snapshot of `config` and replace the value of any key
|
|
370864
|
+
// (case-insensitive) listed in `redactKeys` with REDACTED. Walks through arrays
|
|
370865
|
+
// and AxiosHeaders, and short-circuits on circular references.
|
|
370866
|
+
function redactConfig(config, redactKeys) {
|
|
370867
|
+
const lowerKeys = new Set(redactKeys.map((k) => String(k).toLowerCase()));
|
|
370868
|
+
const seen = [];
|
|
370869
|
+
|
|
370870
|
+
const visit = (source) => {
|
|
370871
|
+
if (source === null || typeof source !== 'object') return source;
|
|
370872
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isBuffer(source)) return source;
|
|
370873
|
+
if (seen.indexOf(source) !== -1) return undefined;
|
|
370874
|
+
|
|
370875
|
+
if (source instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"]) {
|
|
370876
|
+
source = source.toJSON();
|
|
370877
|
+
}
|
|
370878
|
+
|
|
370879
|
+
seen.push(source);
|
|
370880
|
+
|
|
370881
|
+
let result;
|
|
370882
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(source)) {
|
|
370883
|
+
result = [];
|
|
370884
|
+
source.forEach((v, i) => {
|
|
370885
|
+
const reducedValue = visit(v);
|
|
370886
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(reducedValue)) {
|
|
370887
|
+
result[i] = reducedValue;
|
|
370888
|
+
}
|
|
370889
|
+
});
|
|
370890
|
+
} else {
|
|
370891
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isPlainObject(source) && hasOwnOrPrototypeToJSON(source)) {
|
|
370892
|
+
seen.pop();
|
|
370893
|
+
return source;
|
|
370894
|
+
}
|
|
370895
|
+
|
|
370896
|
+
result = Object.create(null);
|
|
370897
|
+
for (const [key, value] of Object.entries(source)) {
|
|
370898
|
+
const reducedValue = lowerKeys.has(key.toLowerCase()) ? REDACTED : visit(value);
|
|
370899
|
+
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(reducedValue)) {
|
|
370900
|
+
result[key] = reducedValue;
|
|
370901
|
+
}
|
|
370902
|
+
}
|
|
370903
|
+
}
|
|
370904
|
+
|
|
370905
|
+
seen.pop();
|
|
370906
|
+
return result;
|
|
370907
|
+
};
|
|
370908
|
+
|
|
370909
|
+
return visit(config);
|
|
370910
|
+
}
|
|
370911
|
+
|
|
370547
370912
|
class AxiosError extends Error {
|
|
370548
370913
|
static from(error, code, config, request, response, customProps) {
|
|
370549
370914
|
const axiosError = new AxiosError(error.message, code || error.code, config, request, response);
|
|
@@ -370559,42 +370924,56 @@ class AxiosError extends Error {
|
|
|
370559
370924
|
return axiosError;
|
|
370560
370925
|
}
|
|
370561
370926
|
|
|
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
|
-
|
|
370927
|
+
/**
|
|
370928
|
+
* Create an Error with the specified message, config, error code, request and response.
|
|
370929
|
+
*
|
|
370930
|
+
* @param {string} message The error message.
|
|
370931
|
+
* @param {string} [code] The error code (for example, 'ECONNABORTED').
|
|
370932
|
+
* @param {Object} [config] The config.
|
|
370933
|
+
* @param {Object} [request] The request.
|
|
370934
|
+
* @param {Object} [response] The response.
|
|
370935
|
+
*
|
|
370936
|
+
* @returns {Error} The created error.
|
|
370937
|
+
*/
|
|
370938
|
+
constructor(message, code, config, request, response) {
|
|
370939
|
+
super(message);
|
|
370940
|
+
|
|
370941
|
+
// Make message enumerable to maintain backward compatibility
|
|
370942
|
+
// The native Error constructor sets message as non-enumerable,
|
|
370943
|
+
// but axios < v1.13.3 had it as enumerable
|
|
370944
|
+
Object.defineProperty(this, 'message', {
|
|
370945
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
370946
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
370947
|
+
__proto__: null,
|
|
370948
|
+
value: message,
|
|
370949
|
+
enumerable: true,
|
|
370950
|
+
writable: true,
|
|
370951
|
+
configurable: true,
|
|
370952
|
+
});
|
|
370953
|
+
|
|
370954
|
+
this.name = 'AxiosError';
|
|
370955
|
+
this.isAxiosError = true;
|
|
370956
|
+
code && (this.code = code);
|
|
370957
|
+
config && (this.config = config);
|
|
370958
|
+
request && (this.request = request);
|
|
370959
|
+
if (response) {
|
|
370960
|
+
this.response = response;
|
|
370961
|
+
this.status = response.status;
|
|
370595
370962
|
}
|
|
370963
|
+
}
|
|
370596
370964
|
|
|
370597
370965
|
toJSON() {
|
|
370966
|
+
// Opt-in redaction: when the request config carries a `redact` array, the
|
|
370967
|
+
// value of any matching key (case-insensitive, at any depth) is replaced
|
|
370968
|
+
// with REDACTED in the serialized snapshot. Undefined or empty leaves the
|
|
370969
|
+
// existing serialization behavior unchanged.
|
|
370970
|
+
const config = this.config;
|
|
370971
|
+
const redactKeys = config && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(config, 'redact') ? config.redact : undefined;
|
|
370972
|
+
const serializedConfig =
|
|
370973
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(redactKeys) && redactKeys.length > 0
|
|
370974
|
+
? redactConfig(config, redactKeys)
|
|
370975
|
+
: _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toJSONObject(config);
|
|
370976
|
+
|
|
370598
370977
|
return {
|
|
370599
370978
|
// Standard
|
|
370600
370979
|
message: this.message,
|
|
@@ -370608,7 +370987,7 @@ class AxiosError extends Error {
|
|
|
370608
370987
|
columnNumber: this.columnNumber,
|
|
370609
370988
|
stack: this.stack,
|
|
370610
370989
|
// Axios
|
|
370611
|
-
config:
|
|
370990
|
+
config: serializedConfig,
|
|
370612
370991
|
code: this.code,
|
|
370613
370992
|
status: this.status,
|
|
370614
370993
|
};
|
|
@@ -370620,6 +370999,7 @@ AxiosError.ERR_BAD_OPTION_VALUE = 'ERR_BAD_OPTION_VALUE';
|
|
|
370620
370999
|
AxiosError.ERR_BAD_OPTION = 'ERR_BAD_OPTION';
|
|
370621
371000
|
AxiosError.ECONNABORTED = 'ECONNABORTED';
|
|
370622
371001
|
AxiosError.ETIMEDOUT = 'ETIMEDOUT';
|
|
371002
|
+
AxiosError.ECONNREFUSED = 'ECONNREFUSED';
|
|
370623
371003
|
AxiosError.ERR_NETWORK = 'ERR_NETWORK';
|
|
370624
371004
|
AxiosError.ERR_FR_TOO_MANY_REDIRECTS = 'ERR_FR_TOO_MANY_REDIRECTS';
|
|
370625
371005
|
AxiosError.ERR_DEPRECATED = 'ERR_DEPRECATED';
|
|
@@ -370628,15 +371008,16 @@ AxiosError.ERR_BAD_REQUEST = 'ERR_BAD_REQUEST';
|
|
|
370628
371008
|
AxiosError.ERR_CANCELED = 'ERR_CANCELED';
|
|
370629
371009
|
AxiosError.ERR_NOT_SUPPORT = 'ERR_NOT_SUPPORT';
|
|
370630
371010
|
AxiosError.ERR_INVALID_URL = 'ERR_INVALID_URL';
|
|
371011
|
+
AxiosError.ERR_FORM_DATA_DEPTH_EXCEEDED = 'ERR_FORM_DATA_DEPTH_EXCEEDED';
|
|
370631
371012
|
|
|
370632
371013
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AxiosError);
|
|
370633
371014
|
|
|
370634
371015
|
|
|
370635
371016
|
/***/ }),
|
|
370636
371017
|
|
|
370637
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371018
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js":
|
|
370638
371019
|
/*!*****************************************************************************************************!*\
|
|
370639
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371020
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/AxiosHeaders.js ***!
|
|
370640
371021
|
\*****************************************************************************************************/
|
|
370641
371022
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
370642
371023
|
|
|
@@ -370645,8 +371026,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370645
371026
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
370646
371027
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
370647
371028
|
/* 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.
|
|
371029
|
+
/* 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");
|
|
371030
|
+
/* 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
371031
|
|
|
370651
371032
|
|
|
370652
371033
|
|
|
@@ -370654,41 +371035,41 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
370654
371035
|
|
|
370655
371036
|
const $internals = Symbol('internals');
|
|
370656
371037
|
|
|
370657
|
-
const
|
|
370658
|
-
|
|
370659
|
-
function assertValidHeaderValue(value, header) {
|
|
370660
|
-
if (value === false || value == null) {
|
|
370661
|
-
return;
|
|
370662
|
-
}
|
|
371038
|
+
const INVALID_HEADER_VALUE_CHARS_RE = /[^\x09\x20-\x7E\x80-\xFF]/g;
|
|
370663
371039
|
|
|
370664
|
-
|
|
370665
|
-
|
|
370666
|
-
|
|
370667
|
-
}
|
|
371040
|
+
function trimSPorHTAB(str) {
|
|
371041
|
+
let start = 0;
|
|
371042
|
+
let end = str.length;
|
|
370668
371043
|
|
|
370669
|
-
|
|
370670
|
-
|
|
370671
|
-
}
|
|
370672
|
-
}
|
|
371044
|
+
while (start < end) {
|
|
371045
|
+
const code = str.charCodeAt(start);
|
|
370673
371046
|
|
|
370674
|
-
|
|
370675
|
-
|
|
370676
|
-
}
|
|
371047
|
+
if (code !== 0x09 && code !== 0x20) {
|
|
371048
|
+
break;
|
|
371049
|
+
}
|
|
370677
371050
|
|
|
370678
|
-
|
|
370679
|
-
|
|
371051
|
+
start += 1;
|
|
371052
|
+
}
|
|
370680
371053
|
|
|
370681
|
-
while (end >
|
|
370682
|
-
const
|
|
371054
|
+
while (end > start) {
|
|
371055
|
+
const code = str.charCodeAt(end - 1);
|
|
370683
371056
|
|
|
370684
|
-
if (
|
|
371057
|
+
if (code !== 0x09 && code !== 0x20) {
|
|
370685
371058
|
break;
|
|
370686
371059
|
}
|
|
370687
371060
|
|
|
370688
371061
|
end -= 1;
|
|
370689
371062
|
}
|
|
370690
371063
|
|
|
370691
|
-
return end === str.length ? str : str.slice(
|
|
371064
|
+
return start === 0 && end === str.length ? str : str.slice(start, end);
|
|
371065
|
+
}
|
|
371066
|
+
|
|
371067
|
+
function normalizeHeader(header) {
|
|
371068
|
+
return header && String(header).trim().toLowerCase();
|
|
371069
|
+
}
|
|
371070
|
+
|
|
371071
|
+
function sanitizeHeaderValue(str) {
|
|
371072
|
+
return trimSPorHTAB(str.replace(INVALID_HEADER_VALUE_CHARS_RE, ''));
|
|
370692
371073
|
}
|
|
370693
371074
|
|
|
370694
371075
|
function normalizeValue(value) {
|
|
@@ -370696,7 +371077,7 @@ function normalizeValue(value) {
|
|
|
370696
371077
|
return value;
|
|
370697
371078
|
}
|
|
370698
371079
|
|
|
370699
|
-
return _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(value) ? value.map(normalizeValue) :
|
|
371080
|
+
return _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(value) ? value.map(normalizeValue) : sanitizeHeaderValue(String(value));
|
|
370700
371081
|
}
|
|
370701
371082
|
|
|
370702
371083
|
function parseTokens(str) {
|
|
@@ -370747,6 +371128,9 @@ function buildAccessors(obj, header) {
|
|
|
370747
371128
|
|
|
370748
371129
|
['get', 'set', 'has'].forEach((methodName) => {
|
|
370749
371130
|
Object.defineProperty(obj, methodName + accessorName, {
|
|
371131
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
371132
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
371133
|
+
__proto__: null,
|
|
370750
371134
|
value: function (arg1, arg2, arg3) {
|
|
370751
371135
|
return this[methodName].call(this, header, arg1, arg2, arg3);
|
|
370752
371136
|
},
|
|
@@ -370778,7 +371162,6 @@ class AxiosHeaders {
|
|
|
370778
371162
|
_rewrite === true ||
|
|
370779
371163
|
(_rewrite === undefined && self[key] !== false)
|
|
370780
371164
|
) {
|
|
370781
|
-
assertValidHeaderValue(_value, _header);
|
|
370782
371165
|
self[key || _header] = normalizeValue(_value);
|
|
370783
371166
|
}
|
|
370784
371167
|
}
|
|
@@ -371029,9 +371412,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
|
|
|
371029
371412
|
|
|
371030
371413
|
/***/ }),
|
|
371031
371414
|
|
|
371032
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371415
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/InterceptorManager.js":
|
|
371033
371416
|
/*!***********************************************************************************************************!*\
|
|
371034
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371417
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/InterceptorManager.js ***!
|
|
371035
371418
|
\***********************************************************************************************************/
|
|
371036
371419
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371037
371420
|
|
|
@@ -371040,7 +371423,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371040
371423
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371041
371424
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371042
371425
|
/* harmony export */ });
|
|
371043
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371426
|
+
/* 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
371427
|
|
|
371045
371428
|
|
|
371046
371429
|
|
|
@@ -371117,9 +371500,9 @@ class InterceptorManager {
|
|
|
371117
371500
|
|
|
371118
371501
|
/***/ }),
|
|
371119
371502
|
|
|
371120
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371503
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js":
|
|
371121
371504
|
/*!******************************************************************************************************!*\
|
|
371122
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371505
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/buildFullPath.js ***!
|
|
371123
371506
|
\******************************************************************************************************/
|
|
371124
371507
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371125
371508
|
|
|
@@ -371128,8 +371511,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371128
371511
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371129
371512
|
/* harmony export */ "default": () => (/* binding */ buildFullPath)
|
|
371130
371513
|
/* 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.
|
|
371514
|
+
/* 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");
|
|
371515
|
+
/* 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
371516
|
|
|
371134
371517
|
|
|
371135
371518
|
|
|
@@ -371147,7 +371530,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371147
371530
|
*/
|
|
371148
371531
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
371149
371532
|
let isRelativeUrl = !(0,_helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__["default"])(requestedURL);
|
|
371150
|
-
if (baseURL && (isRelativeUrl || allowAbsoluteUrls
|
|
371533
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls === false)) {
|
|
371151
371534
|
return (0,_helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__["default"])(baseURL, requestedURL);
|
|
371152
371535
|
}
|
|
371153
371536
|
return requestedURL;
|
|
@@ -371156,9 +371539,9 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
|
371156
371539
|
|
|
371157
371540
|
/***/ }),
|
|
371158
371541
|
|
|
371159
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371542
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/dispatchRequest.js":
|
|
371160
371543
|
/*!********************************************************************************************************!*\
|
|
371161
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371544
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/dispatchRequest.js ***!
|
|
371162
371545
|
\********************************************************************************************************/
|
|
371163
371546
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371164
371547
|
|
|
@@ -371167,12 +371550,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371167
371550
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371168
371551
|
/* harmony export */ "default": () => (/* binding */ dispatchRequest)
|
|
371169
371552
|
/* 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.
|
|
371553
|
+
/* 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");
|
|
371554
|
+
/* 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");
|
|
371555
|
+
/* 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");
|
|
371556
|
+
/* 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");
|
|
371557
|
+
/* 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");
|
|
371558
|
+
/* 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
371559
|
|
|
371177
371560
|
|
|
371178
371561
|
|
|
@@ -371224,8 +371607,15 @@ function dispatchRequest(config) {
|
|
|
371224
371607
|
function onAdapterResolution(response) {
|
|
371225
371608
|
throwIfCancellationRequested(config);
|
|
371226
371609
|
|
|
371227
|
-
//
|
|
371228
|
-
|
|
371610
|
+
// Expose the current response on config so that transformResponse can
|
|
371611
|
+
// attach it to any AxiosError it throws (e.g. on JSON parse failure).
|
|
371612
|
+
// We clean it up afterwards to avoid polluting the config object.
|
|
371613
|
+
config.response = response;
|
|
371614
|
+
try {
|
|
371615
|
+
response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_2__["default"].call(config, config.transformResponse, response);
|
|
371616
|
+
} finally {
|
|
371617
|
+
delete config.response;
|
|
371618
|
+
}
|
|
371229
371619
|
|
|
371230
371620
|
response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(response.headers);
|
|
371231
371621
|
|
|
@@ -371237,11 +371627,16 @@ function dispatchRequest(config) {
|
|
|
371237
371627
|
|
|
371238
371628
|
// Transform response data
|
|
371239
371629
|
if (reason && reason.response) {
|
|
371240
|
-
|
|
371241
|
-
|
|
371242
|
-
|
|
371243
|
-
|
|
371244
|
-
|
|
371630
|
+
config.response = reason.response;
|
|
371631
|
+
try {
|
|
371632
|
+
reason.response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_2__["default"].call(
|
|
371633
|
+
config,
|
|
371634
|
+
config.transformResponse,
|
|
371635
|
+
reason.response
|
|
371636
|
+
);
|
|
371637
|
+
} finally {
|
|
371638
|
+
delete config.response;
|
|
371639
|
+
}
|
|
371245
371640
|
reason.response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(reason.response.headers);
|
|
371246
371641
|
}
|
|
371247
371642
|
}
|
|
@@ -371254,9 +371649,9 @@ function dispatchRequest(config) {
|
|
|
371254
371649
|
|
|
371255
371650
|
/***/ }),
|
|
371256
371651
|
|
|
371257
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371652
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js":
|
|
371258
371653
|
/*!****************************************************************************************************!*\
|
|
371259
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371654
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/mergeConfig.js ***!
|
|
371260
371655
|
\****************************************************************************************************/
|
|
371261
371656
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371262
371657
|
|
|
@@ -371265,8 +371660,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371265
371660
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371266
371661
|
/* harmony export */ "default": () => (/* binding */ mergeConfig)
|
|
371267
371662
|
/* 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.
|
|
371663
|
+
/* 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");
|
|
371664
|
+
/* 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
371665
|
|
|
371271
371666
|
|
|
371272
371667
|
|
|
@@ -371286,7 +371681,21 @@ const headersToObject = (thing) => (thing instanceof _AxiosHeaders_js__WEBPACK_I
|
|
|
371286
371681
|
function mergeConfig(config1, config2) {
|
|
371287
371682
|
// eslint-disable-next-line no-param-reassign
|
|
371288
371683
|
config2 = config2 || {};
|
|
371289
|
-
|
|
371684
|
+
|
|
371685
|
+
// Use a null-prototype object so that downstream reads such as `config.auth`
|
|
371686
|
+
// or `config.baseURL` cannot inherit polluted values from Object.prototype.
|
|
371687
|
+
// `hasOwnProperty` is restored as a non-enumerable own slot to preserve
|
|
371688
|
+
// ergonomics for user code that relies on it.
|
|
371689
|
+
const config = Object.create(null);
|
|
371690
|
+
Object.defineProperty(config, 'hasOwnProperty', {
|
|
371691
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot turn
|
|
371692
|
+
// this data descriptor into an accessor descriptor on the way in.
|
|
371693
|
+
__proto__: null,
|
|
371694
|
+
value: Object.prototype.hasOwnProperty,
|
|
371695
|
+
enumerable: false,
|
|
371696
|
+
writable: true,
|
|
371697
|
+
configurable: true,
|
|
371698
|
+
});
|
|
371290
371699
|
|
|
371291
371700
|
function getMergedValue(target, source, prop, caseless) {
|
|
371292
371701
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isPlainObject(target) && _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isPlainObject(source)) {
|
|
@@ -371325,9 +371734,9 @@ function mergeConfig(config1, config2) {
|
|
|
371325
371734
|
|
|
371326
371735
|
// eslint-disable-next-line consistent-return
|
|
371327
371736
|
function mergeDirectKeys(a, b, prop) {
|
|
371328
|
-
if (prop
|
|
371737
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config2, prop)) {
|
|
371329
371738
|
return getMergedValue(a, b);
|
|
371330
|
-
} else if (prop
|
|
371739
|
+
} else if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config1, prop)) {
|
|
371331
371740
|
return getMergedValue(undefined, a);
|
|
371332
371741
|
}
|
|
371333
371742
|
}
|
|
@@ -371359,6 +371768,7 @@ function mergeConfig(config1, config2) {
|
|
|
371359
371768
|
httpsAgent: defaultToConfig2,
|
|
371360
371769
|
cancelToken: defaultToConfig2,
|
|
371361
371770
|
socketPath: defaultToConfig2,
|
|
371771
|
+
allowedSocketPaths: defaultToConfig2,
|
|
371362
371772
|
responseEncoding: defaultToConfig2,
|
|
371363
371773
|
validateStatus: mergeDirectKeys,
|
|
371364
371774
|
headers: (a, b, prop) =>
|
|
@@ -371368,7 +371778,9 @@ function mergeConfig(config1, config2) {
|
|
|
371368
371778
|
_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
|
|
371369
371779
|
if (prop === '__proto__' || prop === 'constructor' || prop === 'prototype') return;
|
|
371370
371780
|
const merge = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
|
|
371371
|
-
const
|
|
371781
|
+
const a = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config1, prop) ? config1[prop] : undefined;
|
|
371782
|
+
const b = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(config2, prop) ? config2[prop] : undefined;
|
|
371783
|
+
const configValue = merge(a, b, prop);
|
|
371372
371784
|
(_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
371373
371785
|
});
|
|
371374
371786
|
|
|
@@ -371378,9 +371790,9 @@ function mergeConfig(config1, config2) {
|
|
|
371378
371790
|
|
|
371379
371791
|
/***/ }),
|
|
371380
371792
|
|
|
371381
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371793
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js":
|
|
371382
371794
|
/*!***********************************************************************************************!*\
|
|
371383
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371795
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/settle.js ***!
|
|
371384
371796
|
\***********************************************************************************************/
|
|
371385
371797
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371386
371798
|
|
|
@@ -371389,7 +371801,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371389
371801
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371390
371802
|
/* harmony export */ "default": () => (/* binding */ settle)
|
|
371391
371803
|
/* harmony export */ });
|
|
371392
|
-
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371804
|
+
/* 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
371805
|
|
|
371394
371806
|
|
|
371395
371807
|
|
|
@@ -371408,26 +371820,22 @@ function settle(resolve, reject, response) {
|
|
|
371408
371820
|
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
|
371409
371821
|
resolve(response);
|
|
371410
371822
|
} else {
|
|
371411
|
-
reject(
|
|
371412
|
-
|
|
371413
|
-
|
|
371414
|
-
|
|
371415
|
-
|
|
371416
|
-
|
|
371417
|
-
|
|
371418
|
-
response.request,
|
|
371419
|
-
response
|
|
371420
|
-
)
|
|
371421
|
-
);
|
|
371823
|
+
reject(new _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["default"](
|
|
371824
|
+
'Request failed with status code ' + response.status,
|
|
371825
|
+
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,
|
|
371826
|
+
response.config,
|
|
371827
|
+
response.request,
|
|
371828
|
+
response
|
|
371829
|
+
));
|
|
371422
371830
|
}
|
|
371423
371831
|
}
|
|
371424
371832
|
|
|
371425
371833
|
|
|
371426
371834
|
/***/ }),
|
|
371427
371835
|
|
|
371428
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371836
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/transformData.js":
|
|
371429
371837
|
/*!******************************************************************************************************!*\
|
|
371430
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371838
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/core/transformData.js ***!
|
|
371431
371839
|
\******************************************************************************************************/
|
|
371432
371840
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371433
371841
|
|
|
@@ -371436,9 +371844,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371436
371844
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371437
371845
|
/* harmony export */ "default": () => (/* binding */ transformData)
|
|
371438
371846
|
/* 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.
|
|
371847
|
+
/* 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");
|
|
371848
|
+
/* 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");
|
|
371849
|
+
/* 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
371850
|
|
|
371443
371851
|
|
|
371444
371852
|
|
|
@@ -371471,9 +371879,9 @@ function transformData(fns, response) {
|
|
|
371471
371879
|
|
|
371472
371880
|
/***/ }),
|
|
371473
371881
|
|
|
371474
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
371882
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js":
|
|
371475
371883
|
/*!**************************************************************************************************!*\
|
|
371476
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
371884
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/index.js ***!
|
|
371477
371885
|
\**************************************************************************************************/
|
|
371478
371886
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371479
371887
|
|
|
@@ -371482,13 +371890,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371482
371890
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371483
371891
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371484
371892
|
/* 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.
|
|
371893
|
+
/* 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");
|
|
371894
|
+
/* 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");
|
|
371895
|
+
/* 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");
|
|
371896
|
+
/* 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");
|
|
371897
|
+
/* 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");
|
|
371898
|
+
/* 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");
|
|
371899
|
+
/* 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
371900
|
|
|
371493
371901
|
|
|
371494
371902
|
|
|
@@ -371499,6 +371907,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371499
371907
|
|
|
371500
371908
|
|
|
371501
371909
|
|
|
371910
|
+
const own = (obj, key) => (obj != null && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(obj, key) ? obj[key] : undefined);
|
|
371911
|
+
|
|
371502
371912
|
/**
|
|
371503
371913
|
* It takes a string, tries to parse it, and if it fails, it returns the stringified version
|
|
371504
371914
|
* of the input
|
|
@@ -371566,20 +371976,22 @@ const defaults = {
|
|
|
371566
371976
|
let isFileList;
|
|
371567
371977
|
|
|
371568
371978
|
if (isObjectPayload) {
|
|
371979
|
+
const formSerializer = own(this, 'formSerializer');
|
|
371569
371980
|
if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {
|
|
371570
|
-
return (0,_helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__["default"])(data,
|
|
371981
|
+
return (0,_helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__["default"])(data, formSerializer).toString();
|
|
371571
371982
|
}
|
|
371572
371983
|
|
|
371573
371984
|
if (
|
|
371574
371985
|
(isFileList = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFileList(data)) ||
|
|
371575
371986
|
contentType.indexOf('multipart/form-data') > -1
|
|
371576
371987
|
) {
|
|
371577
|
-
const
|
|
371988
|
+
const env = own(this, 'env');
|
|
371989
|
+
const _FormData = env && env.FormData;
|
|
371578
371990
|
|
|
371579
371991
|
return (0,_helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__["default"])(
|
|
371580
371992
|
isFileList ? { 'files[]': data } : data,
|
|
371581
371993
|
_FormData && new _FormData(),
|
|
371582
|
-
|
|
371994
|
+
formSerializer
|
|
371583
371995
|
);
|
|
371584
371996
|
}
|
|
371585
371997
|
}
|
|
@@ -371595,9 +372007,10 @@ const defaults = {
|
|
|
371595
372007
|
|
|
371596
372008
|
transformResponse: [
|
|
371597
372009
|
function transformResponse(data) {
|
|
371598
|
-
const transitional = this
|
|
372010
|
+
const transitional = own(this, 'transitional') || defaults.transitional;
|
|
371599
372011
|
const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
|
|
371600
|
-
const
|
|
372012
|
+
const responseType = own(this, 'responseType');
|
|
372013
|
+
const JSONRequested = responseType === 'json';
|
|
371601
372014
|
|
|
371602
372015
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isResponse(data) || _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isReadableStream(data)) {
|
|
371603
372016
|
return data;
|
|
@@ -371606,17 +372019,17 @@ const defaults = {
|
|
|
371606
372019
|
if (
|
|
371607
372020
|
data &&
|
|
371608
372021
|
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isString(data) &&
|
|
371609
|
-
((forcedJSONParsing && !
|
|
372022
|
+
((forcedJSONParsing && !responseType) || JSONRequested)
|
|
371610
372023
|
) {
|
|
371611
372024
|
const silentJSONParsing = transitional && transitional.silentJSONParsing;
|
|
371612
372025
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
371613
372026
|
|
|
371614
372027
|
try {
|
|
371615
|
-
return JSON.parse(data, this
|
|
372028
|
+
return JSON.parse(data, own(this, 'parseReviver'));
|
|
371616
372029
|
} catch (e) {
|
|
371617
372030
|
if (strictJSONParsing) {
|
|
371618
372031
|
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
|
|
372032
|
+
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
372033
|
}
|
|
371621
372034
|
throw e;
|
|
371622
372035
|
}
|
|
@@ -371656,7 +372069,7 @@ const defaults = {
|
|
|
371656
372069
|
},
|
|
371657
372070
|
};
|
|
371658
372071
|
|
|
371659
|
-
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {
|
|
372072
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'query'], (method) => {
|
|
371660
372073
|
defaults.headers[method] = {};
|
|
371661
372074
|
});
|
|
371662
372075
|
|
|
@@ -371665,9 +372078,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
|
|
|
371665
372078
|
|
|
371666
372079
|
/***/ }),
|
|
371667
372080
|
|
|
371668
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372081
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js":
|
|
371669
372082
|
/*!*********************************************************************************************************!*\
|
|
371670
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372083
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/defaults/transitional.js ***!
|
|
371671
372084
|
\*********************************************************************************************************/
|
|
371672
372085
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371673
372086
|
|
|
@@ -371688,9 +372101,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371688
372101
|
|
|
371689
372102
|
/***/ }),
|
|
371690
372103
|
|
|
371691
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372104
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js":
|
|
371692
372105
|
/*!********************************************************************************************!*\
|
|
371693
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372106
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/env/data.js ***!
|
|
371694
372107
|
\********************************************************************************************/
|
|
371695
372108
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371696
372109
|
|
|
@@ -371699,13 +372112,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371699
372112
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371700
372113
|
/* harmony export */ VERSION: () => (/* binding */ VERSION)
|
|
371701
372114
|
/* harmony export */ });
|
|
371702
|
-
const VERSION = "1.
|
|
372115
|
+
const VERSION = "1.16.0";
|
|
371703
372116
|
|
|
371704
372117
|
/***/ }),
|
|
371705
372118
|
|
|
371706
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372119
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js":
|
|
371707
372120
|
/*!****************************************************************************************************************!*\
|
|
371708
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372121
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
|
|
371709
372122
|
\****************************************************************************************************************/
|
|
371710
372123
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371711
372124
|
|
|
@@ -371714,7 +372127,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
371714
372127
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371715
372128
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
371716
372129
|
/* harmony export */ });
|
|
371717
|
-
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372130
|
+
/* 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
372131
|
|
|
371719
372132
|
|
|
371720
372133
|
|
|
@@ -371735,9 +372148,8 @@ function encode(str) {
|
|
|
371735
372148
|
')': '%29',
|
|
371736
372149
|
'~': '%7E',
|
|
371737
372150
|
'%20': '+',
|
|
371738
|
-
'%00': '\x00',
|
|
371739
372151
|
};
|
|
371740
|
-
return encodeURIComponent(str).replace(/[!'()~]|%20
|
|
372152
|
+
return encodeURIComponent(str).replace(/[!'()~]|%20/g, function replacer(match) {
|
|
371741
372153
|
return charMap[match];
|
|
371742
372154
|
});
|
|
371743
372155
|
}
|
|
@@ -371781,9 +372193,9 @@ prototype.toString = function toString(encoder) {
|
|
|
371781
372193
|
|
|
371782
372194
|
/***/ }),
|
|
371783
372195
|
|
|
371784
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372196
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/HttpStatusCode.js":
|
|
371785
372197
|
/*!**********************************************************************************************************!*\
|
|
371786
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372198
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/HttpStatusCode.js ***!
|
|
371787
372199
|
\**********************************************************************************************************/
|
|
371788
372200
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371789
372201
|
|
|
@@ -371873,9 +372285,9 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
371873
372285
|
|
|
371874
372286
|
/***/ }),
|
|
371875
372287
|
|
|
371876
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372288
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js":
|
|
371877
372289
|
/*!************************************************************************************************!*\
|
|
371878
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372290
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/bind.js ***!
|
|
371879
372291
|
\************************************************************************************************/
|
|
371880
372292
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371881
372293
|
|
|
@@ -371902,19 +372314,20 @@ function bind(fn, thisArg) {
|
|
|
371902
372314
|
|
|
371903
372315
|
/***/ }),
|
|
371904
372316
|
|
|
371905
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372317
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js":
|
|
371906
372318
|
/*!****************************************************************************************************!*\
|
|
371907
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372319
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/buildURL.js ***!
|
|
371908
372320
|
\****************************************************************************************************/
|
|
371909
372321
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371910
372322
|
|
|
371911
372323
|
"use strict";
|
|
371912
372324
|
__webpack_require__.r(__webpack_exports__);
|
|
371913
372325
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
371914
|
-
/* harmony export */ "default": () => (/* binding */ buildURL)
|
|
372326
|
+
/* harmony export */ "default": () => (/* binding */ buildURL),
|
|
372327
|
+
/* harmony export */ encode: () => (/* binding */ encode)
|
|
371915
372328
|
/* 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.
|
|
372329
|
+
/* 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");
|
|
372330
|
+
/* 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
372331
|
|
|
371919
372332
|
|
|
371920
372333
|
|
|
@@ -371985,9 +372398,9 @@ function buildURL(url, params, options) {
|
|
|
371985
372398
|
|
|
371986
372399
|
/***/ }),
|
|
371987
372400
|
|
|
371988
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372401
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/combineURLs.js":
|
|
371989
372402
|
/*!*******************************************************************************************************!*\
|
|
371990
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372403
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/combineURLs.js ***!
|
|
371991
372404
|
\*******************************************************************************************************/
|
|
371992
372405
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
371993
372406
|
|
|
@@ -372015,9 +372428,9 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
372015
372428
|
|
|
372016
372429
|
/***/ }),
|
|
372017
372430
|
|
|
372018
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372431
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/composeSignals.js":
|
|
372019
372432
|
/*!**********************************************************************************************************!*\
|
|
372020
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372433
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/composeSignals.js ***!
|
|
372021
372434
|
\**********************************************************************************************************/
|
|
372022
372435
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372023
372436
|
|
|
@@ -372026,9 +372439,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372026
372439
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372027
372440
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372028
372441
|
/* 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.
|
|
372442
|
+
/* 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");
|
|
372443
|
+
/* 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");
|
|
372444
|
+
/* 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
372445
|
|
|
372033
372446
|
|
|
372034
372447
|
|
|
@@ -372089,9 +372502,9 @@ const composeSignals = (signals, timeout) => {
|
|
|
372089
372502
|
|
|
372090
372503
|
/***/ }),
|
|
372091
372504
|
|
|
372092
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372505
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/cookies.js":
|
|
372093
372506
|
/*!***************************************************************************************************!*\
|
|
372094
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372507
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/cookies.js ***!
|
|
372095
372508
|
\***************************************************************************************************/
|
|
372096
372509
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372097
372510
|
|
|
@@ -372100,8 +372513,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372100
372513
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372101
372514
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372102
372515
|
/* 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.
|
|
372516
|
+
/* 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");
|
|
372517
|
+
/* 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
372518
|
|
|
372106
372519
|
|
|
372107
372520
|
|
|
@@ -372134,8 +372547,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372134
372547
|
|
|
372135
372548
|
read(name) {
|
|
372136
372549
|
if (typeof document === 'undefined') return null;
|
|
372137
|
-
|
|
372138
|
-
|
|
372550
|
+
// Match name=value by splitting on the semicolon separator instead of building a
|
|
372551
|
+
// RegExp from `name` — interpolating an unescaped string into a RegExp would let
|
|
372552
|
+
// metacharacters (e.g. `.+?` in an attacker-influenced cookie name) cause ReDoS or
|
|
372553
|
+
// match the wrong cookie. Browsers may serialize cookie pairs as either ";" or
|
|
372554
|
+
// "; ", so ignore optional whitespace before each cookie name.
|
|
372555
|
+
const cookies = document.cookie.split(';');
|
|
372556
|
+
for (let i = 0; i < cookies.length; i++) {
|
|
372557
|
+
const cookie = cookies[i].replace(/^\s+/, '');
|
|
372558
|
+
const eq = cookie.indexOf('=');
|
|
372559
|
+
if (eq !== -1 && cookie.slice(0, eq) === name) {
|
|
372560
|
+
return decodeURIComponent(cookie.slice(eq + 1));
|
|
372561
|
+
}
|
|
372562
|
+
}
|
|
372563
|
+
return null;
|
|
372139
372564
|
},
|
|
372140
372565
|
|
|
372141
372566
|
remove(name) {
|
|
@@ -372154,9 +372579,124 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372154
372579
|
|
|
372155
372580
|
/***/ }),
|
|
372156
372581
|
|
|
372157
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372582
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js":
|
|
372583
|
+
/*!***********************************************************************************************************************!*\
|
|
372584
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js ***!
|
|
372585
|
+
\***********************************************************************************************************************/
|
|
372586
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372587
|
+
|
|
372588
|
+
"use strict";
|
|
372589
|
+
__webpack_require__.r(__webpack_exports__);
|
|
372590
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372591
|
+
/* harmony export */ "default": () => (/* binding */ estimateDataURLDecodedBytes)
|
|
372592
|
+
/* harmony export */ });
|
|
372593
|
+
/**
|
|
372594
|
+
* Estimate decoded byte length of a data:// URL *without* allocating large buffers.
|
|
372595
|
+
* - For base64: compute exact decoded size using length and padding;
|
|
372596
|
+
* handle %XX at the character-count level (no string allocation).
|
|
372597
|
+
* - For non-base64: use UTF-8 byteLength of the encoded body as a safe upper bound.
|
|
372598
|
+
*
|
|
372599
|
+
* @param {string} url
|
|
372600
|
+
* @returns {number}
|
|
372601
|
+
*/
|
|
372602
|
+
function estimateDataURLDecodedBytes(url) {
|
|
372603
|
+
if (!url || typeof url !== 'string') return 0;
|
|
372604
|
+
if (!url.startsWith('data:')) return 0;
|
|
372605
|
+
|
|
372606
|
+
const comma = url.indexOf(',');
|
|
372607
|
+
if (comma < 0) return 0;
|
|
372608
|
+
|
|
372609
|
+
const meta = url.slice(5, comma);
|
|
372610
|
+
const body = url.slice(comma + 1);
|
|
372611
|
+
const isBase64 = /;base64/i.test(meta);
|
|
372612
|
+
|
|
372613
|
+
if (isBase64) {
|
|
372614
|
+
let effectiveLen = body.length;
|
|
372615
|
+
const len = body.length; // cache length
|
|
372616
|
+
|
|
372617
|
+
for (let i = 0; i < len; i++) {
|
|
372618
|
+
if (body.charCodeAt(i) === 37 /* '%' */ && i + 2 < len) {
|
|
372619
|
+
const a = body.charCodeAt(i + 1);
|
|
372620
|
+
const b = body.charCodeAt(i + 2);
|
|
372621
|
+
const isHex =
|
|
372622
|
+
((a >= 48 && a <= 57) || (a >= 65 && a <= 70) || (a >= 97 && a <= 102)) &&
|
|
372623
|
+
((b >= 48 && b <= 57) || (b >= 65 && b <= 70) || (b >= 97 && b <= 102));
|
|
372624
|
+
|
|
372625
|
+
if (isHex) {
|
|
372626
|
+
effectiveLen -= 2;
|
|
372627
|
+
i += 2;
|
|
372628
|
+
}
|
|
372629
|
+
}
|
|
372630
|
+
}
|
|
372631
|
+
|
|
372632
|
+
let pad = 0;
|
|
372633
|
+
let idx = len - 1;
|
|
372634
|
+
|
|
372635
|
+
const tailIsPct3D = (j) =>
|
|
372636
|
+
j >= 2 &&
|
|
372637
|
+
body.charCodeAt(j - 2) === 37 && // '%'
|
|
372638
|
+
body.charCodeAt(j - 1) === 51 && // '3'
|
|
372639
|
+
(body.charCodeAt(j) === 68 || body.charCodeAt(j) === 100); // 'D' or 'd'
|
|
372640
|
+
|
|
372641
|
+
if (idx >= 0) {
|
|
372642
|
+
if (body.charCodeAt(idx) === 61 /* '=' */) {
|
|
372643
|
+
pad++;
|
|
372644
|
+
idx--;
|
|
372645
|
+
} else if (tailIsPct3D(idx)) {
|
|
372646
|
+
pad++;
|
|
372647
|
+
idx -= 3;
|
|
372648
|
+
}
|
|
372649
|
+
}
|
|
372650
|
+
|
|
372651
|
+
if (pad === 1 && idx >= 0) {
|
|
372652
|
+
if (body.charCodeAt(idx) === 61 /* '=' */) {
|
|
372653
|
+
pad++;
|
|
372654
|
+
} else if (tailIsPct3D(idx)) {
|
|
372655
|
+
pad++;
|
|
372656
|
+
}
|
|
372657
|
+
}
|
|
372658
|
+
|
|
372659
|
+
const groups = Math.floor(effectiveLen / 4);
|
|
372660
|
+
const bytes = groups * 3 - (pad || 0);
|
|
372661
|
+
return bytes > 0 ? bytes : 0;
|
|
372662
|
+
}
|
|
372663
|
+
|
|
372664
|
+
if (typeof Buffer !== 'undefined' && typeof Buffer.byteLength === 'function') {
|
|
372665
|
+
return Buffer.byteLength(body, 'utf8');
|
|
372666
|
+
}
|
|
372667
|
+
|
|
372668
|
+
// Compute UTF-8 byte length directly from UTF-16 code units without allocating
|
|
372669
|
+
// a byte buffer (TextEncoder.encode would defeat the DoS guard on large bodies).
|
|
372670
|
+
// Using body.length here would undercount non-ASCII (e.g. '€' is 1 code unit
|
|
372671
|
+
// but 3 UTF-8 bytes).
|
|
372672
|
+
let bytes = 0;
|
|
372673
|
+
for (let i = 0, len = body.length; i < len; i++) {
|
|
372674
|
+
const c = body.charCodeAt(i);
|
|
372675
|
+
if (c < 0x80) {
|
|
372676
|
+
bytes += 1;
|
|
372677
|
+
} else if (c < 0x800) {
|
|
372678
|
+
bytes += 2;
|
|
372679
|
+
} else if (c >= 0xd800 && c <= 0xdbff && i + 1 < len) {
|
|
372680
|
+
const next = body.charCodeAt(i + 1);
|
|
372681
|
+
if (next >= 0xdc00 && next <= 0xdfff) {
|
|
372682
|
+
bytes += 4;
|
|
372683
|
+
i++;
|
|
372684
|
+
} else {
|
|
372685
|
+
bytes += 3;
|
|
372686
|
+
}
|
|
372687
|
+
} else {
|
|
372688
|
+
bytes += 3;
|
|
372689
|
+
}
|
|
372690
|
+
}
|
|
372691
|
+
return bytes;
|
|
372692
|
+
}
|
|
372693
|
+
|
|
372694
|
+
|
|
372695
|
+
/***/ }),
|
|
372696
|
+
|
|
372697
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js":
|
|
372158
372698
|
/*!**********************************************************************************************************!*\
|
|
372159
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372699
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/formDataToJSON.js ***!
|
|
372160
372700
|
\**********************************************************************************************************/
|
|
372161
372701
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372162
372702
|
|
|
@@ -372165,7 +372705,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372165
372705
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372166
372706
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372167
372707
|
/* harmony export */ });
|
|
372168
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372708
|
+
/* 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
372709
|
|
|
372170
372710
|
|
|
372171
372711
|
|
|
@@ -372226,7 +372766,9 @@ function formDataToJSON(formData) {
|
|
|
372226
372766
|
|
|
372227
372767
|
if (isLast) {
|
|
372228
372768
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasOwnProp(target, name)) {
|
|
372229
|
-
target[name] = [target[name]
|
|
372769
|
+
target[name] = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(target[name])
|
|
372770
|
+
? target[name].concat(value)
|
|
372771
|
+
: [target[name], value];
|
|
372230
372772
|
} else {
|
|
372231
372773
|
target[name] = value;
|
|
372232
372774
|
}
|
|
@@ -372265,9 +372807,9 @@ function formDataToJSON(formData) {
|
|
|
372265
372807
|
|
|
372266
372808
|
/***/ }),
|
|
372267
372809
|
|
|
372268
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372810
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAbsoluteURL.js":
|
|
372269
372811
|
/*!*********************************************************************************************************!*\
|
|
372270
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372812
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
|
|
372271
372813
|
\*********************************************************************************************************/
|
|
372272
372814
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372273
372815
|
|
|
@@ -372299,9 +372841,9 @@ function isAbsoluteURL(url) {
|
|
|
372299
372841
|
|
|
372300
372842
|
/***/ }),
|
|
372301
372843
|
|
|
372302
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372844
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAxiosError.js":
|
|
372303
372845
|
/*!********************************************************************************************************!*\
|
|
372304
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372846
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isAxiosError.js ***!
|
|
372305
372847
|
\********************************************************************************************************/
|
|
372306
372848
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372307
372849
|
|
|
@@ -372310,7 +372852,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372310
372852
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372311
372853
|
/* harmony export */ "default": () => (/* binding */ isAxiosError)
|
|
372312
372854
|
/* harmony export */ });
|
|
372313
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372855
|
+
/* 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
372856
|
|
|
372315
372857
|
|
|
372316
372858
|
|
|
@@ -372329,9 +372871,9 @@ function isAxiosError(payload) {
|
|
|
372329
372871
|
|
|
372330
372872
|
/***/ }),
|
|
372331
372873
|
|
|
372332
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372874
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
|
372333
372875
|
/*!***********************************************************************************************************!*\
|
|
372334
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372876
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
|
|
372335
372877
|
\***********************************************************************************************************/
|
|
372336
372878
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372337
372879
|
|
|
@@ -372340,7 +372882,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372340
372882
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372341
372883
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372342
372884
|
/* 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.
|
|
372885
|
+
/* 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
372886
|
|
|
372345
372887
|
|
|
372346
372888
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv
|
|
@@ -372361,9 +372903,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372361
372903
|
|
|
372362
372904
|
/***/ }),
|
|
372363
372905
|
|
|
372364
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372906
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js":
|
|
372365
372907
|
/*!************************************************************************************************!*\
|
|
372366
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372908
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/null.js ***!
|
|
372367
372909
|
\************************************************************************************************/
|
|
372368
372910
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372369
372911
|
|
|
@@ -372378,9 +372920,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372378
372920
|
|
|
372379
372921
|
/***/ }),
|
|
372380
372922
|
|
|
372381
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372923
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseHeaders.js":
|
|
372382
372924
|
/*!********************************************************************************************************!*\
|
|
372383
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
372925
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseHeaders.js ***!
|
|
372384
372926
|
\********************************************************************************************************/
|
|
372385
372927
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372386
372928
|
|
|
@@ -372389,7 +372931,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372389
372931
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372390
372932
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372391
372933
|
/* harmony export */ });
|
|
372392
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
372934
|
+
/* 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
372935
|
|
|
372394
372936
|
|
|
372395
372937
|
|
|
@@ -372463,9 +373005,9 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
|
|
|
372463
373005
|
|
|
372464
373006
|
/***/ }),
|
|
372465
373007
|
|
|
372466
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373008
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseProtocol.js":
|
|
372467
373009
|
/*!*********************************************************************************************************!*\
|
|
372468
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373010
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/parseProtocol.js ***!
|
|
372469
373011
|
\*********************************************************************************************************/
|
|
372470
373012
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372471
373013
|
|
|
@@ -372477,16 +373019,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372477
373019
|
|
|
372478
373020
|
|
|
372479
373021
|
function parseProtocol(url) {
|
|
372480
|
-
const match = /^([-+\w]{1,25})(
|
|
373022
|
+
const match = /^([-+\w]{1,25}):(?:\/\/)?/.exec(url);
|
|
372481
373023
|
return (match && match[1]) || '';
|
|
372482
373024
|
}
|
|
372483
373025
|
|
|
372484
373026
|
|
|
372485
373027
|
/***/ }),
|
|
372486
373028
|
|
|
372487
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373029
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js":
|
|
372488
373030
|
/*!****************************************************************************************************************!*\
|
|
372489
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373031
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/progressEventReducer.js ***!
|
|
372490
373032
|
\****************************************************************************************************************/
|
|
372491
373033
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372492
373034
|
|
|
@@ -372497,9 +373039,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372497
373039
|
/* harmony export */ progressEventDecorator: () => (/* binding */ progressEventDecorator),
|
|
372498
373040
|
/* harmony export */ progressEventReducer: () => (/* binding */ progressEventReducer)
|
|
372499
373041
|
/* 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.
|
|
373042
|
+
/* 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");
|
|
373043
|
+
/* 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");
|
|
373044
|
+
/* 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
373045
|
|
|
372504
373046
|
|
|
372505
373047
|
|
|
@@ -372509,13 +373051,13 @@ const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
|
372509
373051
|
const _speedometer = (0,_speedometer_js__WEBPACK_IMPORTED_MODULE_0__["default"])(50, 250);
|
|
372510
373052
|
|
|
372511
373053
|
return (0,_throttle_js__WEBPACK_IMPORTED_MODULE_1__["default"])((e) => {
|
|
372512
|
-
const
|
|
373054
|
+
const rawLoaded = e.loaded;
|
|
372513
373055
|
const total = e.lengthComputable ? e.total : undefined;
|
|
372514
|
-
const
|
|
373056
|
+
const loaded = total != null ? Math.min(rawLoaded, total) : rawLoaded;
|
|
373057
|
+
const progressBytes = Math.max(0, loaded - bytesNotified);
|
|
372515
373058
|
const rate = _speedometer(progressBytes);
|
|
372516
|
-
const inRange = loaded <= total;
|
|
372517
373059
|
|
|
372518
|
-
bytesNotified = loaded;
|
|
373060
|
+
bytesNotified = Math.max(bytesNotified, loaded);
|
|
372519
373061
|
|
|
372520
373062
|
const data = {
|
|
372521
373063
|
loaded,
|
|
@@ -372523,7 +373065,7 @@ const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
|
372523
373065
|
progress: total ? loaded / total : undefined,
|
|
372524
373066
|
bytes: progressBytes,
|
|
372525
373067
|
rate: rate ? rate : undefined,
|
|
372526
|
-
estimated: rate && total
|
|
373068
|
+
estimated: rate && total ? (total - loaded) / rate : undefined,
|
|
372527
373069
|
event: e,
|
|
372528
373070
|
lengthComputable: total != null,
|
|
372529
373071
|
[isDownloadStream ? 'download' : 'upload']: true,
|
|
@@ -372555,9 +373097,9 @@ const asyncDecorator =
|
|
|
372555
373097
|
|
|
372556
373098
|
/***/ }),
|
|
372557
373099
|
|
|
372558
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373100
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js":
|
|
372559
373101
|
/*!*********************************************************************************************************!*\
|
|
372560
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373102
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/resolveConfig.js ***!
|
|
372561
373103
|
\*********************************************************************************************************/
|
|
372562
373104
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372563
373105
|
|
|
@@ -372566,14 +373108,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372566
373108
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372567
373109
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372568
373110
|
/* 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
|
|
373111
|
+
/* 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");
|
|
373112
|
+
/* 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");
|
|
373113
|
+
/* 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");
|
|
373114
|
+
/* 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");
|
|
373115
|
+
/* 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");
|
|
373116
|
+
/* 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");
|
|
373117
|
+
/* 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");
|
|
373118
|
+
/* 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");
|
|
373119
|
+
|
|
373120
|
+
|
|
372577
373121
|
|
|
372578
373122
|
|
|
372579
373123
|
|
|
@@ -372581,17 +373125,55 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372581
373125
|
|
|
372582
373126
|
|
|
372583
373127
|
|
|
373128
|
+
const FORM_DATA_CONTENT_HEADERS = ['content-type', 'content-length'];
|
|
372584
373129
|
|
|
373130
|
+
function setFormDataHeaders(headers, formHeaders, policy) {
|
|
373131
|
+
if (policy !== 'content-only') {
|
|
373132
|
+
headers.set(formHeaders);
|
|
373133
|
+
return;
|
|
373134
|
+
}
|
|
373135
|
+
|
|
373136
|
+
Object.entries(formHeaders).forEach(([key, val]) => {
|
|
373137
|
+
if (FORM_DATA_CONTENT_HEADERS.includes(key.toLowerCase())) {
|
|
373138
|
+
headers.set(key, val);
|
|
373139
|
+
}
|
|
373140
|
+
});
|
|
373141
|
+
}
|
|
373142
|
+
|
|
373143
|
+
/**
|
|
373144
|
+
* Encode a UTF-8 string to a Latin-1 byte string for use with btoa().
|
|
373145
|
+
* This is a modern replacement for the deprecated unescape(encodeURIComponent(str)) pattern.
|
|
373146
|
+
*
|
|
373147
|
+
* @param {string} str The string to encode
|
|
373148
|
+
*
|
|
373149
|
+
* @returns {string} UTF-8 bytes as a Latin-1 string
|
|
373150
|
+
*/
|
|
373151
|
+
const encodeUTF8 = (str) =>
|
|
373152
|
+
encodeURIComponent(str).replace(/%([0-9A-F]{2})/gi, (_, hex) =>
|
|
373153
|
+
String.fromCharCode(parseInt(hex, 16))
|
|
373154
|
+
);
|
|
372585
373155
|
|
|
372586
373156
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((config) => {
|
|
372587
373157
|
const newConfig = (0,_core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__["default"])({}, config);
|
|
372588
373158
|
|
|
372589
|
-
|
|
373159
|
+
// Read only own properties to prevent prototype pollution gadgets
|
|
373160
|
+
// (e.g. Object.prototype.baseURL = 'https://evil.com').
|
|
373161
|
+
const own = (key) => (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(newConfig, key) ? newConfig[key] : undefined);
|
|
372590
373162
|
|
|
372591
|
-
|
|
373163
|
+
const data = own('data');
|
|
373164
|
+
let withXSRFToken = own('withXSRFToken');
|
|
373165
|
+
const xsrfHeaderName = own('xsrfHeaderName');
|
|
373166
|
+
const xsrfCookieName = own('xsrfCookieName');
|
|
373167
|
+
let headers = own('headers');
|
|
373168
|
+
const auth = own('auth');
|
|
373169
|
+
const baseURL = own('baseURL');
|
|
373170
|
+
const allowAbsoluteUrls = own('allowAbsoluteUrls');
|
|
373171
|
+
const url = own('url');
|
|
372592
373172
|
|
|
372593
|
-
newConfig.
|
|
372594
|
-
|
|
373173
|
+
newConfig.headers = headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_2__["default"].from(headers);
|
|
373174
|
+
|
|
373175
|
+
newConfig.url = (0,_buildURL_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
|
|
373176
|
+
(0,_core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__["default"])(baseURL, url, allowAbsoluteUrls),
|
|
372595
373177
|
config.params,
|
|
372596
373178
|
config.paramsSerializer
|
|
372597
373179
|
);
|
|
@@ -372601,27 +373183,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372601
373183
|
headers.set(
|
|
372602
373184
|
'Authorization',
|
|
372603
373185
|
'Basic ' +
|
|
372604
|
-
btoa(
|
|
372605
|
-
(auth.username || '') +
|
|
372606
|
-
':' +
|
|
372607
|
-
(auth.password ? unescape(encodeURIComponent(auth.password)) : '')
|
|
372608
|
-
)
|
|
373186
|
+
btoa((auth.username || '') + ':' + (auth.password ? encodeUTF8(auth.password) : ''))
|
|
372609
373187
|
);
|
|
372610
373188
|
}
|
|
372611
373189
|
|
|
372612
|
-
if (
|
|
373190
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFormData(data)) {
|
|
372613
373191
|
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserEnv || _platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserWebWorkerEnv) {
|
|
372614
373192
|
headers.setContentType(undefined); // browser handles it
|
|
372615
|
-
} else if (
|
|
373193
|
+
} else if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFunction(data.getHeaders)) {
|
|
372616
373194
|
// 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
|
-
});
|
|
373195
|
+
setFormDataHeaders(headers, data.getHeaders(), own('formDataHeaderPolicy'));
|
|
372625
373196
|
}
|
|
372626
373197
|
}
|
|
372627
373198
|
|
|
@@ -372630,10 +373201,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372630
373201
|
// Specifically not if we're in a web worker, or react-native.
|
|
372631
373202
|
|
|
372632
373203
|
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_5__["default"].hasStandardBrowserEnv) {
|
|
372633
|
-
|
|
373204
|
+
if (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isFunction(withXSRFToken)) {
|
|
373205
|
+
withXSRFToken = withXSRFToken(newConfig);
|
|
373206
|
+
}
|
|
373207
|
+
|
|
373208
|
+
// Strict boolean check — prevents proto-pollution gadgets (e.g. Object.prototype.withXSRFToken = 1)
|
|
373209
|
+
// and misconfigurations (e.g. "false") from short-circuiting the same-origin check and leaking
|
|
373210
|
+
// the XSRF token cross-origin.
|
|
373211
|
+
const shouldSendXSRF =
|
|
373212
|
+
withXSRFToken === true || (withXSRFToken == null && (0,_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__["default"])(newConfig.url));
|
|
372634
373213
|
|
|
372635
|
-
if (
|
|
372636
|
-
// Add xsrf header
|
|
373214
|
+
if (shouldSendXSRF) {
|
|
372637
373215
|
const xsrfValue = xsrfHeaderName && xsrfCookieName && _cookies_js__WEBPACK_IMPORTED_MODULE_7__["default"].read(xsrfCookieName);
|
|
372638
373216
|
|
|
372639
373217
|
if (xsrfValue) {
|
|
@@ -372648,9 +373226,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372648
373226
|
|
|
372649
373227
|
/***/ }),
|
|
372650
373228
|
|
|
372651
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373229
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/speedometer.js":
|
|
372652
373230
|
/*!*******************************************************************************************************!*\
|
|
372653
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373231
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/speedometer.js ***!
|
|
372654
373232
|
\*******************************************************************************************************/
|
|
372655
373233
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372656
373234
|
|
|
@@ -372718,9 +373296,9 @@ function speedometer(samplesCount, min) {
|
|
|
372718
373296
|
|
|
372719
373297
|
/***/ }),
|
|
372720
373298
|
|
|
372721
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373299
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/spread.js":
|
|
372722
373300
|
/*!**************************************************************************************************!*\
|
|
372723
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373301
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/spread.js ***!
|
|
372724
373302
|
\**************************************************************************************************/
|
|
372725
373303
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372726
373304
|
|
|
@@ -372761,9 +373339,9 @@ function spread(callback) {
|
|
|
372761
373339
|
|
|
372762
373340
|
/***/ }),
|
|
372763
373341
|
|
|
372764
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373342
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/throttle.js":
|
|
372765
373343
|
/*!****************************************************************************************************!*\
|
|
372766
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373344
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/throttle.js ***!
|
|
372767
373345
|
\****************************************************************************************************/
|
|
372768
373346
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372769
373347
|
|
|
@@ -372820,9 +373398,9 @@ function throttle(fn, freq) {
|
|
|
372820
373398
|
|
|
372821
373399
|
/***/ }),
|
|
372822
373400
|
|
|
372823
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373401
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js":
|
|
372824
373402
|
/*!******************************************************************************************************!*\
|
|
372825
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373403
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toFormData.js ***!
|
|
372826
373404
|
\******************************************************************************************************/
|
|
372827
373405
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
372828
373406
|
|
|
@@ -372831,9 +373409,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
372831
373409
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
372832
373410
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
372833
373411
|
/* 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.
|
|
373412
|
+
/* 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");
|
|
373413
|
+
/* 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");
|
|
373414
|
+
/* 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
373415
|
|
|
372838
373416
|
|
|
372839
373417
|
|
|
@@ -372951,6 +373529,7 @@ function toFormData(obj, formData, options) {
|
|
|
372951
373529
|
const dots = options.dots;
|
|
372952
373530
|
const indexes = options.indexes;
|
|
372953
373531
|
const _Blob = options.Blob || (typeof Blob !== 'undefined' && Blob);
|
|
373532
|
+
const maxDepth = options.maxDepth === undefined ? 100 : options.maxDepth;
|
|
372954
373533
|
const useBlob = _Blob && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isSpecCompliantForm(formData);
|
|
372955
373534
|
|
|
372956
373535
|
if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFunction(visitor)) {
|
|
@@ -373043,9 +373622,16 @@ function toFormData(obj, formData, options) {
|
|
|
373043
373622
|
isVisitable,
|
|
373044
373623
|
});
|
|
373045
373624
|
|
|
373046
|
-
function build(value, path) {
|
|
373625
|
+
function build(value, path, depth = 0) {
|
|
373047
373626
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isUndefined(value)) return;
|
|
373048
373627
|
|
|
373628
|
+
if (depth > maxDepth) {
|
|
373629
|
+
throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"](
|
|
373630
|
+
'Object is too deeply nested (' + depth + ' levels). Max depth: ' + maxDepth,
|
|
373631
|
+
_core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_FORM_DATA_DEPTH_EXCEEDED
|
|
373632
|
+
);
|
|
373633
|
+
}
|
|
373634
|
+
|
|
373049
373635
|
if (stack.indexOf(value) !== -1) {
|
|
373050
373636
|
throw Error('Circular reference detected in ' + path.join('.'));
|
|
373051
373637
|
}
|
|
@@ -373058,7 +373644,7 @@ function toFormData(obj, formData, options) {
|
|
|
373058
373644
|
visitor.call(formData, el, _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isString(key) ? key.trim() : key, path, exposedHelpers);
|
|
373059
373645
|
|
|
373060
373646
|
if (result === true) {
|
|
373061
|
-
build(el, path ? path.concat(key) : [key]);
|
|
373647
|
+
build(el, path ? path.concat(key) : [key], depth + 1);
|
|
373062
373648
|
}
|
|
373063
373649
|
});
|
|
373064
373650
|
|
|
@@ -373079,9 +373665,9 @@ function toFormData(obj, formData, options) {
|
|
|
373079
373665
|
|
|
373080
373666
|
/***/ }),
|
|
373081
373667
|
|
|
373082
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373668
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toURLEncodedForm.js":
|
|
373083
373669
|
/*!************************************************************************************************************!*\
|
|
373084
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373670
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
|
|
373085
373671
|
\************************************************************************************************************/
|
|
373086
373672
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373087
373673
|
|
|
@@ -373090,9 +373676,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373090
373676
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373091
373677
|
/* harmony export */ "default": () => (/* binding */ toURLEncodedForm)
|
|
373092
373678
|
/* 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.
|
|
373679
|
+
/* 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");
|
|
373680
|
+
/* 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");
|
|
373681
|
+
/* 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
373682
|
|
|
373097
373683
|
|
|
373098
373684
|
|
|
@@ -373116,9 +373702,9 @@ function toURLEncodedForm(data, options) {
|
|
|
373116
373702
|
|
|
373117
373703
|
/***/ }),
|
|
373118
373704
|
|
|
373119
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373705
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/trackStream.js":
|
|
373120
373706
|
/*!*******************************************************************************************************!*\
|
|
373121
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373707
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/trackStream.js ***!
|
|
373122
373708
|
\*******************************************************************************************************/
|
|
373123
373709
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373124
373710
|
|
|
@@ -373222,9 +373808,9 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
|
|
|
373222
373808
|
|
|
373223
373809
|
/***/ }),
|
|
373224
373810
|
|
|
373225
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373811
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/validator.js":
|
|
373226
373812
|
/*!*****************************************************************************************************!*\
|
|
373227
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373813
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/helpers/validator.js ***!
|
|
373228
373814
|
\*****************************************************************************************************/
|
|
373229
373815
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373230
373816
|
|
|
@@ -373233,8 +373819,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373233
373819
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373234
373820
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373235
373821
|
/* 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.
|
|
373822
|
+
/* 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");
|
|
373823
|
+
/* 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
373824
|
|
|
373239
373825
|
|
|
373240
373826
|
|
|
@@ -373323,7 +373909,9 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
373323
373909
|
let i = keys.length;
|
|
373324
373910
|
while (i-- > 0) {
|
|
373325
373911
|
const opt = keys[i];
|
|
373326
|
-
|
|
373912
|
+
// Use hasOwnProperty so a polluted Object.prototype.<opt> cannot supply
|
|
373913
|
+
// a non-function validator and cause a TypeError.
|
|
373914
|
+
const validator = Object.prototype.hasOwnProperty.call(schema, opt) ? schema[opt] : undefined;
|
|
373327
373915
|
if (validator) {
|
|
373328
373916
|
const value = options[opt];
|
|
373329
373917
|
const result = value === undefined || validator(value, opt, options);
|
|
@@ -373349,9 +373937,9 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
373349
373937
|
|
|
373350
373938
|
/***/ }),
|
|
373351
373939
|
|
|
373352
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373940
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/Blob.js":
|
|
373353
373941
|
/*!*****************************************************************************************************************!*\
|
|
373354
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373942
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/Blob.js ***!
|
|
373355
373943
|
\*****************************************************************************************************************/
|
|
373356
373944
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373357
373945
|
|
|
@@ -373367,9 +373955,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373367
373955
|
|
|
373368
373956
|
/***/ }),
|
|
373369
373957
|
|
|
373370
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373958
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/FormData.js":
|
|
373371
373959
|
/*!*********************************************************************************************************************!*\
|
|
373372
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373960
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/FormData.js ***!
|
|
373373
373961
|
\*********************************************************************************************************************/
|
|
373374
373962
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373375
373963
|
|
|
@@ -373385,9 +373973,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373385
373973
|
|
|
373386
373974
|
/***/ }),
|
|
373387
373975
|
|
|
373388
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373976
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js":
|
|
373389
373977
|
/*!****************************************************************************************************************************!*\
|
|
373390
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373978
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
|
|
373391
373979
|
\****************************************************************************************************************************/
|
|
373392
373980
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373393
373981
|
|
|
@@ -373396,7 +373984,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373396
373984
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373397
373985
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373398
373986
|
/* 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.
|
|
373987
|
+
/* 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
373988
|
|
|
373401
373989
|
|
|
373402
373990
|
|
|
@@ -373405,9 +373993,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373405
373993
|
|
|
373406
373994
|
/***/ }),
|
|
373407
373995
|
|
|
373408
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
373996
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/index.js":
|
|
373409
373997
|
/*!**********************************************************************************************************!*\
|
|
373410
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
373998
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/browser/index.js ***!
|
|
373411
373999
|
\**********************************************************************************************************/
|
|
373412
374000
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373413
374001
|
|
|
@@ -373416,9 +374004,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373416
374004
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373417
374005
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373418
374006
|
/* 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.
|
|
374007
|
+
/* 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");
|
|
374008
|
+
/* 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");
|
|
374009
|
+
/* 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
374010
|
|
|
373423
374011
|
|
|
373424
374012
|
|
|
@@ -373436,9 +374024,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373436
374024
|
|
|
373437
374025
|
/***/ }),
|
|
373438
374026
|
|
|
373439
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374027
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/common/utils.js":
|
|
373440
374028
|
/*!*********************************************************************************************************!*\
|
|
373441
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374029
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/common/utils.js ***!
|
|
373442
374030
|
\*********************************************************************************************************/
|
|
373443
374031
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373444
374032
|
|
|
@@ -373501,9 +374089,9 @@ const origin = (hasBrowserEnv && window.location.href) || 'http://localhost';
|
|
|
373501
374089
|
|
|
373502
374090
|
/***/ }),
|
|
373503
374091
|
|
|
373504
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374092
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js":
|
|
373505
374093
|
/*!**************************************************************************************************!*\
|
|
373506
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374094
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/platform/index.js ***!
|
|
373507
374095
|
\**************************************************************************************************/
|
|
373508
374096
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373509
374097
|
|
|
@@ -373512,8 +374100,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373512
374100
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373513
374101
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373514
374102
|
/* 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.
|
|
374103
|
+
/* 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");
|
|
374104
|
+
/* 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
374105
|
|
|
373518
374106
|
|
|
373519
374107
|
|
|
@@ -373525,9 +374113,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373525
374113
|
|
|
373526
374114
|
/***/ }),
|
|
373527
374115
|
|
|
373528
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.
|
|
374116
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js":
|
|
373529
374117
|
/*!*****************************************************************************************!*\
|
|
373530
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.
|
|
374118
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.16.0/node_modules/axios/lib/utils.js ***!
|
|
373531
374119
|
\*****************************************************************************************/
|
|
373532
374120
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
373533
374121
|
|
|
@@ -373536,7 +374124,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
373536
374124
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
373537
374125
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
373538
374126
|
/* 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.
|
|
374127
|
+
/* 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
374128
|
|
|
373541
374129
|
|
|
373542
374130
|
|
|
@@ -373731,21 +374319,21 @@ const isFile = kindOfTest('File');
|
|
|
373731
374319
|
* also have a `name` and `type` attribute to specify filename and content type
|
|
373732
374320
|
*
|
|
373733
374321
|
* @see https://github.com/facebook/react-native/blob/26684cf3adf4094eb6c405d345a75bf8c7c0bf88/Libraries/Network/FormData.js#L68-L71
|
|
373734
|
-
*
|
|
374322
|
+
*
|
|
373735
374323
|
* @param {*} value The value to test
|
|
373736
|
-
*
|
|
374324
|
+
*
|
|
373737
374325
|
* @returns {boolean} True if value is a React Native Blob, otherwise false
|
|
373738
374326
|
*/
|
|
373739
374327
|
const isReactNativeBlob = (value) => {
|
|
373740
374328
|
return !!(value && typeof value.uri !== 'undefined');
|
|
373741
|
-
}
|
|
374329
|
+
};
|
|
373742
374330
|
|
|
373743
374331
|
/**
|
|
373744
374332
|
* Determine if environment is React Native
|
|
373745
374333
|
* ReactNative `FormData` has a non-standard `getParts()` method
|
|
373746
|
-
*
|
|
374334
|
+
*
|
|
373747
374335
|
* @param {*} formData The formData to test
|
|
373748
|
-
*
|
|
374336
|
+
*
|
|
373749
374337
|
* @returns {boolean} True if environment is React Native, otherwise false
|
|
373750
374338
|
*/
|
|
373751
374339
|
const isReactNative = (formData) => formData && typeof formData.getParts !== 'undefined';
|
|
@@ -373764,7 +374352,7 @@ const isBlob = kindOfTest('Blob');
|
|
|
373764
374352
|
*
|
|
373765
374353
|
* @param {*} val The value to test
|
|
373766
374354
|
*
|
|
373767
|
-
* @returns {boolean} True if value is a
|
|
374355
|
+
* @returns {boolean} True if value is a FileList, otherwise false
|
|
373768
374356
|
*/
|
|
373769
374357
|
const isFileList = kindOfTest('FileList');
|
|
373770
374358
|
|
|
@@ -373796,15 +374384,17 @@ const G = getGlobal();
|
|
|
373796
374384
|
const FormDataCtor = typeof G.FormData !== 'undefined' ? G.FormData : undefined;
|
|
373797
374385
|
|
|
373798
374386
|
const isFormData = (thing) => {
|
|
373799
|
-
|
|
373800
|
-
|
|
373801
|
-
|
|
373802
|
-
|
|
373803
|
-
|
|
373804
|
-
|
|
373805
|
-
|
|
373806
|
-
|
|
373807
|
-
|
|
374387
|
+
if (!thing) return false;
|
|
374388
|
+
if (FormDataCtor && thing instanceof FormDataCtor) return true;
|
|
374389
|
+
// Reject plain objects inheriting directly from Object.prototype so prototype-pollution gadgets can't spoof FormData.
|
|
374390
|
+
const proto = getPrototypeOf(thing);
|
|
374391
|
+
if (!proto || proto === Object.prototype) return false;
|
|
374392
|
+
if (!isFunction(thing.append)) return false;
|
|
374393
|
+
const kind = kindOf(thing);
|
|
374394
|
+
return (
|
|
374395
|
+
kind === 'formdata' ||
|
|
374396
|
+
// detect form-data instance
|
|
374397
|
+
(kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
|
|
373808
374398
|
);
|
|
373809
374399
|
};
|
|
373810
374400
|
|
|
@@ -373940,7 +374530,7 @@ const isContextDefined = (context) => !isUndefined(context) && context !== _glob
|
|
|
373940
374530
|
*
|
|
373941
374531
|
* @returns {Object} Result of all merge properties
|
|
373942
374532
|
*/
|
|
373943
|
-
function merge(
|
|
374533
|
+
function merge(...objs) {
|
|
373944
374534
|
const { caseless, skipUndefined } = (isContextDefined(this) && this) || {};
|
|
373945
374535
|
const result = {};
|
|
373946
374536
|
const assignValue = (val, key) => {
|
|
@@ -373950,8 +374540,12 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
373950
374540
|
}
|
|
373951
374541
|
|
|
373952
374542
|
const targetKey = (caseless && findKey(result, key)) || key;
|
|
373953
|
-
|
|
373954
|
-
|
|
374543
|
+
// Read via own-prop only — a bare `result[targetKey]` walks the prototype
|
|
374544
|
+
// chain, so a polluted Object.prototype value could surface here and get
|
|
374545
|
+
// copied into the merged result.
|
|
374546
|
+
const existing = hasOwnProperty(result, targetKey) ? result[targetKey] : undefined;
|
|
374547
|
+
if (isPlainObject(existing) && isPlainObject(val)) {
|
|
374548
|
+
result[targetKey] = merge(existing, val);
|
|
373955
374549
|
} else if (isPlainObject(val)) {
|
|
373956
374550
|
result[targetKey] = merge({}, val);
|
|
373957
374551
|
} else if (isArray(val)) {
|
|
@@ -373961,8 +374555,8 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
373961
374555
|
}
|
|
373962
374556
|
};
|
|
373963
374557
|
|
|
373964
|
-
for (let i = 0, l =
|
|
373965
|
-
|
|
374558
|
+
for (let i = 0, l = objs.length; i < l; i++) {
|
|
374559
|
+
objs[i] && forEach(objs[i], assignValue);
|
|
373966
374560
|
}
|
|
373967
374561
|
return result;
|
|
373968
374562
|
}
|
|
@@ -373984,6 +374578,9 @@ const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
|
373984
374578
|
(val, key) => {
|
|
373985
374579
|
if (thisArg && isFunction(val)) {
|
|
373986
374580
|
Object.defineProperty(a, key, {
|
|
374581
|
+
// Null-proto descriptor so a polluted Object.prototype.get cannot
|
|
374582
|
+
// hijack defineProperty's accessor-vs-data resolution.
|
|
374583
|
+
__proto__: null,
|
|
373987
374584
|
value: (0,_helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(val, thisArg),
|
|
373988
374585
|
writable: true,
|
|
373989
374586
|
enumerable: true,
|
|
@@ -373991,6 +374588,7 @@ const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
|
373991
374588
|
});
|
|
373992
374589
|
} else {
|
|
373993
374590
|
Object.defineProperty(a, key, {
|
|
374591
|
+
__proto__: null,
|
|
373994
374592
|
value: val,
|
|
373995
374593
|
writable: true,
|
|
373996
374594
|
enumerable: true,
|
|
@@ -374029,12 +374627,14 @@ const stripBOM = (content) => {
|
|
|
374029
374627
|
const inherits = (constructor, superConstructor, props, descriptors) => {
|
|
374030
374628
|
constructor.prototype = Object.create(superConstructor.prototype, descriptors);
|
|
374031
374629
|
Object.defineProperty(constructor.prototype, 'constructor', {
|
|
374630
|
+
__proto__: null,
|
|
374032
374631
|
value: constructor,
|
|
374033
374632
|
writable: true,
|
|
374034
374633
|
enumerable: false,
|
|
374035
374634
|
configurable: true,
|
|
374036
374635
|
});
|
|
374037
374636
|
Object.defineProperty(constructor, 'super', {
|
|
374637
|
+
__proto__: null,
|
|
374038
374638
|
value: superConstructor.prototype,
|
|
374039
374639
|
});
|
|
374040
374640
|
props && Object.assign(constructor.prototype, props);
|
|
@@ -374216,7 +374816,7 @@ const reduceDescriptors = (obj, reducer) => {
|
|
|
374216
374816
|
const freezeMethods = (obj) => {
|
|
374217
374817
|
reduceDescriptors(obj, (descriptor, name) => {
|
|
374218
374818
|
// skip restricted props in strict mode
|
|
374219
|
-
if (isFunction(obj) && ['arguments', 'caller', 'callee'].
|
|
374819
|
+
if (isFunction(obj) && ['arguments', 'caller', 'callee'].includes(name)) {
|
|
374220
374820
|
return false;
|
|
374221
374821
|
}
|
|
374222
374822
|
|
|
@@ -377734,7 +378334,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
377734
378334
|
/***/ ((module) => {
|
|
377735
378335
|
|
|
377736
378336
|
"use strict";
|
|
377737
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.9.
|
|
378337
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.9.1","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
378338
|
|
|
377739
378339
|
/***/ }),
|
|
377740
378340
|
|