@itwin/ecschema-rpcinterface-tests 5.7.0-dev.8 → 5.8.0-dev.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.
@@ -785,7 +785,7 @@ __webpack_require__.r(__webpack_exports__);
785
785
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
786
786
  /* harmony export */ AxiosRestClient: () => (/* binding */ AxiosRestClient)
787
787
  /* harmony export */ });
788
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/axios.js");
788
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/axios.js");
789
789
  /* 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");
790
790
  /* 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");
791
791
  /* 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");
@@ -887,7 +887,7 @@ __webpack_require__.r(__webpack_exports__);
887
887
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
888
888
  /* harmony export */ AxiosRetryPolicy: () => (/* binding */ AxiosRetryPolicy)
889
889
  /* harmony export */ });
890
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/index.js");
890
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/index.js");
891
891
  /* 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");
892
892
  /*---------------------------------------------------------------------------------------------
893
893
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
@@ -4435,7 +4435,7 @@ __webpack_require__.r(__webpack_exports__);
4435
4435
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4436
4436
  /* harmony export */ BaseClient: () => (/* binding */ BaseClient)
4437
4437
  /* harmony export */ });
4438
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/axios.js");
4438
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/axios.js");
4439
4439
 
4440
4440
  class BaseClient {
4441
4441
  constructor(url) {
@@ -22736,30 +22736,58 @@ class Logger {
22736
22736
  const minLevel = Logger.getLevel(category);
22737
22737
  return (minLevel !== undefined) && (level >= minLevel);
22738
22738
  }
22739
- /** Log the specified message to the **error** stream.
22740
- * @param category The category of the message.
22741
- * @param message The message.
22742
- * @param metaData Optional data for the message
22743
- */
22744
- static logError(category, message, metaData) {
22745
- if (Logger._logError && Logger.isEnabled(category, LogLevel.Error))
22746
- Logger._logError(category, message, metaData);
22739
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
22740
+ static logError(category, messageOrError, metaData) {
22741
+ if (Logger._logError && Logger.isEnabled(category, LogLevel.Error)) {
22742
+ if (typeof messageOrError === "string") {
22743
+ Logger._logError(category, messageOrError, metaData);
22744
+ }
22745
+ else if (_BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.isError(messageOrError)) {
22746
+ // For backwards compatibility, log BentleyError old way
22747
+ Logger._logError(category, Logger.getExceptionMessage(messageOrError), () => ({ ..._BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getErrorMetadata(messageOrError), exceptionType: messageOrError?.constructor?.name ?? "<Unknown>", ..._BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getMetaData(metaData) }));
22748
+ }
22749
+ else {
22750
+ // Else, return a copy of the error, with non-enumerable members `message` and `stack` removed, as "metadata" for log.
22751
+ Logger._logError(category, Logger.getExceptionMessage(messageOrError), Logger.getExceptionMetaData(messageOrError, metaData));
22752
+ }
22753
+ }
22747
22754
  }
22748
- static getExceptionMessage(err) {
22749
- if (err === undefined) {
22750
- return "Error: err is undefined.";
22755
+ /**
22756
+ * Get a sting message for a given error.
22757
+ * For legacy [[BentleyError]] exceptions, this will include the error message and, optionally, the call stack.
22758
+ * For other exceptions, this will include the stringified version of the error.
22759
+ * @param error The error to get the message for
22760
+ * @returns A string message for the error
22761
+ */
22762
+ static getExceptionMessage(error) {
22763
+ if (error === undefined) {
22764
+ return "Error: error is undefined.";
22765
+ }
22766
+ if (error === null) {
22767
+ return "Error: error is null.";
22751
22768
  }
22752
- if (err === null) {
22753
- return "Error: err is null.";
22769
+ const stack = Logger.logExceptionCallstacks ? `\n${_BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getErrorStack(error)}` : "";
22770
+ return _BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getErrorMessage(error) + stack;
22771
+ }
22772
+ /**
22773
+ * Merged passed metaData with error properties into one LoggingMetaData, with the passed metaData taking precedence in case of conflict.
22774
+ * @param error The error to be logged as metadata
22775
+ * @param metaData Optional metadata to be merged with the error
22776
+ * @returns A function returning the merged metadata
22777
+ */
22778
+ static getExceptionMetaData(error, metaData) {
22779
+ const exceptionType = error?.constructor?.name ?? "<Unknown>";
22780
+ if (metaData === undefined) {
22781
+ return () => ({ exceptionType, ...error });
22754
22782
  }
22755
- const stack = Logger.logExceptionCallstacks ? `\n${_BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getErrorStack(err)}` : "";
22756
- return _BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getErrorMessage(err) + stack;
22783
+ return () => ({ exceptionType, ...error, ..._BentleyError__WEBPACK_IMPORTED_MODULE_1__.BentleyError.getMetaData(metaData) });
22757
22784
  }
22758
22785
  /** Log the specified exception.
22759
22786
  * For legacy [[BentleyError]] exceptions, the special "exceptionType" property will be added as metadata. Otherwise, all enumerable members of the exception are logged as metadata.
22760
22787
  * @param category The category of the message.
22761
22788
  * @param err The exception object.
22762
22789
  * @param log The logger output function to use - defaults to Logger.logError
22790
+ * @deprecated in 5.6. Use logError(category, error, metaData) instead, which will log exceptions in the same way but is more flexible and easier to use.
22763
22791
  */
22764
22792
  static logException(category, err, log = (_category, message, metaData) => Logger.logError(_category, message, metaData)) {
22765
22793
  log(category, Logger.getExceptionMessage(err), () => {
@@ -22875,6 +22903,10 @@ class ObservableSet extends Set {
22875
22903
  onDeleted = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
22876
22904
  /** Emitted after this set's contents are cleared. */
22877
22905
  onCleared = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
22906
+ /** Emitted after multiple items are added to this set via [[addAll]]. */
22907
+ onBatchAdded = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
22908
+ /** Emitted after multiple items are deleted from this set via [[deleteAll]]. */
22909
+ onBatchDeleted = new _BeEvent__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
22878
22910
  /** Construct a new ObservableSet.
22879
22911
  * @param elements Optional elements with which to populate the new set.
22880
22912
  */
@@ -22907,6 +22939,32 @@ class ObservableSet extends Set {
22907
22939
  this.onCleared.raiseEvent();
22908
22940
  }
22909
22941
  }
22942
+ /** Add multiple items to the set, raising [[onBatchAdded]] only once after all items are added.
22943
+ * This is more efficient than calling [[add]] in a loop when listeners need not be notified of each individual addition.
22944
+ * @param items The items to add.
22945
+ * @returns The number of items that were actually added (i.e., were not already present).
22946
+ */
22947
+ addAll(items) {
22948
+ const prevSize = this.size;
22949
+ for (const item of items)
22950
+ super.add(item);
22951
+ if (this.size !== prevSize)
22952
+ this.onBatchAdded.raiseEvent();
22953
+ return this.size - prevSize;
22954
+ }
22955
+ /** Delete multiple items from the set, raising [[onBatchDeleted]] only once after all items are deleted.
22956
+ * This is more efficient than calling [[delete]] in a loop when listeners need not be notified of each individual deletion.
22957
+ * @param items The items to delete.
22958
+ * @returns The number of items that were actually deleted (i.e., were present in the set).
22959
+ */
22960
+ deleteAll(items) {
22961
+ const prevSize = this.size;
22962
+ for (const item of items)
22963
+ super.delete(item);
22964
+ if (this.size !== prevSize)
22965
+ this.onBatchDeleted.raiseEvent();
22966
+ return prevSize - this.size;
22967
+ }
22910
22968
  }
22911
22969
 
22912
22970
 
@@ -23015,11 +23073,15 @@ class OneAtATimeAction {
23015
23073
  return await promise;
23016
23074
  }
23017
23075
  finally {
23018
- // do all of this whether promise was fulfilled or rejected
23019
- this._active = this._pending; // see if there's a pending request waiting
23020
- this._pending = undefined; // clear pending
23021
- if (this._active)
23022
- this._active.start(); // eslint-disable-line @typescript-eslint/no-floating-promises
23076
+ // A replaced pending request can be abandoned before it ever becomes active.
23077
+ // Only the currently active entry is allowed to promote/start the next pending request.
23078
+ if (this._active === entry) {
23079
+ // do all of this whether promise was fulfilled or rejected
23080
+ this._active = this._pending; // see if there's a pending request waiting
23081
+ this._pending = undefined; // clear pending
23082
+ if (this._active)
23083
+ this._active.start(); // eslint-disable-line @typescript-eslint/no-floating-promises
23084
+ }
23023
23085
  }
23024
23086
  }
23025
23087
  }
@@ -25102,7 +25164,7 @@ class UnexpectedErrors {
25102
25164
  /** handler for logging exception to console */
25103
25165
  static consoleLog = (e) => console.error(e); // eslint-disable-line no-console
25104
25166
  /** handler for logging exception with [[Logger]] */
25105
- static errorLog = (e) => _Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.logException("unhandled", e);
25167
+ static errorLog = (e) => _Logger__WEBPACK_IMPORTED_MODULE_0__.Logger.logError("unhandled", e);
25106
25168
  static _telemetry = [];
25107
25169
  static _handler = this.errorLog; // default to error logging
25108
25170
  constructor() { } // this is a singleton
@@ -47405,7 +47467,7 @@ var ElementGeometry;
47405
47467
  if (entry.text) {
47406
47468
  result = this.appendTextString(new _TextString__WEBPACK_IMPORTED_MODULE_5__.TextString(entry.text));
47407
47469
  }
47408
- else if (entry.color) {
47470
+ else if (undefined !== entry.color) {
47409
47471
  const params = geomParams?.clone() ?? new _GeometryParams__WEBPACK_IMPORTED_MODULE_7__.GeometryParams(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.Id64.invalid);
47410
47472
  if (entry.color !== "subcategory") {
47411
47473
  params.lineColor = _ColorDef__WEBPACK_IMPORTED_MODULE_6__.ColorDef.fromJSON(entry.color);
@@ -66205,7 +66267,8 @@ class SchemaFormatsProvider {
66205
66267
  * @param contextOrLocater The SchemaContext or a different ISchemaLocater implementation used to retrieve the schema. The SchemaContext
66206
66268
  * class implements the ISchemaLocater interface. If the provided locater is not a SchemaContext instance a new SchemaContext will be
66207
66269
  * created and the locater will be added.
66208
- * @param unitSystem Used to lookup a default format through a schema specific algorithm, when the format retrieved is associated with a KindOfQuantity.
66270
+ * @param unitSystem Optional unit system used to lookup a default format through a schema specific algorithm, when the format retrieved is associated with a KindOfQuantity.
66271
+ * If not provided, the default presentation format will be used directly without matching unit systems.
66209
66272
  */
66210
66273
  constructor(contextOrLocater, unitSystem) {
66211
66274
  if (contextOrLocater instanceof _Context__WEBPACK_IMPORTED_MODULE_0__.SchemaContext) {
@@ -66254,39 +66317,44 @@ class SchemaFormatsProvider {
66254
66317
  if (!kindOfQuantity) {
66255
66318
  return undefined;
66256
66319
  }
66257
- // Find the first presentation format that matches the provided unit system.
66258
- const unitSystemMatchers = getUnitSystemGroupMatchers(this._unitSystem);
66259
- const presentationFormats = kindOfQuantity.presentationFormats;
66260
- for (const matcher of unitSystemMatchers) {
66261
- for (const lazyFormat of presentationFormats) {
66262
- const format = await lazyFormat;
66263
- const unit = await (format.units && format.units[0][0]);
66264
- if (!unit) {
66265
- continue;
66266
- }
66267
- const currentUnitSystem = await unit.unitSystem;
66268
- if (currentUnitSystem && matcher(currentUnitSystem)) {
66269
- this._formatsRetrieved.add(itemKey.fullName);
66270
- const props = (0,_Metadata_OverrideFormat__WEBPACK_IMPORTED_MODULE_6__.getFormatProps)(format);
66271
- return this.convertToFormatDefinition(props, kindOfQuantity);
66320
+ // If a unit system is provided, find the first presentation format that matches it.
66321
+ if (this._unitSystem) {
66322
+ const unitSystemMatchers = getUnitSystemGroupMatchers(this._unitSystem);
66323
+ const presentationFormats = kindOfQuantity.presentationFormats;
66324
+ for (const matcher of unitSystemMatchers) {
66325
+ for (const lazyFormat of presentationFormats) {
66326
+ const format = await lazyFormat;
66327
+ const unit = await (format.units && format.units[0][0]);
66328
+ if (!unit) {
66329
+ continue;
66330
+ }
66331
+ const currentUnitSystem = await unit.unitSystem;
66332
+ if (currentUnitSystem && matcher(currentUnitSystem)) {
66333
+ this._formatsRetrieved.add(itemKey.fullName);
66334
+ const props = (0,_Metadata_OverrideFormat__WEBPACK_IMPORTED_MODULE_6__.getFormatProps)(format);
66335
+ return this.convertToFormatDefinition(props, kindOfQuantity);
66336
+ }
66272
66337
  }
66273
66338
  }
66339
+ // If no matching presentation format was found, fall back to persistence unit format
66340
+ // only if it matches the requested unit system.
66341
+ const persistenceUnit = await kindOfQuantity.persistenceUnit;
66342
+ const persistenceUnitSystem = await persistenceUnit?.unitSystem;
66343
+ if (persistenceUnit && persistenceUnitSystem && unitSystemMatchers.some((matcher) => matcher(persistenceUnitSystem))) {
66344
+ this._formatsRetrieved.add(itemKey.fullName);
66345
+ const props = getPersistenceUnitFormatProps(persistenceUnit);
66346
+ return this.convertToFormatDefinition(props, kindOfQuantity);
66347
+ }
66274
66348
  }
66275
- // If no matching presentation format was found, use persistence unit format if it matches unit system.
66276
- const persistenceUnit = await kindOfQuantity.persistenceUnit;
66277
- const persistenceUnitSystem = await persistenceUnit?.unitSystem;
66278
- if (persistenceUnit && persistenceUnitSystem && unitSystemMatchers.some((matcher) => matcher(persistenceUnitSystem))) {
66279
- this._formatsRetrieved.add(itemKey.fullName);
66280
- const props = getPersistenceUnitFormatProps(persistenceUnit);
66281
- return this.convertToFormatDefinition(props, kindOfQuantity);
66282
- }
66349
+ // If no unit system was provided, or no matching format was found, use the default presentation format.
66350
+ // Unit conversion from persistence unit to presentation unit will be handled by FormatterSpec.
66283
66351
  const defaultFormat = kindOfQuantity.defaultPresentationFormat;
66284
- if (!defaultFormat) {
66285
- return undefined;
66352
+ if (defaultFormat) {
66353
+ this._formatsRetrieved.add(itemKey.fullName);
66354
+ const defaultProps = (0,_Metadata_OverrideFormat__WEBPACK_IMPORTED_MODULE_6__.getFormatProps)(await defaultFormat);
66355
+ return this.convertToFormatDefinition(defaultProps, kindOfQuantity);
66286
66356
  }
66287
- this._formatsRetrieved.add(itemKey.fullName);
66288
- const defaultProps = (0,_Metadata_OverrideFormat__WEBPACK_IMPORTED_MODULE_6__.getFormatProps)(await defaultFormat);
66289
- return this.convertToFormatDefinition(defaultProps, kindOfQuantity);
66357
+ return undefined;
66290
66358
  }
66291
66359
  /**
66292
66360
  * Retrieves a Format from a SchemaContext. If the format is part of a KindOfQuantity, the first presentation format in the KindOfQuantity that matches the current unit system will be retrieved.
@@ -83115,6 +83183,18 @@ class CategorySelectorState extends _EntityState__WEBPACK_IMPORTED_MODULE_1__.El
83115
83183
  for (const id of _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.iterable(arg))
83116
83184
  this.categories.delete(id);
83117
83185
  }
83186
+ /** Add one or more categories to this CategorySelector, raising a single batch event instead of one event per category.
83187
+ * This is more efficient than [[addCategories]] when adding many categories at once.
83188
+ */
83189
+ addCategoriesBatched(arg) {
83190
+ this._categories.addAll(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.iterable(arg));
83191
+ }
83192
+ /** Remove one or more categories from this CategorySelector, raising a single batch event instead of one event per category.
83193
+ * This is more efficient than [[dropCategories]] when dropping many categories at once.
83194
+ */
83195
+ dropCategoriesBatched(arg) {
83196
+ this._categories.deleteAll(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.iterable(arg));
83197
+ }
83118
83198
  /** Add or remove categories from this CategorySelector.
83119
83199
  * @param arg The categories to add or remove
83120
83200
  * @param add If true, categories will be added; otherwise they will be removed.
@@ -87053,7 +87133,7 @@ class CoordinateConverter {
87053
87133
  this._cache.set(requests[j], results[j]);
87054
87134
  }
87055
87135
  }).catch((err) => {
87056
- _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logException(`${_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_2__.FrontendLoggerCategory.Package}.geoservices`, err);
87136
+ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logError(`${_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_2__.FrontendLoggerCategory.Package}.geoservices`, err);
87057
87137
  });
87058
87138
  promises.push(promise);
87059
87139
  }
@@ -89585,72 +89665,7 @@ class SnapshotConnection extends IModelConnection {
89585
89665
  /** The collection of loaded ModelState objects for an [[IModelConnection]]. */
89586
89666
  class Models {
89587
89667
  _iModel;
89588
- _modelExtentsQuery = `
89589
- SELECT
89590
- Model.Id AS ECInstanceId,
89591
- iModel_bbox_union(
89592
- iModel_placement_aabb(
89593
- iModel_placement(
89594
- iModel_point(Origin.X, Origin.Y, 0),
89595
- iModel_angles(Rotation, 0, 0),
89596
- iModel_bbox(
89597
- BBoxLow.X, BBoxLow.Y, -1,
89598
- BBoxHigh.X, BBoxHigh.Y, 1
89599
- )
89600
- )
89601
- )
89602
- ) AS bbox
89603
- FROM bis.GeometricElement2d
89604
- WHERE InVirtualSet(:ids64, Model.Id) AND Origin.X IS NOT NULL
89605
- GROUP BY Model.Id
89606
- UNION
89607
- SELECT
89608
- ge.Model.Id AS ECInstanceId,
89609
- iModel_bbox(
89610
- min(i.MinX), min(i.MinY), min(i.MinZ),
89611
- max(i.MaxX), max(i.MaxY), max(i.MaxZ)
89612
- ) AS bbox
89613
- FROM bis.SpatialIndex AS i, bis.GeometricElement3d AS ge, bis.GeometricModel3d AS gm
89614
- WHERE InVirtualSet(:ids64, ge.Model.Id) AND ge.ECInstanceId=i.ECInstanceId AND InVirtualSet(:ids64, gm.ECInstanceId) AND (gm.$->isNotSpatiallyLocated?=false OR gm.$->isNotSpatiallyLocated? IS NULL)
89615
- GROUP BY ge.Model.Id
89616
- UNION
89617
- SELECT
89618
- ge.Model.Id AS ECInstanceId,
89619
- iModel_bbox_union(
89620
- iModel_placement_aabb(
89621
- iModel_placement(
89622
- iModel_point(ge.Origin.X, ge.Origin.Y, ge.Origin.Z),
89623
- iModel_angles(ge.Yaw, ge.Pitch, ge.Roll),
89624
- iModel_bbox(
89625
- ge.BBoxLow.X, ge.BBoxLow.Y, ge.BBoxLow.Z,
89626
- ge.BBoxHigh.X, ge.BBoxHigh.Y, ge.BBoxHigh.Z
89627
- )
89628
- )
89629
- )
89630
- ) AS bbox
89631
- FROM bis.GeometricElement3d AS ge, bis.GeometricModel3d as gm
89632
- WHERE InVirtualSet(:ids64, ge.Model.Id) AND ge.Origin.X IS NOT NULL AND InVirtualSet(:ids64, gm.ECInstanceId) AND gm.$->isNotSpatiallyLocated?=true
89633
- GROUP BY ge.Model.Id`;
89634
- _modelExistenceQuery = `
89635
- WITH
89636
- GeometricModels AS(
89637
- SELECT
89638
- ECInstanceId
89639
- FROM bis.GeometricModel
89640
- WHERE InVirtualSet(: ids64, ECInstanceId)
89641
- )
89642
- SELECT
89643
- ECInstanceId,
89644
- true AS isGeometricModel
89645
- FROM GeometricModels
89646
- UNION ALL
89647
- SELECT
89648
- ECInstanceId,
89649
- false AS isGeometricModel
89650
- FROM bis.Model
89651
- WHERE InVirtualSet(: ids64, ECInstanceId)
89652
- AND ECInstanceId NOT IN(SELECT ECInstanceId FROM GeometricModels)`;
89653
- _loadedExtents = [];
89668
+ _loadedExtents = new Map();
89654
89669
  _geometryChangedListener;
89655
89670
  _loaded = new Map();
89656
89671
  /** @internal */
@@ -89665,7 +89680,9 @@ class SnapshotConnection extends IModelConnection {
89665
89680
  IModelConnection.onOpen.addListener(() => {
89666
89681
  if (this._iModel.isBriefcaseConnection()) {
89667
89682
  this._geometryChangedListener = (changes) => {
89668
- this._loadedExtents = this._loadedExtents.filter((extent) => !changes.some((change) => change.id === extent.id));
89683
+ changes.forEach((change) => {
89684
+ this._loadedExtents.delete(change.id);
89685
+ });
89669
89686
  };
89670
89687
  this._iModel.txns.onModelGeometryChanged.addListener(this._geometryChangedListener);
89671
89688
  }
@@ -89769,64 +89786,132 @@ class SnapshotConnection extends IModelConnection {
89769
89786
  return [];
89770
89787
  if (typeof modelIds === "string")
89771
89788
  modelIds = [modelIds];
89772
- const modelExtents = [];
89789
+ const resolvedExtents = new Map();
89790
+ const uncachedModelIds = [];
89791
+ // Add the cached model ids and the invalid ids
89773
89792
  for (const modelId of modelIds) {
89774
- if (!_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isValidId64(modelId)) {
89775
- modelExtents.push({ id: modelId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.InvalidId });
89793
+ if (this._loadedExtents.has(modelId)) {
89794
+ resolvedExtents.set(modelId, this._loadedExtents.get(modelId));
89776
89795
  }
89777
- }
89778
- const getUnloadedModelIds = () => modelIds.filter((modelId) => !modelExtents.some((loadedExtent) => loadedExtent.id === modelId));
89779
- let remainingModelIds = getUnloadedModelIds();
89780
- for (const modelId of remainingModelIds) {
89781
- const modelExtent = this._loadedExtents.find((extent) => modelId === extent.id);
89782
- if (modelExtent) {
89783
- modelExtents.push(modelExtent);
89796
+ else if (!_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isValidId64(modelId)) {
89797
+ resolvedExtents.set(modelId, { id: modelId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.InvalidId });
89784
89798
  }
89785
- }
89786
- remainingModelIds = getUnloadedModelIds();
89787
- if (remainingModelIds.length > 0) {
89788
- const params = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.QueryBinder();
89789
- params.bindIdSet("ids64", remainingModelIds);
89790
- const extentsQueryReader = this._iModel.createQueryReader(this._modelExtentsQuery, params, {
89799
+ else {
89800
+ uncachedModelIds.push(modelId);
89801
+ }
89802
+ }
89803
+ // Run the ECSql to get uncached model extents
89804
+ if (uncachedModelIds.length > 0) {
89805
+ const modelList = uncachedModelIds.join(",");
89806
+ const useSingleModelQuery = uncachedModelIds.length === 1;
89807
+ const modelExtentsQuery = `
89808
+ SELECT
89809
+ Model.Id AS ECInstanceId,
89810
+ iModel_bbox_union(
89811
+ iModel_placement_aabb(
89812
+ iModel_placement(
89813
+ iModel_point(Origin.X, Origin.Y, 0),
89814
+ iModel_angles(Rotation, 0, 0),
89815
+ iModel_bbox(
89816
+ BBoxLow.X, BBoxLow.Y, -1,
89817
+ BBoxHigh.X, BBoxHigh.Y, 1
89818
+ )
89819
+ )
89820
+ )
89821
+ ) AS bbox
89822
+ FROM bis.GeometricElement2d
89823
+ WHERE Model.Id ${useSingleModelQuery ? `= ${uncachedModelIds[0]}` : `IN (${modelList})`}
89824
+ AND Origin.X IS NOT NULL
89825
+ GROUP BY Model.Id
89826
+
89827
+ UNION
89828
+
89829
+ SELECT
89830
+ ge.Model.Id AS ECInstanceId,
89831
+ iModel_bbox(
89832
+ min(i.MinX), min(i.MinY), min(i.MinZ),
89833
+ max(i.MaxX), max(i.MaxY), max(i.MaxZ)
89834
+ ) AS bbox
89835
+ FROM bis.SpatialIndex AS i
89836
+ INNER JOIN bis.GeometricElement3d AS ge
89837
+ ON ge.ECInstanceId = i.ECInstanceId
89838
+ INNER JOIN bis.GeometricModel3d AS gm
89839
+ ON ge.Model.Id = gm.ECInstanceId
89840
+ WHERE ge.Model.Id ${useSingleModelQuery ? `= ${uncachedModelIds[0]}` : `IN (${modelList})`}
89841
+ AND (gm.$->IsNotSpatiallyLocated? IS NULL OR gm.$->IsNotSpatiallyLocated? IS FALSE)
89842
+ GROUP BY ge.Model.Id
89843
+
89844
+ UNION
89845
+
89846
+ SELECT
89847
+ ge.Model.Id AS ECInstanceId,
89848
+ iModel_bbox_union(
89849
+ iModel_placement_aabb(
89850
+ iModel_placement(
89851
+ iModel_point(ge.Origin.X, ge.Origin.Y, ge.Origin.Z),
89852
+ iModel_angles(ge.Yaw, ge.Pitch, ge.Roll),
89853
+ iModel_bbox(
89854
+ ge.BBoxLow.X, ge.BBoxLow.Y, ge.BBoxLow.Z,
89855
+ ge.BBoxHigh.X, ge.BBoxHigh.Y, ge.BBoxHigh.Z
89856
+ )
89857
+ )
89858
+ )
89859
+ ) AS bbox
89860
+ FROM bis.GeometricElement3d ge
89861
+ INNER JOIN bis.GeometricModel3d gm
89862
+ ON ge.Model.Id = gm.ECInstanceId
89863
+ WHERE ge.Model.Id ${useSingleModelQuery ? `= ${uncachedModelIds[0]}` : `IN (${modelList})`}
89864
+ AND gm.$->IsNotSpatiallyLocated? IS TRUE
89865
+ AND ge.Origin.X IS NOT NULL
89866
+ GROUP BY ge.Model.Id
89867
+ `;
89868
+ const extentsQueryReader = this._iModel.createQueryReader(modelExtentsQuery, undefined, {
89791
89869
  rowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyNames,
89792
89870
  });
89793
89871
  for await (const row of extentsQueryReader) {
89794
89872
  const byteArray = new Uint8Array(Object.values(row.bbox));
89795
89873
  const extents = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.fromArrayBuffer(byteArray.buffer);
89796
89874
  const extent = { id: row.ECInstanceId, extents, status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.Success };
89797
- modelExtents.push(extent);
89798
- this._loadedExtents.push(extent);
89799
- }
89800
- }
89801
- remainingModelIds = getUnloadedModelIds();
89802
- if (remainingModelIds.length > 0) {
89803
- const params = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.QueryBinder();
89804
- params.bindIdSet("ids64", remainingModelIds);
89805
- const modelExistenceQueryReader = this._iModel.createQueryReader(this._modelExistenceQuery, params, {
89875
+ resolvedExtents.set(extent.id, extent);
89876
+ this._loadedExtents.set(extent.id, extent);
89877
+ }
89878
+ }
89879
+ // Check if there still are any unresolved model IDs
89880
+ const unresolvedModelIds = uncachedModelIds.filter((id) => !resolvedExtents.has(id));
89881
+ if (unresolvedModelIds.length > 0) {
89882
+ const modelList = unresolvedModelIds.join(",");
89883
+ const modelExistenceQuery = `
89884
+ SELECT
89885
+ m.ECInstanceId,
89886
+ CASE WHEN g.ECInstanceId IS NOT NULL THEN 1 ELSE 0 END AS isGeometricModel
89887
+ FROM bis.Model m
89888
+ LEFT JOIN bis.GeometricModel g
89889
+ ON m.ECInstanceId = g.ECInstanceId
89890
+ WHERE m.ECInstanceId ${unresolvedModelIds.length === 1 ? `= ${unresolvedModelIds[0]}` : `IN (${modelList})`}
89891
+ `;
89892
+ const modelExistenceQueryReader = this._iModel.createQueryReader(modelExistenceQuery, undefined, {
89806
89893
  rowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyNames,
89807
89894
  });
89808
89895
  for await (const row of modelExistenceQueryReader) {
89809
- let extent;
89810
- if (row.isGeometricModel) {
89811
- extent = { id: row.ECInstanceId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.Success };
89812
- }
89813
- else {
89814
- extent = { id: row.ECInstanceId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.WrongModel };
89815
- }
89816
- modelExtents.push(extent);
89817
- this._loadedExtents.push(extent);
89896
+ const extent = {
89897
+ id: row.ECInstanceId,
89898
+ extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(),
89899
+ status: row.isGeometricModel ? _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.Success : _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.WrongModel,
89900
+ };
89901
+ resolvedExtents.set(extent.id, extent);
89902
+ this._loadedExtents.set(extent.id, extent);
89818
89903
  }
89819
89904
  }
89905
+ // Return the results while maintaining the same order
89820
89906
  return modelIds.map((modelId) => {
89821
- let extent = modelExtents.find((loadedExtent) => loadedExtent.id === modelId);
89907
+ const extent = resolvedExtents.get(modelId);
89822
89908
  if (extent === undefined) {
89823
- extent = { id: modelId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.NotFound };
89824
- this._loadedExtents.push(extent);
89825
- return extent;
89909
+ const notFound = { id: modelId, extents: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.createNull(), status: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.NotFound };
89910
+ this._loadedExtents.set(notFound.id, notFound);
89911
+ return notFound;
89826
89912
  }
89827
- else if (extent.status === _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.InvalidId) {
89828
- extent.id = "0";
89829
- return extent;
89913
+ if (extent.status === _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.InvalidId) {
89914
+ return { ...extent, id: "0" };
89830
89915
  }
89831
89916
  return extent;
89832
89917
  });
@@ -98780,6 +98865,8 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
98780
98865
  this._unregisterCategorySelectorListeners.push(cats.onAdded.addListener(event));
98781
98866
  this._unregisterCategorySelectorListeners.push(cats.onDeleted.addListener(event));
98782
98867
  this._unregisterCategorySelectorListeners.push(cats.onCleared.addListener(event));
98868
+ this._unregisterCategorySelectorListeners.push(cats.onBatchAdded.addListener(event));
98869
+ this._unregisterCategorySelectorListeners.push(cats.onBatchDeleted.addListener(event));
98783
98870
  }
98784
98871
  /** Invoked when this view, previously attached to the specified [[Viewport]] via [[attachToViewport]], is no longer the view displayed by that Viewport.
98785
98872
  * This method is invoked automatically by the viewport - there is generally no reason for applications to invoke it directly.
@@ -100806,13 +100893,20 @@ class Viewport {
100806
100893
  * @param categories The Id(s) of the categories to which the change should be applied. No other categories will be affected.
100807
100894
  * @param display Whether or not elements on the specified categories should be displayed in the viewport.
100808
100895
  * @param enableAllSubCategories Specifies that when enabling display for a category, all of its subcategories should also be displayed even if they are overridden to be invisible.
100896
+ * @param batchNotify If true, a single batch event is raised instead of one event per category. This is more efficient when changing many categories at once.
100809
100897
  */
100810
- changeCategoryDisplay(categories, display, enableAllSubCategories = false) {
100898
+ changeCategoryDisplay(categories, display, enableAllSubCategories = false, batchNotify = false) {
100811
100899
  if (!display) {
100812
- this.view.categorySelector.dropCategories(categories);
100900
+ if (batchNotify)
100901
+ this.view.categorySelector.dropCategoriesBatched(categories);
100902
+ else
100903
+ this.view.categorySelector.dropCategories(categories);
100813
100904
  return;
100814
100905
  }
100815
- this.view.categorySelector.addCategories(categories);
100906
+ if (batchNotify)
100907
+ this.view.categorySelector.addCategoriesBatched(categories);
100908
+ else
100909
+ this.view.categorySelector.addCategories(categories);
100816
100910
  const categoryIds = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.toIdSet(categories);
100817
100911
  this.updateSubCategories(categoryIds, enableAllSubCategories);
100818
100912
  }
@@ -149481,7 +149575,7 @@ async function getDecoder() {
149481
149575
  instance.exports.__wasm_call_ctors();
149482
149576
  }
149483
149577
  catch (err) {
149484
- _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logException(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_1__.FrontendLoggerCategory.Render, err);
149578
+ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logError(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_1__.FrontendLoggerCategory.Render, err);
149485
149579
  return undefined;
149486
149580
  }
149487
149581
  function unpack(data) {
@@ -150290,7 +150384,7 @@ async function decodeDracoPointCloud(buf) {
150290
150384
  }
150291
150385
  catch (err) {
150292
150386
  _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logWarning(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__.FrontendLoggerCategory.Render, "Failed to decode draco-encoded point cloud");
150293
- _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logException(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__.FrontendLoggerCategory.Render, err);
150387
+ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logError(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__.FrontendLoggerCategory.Render, err);
150294
150388
  return undefined;
150295
150389
  }
150296
150390
  }
@@ -162578,7 +162672,7 @@ class GltfReader {
162578
162672
  }
162579
162673
  catch (err) {
162580
162674
  _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logWarning(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_9__.FrontendLoggerCategory.Render, "Failed to decode draco-encoded glTF mesh");
162581
- _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logException(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_9__.FrontendLoggerCategory.Render, err);
162675
+ _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logError(_common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_9__.FrontendLoggerCategory.Render, err);
162582
162676
  }
162583
162677
  }
162584
162678
  async _resolveResources() {
@@ -190153,7 +190247,7 @@ class BSplineCurve3dBase extends _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_
190153
190247
  * @param result optional pre-allocated detail to populate and return.
190154
190248
  * @returns details of the closest point.
190155
190249
  */
190156
- closestPoint(spacePoint, _extend, result) {
190250
+ closestPoint(spacePoint, _extend = false, result) {
190157
190251
  // seed at start point; final point comes with final bezier perpendicular step
190158
190252
  const point = this.fractionToPoint(0);
190159
190253
  result = _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail.createCurveFractionPointDistance(this, 0.0, point, point.distance(spacePoint), result);
@@ -197387,7 +197481,8 @@ class ClipShape extends ClipPrimitive {
197387
197481
  }
197388
197482
  /**
197389
197483
  * Return true if this ClipShape has a local to world transform
197390
- * @deprecated in 5.1.9 - will not be removed until after 2027-01-05. Use duplicate property [[transformValid]] or type guard [[hasTransformFromClip]] instead.
197484
+ * @deprecated in 5.1.9 - will not be removed until after 2027-01-05. Use duplicate property [[transformValid]] or
197485
+ * type guard [[hasTransformFromClip]] instead.
197391
197486
  */
197392
197487
  get transformIsValid() {
197393
197488
  return this._transformFromClip !== undefined;
@@ -202155,48 +202250,61 @@ class Arc3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePrimitive
202155
202250
  /**
202156
202251
  * Return details of the closest point on the arc, optionally extending to full ellipse.
202157
202252
  * @param spacePoint search for point closest to this point.
202158
- * @param extend if true, consider projections to the complete ellipse. If false, consider only endpoints and
202159
- * projections within the arc sweep.
202253
+ * @param extend if true, consider projections to the complete ellipse. If false (default), consider only endpoints
202254
+ * and projections within the arc sweep. Note that for an open arc, extending one end is the same as extending both ends.
202160
202255
  * @param result optional preallocated result.
202161
202256
  */
202162
- closestPoint(spacePoint, extend, result) {
202257
+ closestPoint(spacePoint, extend = false, result) {
202163
202258
  result = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_12__.CurveLocationDetail.create(this, result);
202164
- const allRadians = this.allPerpendicularAngles(spacePoint, true, true);
202165
- let extend0 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0);
202166
- let extend1 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1);
202167
- // distinct extends for cyclic space are awkward ....
202168
- if (this._sweep.isFullCircle) {
202169
- extend0 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None;
202170
- extend1 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None;
202171
- }
202172
- if (extend0 !== _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None && extend1 !== _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None) {
202173
- allRadians.push(this._sweep.startRadians);
202174
- allRadians.push(this._sweep.endRadians);
202175
- }
202176
- // hm... logically there must at least two angles there ... but if it happens return the start point ...
202259
+ const allRadians = this.allPerpendicularAngles(spacePoint, true, false);
202260
+ // test endpoints if and only if arc is open and unextended
202261
+ if (!this._sweep.isFullCircle) {
202262
+ const extend0 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0);
202263
+ const extend1 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1);
202264
+ if (extend0 === _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None && extend1 === _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None) {
202265
+ allRadians.push(this._sweep.startRadians);
202266
+ allRadians.push(this._sweep.endRadians);
202267
+ }
202268
+ }
202177
202269
  const workRay = _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_3__.Ray3d.createZero();
202178
- if (allRadians.length === 0) {
202179
- result.setFR(0.0, this.radiansToPointAndDerivative(this._sweep.startRadians, workRay));
202180
- result.a = spacePoint.distance(result.point);
202270
+ if (allRadians.length === 0) { // shouldn't happen; there should always be at least 2 angles
202271
+ result.setFR(0.0, this.radiansToPointAndDerivative(this._sweep.startRadians, workRay), spacePoint.distance(result.point));
202181
202272
  }
202182
202273
  else {
202183
202274
  let dMin = Number.MAX_VALUE;
202184
202275
  let d = 0;
202185
202276
  for (const radians of allRadians) {
202186
- const fraction = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveRadiansToSweepFraction(extend, radians, this.sweep);
202187
- if (fraction !== undefined) {
202188
- this.fractionToPointAndDerivative(fraction, workRay);
202277
+ const validatedFraction = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveRadiansToValidSweepFraction(extend, radians, this.sweep);
202278
+ if (validatedFraction.isValid) {
202279
+ this.fractionToPointAndDerivative(validatedFraction.fraction, workRay);
202189
202280
  d = spacePoint.distance(workRay.origin);
202190
202281
  if (d < dMin) {
202191
202282
  dMin = d;
202192
- result.setFR(fraction, workRay);
202193
- result.a = d;
202283
+ result.setFR(validatedFraction.fraction, workRay, d);
202194
202284
  }
202195
202285
  }
202196
202286
  }
202197
202287
  }
202198
202288
  return result;
202199
202289
  }
202290
+ /**
202291
+ * Search for a point on the Arc3d that is closest to the spacePoint as viewed in the xy-plane (ignoring z).
202292
+ * * If the space point is exactly on the curve, this is the reverse of fractionToPoint.
202293
+ * * Since CurvePrimitive should always have start and end available as candidate points, this method should always
202294
+ * succeed.
202295
+ * @param spacePoint point in space.
202296
+ * @param extend if true, consider projections to the complete ellipse. If false (default), consider only endpoints
202297
+ * and projections within the arc sweep. Note that for an open arc, extending one end is the same as extending both ends.
202298
+ * @param result (optional) pre-allocated detail to populate and return.
202299
+ * @returns details of the closest point.
202300
+ */
202301
+ closestPointXY(spacePoint, extend = false, result) {
202302
+ // prevent `ClosestPointStroker.claimResult` from clamping an exterior fraction when arc is half-extended
202303
+ const extend0 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0);
202304
+ const extend1 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1);
202305
+ extend = extend0 !== _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None || extend1 !== _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendMode.None;
202306
+ return super.closestPointXY(spacePoint, extend, result); // TODO: implement exact solution instead of deferring to superclass
202307
+ }
202200
202308
  /** Override of [[CurvePrimitive.emitTangents]] for Arc3d. */
202201
202309
  emitTangents(spacePoint, announceTangent, options) {
202202
202310
  const centerToPoint = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createStartEnd(this.centerRef, spacePoint);
@@ -203743,23 +203851,14 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203743
203851
  }
203744
203852
  return a;
203745
203853
  }
203746
- /**
203747
- * Search for the curve point that is closest to the spacePoint.
203748
- * * The CurveChainWithDistanceIndex invokes the base class CurvePrimitive method, which (via a handler)
203749
- * determines a CurveLocation detail among the children.
203750
- * * The returned detail directly identifies fractional position along the CurveChainWithDistanceIndex and
203751
- * has pointer to an additional detail for the child curve.
203752
- * @param spacePoint point in space
203753
- * @param extend true to extend the curve
203754
- * @param result optional pre-allocated detail to populate and return.
203755
- * @returns details of the closest point
203756
- */
203757
- closestPoint(spacePoint, extend, result) {
203854
+ computeClosestPoint(spacePoint, extend = false, result, xyOnly = false) {
203758
203855
  let childDetail;
203759
203856
  let aMin = Number.MAX_VALUE;
203760
203857
  const numChildren = this.path.children.length;
203761
203858
  if (numChildren === 1) {
203762
- childDetail = this.path.children[0].closestPoint(spacePoint, extend);
203859
+ childDetail = xyOnly ?
203860
+ this.path.children[0].closestPointXY(spacePoint, extend) :
203861
+ this.path.children[0].closestPoint(spacePoint, extend);
203763
203862
  }
203764
203863
  else {
203765
203864
  const sortedFragments = PathFragment.collectSortedQuickMinDistances(this._fragments, spacePoint);
@@ -203783,7 +203882,8 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203783
203882
  break;
203784
203883
  CurveChainWithDistanceIndex._numTested++;
203785
203884
  const child = sortedFragment.childCurve;
203786
- detailA = child.closestPoint(spacePoint, sortedFragment === fragment0 ? extend0 : sortedFragment === fragment1 ? extend1 : false, detailA);
203885
+ extend = child === fragment0.childCurve ? extend0 : (child === fragment1.childCurve ? extend1 : false);
203886
+ detailA = xyOnly ? child.closestPointXY(spacePoint, extend, detailA) : child.closestPoint(spacePoint, extend, detailA);
203787
203887
  if (detailA && detailA.a < aMin) {
203788
203888
  aMin = detailA.a;
203789
203889
  childDetail = detailA.clone(childDetail);
@@ -203795,6 +203895,34 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203795
203895
  return undefined;
203796
203896
  return this.computeChainDetail(childDetail, result);
203797
203897
  }
203898
+ /**
203899
+ * Search for the curve point that is closest to the spacePoint.
203900
+ * * The CurveChainWithDistanceIndex invokes the base class CurvePrimitive method, which (via a handler)
203901
+ * determines a CurveLocation detail among the children.
203902
+ * * The returned detail directly identifies fractional position along the CurveChainWithDistanceIndex and
203903
+ * has pointer to an additional detail for the child curve.
203904
+ * @param spacePoint point in space.
203905
+ * @param extend (optional) compute the closest point to the curve extended according to variant type (default false).
203906
+ * @param result (optional) pre-allocated detail to populate and return.
203907
+ * @returns details of the closest point.
203908
+ */
203909
+ closestPoint(spacePoint, extend = false, result) {
203910
+ return this.computeClosestPoint(spacePoint, extend, result);
203911
+ }
203912
+ /**
203913
+ * Search for the curve point that is closest to the spacePoint as viewed in the xy-plane (ignoring z).
203914
+ * * The CurveChainWithDistanceIndex invokes the base class CurvePrimitive method, which (via a handler)
203915
+ * determines a CurveLocation detail among the children.
203916
+ * * The returned detail directly identifies fractional position along the CurveChainWithDistanceIndex and
203917
+ * has pointer to an additional detail for the child curve.
203918
+ * @param spacePoint point in space.
203919
+ * @param extend (optional) compute the closest point to the curve extended according to variant type (default false).
203920
+ * @param result (optional) pre-allocated detail to populate and return.
203921
+ * @returns details of the closest point.
203922
+ */
203923
+ closestPointXY(spacePoint, extend = false, result) {
203924
+ return this.computeClosestPoint(spacePoint, extend, result, true);
203925
+ }
203798
203926
  /**
203799
203927
  * Construct an offset of each child as viewed in the xy-plane (ignoring z).
203800
203928
  * * No attempt is made to join the offset children. Use RegionOps.constructCurveXYOffset to return a fully
@@ -203896,21 +204024,22 @@ __webpack_require__.r(__webpack_exports__);
203896
204024
  /* harmony export */ CurveCollection: () => (/* binding */ CurveCollection)
203897
204025
  /* harmony export */ });
203898
204026
  /* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
203899
- /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
203900
- /* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
204027
+ /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
204028
+ /* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
204029
+ /* harmony import */ var _CurveExtendMode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
203901
204030
  /* harmony import */ var _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
203902
- /* harmony import */ var _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
204031
+ /* harmony import */ var _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
203903
204032
  /* harmony import */ var _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GeometryQuery */ "../../core/geometry/lib/esm/curve/GeometryQuery.js");
203904
- /* harmony import */ var _internalContexts_AnnounceTangentStrokeHandler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./internalContexts/AnnounceTangentStrokeHandler */ "../../core/geometry/lib/esm/curve/internalContexts/AnnounceTangentStrokeHandler.js");
203905
- /* harmony import */ var _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./internalContexts/CloneCurvesContext */ "../../core/geometry/lib/esm/curve/internalContexts/CloneCurvesContext.js");
203906
- /* harmony import */ var _internalContexts_CloneWithExpandedLineStrings__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./internalContexts/CloneWithExpandedLineStrings */ "../../core/geometry/lib/esm/curve/internalContexts/CloneWithExpandedLineStrings.js");
203907
- /* harmony import */ var _internalContexts_CountLinearPartsSearchContext__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./internalContexts/CountLinearPartsSearchContext */ "../../core/geometry/lib/esm/curve/internalContexts/CountLinearPartsSearchContext.js");
203908
- /* harmony import */ var _internalContexts_GapSearchContext__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./internalContexts/GapSearchContext */ "../../core/geometry/lib/esm/curve/internalContexts/GapSearchContext.js");
203909
- /* harmony import */ var _internalContexts_PlaneAltitudeRangeContext__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./internalContexts/PlaneAltitudeRangeContext */ "../../core/geometry/lib/esm/curve/internalContexts/PlaneAltitudeRangeContext.js");
204033
+ /* harmony import */ var _internalContexts_AnnounceTangentStrokeHandler__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./internalContexts/AnnounceTangentStrokeHandler */ "../../core/geometry/lib/esm/curve/internalContexts/AnnounceTangentStrokeHandler.js");
204034
+ /* harmony import */ var _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./internalContexts/CloneCurvesContext */ "../../core/geometry/lib/esm/curve/internalContexts/CloneCurvesContext.js");
204035
+ /* harmony import */ var _internalContexts_CloneWithExpandedLineStrings__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./internalContexts/CloneWithExpandedLineStrings */ "../../core/geometry/lib/esm/curve/internalContexts/CloneWithExpandedLineStrings.js");
204036
+ /* harmony import */ var _internalContexts_CountLinearPartsSearchContext__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./internalContexts/CountLinearPartsSearchContext */ "../../core/geometry/lib/esm/curve/internalContexts/CountLinearPartsSearchContext.js");
204037
+ /* harmony import */ var _internalContexts_GapSearchContext__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./internalContexts/GapSearchContext */ "../../core/geometry/lib/esm/curve/internalContexts/GapSearchContext.js");
204038
+ /* harmony import */ var _internalContexts_PlaneAltitudeRangeContext__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./internalContexts/PlaneAltitudeRangeContext */ "../../core/geometry/lib/esm/curve/internalContexts/PlaneAltitudeRangeContext.js");
203910
204039
  /* harmony import */ var _internalContexts_SumLengthsContext__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./internalContexts/SumLengthsContext */ "../../core/geometry/lib/esm/curve/internalContexts/SumLengthsContext.js");
203911
- /* harmony import */ var _internalContexts_TransformInPlaceContext__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./internalContexts/TransformInPlaceContext */ "../../core/geometry/lib/esm/curve/internalContexts/TransformInPlaceContext.js");
203912
- /* harmony import */ var _LineString3d__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
203913
- /* harmony import */ var _ProxyCurve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
204040
+ /* harmony import */ var _internalContexts_TransformInPlaceContext__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./internalContexts/TransformInPlaceContext */ "../../core/geometry/lib/esm/curve/internalContexts/TransformInPlaceContext.js");
204041
+ /* harmony import */ var _LineString3d__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
204042
+ /* harmony import */ var _ProxyCurve__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
203914
204043
  /*---------------------------------------------------------------------------------------------
203915
204044
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
203916
204045
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -203934,6 +204063,7 @@ __webpack_require__.r(__webpack_exports__);
203934
204063
 
203935
204064
 
203936
204065
 
204066
+
203937
204067
  /**
203938
204068
  * A `CurveCollection` is an abstract (non-instantiable) class for various sets of curves with particular structures:
203939
204069
  * - [[CurveChain]] - a non-instantiable intermediate class for a sequence of [[CurvePrimitive]] joining head-to-tail.
@@ -203956,27 +204086,47 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
203956
204086
  sumLengths() {
203957
204087
  return _internalContexts_SumLengthsContext__WEBPACK_IMPORTED_MODULE_2__.SumLengthsContext.sumLengths(this);
203958
204088
  }
203959
- /**
203960
- * Return the closest point on the contained curves.
203961
- * @param spacePoint point in space.
203962
- * @param _extend unused here (pass false), but applicable to overrides in [[Path]] and [[BagOfCurves]].
203963
- * @param result optional pre-allocated detail to populate and return.
203964
- * @returns details of the closest point.
203965
- */
203966
- closestPoint(spacePoint, _extend = false, result) {
204089
+ computeClosestPoint(spacePoint, extend = false, result, xyOnly = false) {
203967
204090
  let detailA;
203968
204091
  const detailB = new _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail();
203969
- if (this.children !== undefined) {
203970
- for (const child of this.children) {
203971
- if (child.closestPoint(spacePoint, false, detailB)) {
203972
- const smaller = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail.chooseSmallerA(detailA, detailB);
203973
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== smaller, "expect defined because detailB is always defined");
203974
- detailA = result = smaller.clone(result);
203975
- }
204092
+ let ext = this.isAnyRegion() ? false : extend;
204093
+ for (let i = 0; i < this.children.length; i++) {
204094
+ const child = this.children[i];
204095
+ if (this.isPath()) {
204096
+ // head only extends at start; tail only at end. NOTE: child may be both head and tail!
204097
+ const mode0 = (i === 0) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_4__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_4__.CurveExtendMode.None;
204098
+ const mode1 = (i === this.children.length - 1) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_4__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_4__.CurveExtendMode.None;
204099
+ ext = [mode0, mode1];
204100
+ }
204101
+ const cp = xyOnly ? child.closestPointXY(spacePoint, ext, detailB) : child.closestPoint(spacePoint, ext, detailB);
204102
+ if (cp) {
204103
+ const smaller = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail.chooseSmallerA(detailA, detailB);
204104
+ (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== smaller, "expect defined because detailB is always defined");
204105
+ detailA = result = smaller.clone(result);
203976
204106
  }
203977
204107
  }
203978
204108
  return detailA;
203979
204109
  }
204110
+ /**
204111
+ * Return the closest point on the contained curves.
204112
+ * @param spacePoint point in space.
204113
+ * @param extend extend applicable only to [[Path]] and [[BagOfCurves]]. Default value `false`.
204114
+ * @param result (optional) pre-allocated detail to populate and return.
204115
+ * @returns details of the closest point.
204116
+ */
204117
+ closestPoint(spacePoint, extend = false, result) {
204118
+ return this.computeClosestPoint(spacePoint, extend, result);
204119
+ }
204120
+ /**
204121
+ * Return the closest point on the contained curves as viewed in the xy-plane (ignoring z).
204122
+ * @param spacePoint point in space.
204123
+ * @param extend (optional) extend applicable only to [[Path]] and [[BagOfCurves]]. Default value `false`.
204124
+ * @param result (optional) pre-allocated detail to populate and return.
204125
+ * @returns details of the closest point.
204126
+ */
204127
+ closestPointXY(spacePoint, extend = false, result) {
204128
+ return this.computeClosestPoint(spacePoint, extend, result, true);
204129
+ }
203980
204130
  /**
203981
204131
  * Announce all points `P` on the contained curves such that the line containing `spacePoint` and `P` is tangent to
203982
204132
  * the contained curves in the view defined by `options.vectorToEye`.
@@ -203989,10 +204139,10 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
203989
204139
  * @param options (optional) options for computing tangents. See [[TangentOptions]] for defaults.
203990
204140
  */
203991
204141
  emitTangents(spacePoint, announceTangent, options) {
203992
- const strokeHandler = new _internalContexts_AnnounceTangentStrokeHandler__WEBPACK_IMPORTED_MODULE_4__.AnnounceTangentStrokeHandler(spacePoint, announceTangent, options);
204142
+ const strokeHandler = new _internalContexts_AnnounceTangentStrokeHandler__WEBPACK_IMPORTED_MODULE_5__.AnnounceTangentStrokeHandler(spacePoint, announceTangent, options);
203993
204143
  if (this.children !== undefined) {
203994
204144
  for (const child of this.children) {
203995
- if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__.CurvePrimitive)
204145
+ if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__.CurvePrimitive)
203996
204146
  child.emitStrokableParts(strokeHandler, options?.strokeOptions);
203997
204147
  else if (child instanceof CurveCollection)
203998
204148
  child.emitTangents(spacePoint, announceTangent, options);
@@ -204024,12 +204174,12 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
204024
204174
  const hint = options?.hintPoint ?? spacePoint;
204025
204175
  let toLocal;
204026
204176
  if (options?.vectorToEye && !options.vectorToEye.isExactEqual({ x: 0, y: 0, z: 1 }))
204027
- toLocal = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_6__.Matrix3d.createRigidViewAxesZTowardsEye(options.vectorToEye.x, options.vectorToEye.y, options.vectorToEye.z);
204177
+ toLocal = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_7__.Matrix3d.createRigidViewAxesZTowardsEye(options.vectorToEye.x, options.vectorToEye.y, options.vectorToEye.z);
204028
204178
  const measureHintDist2 = (pt) => {
204029
204179
  return toLocal?.multiplyTransposeXYZ(hint.x - pt.x, hint.y - pt.y, hint.z - pt.z).magnitudeSquaredXY() ?? pt.distanceSquaredXY(hint);
204030
204180
  };
204031
204181
  let closestTangent;
204032
- let closestDist2 = _Geometry__WEBPACK_IMPORTED_MODULE_7__.Geometry.largeCoordinateResult;
204182
+ let closestDist2 = _Geometry__WEBPACK_IMPORTED_MODULE_8__.Geometry.largeCoordinateResult;
204033
204183
  const collectClosestTangent = (tangent) => {
204034
204184
  const dist2 = measureHintDist2(tangent.point);
204035
204185
  if (!closestTangent || dist2 < closestDist2) {
@@ -204053,27 +204203,27 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
204053
204203
  * "unstructured" so gaps should not be semantically meaningful.
204054
204204
  */
204055
204205
  maxGap() {
204056
- return _internalContexts_GapSearchContext__WEBPACK_IMPORTED_MODULE_8__.GapSearchContext.maxGap(this);
204206
+ return _internalContexts_GapSearchContext__WEBPACK_IMPORTED_MODULE_9__.GapSearchContext.maxGap(this);
204057
204207
  }
204058
204208
  /** Return true if the curve collection has any primitives other than LineSegment3d and LineString3d */
204059
204209
  checkForNonLinearPrimitives() {
204060
- return _internalContexts_CountLinearPartsSearchContext__WEBPACK_IMPORTED_MODULE_9__.CountLinearPartsSearchContext.hasNonLinearPrimitives(this);
204210
+ return _internalContexts_CountLinearPartsSearchContext__WEBPACK_IMPORTED_MODULE_10__.CountLinearPartsSearchContext.hasNonLinearPrimitives(this);
204061
204211
  }
204062
204212
  /** Apply transform recursively to children */
204063
204213
  tryTransformInPlace(transform) {
204064
- return _internalContexts_TransformInPlaceContext__WEBPACK_IMPORTED_MODULE_10__.TransformInPlaceContext.tryTransformInPlace(this, transform);
204214
+ return _internalContexts_TransformInPlaceContext__WEBPACK_IMPORTED_MODULE_11__.TransformInPlaceContext.tryTransformInPlace(this, transform);
204065
204215
  }
204066
204216
  /** Return a deep copy. */
204067
204217
  clone() {
204068
- return _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_11__.CloneCurvesContext.clone(this);
204218
+ return _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_12__.CloneCurvesContext.clone(this);
204069
204219
  }
204070
204220
  /** Create a deep copy of transformed curves. */
204071
204221
  cloneTransformed(transform) {
204072
- return _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_11__.CloneCurvesContext.clone(this, transform);
204222
+ return _internalContexts_CloneCurvesContext__WEBPACK_IMPORTED_MODULE_12__.CloneCurvesContext.clone(this, transform);
204073
204223
  }
204074
204224
  /** Create a deep copy with all linestrings broken down into multiple LineSegment3d. */
204075
204225
  cloneWithExpandedLineStrings() {
204076
- return _internalContexts_CloneWithExpandedLineStrings__WEBPACK_IMPORTED_MODULE_12__.CloneWithExpandedLineStrings.clone(this);
204226
+ return _internalContexts_CloneWithExpandedLineStrings__WEBPACK_IMPORTED_MODULE_13__.CloneWithExpandedLineStrings.clone(this);
204077
204227
  }
204078
204228
  /**
204079
204229
  * Push all CurvePrimitives contained in the instance onto the `results` array.
@@ -204083,7 +204233,7 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
204083
204233
  collectCurvePrimitivesGo(results, smallestPossiblePrimitives, explodeLinestrings = false) {
204084
204234
  if (this.children) {
204085
204235
  for (const child of this.children) {
204086
- if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__.CurvePrimitive)
204236
+ if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__.CurvePrimitive)
204087
204237
  child.collectCurvePrimitivesGo(results, smallestPossiblePrimitives, explodeLinestrings);
204088
204238
  else if (child instanceof CurveCollection)
204089
204239
  child.collectCurvePrimitivesGo(results, smallestPossiblePrimitives, explodeLinestrings);
@@ -204163,7 +204313,7 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
204163
204313
  static createCurveLocationDetailOnAnyCurvePrimitive(source, fraction = 0.5) {
204164
204314
  if (!source)
204165
204315
  return undefined;
204166
- if (source instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__.CurvePrimitive) {
204316
+ if (source instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__.CurvePrimitive) {
204167
204317
  return _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail.createCurveEvaluatedFraction(source, fraction);
204168
204318
  }
204169
204319
  else if (source instanceof CurveCollection && source.children !== undefined)
@@ -204183,7 +204333,7 @@ class CurveCollection extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geomet
204183
204333
  * end of the ray.
204184
204334
  */
204185
204335
  projectedParameterRange(ray, lowHigh) {
204186
- return _internalContexts_PlaneAltitudeRangeContext__WEBPACK_IMPORTED_MODULE_13__.PlaneAltitudeRangeContext.findExtremeFractionsAlongDirection(this, ray, lowHigh);
204336
+ return _internalContexts_PlaneAltitudeRangeContext__WEBPACK_IMPORTED_MODULE_14__.PlaneAltitudeRangeContext.findExtremeFractionsAlongDirection(this, ray, lowHigh);
204187
204337
  }
204188
204338
  /** Return the immediate parent of the input curve in the instance, or undefined if it is not a descendant. */
204189
204339
  findParentOfDescendant(descendant) {
@@ -204244,7 +204394,7 @@ class CurveChain extends CurveCollection {
204244
204394
  * @param tolerance optional distance tolerance (default is [[Geometry.smallMetricDistance]])
204245
204395
  * @param xyOnly if true, ignore z coordinate (default is `false`)
204246
204396
  */
204247
- isPhysicallyClosedCurve(tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_7__.Geometry.smallMetricDistance, xyOnly = false) {
204397
+ isPhysicallyClosedCurve(tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_8__.Geometry.smallMetricDistance, xyOnly = false) {
204248
204398
  const p0 = this.startPoint();
204249
204399
  const p1 = this.endPoint();
204250
204400
  return p0 !== undefined && p1 !== undefined && (xyOnly ? p0.isAlmostEqualXY(p1, tolerance) : p0.isAlmostEqual(p1, tolerance));
@@ -204284,7 +204434,7 @@ class CurveChain extends CurveCollection {
204284
204434
  if (index >= 0 && index < n) // try simplest non-cyclic access first
204285
204435
  return this.children[index];
204286
204436
  if (cyclic) {
204287
- const index2 = _Geometry__WEBPACK_IMPORTED_MODULE_7__.Geometry.modulo(index, n);
204437
+ const index2 = _Geometry__WEBPACK_IMPORTED_MODULE_8__.Geometry.modulo(index, n);
204288
204438
  return this.children[index2];
204289
204439
  }
204290
204440
  return undefined;
@@ -204304,7 +204454,7 @@ class CurveChain extends CurveCollection {
204304
204454
  const children = tree.children;
204305
204455
  if (children.length === 1) {
204306
204456
  const ls = children[0];
204307
- if (ls instanceof _LineString3d__WEBPACK_IMPORTED_MODULE_14__.LineString3d)
204457
+ if (ls instanceof _LineString3d__WEBPACK_IMPORTED_MODULE_15__.LineString3d)
204308
204458
  return ls.packedPoints;
204309
204459
  }
204310
204460
  }
@@ -204316,7 +204466,7 @@ class CurveChain extends CurveCollection {
204316
204466
  * @return whether the child was added
204317
204467
  */
204318
204468
  tryAddChild(child) {
204319
- if (child && child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__.CurvePrimitive) {
204469
+ if (child && child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__.CurvePrimitive) {
204320
204470
  this._curves.push(child);
204321
204471
  return true;
204322
204472
  }
@@ -204358,7 +204508,7 @@ class CurveChain extends CurveCollection {
204358
204508
  if (alsoSearchProxies ?? false) {
204359
204509
  for (let i = 0; i < this._curves.length; i++) {
204360
204510
  const childCurve = this._curves[i];
204361
- if (childCurve instanceof _ProxyCurve__WEBPACK_IMPORTED_MODULE_15__.ProxyCurve) {
204511
+ if (childCurve instanceof _ProxyCurve__WEBPACK_IMPORTED_MODULE_16__.ProxyCurve) {
204362
204512
  if (childCurve.proxyCurve === target)
204363
204513
  return i;
204364
204514
  }
@@ -204422,8 +204572,8 @@ class BagOfCurves extends CurveCollection {
204422
204572
  const clone = new BagOfCurves();
204423
204573
  let child;
204424
204574
  for (child of this.children) {
204425
- if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_5__.CurvePrimitive) {
204426
- const ls = _LineString3d__WEBPACK_IMPORTED_MODULE_14__.LineString3d.create();
204575
+ if (child instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_6__.CurvePrimitive) {
204576
+ const ls = _LineString3d__WEBPACK_IMPORTED_MODULE_15__.LineString3d.create();
204427
204577
  child.emitStrokes(ls, options);
204428
204578
  if (ls)
204429
204579
  clone.children.push(ls);
@@ -204436,27 +204586,6 @@ class BagOfCurves extends CurveCollection {
204436
204586
  }
204437
204587
  return clone;
204438
204588
  }
204439
- /**
204440
- * Return the closest point on the contained curves.
204441
- * @param spacePoint point in space.
204442
- * @param extend applicable only to children of type [[CurvePrimitive]], [[Path]], or [[BagOfCurves]]
204443
- * @param result optional pre-allocated detail to populate and return.
204444
- * @returns details of the closest point.
204445
- */
204446
- closestPoint(spacePoint, extend = false, result) {
204447
- let detailA;
204448
- const detailB = new _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail();
204449
- if (this.children !== undefined) {
204450
- for (const child of this.children) {
204451
- if (child.closestPoint(spacePoint, extend, detailB)) {
204452
- const smaller = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_3__.CurveLocationDetail.chooseSmallerA(detailA, detailB);
204453
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== smaller, "expect defined because detailB is always defined");
204454
- detailA = result = smaller.clone(result);
204455
- }
204456
- }
204457
- }
204458
- return detailA;
204459
- }
204460
204589
  /** Return an empty `BagOfCurves` */
204461
204590
  cloneEmptyPeer() {
204462
204591
  return new BagOfCurves();
@@ -204654,7 +204783,7 @@ var CurveExtendMode;
204654
204783
  (function (CurveExtendMode) {
204655
204784
  /** No extension allowed. */
204656
204785
  CurveExtendMode[CurveExtendMode["None"] = 0] = "None";
204657
- /** Extend along continuation of the end tangent. */
204786
+ /** Extend along continuation of the end tangent. Not implemented. */
204658
204787
  CurveExtendMode[CurveExtendMode["OnTangent"] = 1] = "OnTangent";
204659
204788
  /** Extend along continuation of the curve. */
204660
204789
  CurveExtendMode[CurveExtendMode["OnCurve"] = 2] = "OnCurve";
@@ -204672,6 +204801,7 @@ class CurveExtendOptions {
204672
204801
  * * Return dereferenced array at entry `endIndex` if the param is an array of CurveExtendMode.
204673
204802
  */
204674
204803
  static resolveVariantCurveExtendParameterToCurveExtendMode(param, endIndex) {
204804
+ param ??= false;
204675
204805
  if (param === false)
204676
204806
  return CurveExtendMode.None;
204677
204807
  if (param === true)
@@ -204687,6 +204817,7 @@ class CurveExtendOptions {
204687
204817
  * * If fraction is greater than 1 use `extendParam` to decide whether to return it unchanged, or to return 1.
204688
204818
  */
204689
204819
  static correctFraction(extendParam, fraction) {
204820
+ extendParam ??= false;
204690
204821
  if (fraction < 0) {
204691
204822
  const mode = CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extendParam, 0);
204692
204823
  if (mode === CurveExtendMode.None)
@@ -204710,6 +204841,7 @@ class CurveExtendOptions {
204710
204841
  * the sweep extended per `extendParam`.
204711
204842
  */
204712
204843
  static resolveRadiansToValidSweepFraction(extendParam, radians, sweep) {
204844
+ extendParam ??= false;
204713
204845
  let fraction = sweep.radiansToSignedPeriodicFraction(radians);
204714
204846
  let isValid = true;
204715
204847
  if (!sweep.isRadiansInSweep(radians)) {
@@ -206701,15 +206833,31 @@ class CurvePrimitive extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_1__.Geometr
206701
206833
  * * Since CurvePrimitive should always have start and end available as candidate points, this method should always
206702
206834
  * succeed.
206703
206835
  * @param spacePoint point in space.
206704
- * @param extend (optional) compute the closest point to the curve extended according to variant type (default false)
206836
+ * @param extend (optional) compute the closest point to the curve extended according to variant type (default false).
206705
206837
  * @param result (optional) pre-allocated detail to populate and return.
206706
206838
  * @returns details of the closest point.
206707
206839
  */
206708
- closestPoint(spacePoint, extend, result) {
206840
+ closestPoint(spacePoint, extend = false, result) {
206709
206841
  const strokeHandler = new _internalContexts_ClosestPointStrokeHandler__WEBPACK_IMPORTED_MODULE_10__.ClosestPointStrokeHandler(spacePoint, extend, result);
206710
206842
  this.emitStrokableParts(strokeHandler);
206711
206843
  return strokeHandler.claimResult();
206712
206844
  }
206845
+ /**
206846
+ * Search for a point on the curve that is closest to `spacePoint`, ignoring z-coordinates.
206847
+ * * This is equivalent to finding the closest point as seen in the top view.
206848
+ * * If the space point is exactly on the curve, this is the reverse of fractionToPoint.
206849
+ * * Since CurvePrimitive should always have start and end available as candidate points, this method should always
206850
+ * succeed.
206851
+ * @param spacePoint point in space.
206852
+ * @param extend (optional) compute the closest point to the curve extended according to variant type (default false).
206853
+ * @param result (optional) pre-allocated detail to populate and return.
206854
+ * @returns details of the closest point.
206855
+ */
206856
+ closestPointXY(spacePoint, extend = false, result) {
206857
+ const strokeHandler = new _internalContexts_ClosestPointStrokeHandler__WEBPACK_IMPORTED_MODULE_10__.ClosestPointStrokeHandler(spacePoint, extend, result, true);
206858
+ this.emitStrokableParts(strokeHandler);
206859
+ return strokeHandler.claimResult();
206860
+ }
206713
206861
  /**
206714
206862
  * Announce all points `P` on the curve such that the line containing `spacePoint` and `P` is tangent to the curve in
206715
206863
  * the view defined by `options.vectorToEye`.
@@ -207536,12 +207684,12 @@ class LineSegment3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePr
207536
207684
  /**
207537
207685
  * Returns a curve location detail with both xyz and fractional coordinates of the closest point.
207538
207686
  * @param spacePoint point in space
207539
- * @param extend if false, only return points within the bounded line segment. If true, allow the point to be on
207687
+ * @param extend if false (default), only return points within the bounded line segment. If true, allow the point to be on
207540
207688
  * the unbounded line that contains the bounded segment.
207541
207689
  * @param result optional pre-allocated object to populate and return
207542
207690
  * @returns detail, with `a` field set to the distance from `spacePoint` to the closest point
207543
207691
  */
207544
- closestPoint(spacePoint, extend, result) {
207692
+ closestPoint(spacePoint, extend = false, result) {
207545
207693
  let fraction = spacePoint.fractionOfProjectionToLine(this._point0, this._point1, 0.0);
207546
207694
  fraction = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_5__.CurveExtendOptions.correctFraction(extend, fraction);
207547
207695
  result = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_6__.CurveLocationDetail.create(this, result);
@@ -208756,7 +208904,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_2__.CurvePri
208756
208904
  return undefined;
208757
208905
  }
208758
208906
  /** Find the point on the linestring (including its segment interiors) that is closest to spacePoint. */
208759
- closestPoint(spacePoint, extend, result) {
208907
+ closestPoint(spacePoint, extend = false, result) {
208760
208908
  result = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_13__.CurveLocationDetail.create(this, result);
208761
208909
  const extend0 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0);
208762
208910
  const extend1 = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_14__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1);
@@ -209918,24 +210066,15 @@ __webpack_require__.r(__webpack_exports__);
209918
210066
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
209919
210067
  /* harmony export */ Path: () => (/* binding */ Path)
209920
210068
  /* harmony export */ });
209921
- /* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
209922
- /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
209923
- /* harmony import */ var _CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
209924
- /* harmony import */ var _CurveCollection__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
209925
- /* harmony import */ var _CurveExtendMode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
209926
- /* harmony import */ var _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
209927
- /* harmony import */ var _CurvePrimitive__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
209928
- /* harmony import */ var _LineString3d__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
210069
+ /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
210070
+ /* harmony import */ var _CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
210071
+ /* harmony import */ var _CurveCollection__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
210072
+ /* harmony import */ var _CurvePrimitive__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
210073
+ /* harmony import */ var _LineString3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
209929
210074
  /*---------------------------------------------------------------------------------------------
209930
210075
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
209931
210076
  * See LICENSE.md in the project root for license terms and full copyright notice.
209932
210077
  *--------------------------------------------------------------------------------------------*/
209933
- /** @packageDocumentation
209934
- * @module Curve
209935
- */
209936
-
209937
-
209938
-
209939
210078
 
209940
210079
 
209941
210080
 
@@ -209947,7 +210086,7 @@ __webpack_require__.r(__webpack_exports__);
209947
210086
  * @see [Curve Collections]($docs/learning/geometry/CurveCollection.md) learning article.
209948
210087
  * @public
209949
210088
  */
209950
- class Path extends _CurveCollection__WEBPACK_IMPORTED_MODULE_1__.CurveChain {
210089
+ class Path extends _CurveCollection__WEBPACK_IMPORTED_MODULE_0__.CurveChain {
209951
210090
  /** String name for schema properties */
209952
210091
  curveCollectionType = "path";
209953
210092
  /** Test if `other` is an instance of `Path` */
@@ -209970,18 +210109,18 @@ class Path extends _CurveCollection__WEBPACK_IMPORTED_MODULE_1__.CurveChain {
209970
210109
  static create(...curves) {
209971
210110
  const result = new Path();
209972
210111
  for (const curve of curves) {
209973
- if (curve instanceof _CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_2__.CurveChainWithDistanceIndex)
210112
+ if (curve instanceof _CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_1__.CurveChainWithDistanceIndex)
209974
210113
  result.children.push(...curve.path.children);
209975
- else if (curve instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_3__.CurvePrimitive)
210114
+ else if (curve instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_2__.CurvePrimitive)
209976
210115
  result.children.push(curve);
209977
- else if (Array.isArray(curve) && curve.length > 0 && curve[0] instanceof _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_4__.Point3d) {
209978
- result.children.push(_LineString3d__WEBPACK_IMPORTED_MODULE_5__.LineString3d.create(curve));
210116
+ else if (Array.isArray(curve) && curve.length > 0 && curve[0] instanceof _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_3__.Point3d) {
210117
+ result.children.push(_LineString3d__WEBPACK_IMPORTED_MODULE_4__.LineString3d.create(curve));
209979
210118
  }
209980
210119
  }
209981
210120
  return result;
209982
210121
  }
209983
210122
  /**
209984
- * Create a path from a an array of curve primitives.
210123
+ * Create a path from an array of curve primitives.
209985
210124
  * @param curves array of individual curve primitives.
209986
210125
  */
209987
210126
  static createArray(curves) {
@@ -209989,39 +210128,11 @@ class Path extends _CurveCollection__WEBPACK_IMPORTED_MODULE_1__.CurveChain {
209989
210128
  }
209990
210129
  /** Return a deep copy, with leaf-level curve primitives stroked. */
209991
210130
  cloneStroked(options) {
209992
- const strokes = _LineString3d__WEBPACK_IMPORTED_MODULE_5__.LineString3d.create();
210131
+ const strokes = _LineString3d__WEBPACK_IMPORTED_MODULE_4__.LineString3d.create();
209993
210132
  for (const curve of this.children)
209994
210133
  curve.emitStrokes(strokes, options);
209995
210134
  return Path.create(strokes);
209996
210135
  }
209997
- /**
209998
- * Return the closest point on the contained curves.
209999
- * @param spacePoint point in space.
210000
- * @param extend compute the closest point to the path extended according to variant type:
210001
- * * false: do not extend the path
210002
- * * true: extend the path at both start and end
210003
- * * CurveExtendOptions: extend the path in the specified manner at both start and end
210004
- * * CurveExtendOptions[]: first entry applies to path start; second, to path end; any other entries ignored
210005
- * @param result optional pre-allocated detail to populate and return.
210006
- * @returns details of the closest point.
210007
- */
210008
- closestPoint(spacePoint, extend = false, result) {
210009
- let detailA;
210010
- const detailB = new _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_6__.CurveLocationDetail();
210011
- if (this.children !== undefined) {
210012
- for (let i = 0; i < this.children.length; i++) {
210013
- const child = this.children[i]; // head only extends at start; tail, only at end. NOTE: child may be both head and tail!
210014
- const mode0 = (i === 0) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_7__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 0) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_7__.CurveExtendMode.None;
210015
- const mode1 = (i === this.children.length - 1) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_7__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(extend, 1) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_7__.CurveExtendMode.None;
210016
- if (child.closestPoint(spacePoint, [mode0, mode1], detailB)) {
210017
- const smaller = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_6__.CurveLocationDetail.chooseSmallerA(detailA, detailB);
210018
- (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== smaller, "expect defined because detailB is always defined");
210019
- detailA = result = smaller.clone(result);
210020
- }
210021
- }
210022
- }
210023
- return detailA;
210024
- }
210025
210136
  /** Return the boundary type (1) of a corresponding MicroStation CurveVector */
210026
210137
  dgnBoundaryType() {
210027
210138
  return 1;
@@ -215152,6 +215263,7 @@ __webpack_require__.r(__webpack_exports__);
215152
215263
  /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
215153
215264
  /* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
215154
215265
  /* harmony import */ var _numerics_Newton__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../numerics/Newton */ "../../core/geometry/lib/esm/numerics/Newton.js");
215266
+ /* harmony import */ var _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../numerics/SmallSystem */ "../../core/geometry/lib/esm/numerics/SmallSystem.js");
215155
215267
  /* harmony import */ var _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
215156
215268
  /* harmony import */ var _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
215157
215269
  /* harmony import */ var _NewtonRtoRStrokeHandler__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./NewtonRtoRStrokeHandler */ "../../core/geometry/lib/esm/curve/internalContexts/NewtonRtoRStrokeHandler.js");
@@ -215170,6 +215282,7 @@ __webpack_require__.r(__webpack_exports__);
215170
215282
 
215171
215283
 
215172
215284
 
215285
+
215173
215286
  /**
215174
215287
  * Context for searching for the closest point to a CurvePrimitive.
215175
215288
  * @internal
@@ -215179,6 +215292,7 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215179
215292
  _closestPoint;
215180
215293
  _spacePoint;
215181
215294
  _extend;
215295
+ _xyOnly;
215182
215296
  // fraction and function value on one side of an interval that may bracket a root
215183
215297
  _fractionA = 0;
215184
215298
  _functionA = 0;
@@ -215191,7 +215305,7 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215191
215305
  _workRay;
215192
215306
  _newtonSolver;
215193
215307
  /** Constructor */
215194
- constructor(spacePoint, extend, result) {
215308
+ constructor(spacePoint, extend, result, xyOnly) {
215195
215309
  super();
215196
215310
  this._spacePoint = spacePoint;
215197
215311
  this._workPoint = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create();
@@ -215200,6 +215314,7 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215200
215314
  if (this._closestPoint)
215201
215315
  this._closestPoint.a = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.largeCoordinateResult;
215202
215316
  this._extend = extend ?? false;
215317
+ this._xyOnly = xyOnly ?? false;
215203
215318
  this.startCurvePrimitive(undefined);
215204
215319
  this._newtonSolver = new _numerics_Newton__WEBPACK_IMPORTED_MODULE_5__.Newton1dUnboundedApproximateDerivative(this);
215205
215320
  }
@@ -215240,7 +215355,7 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215240
215355
  }
215241
215356
  }
215242
215357
  announceCandidate(cp, fraction, point) {
215243
- const distance = this._spacePoint.distance(point);
215358
+ const distance = this._xyOnly ? this._spacePoint.distanceXY(point) : this._spacePoint.distance(point);
215244
215359
  if (this._closestPoint && distance > this._closestPoint.a)
215245
215360
  return;
215246
215361
  this._closestPoint = _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_7__.CurveLocationDetail.createCurveFractionPoint(cp, fraction, point, this._closestPoint);
@@ -215249,16 +215364,15 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215249
215364
  this._closestPoint.curve = this._parentCurvePrimitive;
215250
215365
  }
215251
215366
  announceSegmentInterval(cp, point0, point1, _numStrokes, fraction0, fraction1) {
215252
- let localFraction = this._spacePoint.fractionOfProjectionToLine(point0, point1, 0.0);
215253
- // only consider extending the segment if the immediate caller says we are at endpoints
215254
- if (!this._extend)
215255
- localFraction = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.clampToStartEnd(localFraction, 0.0, 1.0);
215256
- else {
215257
- if (fraction0 !== 0.0)
215258
- localFraction = Math.max(localFraction, 0.0);
215259
- if (fraction1 !== 1.0)
215260
- localFraction = Math.min(localFraction, 1.0);
215261
- }
215367
+ let localFraction = 0;
215368
+ if (this._xyOnly)
215369
+ localFraction = _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_8__.SmallSystem.lineSegment3dXYClosestPointUnbounded(point0, point1, this._spacePoint) ?? 0;
215370
+ else
215371
+ localFraction = this._spacePoint.fractionOfProjectionToLine(point0, point1, 0.0);
215372
+ // only consider segment extension at a parent curve endpoint, i.e. when fraction0 is 0 or fraction1 is 1
215373
+ const extend0 = (fraction0 === 0) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(this._extend, 0) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__.CurveExtendMode.None;
215374
+ const extend1 = (fraction1 === 1) ? _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__.CurveExtendOptions.resolveVariantCurveExtendParameterToCurveExtendMode(this._extend, 1) : _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__.CurveExtendMode.None;
215375
+ localFraction = _CurveExtendMode__WEBPACK_IMPORTED_MODULE_6__.CurveExtendOptions.correctFraction([extend0, extend1], localFraction);
215262
215376
  this._workPoint = point0.interpolate(localFraction, point1);
215263
215377
  const globalFraction = _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.interpolate(fraction0, localFraction, fraction1);
215264
215378
  this.announceCandidate(cp, globalFraction, this._workPoint);
@@ -215307,7 +215421,10 @@ class ClosestPointStrokeHandler extends _NewtonRtoRStrokeHandler__WEBPACK_IMPORT
215307
215421
  this._workRay = curve.fractionToPointAndDerivative(fraction, this._workRay);
215308
215422
  else
215309
215423
  return undefined;
215310
- return this._workRay.dotProductToPoint(this._spacePoint);
215424
+ if (this._xyOnly)
215425
+ return this._workRay.dotProductToPointXY(this._spacePoint);
215426
+ else
215427
+ return this._workRay.dotProductToPoint(this._spacePoint);
215311
215428
  }
215312
215429
  evaluate(fraction) {
215313
215430
  let curve = this._curve;
@@ -226645,7 +226762,8 @@ class Ellipsoid {
226645
226762
  * @param angleB end point of arc (given as angles on this ellipsoid)
226646
226763
  * @returns arc in the plane defined by the normal at the intermediate point. If calculation fails, return an
226647
226764
  * arc with zero matrix.
226648
- * @deprecated in 5.1.9 - will not be removed until after 2027-01-05. Prefer [[sectionArcInPlaneOfInterpolatedNormal]], which has expanded return type.
226765
+ * @deprecated in 5.1.9 - will not be removed until after 2027-01-05. Prefer [[sectionArcInPlaneOfInterpolatedNormal]],
226766
+ * which has expanded return type.
226649
226767
  */
226650
226768
  sectionArcWithIntermediateNormal(angleA, intermediateNormalFraction, angleB) {
226651
226769
  const arc = this.sectionArcInPlaneOfInterpolatedNormal(angleA, intermediateNormalFraction, angleB);
@@ -243841,6 +243959,13 @@ class Ray3d {
243841
243959
  dotProductToPoint(spacePoint) {
243842
243960
  return this.direction.dotProductStartEnd(this.origin, spacePoint);
243843
243961
  }
243962
+ /**
243963
+ * Return the XY dot product of the ray's direction vector with a vector from the ray origin to the `spacePoint`.
243964
+ * * Ignores the z component of both ray's direction and spacePoint.
243965
+ */
243966
+ dotProductToPointXY(spacePoint) {
243967
+ return this.direction.dotProductStartEndXY(this.origin, spacePoint);
243968
+ }
243844
243969
  /** Return the fractional coordinate (along the direction vector) of the `spacePoint` projected to the ray. */
243845
243970
  pointToFraction(spacePoint) {
243846
243971
  return _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.safeDivideFraction(this.dotProductToPoint(spacePoint), this.direction.magnitudeSquared(), 0);
@@ -251135,7 +251260,8 @@ class CurvePointCloseApproachXYRtoRD extends NewtonEvaluatorRtoRD {
251135
251260
  /**
251136
251261
  * To find a close approach between xy-curve P(u) and xy-point q we should solve
251137
251262
  * F(u) := P'(u).(P(u) - q) = 0
251138
- * For a solution u, the segment S(u) := P(u) - q is perpendicular to the curve tangent P'(u), which means S(u) is a close approach.
251263
+ * For a solution u, the segment S(u) := P(u) - q is perpendicular to the curve tangent P'(u), which means S(u) is
251264
+ * a close approach.
251139
251265
  * Using the Newton method we can find the fractions u at the close approach location via
251140
251266
  * u_{n+1} = u_n + F(u_n)/F'(u_n) = u_n + [ P'(u_n).S(u_n) ]/[ P''(u_n).S(u_n) + P'(u_n).P'(u_n) ]
251141
251267
  * Note that this is xy close approach so we can ignore z.
@@ -313043,9 +313169,9 @@ function _unsupportedIterableToArray(r, a) {
313043
313169
 
313044
313170
  /***/ }),
313045
313171
 
313046
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/index.js":
313172
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/index.js":
313047
313173
  /*!*************************************************************************************!*\
313048
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/index.js ***!
313174
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/index.js ***!
313049
313175
  \*************************************************************************************/
313050
313176
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313051
313177
 
@@ -313070,7 +313196,7 @@ __webpack_require__.r(__webpack_exports__);
313070
313196
  /* harmony export */ spread: () => (/* binding */ spread),
313071
313197
  /* harmony export */ toFormData: () => (/* binding */ toFormData)
313072
313198
  /* harmony export */ });
313073
- /* harmony import */ var _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lib/axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/axios.js");
313199
+ /* harmony import */ var _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lib/axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/axios.js");
313074
313200
 
313075
313201
 
313076
313202
  // This module is intended to unwrap Axios default export as named.
@@ -313100,9 +313226,9 @@ const {
313100
313226
 
313101
313227
  /***/ }),
313102
313228
 
313103
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/adapters.js":
313229
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/adapters.js":
313104
313230
  /*!*****************************************************************************************************!*\
313105
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/adapters.js ***!
313231
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/adapters.js ***!
313106
313232
  \*****************************************************************************************************/
313107
313233
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313108
313234
 
@@ -313111,11 +313237,11 @@ __webpack_require__.r(__webpack_exports__);
313111
313237
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
313112
313238
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
313113
313239
  /* harmony export */ });
313114
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
313115
- /* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/null.js");
313116
- /* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/xhr.js");
313117
- /* harmony import */ var _fetch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fetch.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/fetch.js");
313118
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
313240
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
313241
+ /* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/null.js");
313242
+ /* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/xhr.js");
313243
+ /* harmony import */ var _fetch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fetch.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/fetch.js");
313244
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
313119
313245
 
313120
313246
 
313121
313247
 
@@ -313246,9 +313372,9 @@ function getAdapter(adapters, config) {
313246
313372
 
313247
313373
  /***/ }),
313248
313374
 
313249
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/fetch.js":
313375
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/fetch.js":
313250
313376
  /*!**************************************************************************************************!*\
313251
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/fetch.js ***!
313377
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/fetch.js ***!
313252
313378
  \**************************************************************************************************/
313253
313379
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313254
313380
 
@@ -313258,15 +313384,15 @@ __webpack_require__.r(__webpack_exports__);
313258
313384
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
313259
313385
  /* harmony export */ getFetch: () => (/* binding */ getFetch)
313260
313386
  /* harmony export */ });
313261
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
313262
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
313263
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
313264
- /* harmony import */ var _helpers_composeSignals_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/composeSignals.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/composeSignals.js");
313265
- /* harmony import */ var _helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/trackStream.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/trackStream.js");
313266
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
313267
- /* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/progressEventReducer.js");
313268
- /* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/resolveConfig.js");
313269
- /* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/settle.js");
313387
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
313388
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
313389
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
313390
+ /* harmony import */ var _helpers_composeSignals_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/composeSignals.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/composeSignals.js");
313391
+ /* harmony import */ var _helpers_trackStream_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/trackStream.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/trackStream.js");
313392
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
313393
+ /* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/progressEventReducer.js");
313394
+ /* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/resolveConfig.js");
313395
+ /* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/settle.js");
313270
313396
 
313271
313397
 
313272
313398
 
@@ -313516,14 +313642,14 @@ const factory = (env) => {
313516
313642
 
313517
313643
  if (err && err.name === 'TypeError' && /Load failed|fetch/i.test(err.message)) {
313518
313644
  throw Object.assign(
313519
- new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"]('Network Error', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_NETWORK, config, request),
313645
+ new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"]('Network Error', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].ERR_NETWORK, config, request, err && err.response),
313520
313646
  {
313521
313647
  cause: err.cause || err
313522
313648
  }
313523
313649
  )
313524
313650
  }
313525
313651
 
313526
- throw _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].from(err, err && err.code, config, request);
313652
+ throw _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__["default"].from(err, err && err.code, config, request, err && err.response);
313527
313653
  }
313528
313654
  }
313529
313655
  }
@@ -313559,9 +313685,9 @@ const adapter = getFetch();
313559
313685
 
313560
313686
  /***/ }),
313561
313687
 
313562
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/xhr.js":
313688
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/xhr.js":
313563
313689
  /*!************************************************************************************************!*\
313564
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/xhr.js ***!
313690
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/xhr.js ***!
313565
313691
  \************************************************************************************************/
313566
313692
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313567
313693
 
@@ -313570,16 +313696,16 @@ __webpack_require__.r(__webpack_exports__);
313570
313696
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
313571
313697
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
313572
313698
  /* harmony export */ });
313573
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
313574
- /* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/settle.js");
313575
- /* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/transitional.js");
313576
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
313577
- /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js");
313578
- /* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseProtocol.js");
313579
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
313580
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
313581
- /* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/progressEventReducer.js");
313582
- /* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/resolveConfig.js");
313699
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
313700
+ /* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/settle.js");
313701
+ /* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/transitional.js");
313702
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
313703
+ /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js");
313704
+ /* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseProtocol.js");
313705
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
313706
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
313707
+ /* harmony import */ var _helpers_progressEventReducer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/progressEventReducer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/progressEventReducer.js");
313708
+ /* harmony import */ var _helpers_resolveConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/resolveConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/resolveConfig.js");
313583
313709
 
313584
313710
 
313585
313711
 
@@ -313784,9 +313910,9 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
313784
313910
 
313785
313911
  /***/ }),
313786
313912
 
313787
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/axios.js":
313913
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/axios.js":
313788
313914
  /*!*****************************************************************************************!*\
313789
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/axios.js ***!
313915
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/axios.js ***!
313790
313916
  \*****************************************************************************************/
313791
313917
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313792
313918
 
@@ -313795,23 +313921,23 @@ __webpack_require__.r(__webpack_exports__);
313795
313921
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
313796
313922
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
313797
313923
  /* harmony export */ });
313798
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
313799
- /* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/bind.js");
313800
- /* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/Axios.js");
313801
- /* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/mergeConfig.js");
313802
- /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/index.js");
313803
- /* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/formDataToJSON.js");
313804
- /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js");
313805
- /* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CancelToken.js");
313806
- /* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/isCancel.js");
313807
- /* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/env/data.js");
313808
- /* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js");
313809
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
313810
- /* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/spread.js");
313811
- /* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAxiosError.js");
313812
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
313813
- /* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/adapters.js");
313814
- /* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/HttpStatusCode.js");
313924
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
313925
+ /* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/bind.js");
313926
+ /* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/Axios.js");
313927
+ /* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/mergeConfig.js");
313928
+ /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/index.js");
313929
+ /* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/formDataToJSON.js");
313930
+ /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js");
313931
+ /* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CancelToken.js");
313932
+ /* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/isCancel.js");
313933
+ /* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/env/data.js");
313934
+ /* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js");
313935
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
313936
+ /* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/spread.js");
313937
+ /* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAxiosError.js");
313938
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
313939
+ /* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/adapters.js");
313940
+ /* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/HttpStatusCode.js");
313815
313941
 
313816
313942
 
313817
313943
 
@@ -313905,9 +314031,9 @@ axios.default = axios;
313905
314031
 
313906
314032
  /***/ }),
313907
314033
 
313908
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CancelToken.js":
314034
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CancelToken.js":
313909
314035
  /*!******************************************************************************************************!*\
313910
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CancelToken.js ***!
314036
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CancelToken.js ***!
313911
314037
  \******************************************************************************************************/
313912
314038
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
313913
314039
 
@@ -313916,7 +314042,7 @@ __webpack_require__.r(__webpack_exports__);
313916
314042
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
313917
314043
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
313918
314044
  /* harmony export */ });
313919
- /* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js");
314045
+ /* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js");
313920
314046
 
313921
314047
 
313922
314048
 
@@ -314056,9 +314182,9 @@ class CancelToken {
314056
314182
 
314057
314183
  /***/ }),
314058
314184
 
314059
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js":
314185
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js":
314060
314186
  /*!********************************************************************************************************!*\
314061
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js ***!
314187
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js ***!
314062
314188
  \********************************************************************************************************/
314063
314189
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314064
314190
 
@@ -314067,7 +314193,7 @@ __webpack_require__.r(__webpack_exports__);
314067
314193
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314068
314194
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
314069
314195
  /* harmony export */ });
314070
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
314196
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
314071
314197
 
314072
314198
 
314073
314199
 
@@ -314094,9 +314220,9 @@ class CanceledError extends _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__["de
314094
314220
 
314095
314221
  /***/ }),
314096
314222
 
314097
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/isCancel.js":
314223
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/isCancel.js":
314098
314224
  /*!***************************************************************************************************!*\
314099
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/isCancel.js ***!
314225
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/isCancel.js ***!
314100
314226
  \***************************************************************************************************/
314101
314227
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314102
314228
 
@@ -314114,9 +314240,9 @@ function isCancel(value) {
314114
314240
 
314115
314241
  /***/ }),
314116
314242
 
314117
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/Axios.js":
314243
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/Axios.js":
314118
314244
  /*!**********************************************************************************************!*\
314119
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/Axios.js ***!
314245
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/Axios.js ***!
314120
314246
  \**********************************************************************************************/
314121
314247
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314122
314248
 
@@ -314125,14 +314251,16 @@ __webpack_require__.r(__webpack_exports__);
314125
314251
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314126
314252
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
314127
314253
  /* harmony export */ });
314128
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
314129
- /* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/buildURL.js");
314130
- /* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/InterceptorManager.js");
314131
- /* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/dispatchRequest.js");
314132
- /* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/mergeConfig.js");
314133
- /* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/buildFullPath.js");
314134
- /* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/validator.js");
314135
- /* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
314254
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
314255
+ /* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/buildURL.js");
314256
+ /* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/InterceptorManager.js");
314257
+ /* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/dispatchRequest.js");
314258
+ /* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/mergeConfig.js");
314259
+ /* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/buildFullPath.js");
314260
+ /* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/validator.js");
314261
+ /* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
314262
+ /* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/transitional.js");
314263
+
314136
314264
 
314137
314265
 
314138
314266
 
@@ -314215,7 +314343,8 @@ class Axios {
314215
314343
  _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__["default"].assertOptions(transitional, {
314216
314344
  silentJSONParsing: validators.transitional(validators.boolean),
314217
314345
  forcedJSONParsing: validators.transitional(validators.boolean),
314218
- clarifyTimeoutError: validators.transitional(validators.boolean)
314346
+ clarifyTimeoutError: validators.transitional(validators.boolean),
314347
+ legacyInterceptorReqResOrdering: validators.transitional(validators.boolean)
314219
314348
  }, false);
314220
314349
  }
314221
314350
 
@@ -314274,7 +314403,14 @@ class Axios {
314274
314403
 
314275
314404
  synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
314276
314405
 
314277
- requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
314406
+ const transitional = config.transitional || _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_5__["default"];
314407
+ const legacyInterceptorReqResOrdering = transitional && transitional.legacyInterceptorReqResOrdering;
314408
+
314409
+ if (legacyInterceptorReqResOrdering) {
314410
+ requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
314411
+ } else {
314412
+ requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
314413
+ }
314278
314414
  });
314279
314415
 
314280
314416
  const responseInterceptorChain = [];
@@ -314287,7 +314423,7 @@ class Axios {
314287
314423
  let len;
314288
314424
 
314289
314425
  if (!synchronousRequestInterceptors) {
314290
- const chain = [_dispatchRequest_js__WEBPACK_IMPORTED_MODULE_5__["default"].bind(this), undefined];
314426
+ const chain = [_dispatchRequest_js__WEBPACK_IMPORTED_MODULE_6__["default"].bind(this), undefined];
314291
314427
  chain.unshift(...requestInterceptorChain);
314292
314428
  chain.push(...responseInterceptorChain);
314293
314429
  len = chain.length;
@@ -314317,7 +314453,7 @@ class Axios {
314317
314453
  }
314318
314454
 
314319
314455
  try {
314320
- promise = _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_5__["default"].call(this, newConfig);
314456
+ promise = _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_6__["default"].call(this, newConfig);
314321
314457
  } catch (error) {
314322
314458
  return Promise.reject(error);
314323
314459
  }
@@ -314334,8 +314470,8 @@ class Axios {
314334
314470
 
314335
314471
  getUri(config) {
314336
314472
  config = (0,_mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__["default"])(this.defaults, config);
314337
- const fullPath = (0,_buildFullPath_js__WEBPACK_IMPORTED_MODULE_6__["default"])(config.baseURL, config.url, config.allowAbsoluteUrls);
314338
- return (0,_helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_7__["default"])(fullPath, config.params, config.paramsSerializer);
314473
+ const fullPath = (0,_buildFullPath_js__WEBPACK_IMPORTED_MODULE_7__["default"])(config.baseURL, config.url, config.allowAbsoluteUrls);
314474
+ return (0,_helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_8__["default"])(fullPath, config.params, config.paramsSerializer);
314339
314475
  }
314340
314476
  }
314341
314477
 
@@ -314377,9 +314513,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
314377
314513
 
314378
314514
  /***/ }),
314379
314515
 
314380
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js":
314516
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js":
314381
314517
  /*!***************************************************************************************************!*\
314382
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js ***!
314518
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js ***!
314383
314519
  \***************************************************************************************************/
314384
314520
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314385
314521
 
@@ -314388,7 +314524,7 @@ __webpack_require__.r(__webpack_exports__);
314388
314524
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314389
314525
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
314390
314526
  /* harmony export */ });
314391
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
314527
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
314392
314528
 
314393
314529
 
314394
314530
 
@@ -314466,9 +314602,9 @@ AxiosError.ERR_INVALID_URL = 'ERR_INVALID_URL';
314466
314602
 
314467
314603
  /***/ }),
314468
314604
 
314469
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js":
314605
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js":
314470
314606
  /*!*****************************************************************************************************!*\
314471
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js ***!
314607
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js ***!
314472
314608
  \*****************************************************************************************************/
314473
314609
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314474
314610
 
@@ -314477,8 +314613,8 @@ __webpack_require__.r(__webpack_exports__);
314477
314613
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314478
314614
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
314479
314615
  /* harmony export */ });
314480
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
314481
- /* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseHeaders.js");
314616
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
314617
+ /* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseHeaders.js");
314482
314618
 
314483
314619
 
314484
314620
 
@@ -314797,9 +314933,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
314797
314933
 
314798
314934
  /***/ }),
314799
314935
 
314800
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/InterceptorManager.js":
314936
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/InterceptorManager.js":
314801
314937
  /*!***********************************************************************************************************!*\
314802
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/InterceptorManager.js ***!
314938
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/InterceptorManager.js ***!
314803
314939
  \***********************************************************************************************************/
314804
314940
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314805
314941
 
@@ -314808,7 +314944,7 @@ __webpack_require__.r(__webpack_exports__);
314808
314944
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314809
314945
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
314810
314946
  /* harmony export */ });
314811
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
314947
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
314812
314948
 
314813
314949
 
314814
314950
 
@@ -314885,9 +315021,9 @@ class InterceptorManager {
314885
315021
 
314886
315022
  /***/ }),
314887
315023
 
314888
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/buildFullPath.js":
315024
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/buildFullPath.js":
314889
315025
  /*!******************************************************************************************************!*\
314890
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/buildFullPath.js ***!
315026
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/buildFullPath.js ***!
314891
315027
  \******************************************************************************************************/
314892
315028
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314893
315029
 
@@ -314896,8 +315032,8 @@ __webpack_require__.r(__webpack_exports__);
314896
315032
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314897
315033
  /* harmony export */ "default": () => (/* binding */ buildFullPath)
314898
315034
  /* harmony export */ });
314899
- /* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAbsoluteURL.js");
314900
- /* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/combineURLs.js");
315035
+ /* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAbsoluteURL.js");
315036
+ /* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/combineURLs.js");
314901
315037
 
314902
315038
 
314903
315039
 
@@ -314924,9 +315060,9 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
314924
315060
 
314925
315061
  /***/ }),
314926
315062
 
314927
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/dispatchRequest.js":
315063
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/dispatchRequest.js":
314928
315064
  /*!********************************************************************************************************!*\
314929
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/dispatchRequest.js ***!
315065
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/dispatchRequest.js ***!
314930
315066
  \********************************************************************************************************/
314931
315067
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
314932
315068
 
@@ -314935,12 +315071,12 @@ __webpack_require__.r(__webpack_exports__);
314935
315071
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
314936
315072
  /* harmony export */ "default": () => (/* binding */ dispatchRequest)
314937
315073
  /* harmony export */ });
314938
- /* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/transformData.js");
314939
- /* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/isCancel.js");
314940
- /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/index.js");
314941
- /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js");
314942
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
314943
- /* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/adapters/adapters.js");
315074
+ /* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/transformData.js");
315075
+ /* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/isCancel.js");
315076
+ /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/index.js");
315077
+ /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js");
315078
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
315079
+ /* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/adapters/adapters.js");
314944
315080
 
314945
315081
 
314946
315082
 
@@ -315026,9 +315162,9 @@ function dispatchRequest(config) {
315026
315162
 
315027
315163
  /***/ }),
315028
315164
 
315029
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/mergeConfig.js":
315165
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/mergeConfig.js":
315030
315166
  /*!****************************************************************************************************!*\
315031
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/mergeConfig.js ***!
315167
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/mergeConfig.js ***!
315032
315168
  \****************************************************************************************************/
315033
315169
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315034
315170
 
@@ -315037,14 +315173,15 @@ __webpack_require__.r(__webpack_exports__);
315037
315173
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315038
315174
  /* harmony export */ "default": () => (/* binding */ mergeConfig)
315039
315175
  /* harmony export */ });
315040
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315041
- /* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
315176
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315177
+ /* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
315042
315178
 
315043
315179
 
315044
315180
 
315045
315181
 
315046
315182
 
315047
- const headersToObject = (thing) => thing instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? { ...thing } : thing;
315183
+ const headersToObject = (thing) =>
315184
+ thing instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? { ...thing } : thing;
315048
315185
 
315049
315186
  /**
315050
315187
  * Config-specific merge-function which creates a new config-object
@@ -315133,14 +315270,27 @@ function mergeConfig(config1, config2) {
315133
315270
  socketPath: defaultToConfig2,
315134
315271
  responseEncoding: defaultToConfig2,
315135
315272
  validateStatus: mergeDirectKeys,
315136
- headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
315273
+ headers: (a, b, prop) =>
315274
+ mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true),
315137
315275
  };
315138
315276
 
315139
- _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
315140
- const merge = mergeMap[prop] || mergeDeepProperties;
315141
- const configValue = merge(config1[prop], config2[prop], prop);
315142
- (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
315143
- });
315277
+ _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].forEach(
315278
+ Object.keys({ ...config1, ...config2 }),
315279
+ function computeConfigValue(prop) {
315280
+ if (
315281
+ prop === "__proto__" ||
315282
+ prop === "constructor" ||
315283
+ prop === "prototype"
315284
+ )
315285
+ return;
315286
+ const merge = _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].hasOwnProp(mergeMap, prop)
315287
+ ? mergeMap[prop]
315288
+ : mergeDeepProperties;
315289
+ const configValue = merge(config1[prop], config2[prop], prop);
315290
+ (_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isUndefined(configValue) && merge !== mergeDirectKeys) ||
315291
+ (config[prop] = configValue);
315292
+ },
315293
+ );
315144
315294
 
315145
315295
  return config;
315146
315296
  }
@@ -315148,9 +315298,9 @@ function mergeConfig(config1, config2) {
315148
315298
 
315149
315299
  /***/ }),
315150
315300
 
315151
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/settle.js":
315301
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/settle.js":
315152
315302
  /*!***********************************************************************************************!*\
315153
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/settle.js ***!
315303
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/settle.js ***!
315154
315304
  \***********************************************************************************************/
315155
315305
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315156
315306
 
@@ -315159,7 +315309,7 @@ __webpack_require__.r(__webpack_exports__);
315159
315309
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315160
315310
  /* harmony export */ "default": () => (/* binding */ settle)
315161
315311
  /* harmony export */ });
315162
- /* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
315312
+ /* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
315163
315313
 
315164
315314
 
315165
315315
 
@@ -315191,9 +315341,9 @@ function settle(resolve, reject, response) {
315191
315341
 
315192
315342
  /***/ }),
315193
315343
 
315194
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/transformData.js":
315344
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/transformData.js":
315195
315345
  /*!******************************************************************************************************!*\
315196
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/transformData.js ***!
315346
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/transformData.js ***!
315197
315347
  \******************************************************************************************************/
315198
315348
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315199
315349
 
@@ -315202,9 +315352,9 @@ __webpack_require__.r(__webpack_exports__);
315202
315352
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315203
315353
  /* harmony export */ "default": () => (/* binding */ transformData)
315204
315354
  /* harmony export */ });
315205
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315206
- /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/index.js");
315207
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
315355
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315356
+ /* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/index.js");
315357
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
315208
315358
 
315209
315359
 
315210
315360
 
@@ -315237,9 +315387,9 @@ function transformData(fns, response) {
315237
315387
 
315238
315388
  /***/ }),
315239
315389
 
315240
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/index.js":
315390
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/index.js":
315241
315391
  /*!**************************************************************************************************!*\
315242
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/index.js ***!
315392
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/index.js ***!
315243
315393
  \**************************************************************************************************/
315244
315394
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315245
315395
 
@@ -315248,13 +315398,13 @@ __webpack_require__.r(__webpack_exports__);
315248
315398
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315249
315399
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
315250
315400
  /* harmony export */ });
315251
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315252
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
315253
- /* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/transitional.js");
315254
- /* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js");
315255
- /* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toURLEncodedForm.js");
315256
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
315257
- /* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/formDataToJSON.js");
315401
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315402
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
315403
+ /* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/transitional.js");
315404
+ /* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js");
315405
+ /* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toURLEncodedForm.js");
315406
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
315407
+ /* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/formDataToJSON.js");
315258
315408
 
315259
315409
 
315260
315410
 
@@ -315420,9 +315570,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
315420
315570
 
315421
315571
  /***/ }),
315422
315572
 
315423
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/transitional.js":
315573
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/transitional.js":
315424
315574
  /*!*********************************************************************************************************!*\
315425
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/defaults/transitional.js ***!
315575
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/defaults/transitional.js ***!
315426
315576
  \*********************************************************************************************************/
315427
315577
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315428
315578
 
@@ -315436,15 +315586,16 @@ __webpack_require__.r(__webpack_exports__);
315436
315586
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
315437
315587
  silentJSONParsing: true,
315438
315588
  forcedJSONParsing: true,
315439
- clarifyTimeoutError: false
315589
+ clarifyTimeoutError: false,
315590
+ legacyInterceptorReqResOrdering: true
315440
315591
  });
315441
315592
 
315442
315593
 
315443
315594
  /***/ }),
315444
315595
 
315445
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/env/data.js":
315596
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/env/data.js":
315446
315597
  /*!********************************************************************************************!*\
315447
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/env/data.js ***!
315598
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/env/data.js ***!
315448
315599
  \********************************************************************************************/
315449
315600
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315450
315601
 
@@ -315453,13 +315604,13 @@ __webpack_require__.r(__webpack_exports__);
315453
315604
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315454
315605
  /* harmony export */ VERSION: () => (/* binding */ VERSION)
315455
315606
  /* harmony export */ });
315456
- const VERSION = "1.13.4";
315607
+ const VERSION = "1.13.5";
315457
315608
 
315458
315609
  /***/ }),
315459
315610
 
315460
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/AxiosURLSearchParams.js":
315611
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js":
315461
315612
  /*!****************************************************************************************************************!*\
315462
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
315613
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
315463
315614
  \****************************************************************************************************************/
315464
315615
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315465
315616
 
@@ -315468,7 +315619,7 @@ __webpack_require__.r(__webpack_exports__);
315468
315619
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315469
315620
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
315470
315621
  /* harmony export */ });
315471
- /* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js");
315622
+ /* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js");
315472
315623
 
315473
315624
 
315474
315625
 
@@ -315531,9 +315682,9 @@ prototype.toString = function toString(encoder) {
315531
315682
 
315532
315683
  /***/ }),
315533
315684
 
315534
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/HttpStatusCode.js":
315685
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/HttpStatusCode.js":
315535
315686
  /*!**********************************************************************************************************!*\
315536
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/HttpStatusCode.js ***!
315687
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/HttpStatusCode.js ***!
315537
315688
  \**********************************************************************************************************/
315538
315689
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315539
315690
 
@@ -315623,9 +315774,9 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
315623
315774
 
315624
315775
  /***/ }),
315625
315776
 
315626
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/bind.js":
315777
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/bind.js":
315627
315778
  /*!************************************************************************************************!*\
315628
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/bind.js ***!
315779
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/bind.js ***!
315629
315780
  \************************************************************************************************/
315630
315781
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315631
315782
 
@@ -315652,9 +315803,9 @@ function bind(fn, thisArg) {
315652
315803
 
315653
315804
  /***/ }),
315654
315805
 
315655
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/buildURL.js":
315806
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/buildURL.js":
315656
315807
  /*!****************************************************************************************************!*\
315657
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/buildURL.js ***!
315808
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/buildURL.js ***!
315658
315809
  \****************************************************************************************************/
315659
315810
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315660
315811
 
@@ -315663,8 +315814,8 @@ __webpack_require__.r(__webpack_exports__);
315663
315814
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315664
315815
  /* harmony export */ "default": () => (/* binding */ buildURL)
315665
315816
  /* harmony export */ });
315666
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315667
- /* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
315817
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315818
+ /* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
315668
315819
 
315669
315820
 
315670
315821
 
@@ -315733,9 +315884,9 @@ function buildURL(url, params, options) {
315733
315884
 
315734
315885
  /***/ }),
315735
315886
 
315736
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/combineURLs.js":
315887
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/combineURLs.js":
315737
315888
  /*!*******************************************************************************************************!*\
315738
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/combineURLs.js ***!
315889
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/combineURLs.js ***!
315739
315890
  \*******************************************************************************************************/
315740
315891
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315741
315892
 
@@ -315763,9 +315914,9 @@ function combineURLs(baseURL, relativeURL) {
315763
315914
 
315764
315915
  /***/ }),
315765
315916
 
315766
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/composeSignals.js":
315917
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/composeSignals.js":
315767
315918
  /*!**********************************************************************************************************!*\
315768
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/composeSignals.js ***!
315919
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/composeSignals.js ***!
315769
315920
  \**********************************************************************************************************/
315770
315921
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315771
315922
 
@@ -315774,9 +315925,9 @@ __webpack_require__.r(__webpack_exports__);
315774
315925
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315775
315926
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
315776
315927
  /* harmony export */ });
315777
- /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/cancel/CanceledError.js");
315778
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
315779
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315928
+ /* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/cancel/CanceledError.js");
315929
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
315930
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315780
315931
 
315781
315932
 
315782
315933
 
@@ -315829,9 +315980,9 @@ const composeSignals = (signals, timeout) => {
315829
315980
 
315830
315981
  /***/ }),
315831
315982
 
315832
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/cookies.js":
315983
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/cookies.js":
315833
315984
  /*!***************************************************************************************************!*\
315834
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/cookies.js ***!
315985
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/cookies.js ***!
315835
315986
  \***************************************************************************************************/
315836
315987
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315837
315988
 
@@ -315840,8 +315991,8 @@ __webpack_require__.r(__webpack_exports__);
315840
315991
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315841
315992
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
315842
315993
  /* harmony export */ });
315843
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
315844
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
315994
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315995
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
315845
315996
 
315846
315997
 
315847
315998
 
@@ -315899,9 +316050,9 @@ __webpack_require__.r(__webpack_exports__);
315899
316050
 
315900
316051
  /***/ }),
315901
316052
 
315902
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/formDataToJSON.js":
316053
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/formDataToJSON.js":
315903
316054
  /*!**********************************************************************************************************!*\
315904
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/formDataToJSON.js ***!
316055
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/formDataToJSON.js ***!
315905
316056
  \**********************************************************************************************************/
315906
316057
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
315907
316058
 
@@ -315910,7 +316061,7 @@ __webpack_require__.r(__webpack_exports__);
315910
316061
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
315911
316062
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
315912
316063
  /* harmony export */ });
315913
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316064
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
315914
316065
 
315915
316066
 
315916
316067
 
@@ -316010,9 +316161,9 @@ function formDataToJSON(formData) {
316010
316161
 
316011
316162
  /***/ }),
316012
316163
 
316013
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAbsoluteURL.js":
316164
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAbsoluteURL.js":
316014
316165
  /*!*********************************************************************************************************!*\
316015
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
316166
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
316016
316167
  \*********************************************************************************************************/
316017
316168
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316018
316169
 
@@ -316034,15 +316185,20 @@ function isAbsoluteURL(url) {
316034
316185
  // A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
316035
316186
  // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
316036
316187
  // by any combination of letters, digits, plus, period, or hyphen.
316188
+ if (typeof url !== 'string') {
316189
+ return false;
316190
+ }
316191
+
316037
316192
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
316038
316193
  }
316039
316194
 
316040
316195
 
316196
+
316041
316197
  /***/ }),
316042
316198
 
316043
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAxiosError.js":
316199
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAxiosError.js":
316044
316200
  /*!********************************************************************************************************!*\
316045
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isAxiosError.js ***!
316201
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isAxiosError.js ***!
316046
316202
  \********************************************************************************************************/
316047
316203
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316048
316204
 
@@ -316051,7 +316207,7 @@ __webpack_require__.r(__webpack_exports__);
316051
316207
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316052
316208
  /* harmony export */ "default": () => (/* binding */ isAxiosError)
316053
316209
  /* harmony export */ });
316054
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316210
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316055
316211
 
316056
316212
 
316057
316213
 
@@ -316070,9 +316226,9 @@ function isAxiosError(payload) {
316070
316226
 
316071
316227
  /***/ }),
316072
316228
 
316073
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isURLSameOrigin.js":
316229
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isURLSameOrigin.js":
316074
316230
  /*!***********************************************************************************************************!*\
316075
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
316231
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
316076
316232
  \***********************************************************************************************************/
316077
316233
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316078
316234
 
@@ -316081,7 +316237,7 @@ __webpack_require__.r(__webpack_exports__);
316081
316237
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316082
316238
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
316083
316239
  /* harmony export */ });
316084
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
316240
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
316085
316241
 
316086
316242
 
316087
316243
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv ? ((origin, isMSIE) => (url) => {
@@ -316100,9 +316256,9 @@ __webpack_require__.r(__webpack_exports__);
316100
316256
 
316101
316257
  /***/ }),
316102
316258
 
316103
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/null.js":
316259
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/null.js":
316104
316260
  /*!************************************************************************************************!*\
316105
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/null.js ***!
316261
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/null.js ***!
316106
316262
  \************************************************************************************************/
316107
316263
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316108
316264
 
@@ -316117,9 +316273,9 @@ __webpack_require__.r(__webpack_exports__);
316117
316273
 
316118
316274
  /***/ }),
316119
316275
 
316120
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseHeaders.js":
316276
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseHeaders.js":
316121
316277
  /*!********************************************************************************************************!*\
316122
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseHeaders.js ***!
316278
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseHeaders.js ***!
316123
316279
  \********************************************************************************************************/
316124
316280
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316125
316281
 
@@ -316128,7 +316284,7 @@ __webpack_require__.r(__webpack_exports__);
316128
316284
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316129
316285
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
316130
316286
  /* harmony export */ });
316131
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316287
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316132
316288
 
316133
316289
 
316134
316290
 
@@ -316188,9 +316344,9 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
316188
316344
 
316189
316345
  /***/ }),
316190
316346
 
316191
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseProtocol.js":
316347
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseProtocol.js":
316192
316348
  /*!*********************************************************************************************************!*\
316193
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/parseProtocol.js ***!
316349
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/parseProtocol.js ***!
316194
316350
  \*********************************************************************************************************/
316195
316351
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316196
316352
 
@@ -316209,9 +316365,9 @@ function parseProtocol(url) {
316209
316365
 
316210
316366
  /***/ }),
316211
316367
 
316212
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/progressEventReducer.js":
316368
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/progressEventReducer.js":
316213
316369
  /*!****************************************************************************************************************!*\
316214
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/progressEventReducer.js ***!
316370
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/progressEventReducer.js ***!
316215
316371
  \****************************************************************************************************************/
316216
316372
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316217
316373
 
@@ -316222,9 +316378,9 @@ __webpack_require__.r(__webpack_exports__);
316222
316378
  /* harmony export */ progressEventDecorator: () => (/* binding */ progressEventDecorator),
316223
316379
  /* harmony export */ progressEventReducer: () => (/* binding */ progressEventReducer)
316224
316380
  /* harmony export */ });
316225
- /* harmony import */ var _speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/speedometer.js");
316226
- /* harmony import */ var _throttle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./throttle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/throttle.js");
316227
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316381
+ /* harmony import */ var _speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/speedometer.js");
316382
+ /* harmony import */ var _throttle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./throttle.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/throttle.js");
316383
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316228
316384
 
316229
316385
 
316230
316386
 
@@ -316273,9 +316429,9 @@ const asyncDecorator = (fn) => (...args) => _utils_js__WEBPACK_IMPORTED_MODULE_2
316273
316429
 
316274
316430
  /***/ }),
316275
316431
 
316276
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/resolveConfig.js":
316432
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/resolveConfig.js":
316277
316433
  /*!*********************************************************************************************************!*\
316278
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/resolveConfig.js ***!
316434
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/resolveConfig.js ***!
316279
316435
  \*********************************************************************************************************/
316280
316436
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316281
316437
 
@@ -316284,14 +316440,14 @@ __webpack_require__.r(__webpack_exports__);
316284
316440
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316285
316441
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
316286
316442
  /* harmony export */ });
316287
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
316288
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316289
- /* harmony import */ var _isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/isURLSameOrigin.js");
316290
- /* harmony import */ var _cookies_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/cookies.js");
316291
- /* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/buildFullPath.js");
316292
- /* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/mergeConfig.js");
316293
- /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosHeaders.js");
316294
- /* harmony import */ var _buildURL_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/buildURL.js");
316443
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
316444
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316445
+ /* harmony import */ var _isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/isURLSameOrigin.js");
316446
+ /* harmony import */ var _cookies_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/cookies.js");
316447
+ /* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/buildFullPath.js");
316448
+ /* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/mergeConfig.js");
316449
+ /* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosHeaders.js");
316450
+ /* harmony import */ var _buildURL_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/buildURL.js");
316295
316451
 
316296
316452
 
316297
316453
 
@@ -316357,9 +316513,9 @@ __webpack_require__.r(__webpack_exports__);
316357
316513
 
316358
316514
  /***/ }),
316359
316515
 
316360
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/speedometer.js":
316516
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/speedometer.js":
316361
316517
  /*!*******************************************************************************************************!*\
316362
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/speedometer.js ***!
316518
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/speedometer.js ***!
316363
316519
  \*******************************************************************************************************/
316364
316520
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316365
316521
 
@@ -316427,9 +316583,9 @@ function speedometer(samplesCount, min) {
316427
316583
 
316428
316584
  /***/ }),
316429
316585
 
316430
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/spread.js":
316586
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/spread.js":
316431
316587
  /*!**************************************************************************************************!*\
316432
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/spread.js ***!
316588
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/spread.js ***!
316433
316589
  \**************************************************************************************************/
316434
316590
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316435
316591
 
@@ -316470,9 +316626,9 @@ function spread(callback) {
316470
316626
 
316471
316627
  /***/ }),
316472
316628
 
316473
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/throttle.js":
316629
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/throttle.js":
316474
316630
  /*!****************************************************************************************************!*\
316475
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/throttle.js ***!
316631
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/throttle.js ***!
316476
316632
  \****************************************************************************************************/
316477
316633
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316478
316634
 
@@ -316529,9 +316685,9 @@ function throttle(fn, freq) {
316529
316685
 
316530
316686
  /***/ }),
316531
316687
 
316532
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js":
316688
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js":
316533
316689
  /*!******************************************************************************************************!*\
316534
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js ***!
316690
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js ***!
316535
316691
  \******************************************************************************************************/
316536
316692
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316537
316693
 
@@ -316540,9 +316696,9 @@ __webpack_require__.r(__webpack_exports__);
316540
316696
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316541
316697
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
316542
316698
  /* harmony export */ });
316543
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316544
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
316545
- /* 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.13.4/node_modules/axios/lib/helpers/null.js");
316699
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316700
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
316701
+ /* 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.13.5/node_modules/axios/lib/helpers/null.js");
316546
316702
 
316547
316703
 
316548
316704
 
@@ -316770,9 +316926,9 @@ function toFormData(obj, formData, options) {
316770
316926
 
316771
316927
  /***/ }),
316772
316928
 
316773
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toURLEncodedForm.js":
316929
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toURLEncodedForm.js":
316774
316930
  /*!************************************************************************************************************!*\
316775
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
316931
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
316776
316932
  \************************************************************************************************************/
316777
316933
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316778
316934
 
@@ -316781,9 +316937,9 @@ __webpack_require__.r(__webpack_exports__);
316781
316937
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316782
316938
  /* harmony export */ "default": () => (/* binding */ toURLEncodedForm)
316783
316939
  /* harmony export */ });
316784
- /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js");
316785
- /* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/toFormData.js");
316786
- /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js");
316940
+ /* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js");
316941
+ /* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/toFormData.js");
316942
+ /* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js");
316787
316943
 
316788
316944
 
316789
316945
 
@@ -316807,9 +316963,9 @@ function toURLEncodedForm(data, options) {
316807
316963
 
316808
316964
  /***/ }),
316809
316965
 
316810
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/trackStream.js":
316966
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/trackStream.js":
316811
316967
  /*!*******************************************************************************************************!*\
316812
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/trackStream.js ***!
316968
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/trackStream.js ***!
316813
316969
  \*******************************************************************************************************/
316814
316970
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316815
316971
 
@@ -316911,9 +317067,9 @@ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
316911
317067
 
316912
317068
  /***/ }),
316913
317069
 
316914
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/validator.js":
317070
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/validator.js":
316915
317071
  /*!*****************************************************************************************************!*\
316916
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/validator.js ***!
317072
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/validator.js ***!
316917
317073
  \*****************************************************************************************************/
316918
317074
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
316919
317075
 
@@ -316922,8 +317078,8 @@ __webpack_require__.r(__webpack_exports__);
316922
317078
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
316923
317079
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
316924
317080
  /* harmony export */ });
316925
- /* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/env/data.js");
316926
- /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/core/AxiosError.js");
317081
+ /* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/env/data.js");
317082
+ /* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/core/AxiosError.js");
316927
317083
 
316928
317084
 
316929
317085
 
@@ -317027,9 +317183,9 @@ function assertOptions(options, schema, allowUnknown) {
317027
317183
 
317028
317184
  /***/ }),
317029
317185
 
317030
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/Blob.js":
317186
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/Blob.js":
317031
317187
  /*!*****************************************************************************************************************!*\
317032
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/Blob.js ***!
317188
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/Blob.js ***!
317033
317189
  \*****************************************************************************************************************/
317034
317190
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317035
317191
 
@@ -317045,9 +317201,9 @@ __webpack_require__.r(__webpack_exports__);
317045
317201
 
317046
317202
  /***/ }),
317047
317203
 
317048
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/FormData.js":
317204
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/FormData.js":
317049
317205
  /*!*********************************************************************************************************************!*\
317050
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/FormData.js ***!
317206
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/FormData.js ***!
317051
317207
  \*********************************************************************************************************************/
317052
317208
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317053
317209
 
@@ -317063,9 +317219,9 @@ __webpack_require__.r(__webpack_exports__);
317063
317219
 
317064
317220
  /***/ }),
317065
317221
 
317066
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js":
317222
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js":
317067
317223
  /*!****************************************************************************************************************************!*\
317068
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
317224
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
317069
317225
  \****************************************************************************************************************************/
317070
317226
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317071
317227
 
@@ -317074,7 +317230,7 @@ __webpack_require__.r(__webpack_exports__);
317074
317230
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
317075
317231
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
317076
317232
  /* harmony export */ });
317077
- /* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
317233
+ /* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
317078
317234
 
317079
317235
 
317080
317236
 
@@ -317083,9 +317239,9 @@ __webpack_require__.r(__webpack_exports__);
317083
317239
 
317084
317240
  /***/ }),
317085
317241
 
317086
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/index.js":
317242
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/index.js":
317087
317243
  /*!**********************************************************************************************************!*\
317088
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/index.js ***!
317244
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/index.js ***!
317089
317245
  \**********************************************************************************************************/
317090
317246
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317091
317247
 
@@ -317094,9 +317250,9 @@ __webpack_require__.r(__webpack_exports__);
317094
317250
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
317095
317251
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
317096
317252
  /* harmony export */ });
317097
- /* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js");
317098
- /* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/FormData.js");
317099
- /* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/classes/Blob.js");
317253
+ /* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js");
317254
+ /* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/FormData.js");
317255
+ /* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/classes/Blob.js");
317100
317256
 
317101
317257
 
317102
317258
 
@@ -317114,9 +317270,9 @@ __webpack_require__.r(__webpack_exports__);
317114
317270
 
317115
317271
  /***/ }),
317116
317272
 
317117
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/common/utils.js":
317273
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/common/utils.js":
317118
317274
  /*!*********************************************************************************************************!*\
317119
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/common/utils.js ***!
317275
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/common/utils.js ***!
317120
317276
  \*********************************************************************************************************/
317121
317277
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317122
317278
 
@@ -317178,9 +317334,9 @@ const origin = hasBrowserEnv && window.location.href || 'http://localhost';
317178
317334
 
317179
317335
  /***/ }),
317180
317336
 
317181
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js":
317337
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js":
317182
317338
  /*!**************************************************************************************************!*\
317183
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/index.js ***!
317339
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js ***!
317184
317340
  \**************************************************************************************************/
317185
317341
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317186
317342
 
@@ -317189,8 +317345,8 @@ __webpack_require__.r(__webpack_exports__);
317189
317345
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
317190
317346
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
317191
317347
  /* harmony export */ });
317192
- /* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/browser/index.js");
317193
- /* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/platform/common/utils.js");
317348
+ /* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/browser/index.js");
317349
+ /* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/common/utils.js");
317194
317350
 
317195
317351
 
317196
317352
 
@@ -317202,9 +317358,9 @@ __webpack_require__.r(__webpack_exports__);
317202
317358
 
317203
317359
  /***/ }),
317204
317360
 
317205
- /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js":
317361
+ /***/ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js":
317206
317362
  /*!*****************************************************************************************!*\
317207
- !*** ../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/utils.js ***!
317363
+ !*** ../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/utils.js ***!
317208
317364
  \*****************************************************************************************/
317209
317365
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
317210
317366
 
@@ -317213,37 +317369,37 @@ __webpack_require__.r(__webpack_exports__);
317213
317369
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
317214
317370
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
317215
317371
  /* harmony export */ });
317216
- /* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.4/node_modules/axios/lib/helpers/bind.js");
317372
+ /* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/helpers/bind.js");
317217
317373
 
317218
317374
 
317219
317375
 
317220
317376
 
317221
317377
  // utils is a library of generic helper functions non-specific to axios
317222
317378
 
317223
- const {toString} = Object.prototype;
317224
- const {getPrototypeOf} = Object;
317225
- const {iterator, toStringTag} = Symbol;
317379
+ const { toString } = Object.prototype;
317380
+ const { getPrototypeOf } = Object;
317381
+ const { iterator, toStringTag } = Symbol;
317226
317382
 
317227
- const kindOf = (cache => thing => {
317228
- const str = toString.call(thing);
317229
- return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
317383
+ const kindOf = ((cache) => (thing) => {
317384
+ const str = toString.call(thing);
317385
+ return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
317230
317386
  })(Object.create(null));
317231
317387
 
317232
317388
  const kindOfTest = (type) => {
317233
317389
  type = type.toLowerCase();
317234
- return (thing) => kindOf(thing) === type
317235
- }
317390
+ return (thing) => kindOf(thing) === type;
317391
+ };
317236
317392
 
317237
- const typeOfTest = type => thing => typeof thing === type;
317393
+ const typeOfTest = (type) => (thing) => typeof thing === type;
317238
317394
 
317239
317395
  /**
317240
- * Determine if a value is an Array
317396
+ * Determine if a value is a non-null object
317241
317397
  *
317242
317398
  * @param {Object} val The value to test
317243
317399
  *
317244
317400
  * @returns {boolean} True if value is an Array, otherwise false
317245
317401
  */
317246
- const {isArray} = Array;
317402
+ const { isArray } = Array;
317247
317403
 
317248
317404
  /**
317249
317405
  * Determine if a value is undefined
@@ -317252,7 +317408,7 @@ const {isArray} = Array;
317252
317408
  *
317253
317409
  * @returns {boolean} True if the value is undefined, otherwise false
317254
317410
  */
317255
- const isUndefined = typeOfTest('undefined');
317411
+ const isUndefined = typeOfTest("undefined");
317256
317412
 
317257
317413
  /**
317258
317414
  * Determine if a value is a Buffer
@@ -317262,8 +317418,14 @@ const isUndefined = typeOfTest('undefined');
317262
317418
  * @returns {boolean} True if value is a Buffer, otherwise false
317263
317419
  */
317264
317420
  function isBuffer(val) {
317265
- return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
317266
- && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
317421
+ return (
317422
+ val !== null &&
317423
+ !isUndefined(val) &&
317424
+ val.constructor !== null &&
317425
+ !isUndefined(val.constructor) &&
317426
+ isFunction(val.constructor.isBuffer) &&
317427
+ val.constructor.isBuffer(val)
317428
+ );
317267
317429
  }
317268
317430
 
317269
317431
  /**
@@ -317273,8 +317435,7 @@ function isBuffer(val) {
317273
317435
  *
317274
317436
  * @returns {boolean} True if value is an ArrayBuffer, otherwise false
317275
317437
  */
317276
- const isArrayBuffer = kindOfTest('ArrayBuffer');
317277
-
317438
+ const isArrayBuffer = kindOfTest("ArrayBuffer");
317278
317439
 
317279
317440
  /**
317280
317441
  * Determine if a value is a view on an ArrayBuffer
@@ -317285,10 +317446,10 @@ const isArrayBuffer = kindOfTest('ArrayBuffer');
317285
317446
  */
317286
317447
  function isArrayBufferView(val) {
317287
317448
  let result;
317288
- if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {
317449
+ if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) {
317289
317450
  result = ArrayBuffer.isView(val);
317290
317451
  } else {
317291
- result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));
317452
+ result = val && val.buffer && isArrayBuffer(val.buffer);
317292
317453
  }
317293
317454
  return result;
317294
317455
  }
@@ -317300,7 +317461,7 @@ function isArrayBufferView(val) {
317300
317461
  *
317301
317462
  * @returns {boolean} True if value is a String, otherwise false
317302
317463
  */
317303
- const isString = typeOfTest('string');
317464
+ const isString = typeOfTest("string");
317304
317465
 
317305
317466
  /**
317306
317467
  * Determine if a value is a Function
@@ -317308,7 +317469,7 @@ const isString = typeOfTest('string');
317308
317469
  * @param {*} val The value to test
317309
317470
  * @returns {boolean} True if value is a Function, otherwise false
317310
317471
  */
317311
- const isFunction = typeOfTest('function');
317472
+ const isFunction = typeOfTest("function");
317312
317473
 
317313
317474
  /**
317314
317475
  * Determine if a value is a Number
@@ -317317,7 +317478,7 @@ const isFunction = typeOfTest('function');
317317
317478
  *
317318
317479
  * @returns {boolean} True if value is a Number, otherwise false
317319
317480
  */
317320
- const isNumber = typeOfTest('number');
317481
+ const isNumber = typeOfTest("number");
317321
317482
 
317322
317483
  /**
317323
317484
  * Determine if a value is an Object
@@ -317326,7 +317487,7 @@ const isNumber = typeOfTest('number');
317326
317487
  *
317327
317488
  * @returns {boolean} True if value is an Object, otherwise false
317328
317489
  */
317329
- const isObject = (thing) => thing !== null && typeof thing === 'object';
317490
+ const isObject = (thing) => thing !== null && typeof thing === "object";
317330
317491
 
317331
317492
  /**
317332
317493
  * Determine if a value is a Boolean
@@ -317334,7 +317495,7 @@ const isObject = (thing) => thing !== null && typeof thing === 'object';
317334
317495
  * @param {*} thing The value to test
317335
317496
  * @returns {boolean} True if value is a Boolean, otherwise false
317336
317497
  */
317337
- const isBoolean = thing => thing === true || thing === false;
317498
+ const isBoolean = (thing) => thing === true || thing === false;
317338
317499
 
317339
317500
  /**
317340
317501
  * Determine if a value is a plain Object
@@ -317344,13 +317505,19 @@ const isBoolean = thing => thing === true || thing === false;
317344
317505
  * @returns {boolean} True if value is a plain Object, otherwise false
317345
317506
  */
317346
317507
  const isPlainObject = (val) => {
317347
- if (kindOf(val) !== 'object') {
317508
+ if (kindOf(val) !== "object") {
317348
317509
  return false;
317349
317510
  }
317350
317511
 
317351
317512
  const prototype = getPrototypeOf(val);
317352
- return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(toStringTag in val) && !(iterator in val);
317353
- }
317513
+ return (
317514
+ (prototype === null ||
317515
+ prototype === Object.prototype ||
317516
+ Object.getPrototypeOf(prototype) === null) &&
317517
+ !(toStringTag in val) &&
317518
+ !(iterator in val)
317519
+ );
317520
+ };
317354
317521
 
317355
317522
  /**
317356
317523
  * Determine if a value is an empty object (safely handles Buffers)
@@ -317366,12 +317533,15 @@ const isEmptyObject = (val) => {
317366
317533
  }
317367
317534
 
317368
317535
  try {
317369
- return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype;
317536
+ return (
317537
+ Object.keys(val).length === 0 &&
317538
+ Object.getPrototypeOf(val) === Object.prototype
317539
+ );
317370
317540
  } catch (e) {
317371
317541
  // Fallback for any other objects that might cause RangeError with Object.keys()
317372
317542
  return false;
317373
317543
  }
317374
- }
317544
+ };
317375
317545
 
317376
317546
  /**
317377
317547
  * Determine if a value is a Date
@@ -317380,7 +317550,7 @@ const isEmptyObject = (val) => {
317380
317550
  *
317381
317551
  * @returns {boolean} True if value is a Date, otherwise false
317382
317552
  */
317383
- const isDate = kindOfTest('Date');
317553
+ const isDate = kindOfTest("Date");
317384
317554
 
317385
317555
  /**
317386
317556
  * Determine if a value is a File
@@ -317389,7 +317559,7 @@ const isDate = kindOfTest('Date');
317389
317559
  *
317390
317560
  * @returns {boolean} True if value is a File, otherwise false
317391
317561
  */
317392
- const isFile = kindOfTest('File');
317562
+ const isFile = kindOfTest("File");
317393
317563
 
317394
317564
  /**
317395
317565
  * Determine if a value is a Blob
@@ -317398,7 +317568,7 @@ const isFile = kindOfTest('File');
317398
317568
  *
317399
317569
  * @returns {boolean} True if value is a Blob, otherwise false
317400
317570
  */
317401
- const isBlob = kindOfTest('Blob');
317571
+ const isBlob = kindOfTest("Blob");
317402
317572
 
317403
317573
  /**
317404
317574
  * Determine if a value is a FileList
@@ -317407,7 +317577,7 @@ const isBlob = kindOfTest('Blob');
317407
317577
  *
317408
317578
  * @returns {boolean} True if value is a File, otherwise false
317409
317579
  */
317410
- const isFileList = kindOfTest('FileList');
317580
+ const isFileList = kindOfTest("FileList");
317411
317581
 
317412
317582
  /**
317413
317583
  * Determine if a value is a Stream
@@ -317427,16 +317597,17 @@ const isStream = (val) => isObject(val) && isFunction(val.pipe);
317427
317597
  */
317428
317598
  const isFormData = (thing) => {
317429
317599
  let kind;
317430
- return thing && (
317431
- (typeof FormData === 'function' && thing instanceof FormData) || (
317432
- isFunction(thing.append) && (
317433
- (kind = kindOf(thing)) === 'formdata' ||
317434
- // detect form-data instance
317435
- (kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
317436
- )
317437
- )
317438
- )
317439
- }
317600
+ return (
317601
+ thing &&
317602
+ ((typeof FormData === "function" && thing instanceof FormData) ||
317603
+ (isFunction(thing.append) &&
317604
+ ((kind = kindOf(thing)) === "formdata" ||
317605
+ // detect form-data instance
317606
+ (kind === "object" &&
317607
+ isFunction(thing.toString) &&
317608
+ thing.toString() === "[object FormData]"))))
317609
+ );
317610
+ };
317440
317611
 
317441
317612
  /**
317442
317613
  * Determine if a value is a URLSearchParams object
@@ -317445,9 +317616,14 @@ const isFormData = (thing) => {
317445
317616
  *
317446
317617
  * @returns {boolean} True if value is a URLSearchParams object, otherwise false
317447
317618
  */
317448
- const isURLSearchParams = kindOfTest('URLSearchParams');
317619
+ const isURLSearchParams = kindOfTest("URLSearchParams");
317449
317620
 
317450
- const [isReadableStream, isRequest, isResponse, isHeaders] = ['ReadableStream', 'Request', 'Response', 'Headers'].map(kindOfTest);
317621
+ const [isReadableStream, isRequest, isResponse, isHeaders] = [
317622
+ "ReadableStream",
317623
+ "Request",
317624
+ "Response",
317625
+ "Headers",
317626
+ ].map(kindOfTest);
317451
317627
 
317452
317628
  /**
317453
317629
  * Trim excess whitespace off the beginning and end of a string
@@ -317456,8 +317632,8 @@ const [isReadableStream, isRequest, isResponse, isHeaders] = ['ReadableStream',
317456
317632
  *
317457
317633
  * @returns {String} The String freed of excess whitespace
317458
317634
  */
317459
- const trim = (str) => str.trim ?
317460
- str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
317635
+ const trim = (str) =>
317636
+ str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
317461
317637
 
317462
317638
  /**
317463
317639
  * Iterate over an Array or an Object invoking a function for each item.
@@ -317475,9 +317651,9 @@ const trim = (str) => str.trim ?
317475
317651
  * @param {Boolean} [options.allOwnKeys = false]
317476
317652
  * @returns {any}
317477
317653
  */
317478
- function forEach(obj, fn, {allOwnKeys = false} = {}) {
317654
+ function forEach(obj, fn, { allOwnKeys = false } = {}) {
317479
317655
  // Don't bother if no value provided
317480
- if (obj === null || typeof obj === 'undefined') {
317656
+ if (obj === null || typeof obj === "undefined") {
317481
317657
  return;
317482
317658
  }
317483
317659
 
@@ -317485,7 +317661,7 @@ function forEach(obj, fn, {allOwnKeys = false} = {}) {
317485
317661
  let l;
317486
317662
 
317487
317663
  // Force an array if not already something iterable
317488
- if (typeof obj !== 'object') {
317664
+ if (typeof obj !== "object") {
317489
317665
  /*eslint no-param-reassign:0*/
317490
317666
  obj = [obj];
317491
317667
  }
@@ -317502,7 +317678,9 @@ function forEach(obj, fn, {allOwnKeys = false} = {}) {
317502
317678
  }
317503
317679
 
317504
317680
  // Iterate over object keys
317505
- const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
317681
+ const keys = allOwnKeys
317682
+ ? Object.getOwnPropertyNames(obj)
317683
+ : Object.keys(obj);
317506
317684
  const len = keys.length;
317507
317685
  let key;
317508
317686
 
@@ -317514,7 +317692,7 @@ function forEach(obj, fn, {allOwnKeys = false} = {}) {
317514
317692
  }
317515
317693
 
317516
317694
  function findKey(obj, key) {
317517
- if (isBuffer(obj)){
317695
+ if (isBuffer(obj)) {
317518
317696
  return null;
317519
317697
  }
317520
317698
 
@@ -317534,10 +317712,15 @@ function findKey(obj, key) {
317534
317712
  const _global = (() => {
317535
317713
  /*eslint no-undef:0*/
317536
317714
  if (typeof globalThis !== "undefined") return globalThis;
317537
- return typeof self !== "undefined" ? self : (typeof window !== 'undefined' ? window : global)
317715
+ return typeof self !== "undefined"
317716
+ ? self
317717
+ : typeof window !== "undefined"
317718
+ ? window
317719
+ : global;
317538
317720
  })();
317539
317721
 
317540
- const isContextDefined = (context) => !isUndefined(context) && context !== _global;
317722
+ const isContextDefined = (context) =>
317723
+ !isUndefined(context) && context !== _global;
317541
317724
 
317542
317725
  /**
317543
317726
  * Accepts varargs expecting each argument to be an object, then
@@ -317558,10 +317741,15 @@ const isContextDefined = (context) => !isUndefined(context) && context !== _glob
317558
317741
  * @returns {Object} Result of all merge properties
317559
317742
  */
317560
317743
  function merge(/* obj1, obj2, obj3, ... */) {
317561
- const {caseless, skipUndefined} = isContextDefined(this) && this || {};
317744
+ const { caseless, skipUndefined } = (isContextDefined(this) && this) || {};
317562
317745
  const result = {};
317563
317746
  const assignValue = (val, key) => {
317564
- const targetKey = caseless && findKey(result, key) || key;
317747
+ // Skip dangerous property names to prevent prototype pollution
317748
+ if (key === "__proto__" || key === "constructor" || key === "prototype") {
317749
+ return;
317750
+ }
317751
+
317752
+ const targetKey = (caseless && findKey(result, key)) || key;
317565
317753
  if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
317566
317754
  result[targetKey] = merge(result[targetKey], val);
317567
317755
  } else if (isPlainObject(val)) {
@@ -317571,7 +317759,7 @@ function merge(/* obj1, obj2, obj3, ... */) {
317571
317759
  } else if (!skipUndefined || !isUndefined(val)) {
317572
317760
  result[targetKey] = val;
317573
317761
  }
317574
- }
317762
+ };
317575
317763
 
317576
317764
  for (let i = 0, l = arguments.length; i < l; i++) {
317577
317765
  arguments[i] && forEach(arguments[i], assignValue);
@@ -317590,26 +317778,30 @@ function merge(/* obj1, obj2, obj3, ... */) {
317590
317778
  * @param {Boolean} [options.allOwnKeys]
317591
317779
  * @returns {Object} The resulting value of object a
317592
317780
  */
317593
- const extend = (a, b, thisArg, {allOwnKeys}= {}) => {
317594
- forEach(b, (val, key) => {
317595
- if (thisArg && isFunction(val)) {
317596
- Object.defineProperty(a, key, {
317597
- value: (0,_helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(val, thisArg),
317598
- writable: true,
317599
- enumerable: true,
317600
- configurable: true
317601
- });
317602
- } else {
317603
- Object.defineProperty(a, key, {
317604
- value: val,
317605
- writable: true,
317606
- enumerable: true,
317607
- configurable: true
317608
- });
317609
- }
317610
- }, {allOwnKeys});
317781
+ const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
317782
+ forEach(
317783
+ b,
317784
+ (val, key) => {
317785
+ if (thisArg && isFunction(val)) {
317786
+ Object.defineProperty(a, key, {
317787
+ value: (0,_helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(val, thisArg),
317788
+ writable: true,
317789
+ enumerable: true,
317790
+ configurable: true,
317791
+ });
317792
+ } else {
317793
+ Object.defineProperty(a, key, {
317794
+ value: val,
317795
+ writable: true,
317796
+ enumerable: true,
317797
+ configurable: true,
317798
+ });
317799
+ }
317800
+ },
317801
+ { allOwnKeys },
317802
+ );
317611
317803
  return a;
317612
- }
317804
+ };
317613
317805
 
317614
317806
  /**
317615
317807
  * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
@@ -317619,11 +317811,11 @@ const extend = (a, b, thisArg, {allOwnKeys}= {}) => {
317619
317811
  * @returns {string} content value without BOM
317620
317812
  */
317621
317813
  const stripBOM = (content) => {
317622
- if (content.charCodeAt(0) === 0xFEFF) {
317814
+ if (content.charCodeAt(0) === 0xfeff) {
317623
317815
  content = content.slice(1);
317624
317816
  }
317625
317817
  return content;
317626
- }
317818
+ };
317627
317819
 
317628
317820
  /**
317629
317821
  * Inherit the prototype methods from one constructor into another
@@ -317635,18 +317827,21 @@ const stripBOM = (content) => {
317635
317827
  * @returns {void}
317636
317828
  */
317637
317829
  const inherits = (constructor, superConstructor, props, descriptors) => {
317638
- constructor.prototype = Object.create(superConstructor.prototype, descriptors);
317639
- Object.defineProperty(constructor.prototype, 'constructor', {
317830
+ constructor.prototype = Object.create(
317831
+ superConstructor.prototype,
317832
+ descriptors,
317833
+ );
317834
+ Object.defineProperty(constructor.prototype, "constructor", {
317640
317835
  value: constructor,
317641
317836
  writable: true,
317642
317837
  enumerable: false,
317643
- configurable: true
317838
+ configurable: true,
317644
317839
  });
317645
- Object.defineProperty(constructor, 'super', {
317646
- value: superConstructor.prototype
317840
+ Object.defineProperty(constructor, "super", {
317841
+ value: superConstructor.prototype,
317647
317842
  });
317648
317843
  props && Object.assign(constructor.prototype, props);
317649
- }
317844
+ };
317650
317845
 
317651
317846
  /**
317652
317847
  * Resolve object with deep prototype chain to a flat object
@@ -317672,16 +317867,23 @@ const toFlatObject = (sourceObj, destObj, filter, propFilter) => {
317672
317867
  i = props.length;
317673
317868
  while (i-- > 0) {
317674
317869
  prop = props[i];
317675
- if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
317870
+ if (
317871
+ (!propFilter || propFilter(prop, sourceObj, destObj)) &&
317872
+ !merged[prop]
317873
+ ) {
317676
317874
  destObj[prop] = sourceObj[prop];
317677
317875
  merged[prop] = true;
317678
317876
  }
317679
317877
  }
317680
317878
  sourceObj = filter !== false && getPrototypeOf(sourceObj);
317681
- } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
317879
+ } while (
317880
+ sourceObj &&
317881
+ (!filter || filter(sourceObj, destObj)) &&
317882
+ sourceObj !== Object.prototype
317883
+ );
317682
317884
 
317683
317885
  return destObj;
317684
- }
317886
+ };
317685
317887
 
317686
317888
  /**
317687
317889
  * Determines whether a string ends with the characters of a specified string
@@ -317700,8 +317902,7 @@ const endsWith = (str, searchString, position) => {
317700
317902
  position -= searchString.length;
317701
317903
  const lastIndex = str.indexOf(searchString, position);
317702
317904
  return lastIndex !== -1 && lastIndex === position;
317703
- }
317704
-
317905
+ };
317705
317906
 
317706
317907
  /**
317707
317908
  * Returns new array from array like object or null if failed
@@ -317720,7 +317921,7 @@ const toArray = (thing) => {
317720
317921
  arr[i] = thing[i];
317721
317922
  }
317722
317923
  return arr;
317723
- }
317924
+ };
317724
317925
 
317725
317926
  /**
317726
317927
  * Checking if the Uint8Array exists and if it does, it returns a function that checks if the
@@ -317731,12 +317932,12 @@ const toArray = (thing) => {
317731
317932
  * @returns {Array}
317732
317933
  */
317733
317934
  // eslint-disable-next-line func-names
317734
- const isTypedArray = (TypedArray => {
317935
+ const isTypedArray = ((TypedArray) => {
317735
317936
  // eslint-disable-next-line func-names
317736
- return thing => {
317937
+ return (thing) => {
317737
317938
  return TypedArray && thing instanceof TypedArray;
317738
317939
  };
317739
- })(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));
317940
+ })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
317740
317941
 
317741
317942
  /**
317742
317943
  * For each entry in the object, call the function with the key and value.
@@ -317757,7 +317958,7 @@ const forEachEntry = (obj, fn) => {
317757
317958
  const pair = result.value;
317758
317959
  fn.call(obj, pair[0], pair[1]);
317759
317960
  }
317760
- }
317961
+ };
317761
317962
 
317762
317963
  /**
317763
317964
  * It takes a regular expression and a string, and returns an array of all the matches
@@ -317776,21 +317977,25 @@ const matchAll = (regExp, str) => {
317776
317977
  }
317777
317978
 
317778
317979
  return arr;
317779
- }
317980
+ };
317780
317981
 
317781
317982
  /* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
317782
- const isHTMLForm = kindOfTest('HTMLFormElement');
317983
+ const isHTMLForm = kindOfTest("HTMLFormElement");
317783
317984
 
317784
- const toCamelCase = str => {
317785
- return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,
317786
- function replacer(m, p1, p2) {
317985
+ const toCamelCase = (str) => {
317986
+ return str
317987
+ .toLowerCase()
317988
+ .replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
317787
317989
  return p1.toUpperCase() + p2;
317788
- }
317789
- );
317990
+ });
317790
317991
  };
317791
317992
 
317792
317993
  /* Creating a function that will check if an object has a property. */
317793
- const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);
317994
+ const hasOwnProperty = (
317995
+ ({ hasOwnProperty }) =>
317996
+ (obj, prop) =>
317997
+ hasOwnProperty.call(obj, prop)
317998
+ )(Object.prototype);
317794
317999
 
317795
318000
  /**
317796
318001
  * Determine if a value is a RegExp object
@@ -317799,7 +318004,7 @@ const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call
317799
318004
  *
317800
318005
  * @returns {boolean} True if value is a RegExp object, otherwise false
317801
318006
  */
317802
- const isRegExp = kindOfTest('RegExp');
318007
+ const isRegExp = kindOfTest("RegExp");
317803
318008
 
317804
318009
  const reduceDescriptors = (obj, reducer) => {
317805
318010
  const descriptors = Object.getOwnPropertyDescriptors(obj);
@@ -317813,7 +318018,7 @@ const reduceDescriptors = (obj, reducer) => {
317813
318018
  });
317814
318019
 
317815
318020
  Object.defineProperties(obj, reducedDescriptors);
317816
- }
318021
+ };
317817
318022
 
317818
318023
  /**
317819
318024
  * Makes all methods read-only
@@ -317823,7 +318028,10 @@ const reduceDescriptors = (obj, reducer) => {
317823
318028
  const freezeMethods = (obj) => {
317824
318029
  reduceDescriptors(obj, (descriptor, name) => {
317825
318030
  // skip restricted props in strict mode
317826
- if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {
318031
+ if (
318032
+ isFunction(obj) &&
318033
+ ["arguments", "caller", "callee"].indexOf(name) !== -1
318034
+ ) {
317827
318035
  return false;
317828
318036
  }
317829
318037
 
@@ -317833,40 +318041,42 @@ const freezeMethods = (obj) => {
317833
318041
 
317834
318042
  descriptor.enumerable = false;
317835
318043
 
317836
- if ('writable' in descriptor) {
318044
+ if ("writable" in descriptor) {
317837
318045
  descriptor.writable = false;
317838
318046
  return;
317839
318047
  }
317840
318048
 
317841
318049
  if (!descriptor.set) {
317842
318050
  descriptor.set = () => {
317843
- throw Error('Can not rewrite read-only method \'' + name + '\'');
318051
+ throw Error("Can not rewrite read-only method '" + name + "'");
317844
318052
  };
317845
318053
  }
317846
318054
  });
317847
- }
318055
+ };
317848
318056
 
317849
318057
  const toObjectSet = (arrayOrString, delimiter) => {
317850
318058
  const obj = {};
317851
318059
 
317852
318060
  const define = (arr) => {
317853
- arr.forEach(value => {
318061
+ arr.forEach((value) => {
317854
318062
  obj[value] = true;
317855
318063
  });
317856
- }
318064
+ };
317857
318065
 
317858
- isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
318066
+ isArray(arrayOrString)
318067
+ ? define(arrayOrString)
318068
+ : define(String(arrayOrString).split(delimiter));
317859
318069
 
317860
318070
  return obj;
317861
- }
318071
+ };
317862
318072
 
317863
- const noop = () => {}
318073
+ const noop = () => {};
317864
318074
 
317865
318075
  const toFiniteNumber = (value, defaultValue) => {
317866
- return value != null && Number.isFinite(value = +value) ? value : defaultValue;
317867
- }
317868
-
317869
-
318076
+ return value != null && Number.isFinite((value = +value))
318077
+ ? value
318078
+ : defaultValue;
318079
+ };
317870
318080
 
317871
318081
  /**
317872
318082
  * If the thing is a FormData object, return true, otherwise return false.
@@ -317876,14 +318086,18 @@ const toFiniteNumber = (value, defaultValue) => {
317876
318086
  * @returns {boolean}
317877
318087
  */
317878
318088
  function isSpecCompliantForm(thing) {
317879
- return !!(thing && isFunction(thing.append) && thing[toStringTag] === 'FormData' && thing[iterator]);
318089
+ return !!(
318090
+ thing &&
318091
+ isFunction(thing.append) &&
318092
+ thing[toStringTag] === "FormData" &&
318093
+ thing[iterator]
318094
+ );
317880
318095
  }
317881
318096
 
317882
318097
  const toJSONObject = (obj) => {
317883
318098
  const stack = new Array(10);
317884
318099
 
317885
318100
  const visit = (source, i) => {
317886
-
317887
318101
  if (isObject(source)) {
317888
318102
  if (stack.indexOf(source) >= 0) {
317889
318103
  return;
@@ -317894,7 +318108,7 @@ const toJSONObject = (obj) => {
317894
318108
  return source;
317895
318109
  }
317896
318110
 
317897
- if(!('toJSON' in source)) {
318111
+ if (!("toJSON" in source)) {
317898
318112
  stack[i] = source;
317899
318113
  const target = isArray(source) ? [] : {};
317900
318114
 
@@ -317910,15 +318124,18 @@ const toJSONObject = (obj) => {
317910
318124
  }
317911
318125
 
317912
318126
  return source;
317913
- }
318127
+ };
317914
318128
 
317915
318129
  return visit(obj, 0);
317916
- }
318130
+ };
317917
318131
 
317918
- const isAsyncFn = kindOfTest('AsyncFunction');
318132
+ const isAsyncFn = kindOfTest("AsyncFunction");
317919
318133
 
317920
318134
  const isThenable = (thing) =>
317921
- thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
318135
+ thing &&
318136
+ (isObject(thing) || isFunction(thing)) &&
318137
+ isFunction(thing.then) &&
318138
+ isFunction(thing.catch);
317922
318139
 
317923
318140
  // original code
317924
318141
  // https://github.com/DigitalBrainJS/AxiosPromise/blob/16deab13710ec09779922131f3fa5954320f83ab/lib/utils.js#L11-L34
@@ -317928,32 +318145,35 @@ const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
317928
318145
  return setImmediate;
317929
318146
  }
317930
318147
 
317931
- return postMessageSupported ? ((token, callbacks) => {
317932
- _global.addEventListener("message", ({source, data}) => {
317933
- if (source === _global && data === token) {
317934
- callbacks.length && callbacks.shift()();
317935
- }
317936
- }, false);
318148
+ return postMessageSupported
318149
+ ? ((token, callbacks) => {
318150
+ _global.addEventListener(
318151
+ "message",
318152
+ ({ source, data }) => {
318153
+ if (source === _global && data === token) {
318154
+ callbacks.length && callbacks.shift()();
318155
+ }
318156
+ },
318157
+ false,
318158
+ );
317937
318159
 
317938
- return (cb) => {
317939
- callbacks.push(cb);
317940
- _global.postMessage(token, "*");
317941
- }
317942
- })(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
317943
- })(
317944
- typeof setImmediate === 'function',
317945
- isFunction(_global.postMessage)
317946
- );
318160
+ return (cb) => {
318161
+ callbacks.push(cb);
318162
+ _global.postMessage(token, "*");
318163
+ };
318164
+ })(`axios@${Math.random()}`, [])
318165
+ : (cb) => setTimeout(cb);
318166
+ })(typeof setImmediate === "function", isFunction(_global.postMessage));
317947
318167
 
317948
- const asap = typeof queueMicrotask !== 'undefined' ?
317949
- queueMicrotask.bind(_global) : ( typeof process !== 'undefined' && process.nextTick || _setImmediate);
318168
+ const asap =
318169
+ typeof queueMicrotask !== "undefined"
318170
+ ? queueMicrotask.bind(_global)
318171
+ : (typeof process !== "undefined" && process.nextTick) || _setImmediate;
317950
318172
 
317951
318173
  // *********************
317952
318174
 
317953
-
317954
318175
  const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
317955
318176
 
317956
-
317957
318177
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
317958
318178
  isArray,
317959
318179
  isArrayBuffer,
@@ -318011,7 +318231,7 @@ const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
318011
318231
  isThenable,
318012
318232
  setImmediate: _setImmediate,
318013
318233
  asap,
318014
- isIterable
318234
+ isIterable,
318015
318235
  });
318016
318236
 
318017
318237
 
@@ -321291,7 +321511,7 @@ var loadLanguages = instance.loadLanguages;
321291
321511
  /***/ ((module) => {
321292
321512
 
321293
321513
  "use strict";
321294
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.0-dev.8","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","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":{"@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"}}');
321514
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.8.0-dev.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","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":{"@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"}}');
321295
321515
 
321296
321516
  /***/ })
321297
321517