@itwin/ecschema-rpcinterface-tests 4.6.0-dev.22 → 4.6.0-dev.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/backend/BackendInit.js.map +1 -1
- package/lib/common/Settings.js.map +1 -1
- package/lib/dist/bundled-tests.js +487 -661
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_1_6_node_modules_loaders_gl_draco_di-0642a6.bundled-tests.js +5 -5
- package/lib/frontend/setup/IModelSession.js.map +1 -1
- package/lib/frontend/setup/TestContext.js +1 -1
- package/lib/frontend/setup/TestContext.js.map +1 -1
- package/package.json +17 -17
|
@@ -679,7 +679,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
679
679
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
680
680
|
/* harmony export */ "AxiosRestClient": () => (/* binding */ AxiosRestClient)
|
|
681
681
|
/* harmony export */ });
|
|
682
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
682
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/axios.js");
|
|
683
683
|
/* harmony import */ var _types_RestClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types/RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@5.1.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js");
|
|
684
684
|
/* harmony import */ var _AxiosResponseHeadersAdapter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AxiosResponseHeadersAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@5.1.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/AxiosResponseHeadersAdapter.js");
|
|
685
685
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -17884,8 +17884,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17884
17884
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17885
17885
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
17886
17886
|
/* harmony export */ });
|
|
17887
|
-
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
17888
|
-
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
17887
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
17888
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
17889
17889
|
|
|
17890
17890
|
|
|
17891
17891
|
|
|
@@ -21643,8 +21643,9 @@ class BentleyError extends Error {
|
|
|
21643
21643
|
return error.message;
|
|
21644
21644
|
if (typeof error.msg === "string")
|
|
21645
21645
|
return error.msg;
|
|
21646
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
21646
21647
|
if (error.toString() !== "[object Object]")
|
|
21647
|
-
return error.toString();
|
|
21648
|
+
return error.toString(); // eslint-disable-line @typescript-eslint/no-base-to-string
|
|
21648
21649
|
}
|
|
21649
21650
|
return "";
|
|
21650
21651
|
}
|
|
@@ -22960,9 +22961,9 @@ var Id64;
|
|
|
22960
22961
|
Id64.fromLocalAndBriefcaseIds = fromLocalAndBriefcaseIds;
|
|
22961
22962
|
// Used as a buffer when converting a pair of 32-bit integers to an Id64String. Significant performance optimization.
|
|
22962
22963
|
const scratchCharCodes = [
|
|
22963
|
-
0x30,
|
|
22964
|
-
0x78,
|
|
22965
|
-
0x30,
|
|
22964
|
+
0x30, // "0"
|
|
22965
|
+
0x78, // "x"
|
|
22966
|
+
0x30, // "0"
|
|
22966
22967
|
0x30,
|
|
22967
22968
|
0x30,
|
|
22968
22969
|
0x30,
|
|
@@ -24335,7 +24336,6 @@ Logger.logExceptionCallstacks = false;
|
|
|
24335
24336
|
* Use a key to identify entries in the map so the can be removed individually.
|
|
24336
24337
|
* @internal */
|
|
24337
24338
|
Logger.staticMetaData = new Map();
|
|
24338
|
-
|
|
24339
24339
|
/** Simple performance diagnostics utility.
|
|
24340
24340
|
* It measures the time from construction to disposal. On disposal it logs the routine name along with
|
|
24341
24341
|
* the duration in milliseconds.
|
|
@@ -24374,7 +24374,6 @@ class PerfLogger {
|
|
|
24374
24374
|
PerfLogger._severity = LogLevel.Info;
|
|
24375
24375
|
|
|
24376
24376
|
|
|
24377
|
-
|
|
24378
24377
|
/***/ }),
|
|
24379
24378
|
|
|
24380
24379
|
/***/ "../../core/bentley/lib/esm/ObservableSet.js":
|
|
@@ -25471,7 +25470,6 @@ class StatusCategory {
|
|
|
25471
25470
|
}
|
|
25472
25471
|
}
|
|
25473
25472
|
StatusCategory.handlers = new Set();
|
|
25474
|
-
|
|
25475
25473
|
/***
|
|
25476
25474
|
* A success status.
|
|
25477
25475
|
* @alpha
|
|
@@ -26820,7 +26818,6 @@ UnexpectedErrors._telemetry = [];
|
|
|
26820
26818
|
UnexpectedErrors._handler = _a.errorLog; // default to error logging
|
|
26821
26819
|
|
|
26822
26820
|
|
|
26823
|
-
|
|
26824
26821
|
/***/ }),
|
|
26825
26822
|
|
|
26826
26823
|
/***/ "../../core/bentley/lib/esm/UtilityTypes.js":
|
|
@@ -27446,7 +27443,6 @@ class AnalysisStyle {
|
|
|
27446
27443
|
AnalysisStyle.defaults = new AnalysisStyle({});
|
|
27447
27444
|
|
|
27448
27445
|
|
|
27449
|
-
|
|
27450
27446
|
/***/ }),
|
|
27451
27447
|
|
|
27452
27448
|
/***/ "../../core/common/lib/esm/Atmosphere.js":
|
|
@@ -27548,19 +27544,19 @@ var Atmosphere;
|
|
|
27548
27544
|
return true;
|
|
27549
27545
|
}
|
|
27550
27546
|
constructor(json) {
|
|
27551
|
-
this.atmosphereHeightAboveEarth = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.atmosphereHeightAboveEarth,
|
|
27552
|
-
this.exposure = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.exposure,
|
|
27553
|
-
this.densityFalloff = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.densityFalloff,
|
|
27554
|
-
this.depthBelowEarthForMaxDensity = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.depthBelowEarthForMaxDensity,
|
|
27555
|
-
this.numViewRaySamples = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.numViewRaySamples,
|
|
27556
|
-
this.numSunRaySamples = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.numSunRaySamples,
|
|
27557
|
-
this.scatteringStrength = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.scatteringStrength,
|
|
27558
|
-
this.wavelengths = Wavelengths.fromJSON(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asObject(json.wavelengths) ??
|
|
27547
|
+
this.atmosphereHeightAboveEarth = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.atmosphereHeightAboveEarth, _a._defaultAtmosphereHeightAboveEarth);
|
|
27548
|
+
this.exposure = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.exposure, _a._defaultExposure);
|
|
27549
|
+
this.densityFalloff = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.densityFalloff, _a._defaultDensityFalloff);
|
|
27550
|
+
this.depthBelowEarthForMaxDensity = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.depthBelowEarthForMaxDensity, _a._defaultMinDensityHeightBelowEarth);
|
|
27551
|
+
this.numViewRaySamples = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.numViewRaySamples, _a._defaultNumViewRaySamples);
|
|
27552
|
+
this.numSunRaySamples = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.numSunRaySamples, _a._defaultNumSunRaySamples);
|
|
27553
|
+
this.scatteringStrength = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asDouble(json.scatteringStrength, _a._defaultScatteringStrength);
|
|
27554
|
+
this.wavelengths = Wavelengths.fromJSON(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asObject(json.wavelengths) ?? _a._defaultWavelengths);
|
|
27559
27555
|
}
|
|
27560
27556
|
static fromJSON(json) {
|
|
27561
27557
|
if (undefined === json)
|
|
27562
27558
|
return this.defaults;
|
|
27563
|
-
return new
|
|
27559
|
+
return new _a(json);
|
|
27564
27560
|
}
|
|
27565
27561
|
toJSON(display) {
|
|
27566
27562
|
const json = {
|
|
@@ -27587,8 +27583,8 @@ var Atmosphere;
|
|
|
27587
27583
|
Settings._defaultNumViewRaySamples = 10;
|
|
27588
27584
|
Settings._highQualityNumViewRaySamples = 20;
|
|
27589
27585
|
Settings._defaultNumSunRaySamples = 5;
|
|
27590
|
-
Settings.defaults = new
|
|
27591
|
-
Settings.highQuality = new
|
|
27586
|
+
Settings.defaults = new _a({});
|
|
27587
|
+
Settings.highQuality = new _a({ numViewRaySamples: _a._highQualityNumViewRaySamples });
|
|
27592
27588
|
Atmosphere.Settings = Settings;
|
|
27593
27589
|
})(Atmosphere || (Atmosphere = {}));
|
|
27594
27590
|
|
|
@@ -28320,7 +28316,6 @@ class CutStyle {
|
|
|
28320
28316
|
}
|
|
28321
28317
|
/** The default CutStyle, configured to draw the section-cut graphics using the view's settings, with no overrides. */
|
|
28322
28318
|
CutStyle.defaults = new CutStyle();
|
|
28323
|
-
|
|
28324
28319
|
/** As part of a [[ClipStyle]], describes how to colorize geometry intersecting the clip planes.
|
|
28325
28320
|
* @note Edges are highlighted only if [[ClipStyle.ClipIntersectionStyle]] is `true`.
|
|
28326
28321
|
* @public
|
|
@@ -28364,7 +28359,6 @@ class ClipIntersectionStyle {
|
|
|
28364
28359
|
}
|
|
28365
28360
|
}
|
|
28366
28361
|
ClipIntersectionStyle.defaults = new ClipIntersectionStyle();
|
|
28367
|
-
|
|
28368
28362
|
/** Describes symbology and behavior applied to a [ClipVector]($core-geometry) when applied to a [ViewState]($frontend) or [[ModelClipGroup]].
|
|
28369
28363
|
* @see [[DisplayStyleSettings.clipStyle]].
|
|
28370
28364
|
* @public
|
|
@@ -28440,7 +28434,6 @@ class ClipStyle {
|
|
|
28440
28434
|
ClipStyle.defaults = new ClipStyle(false, false, CutStyle.defaults, undefined, undefined, undefined);
|
|
28441
28435
|
|
|
28442
28436
|
|
|
28443
|
-
|
|
28444
28437
|
/***/ }),
|
|
28445
28438
|
|
|
28446
28439
|
/***/ "../../core/common/lib/esm/Code.js":
|
|
@@ -28497,6 +28490,7 @@ class Code {
|
|
|
28497
28490
|
static isValid(c) { return _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isValidId64(c.spec); }
|
|
28498
28491
|
/** Determine if this code is valid but not otherwise meaningful (and therefore not necessarily unique) */
|
|
28499
28492
|
static isEmpty(c) { return this.isValid(c) && (c.value === undefined || c.value === ""); }
|
|
28493
|
+
toString() { return `[Code: ${this.spec}, ${this.scope}, ${this.value}]`; }
|
|
28500
28494
|
}
|
|
28501
28495
|
/** Names of the internal BIS CodeSpecs. These names match those specified by the native library.
|
|
28502
28496
|
* For other domains, the best practice is to include the domain name or alias as part of the CodeSpec name to ensure global uniqueness.
|
|
@@ -29494,7 +29488,6 @@ ColorDef.green = new ColorDef(_ColorByName__WEBPACK_IMPORTED_MODULE_1__.ColorByN
|
|
|
29494
29488
|
ColorDef.blue = new ColorDef(_ColorByName__WEBPACK_IMPORTED_MODULE_1__.ColorByName.blue);
|
|
29495
29489
|
|
|
29496
29490
|
|
|
29497
|
-
|
|
29498
29491
|
/***/ }),
|
|
29499
29492
|
|
|
29500
29493
|
/***/ "../../core/common/lib/esm/CommonLoggerCategory.js":
|
|
@@ -31991,7 +31984,6 @@ class ECSqlReader {
|
|
|
31991
31984
|
ECSqlReader._maxRetryCount = 10;
|
|
31992
31985
|
|
|
31993
31986
|
|
|
31994
|
-
|
|
31995
31987
|
/***/ }),
|
|
31996
31988
|
|
|
31997
31989
|
/***/ "../../core/common/lib/esm/ECSqlTypes.js":
|
|
@@ -32326,7 +32318,6 @@ class RelatedElement {
|
|
|
32326
32318
|
}
|
|
32327
32319
|
/** Used to *null out* an existing navigation relationship. */
|
|
32328
32320
|
RelatedElement.none = new RelatedElement({ id: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.invalid });
|
|
32329
|
-
|
|
32330
32321
|
/** A [RelatedElement]($common) relationship that describes the [TypeDefinitionElement]($backend) of an element.
|
|
32331
32322
|
* @public
|
|
32332
32323
|
*/
|
|
@@ -32533,6 +32524,7 @@ class PropertyMetaData {
|
|
|
32533
32524
|
*/
|
|
32534
32525
|
class EntityMetaData {
|
|
32535
32526
|
constructor(jsonObj) {
|
|
32527
|
+
this.classId = jsonObj.classId;
|
|
32536
32528
|
this.ecclass = jsonObj.ecclass;
|
|
32537
32529
|
this.description = jsonObj.description;
|
|
32538
32530
|
this.modifier = jsonObj.modifier;
|
|
@@ -32707,7 +32699,6 @@ class Environment {
|
|
|
32707
32699
|
Environment.defaults = new Environment();
|
|
32708
32700
|
|
|
32709
32701
|
|
|
32710
|
-
|
|
32711
32702
|
/***/ }),
|
|
32712
32703
|
|
|
32713
32704
|
/***/ "../../core/common/lib/esm/FeatureIndex.js":
|
|
@@ -33047,7 +33038,6 @@ class FeatureAppearance {
|
|
|
33047
33038
|
}
|
|
33048
33039
|
/** An appearance that overrides nothing. */
|
|
33049
33040
|
FeatureAppearance.defaults = new FeatureAppearance({});
|
|
33050
|
-
|
|
33051
33041
|
const scratchIgnoreAnimationOverridesArgs = {
|
|
33052
33042
|
elementId: { lower: 0, upper: 0 },
|
|
33053
33043
|
animationNodeId: 0,
|
|
@@ -33418,7 +33408,6 @@ class FeatureOverrides {
|
|
|
33418
33408
|
}
|
|
33419
33409
|
}
|
|
33420
33410
|
FeatureOverrides._weight1Appearance = FeatureAppearance.fromJSON({ weight: 1 });
|
|
33421
|
-
|
|
33422
33411
|
/** @public */
|
|
33423
33412
|
var FeatureAppearanceProvider;
|
|
33424
33413
|
(function (FeatureAppearanceProvider) {
|
|
@@ -34091,6 +34080,7 @@ var Npc;
|
|
|
34091
34080
|
Npc[Npc["_011"] = 6] = "_011";
|
|
34092
34081
|
/** Right top front */
|
|
34093
34082
|
Npc[Npc["_111"] = 7] = "_111";
|
|
34083
|
+
/* eslint-disable @typescript-eslint/no-duplicate-enum-values */
|
|
34094
34084
|
Npc[Npc["LeftBottomRear"] = 0] = "LeftBottomRear";
|
|
34095
34085
|
Npc[Npc["RightBottomRear"] = 1] = "RightBottomRear";
|
|
34096
34086
|
Npc[Npc["LeftTopRear"] = 2] = "LeftTopRear";
|
|
@@ -34099,6 +34089,7 @@ var Npc;
|
|
|
34099
34089
|
Npc[Npc["RightBottomFront"] = 5] = "RightBottomFront";
|
|
34100
34090
|
Npc[Npc["LeftTopFront"] = 6] = "LeftTopFront";
|
|
34101
34091
|
Npc[Npc["RightTopFront"] = 7] = "RightTopFront";
|
|
34092
|
+
/* eslint-enable @typescript-eslint/no-duplicate-enum-values */
|
|
34102
34093
|
/** useful for sizing arrays */
|
|
34103
34094
|
Npc[Npc["CORNER_COUNT"] = 8] = "CORNER_COUNT";
|
|
34104
34095
|
})(Npc || (Npc = {}));
|
|
@@ -35203,10 +35194,10 @@ var Gradient;
|
|
|
35203
35194
|
}
|
|
35204
35195
|
Symb._fixedSchemeKeys = [
|
|
35205
35196
|
// NB: these color values are ordered as rbg. Note how the components are applied below.
|
|
35206
|
-
[[0.0, 0, 255, 0], [0.25, 0, 255, 255], [0.5, 0, 0, 255], [0.75, 255, 0, 255], [1.0, 255, 0, 0]],
|
|
35207
|
-
[[0.0, 255, 0, 0], [0.25, 255, 0, 255], [0.5, 0, 0, 255], [0.75, 0, 255, 255], [1.0, 0, 255, 0]],
|
|
35208
|
-
[[0.0, 0, 0, 0], [1.0, 255, 255, 255]],
|
|
35209
|
-
[[0.0, 152, 148, 188], [0.5, 204, 160, 204], [1.0, 152, 72, 128]],
|
|
35197
|
+
[[0.0, 0, 255, 0], [0.25, 0, 255, 255], [0.5, 0, 0, 255], [0.75, 255, 0, 255], [1.0, 255, 0, 0]], // Blue Red.
|
|
35198
|
+
[[0.0, 255, 0, 0], [0.25, 255, 0, 255], [0.5, 0, 0, 255], [0.75, 0, 255, 255], [1.0, 0, 255, 0]], // Red blue.
|
|
35199
|
+
[[0.0, 0, 0, 0], [1.0, 255, 255, 255]], // Monochrome.
|
|
35200
|
+
[[0.0, 152, 148, 188], [0.5, 204, 160, 204], [1.0, 152, 72, 128]], // Based off of the topographic gradients in Point Clouds.
|
|
35210
35201
|
[[0.0, 0, 255, 0], [0.2, 72, 96, 160], [0.4, 152, 96, 160], [0.6, 128, 32, 104], [0.7, 148, 180, 128], [1.0, 240, 240, 240]], // Based off of the sea-mountain gradient in Point Clouds.
|
|
35211
35202
|
];
|
|
35212
35203
|
Symb._fixedCustomKeys = [[0.0, 255, 0, 0], [1.0, 0, 255, 0]];
|
|
@@ -35389,7 +35380,6 @@ class GroundPlane {
|
|
|
35389
35380
|
GroundPlane.defaults = new GroundPlane({});
|
|
35390
35381
|
|
|
35391
35382
|
|
|
35392
|
-
|
|
35393
35383
|
/***/ }),
|
|
35394
35384
|
|
|
35395
35385
|
/***/ "../../core/common/lib/esm/HSLColor.js":
|
|
@@ -36140,7 +36130,6 @@ IModel.rootSubjectId = "0x1";
|
|
|
36140
36130
|
IModel.dictionaryId = "0x10";
|
|
36141
36131
|
|
|
36142
36132
|
|
|
36143
|
-
|
|
36144
36133
|
/***/ }),
|
|
36145
36134
|
|
|
36146
36135
|
/***/ "../../core/common/lib/esm/IModelError.js":
|
|
@@ -36730,7 +36719,6 @@ class FresnelSettings {
|
|
|
36730
36719
|
}
|
|
36731
36720
|
}
|
|
36732
36721
|
FresnelSettings._defaults = new FresnelSettings(0, false);
|
|
36733
|
-
|
|
36734
36722
|
/** Describes the lighting for a 3d scene, associated with a [[DisplayStyle3dSettings]] in turn associated with a [DisplayStyle3d]($backend) or [DisplayStyle3dState]($frontend).
|
|
36735
36723
|
* @see [[LightSettingsProps]]
|
|
36736
36724
|
* @public
|
|
@@ -38143,7 +38131,6 @@ class PlanarClipMaskSettings {
|
|
|
38143
38131
|
PlanarClipMaskSettings.defaults = new PlanarClipMaskSettings(PlanarClipMaskMode.None);
|
|
38144
38132
|
|
|
38145
38133
|
|
|
38146
|
-
|
|
38147
38134
|
/***/ }),
|
|
38148
38135
|
|
|
38149
38136
|
/***/ "../../core/common/lib/esm/QPoint.js":
|
|
@@ -39142,7 +39129,6 @@ class PointCloudDisplaySettings {
|
|
|
39142
39129
|
}
|
|
39143
39130
|
/** Settings with all properties initialized to their default values. */
|
|
39144
39131
|
PointCloudDisplaySettings.defaults = new PointCloudDisplaySettings();
|
|
39145
|
-
|
|
39146
39132
|
/** Settings that control how a reality model - whether a [[ContextRealityModel]] or a persistent reality [Model]($backend) - is displayed within a [Viewport]($frontend).
|
|
39147
39133
|
* @see [[ContextRealityModel.displaySettings]] to apply these settings to a context reality model.
|
|
39148
39134
|
* @see [[DisplayStyleSettings.setRealityModelDisplaySettings]] to apply these settings to a persistent reality model.
|
|
@@ -39190,7 +39176,6 @@ class RealityModelDisplaySettings {
|
|
|
39190
39176
|
RealityModelDisplaySettings.defaults = new RealityModelDisplaySettings(undefined, PointCloudDisplaySettings.defaults);
|
|
39191
39177
|
|
|
39192
39178
|
|
|
39193
|
-
|
|
39194
39179
|
/***/ }),
|
|
39195
39180
|
|
|
39196
39181
|
/***/ "../../core/common/lib/esm/Render.js":
|
|
@@ -40994,7 +40979,6 @@ class SkyGradient {
|
|
|
40994
40979
|
}
|
|
40995
40980
|
/** Default settings for a four-color gradient. */
|
|
40996
40981
|
SkyGradient.defaults = new SkyGradient({});
|
|
40997
|
-
|
|
40998
40982
|
/** Describes how to draw a representation of a sky, as part of an [[Environment]].
|
|
40999
40983
|
* @see [[SkyBoxProps]].
|
|
41000
40984
|
* @public
|
|
@@ -41042,7 +41026,6 @@ class SkyBox {
|
|
|
41042
41026
|
}
|
|
41043
41027
|
/** Default settings for a four-color gradient. */
|
|
41044
41028
|
SkyBox.defaults = new SkyBox(SkyGradient.defaults);
|
|
41045
|
-
|
|
41046
41029
|
/** Describes how to draw a representation of a sky by mapping a single image to the interior of a sphere.
|
|
41047
41030
|
* @public
|
|
41048
41031
|
*/
|
|
@@ -41418,7 +41401,6 @@ class SolarShadowSettings {
|
|
|
41418
41401
|
SolarShadowSettings.defaults = new SolarShadowSettings({});
|
|
41419
41402
|
|
|
41420
41403
|
|
|
41421
|
-
|
|
41422
41404
|
/***/ }),
|
|
41423
41405
|
|
|
41424
41406
|
/***/ "../../core/common/lib/esm/SpatialClassification.js":
|
|
@@ -41881,7 +41863,6 @@ class SubCategoryAppearance {
|
|
|
41881
41863
|
SubCategoryAppearance.defaults = new SubCategoryAppearance();
|
|
41882
41864
|
|
|
41883
41865
|
|
|
41884
|
-
|
|
41885
41866
|
/***/ }),
|
|
41886
41867
|
|
|
41887
41868
|
/***/ "../../core/common/lib/esm/SubCategoryOverride.js":
|
|
@@ -42000,7 +41981,6 @@ class SubCategoryOverride {
|
|
|
42000
41981
|
SubCategoryOverride.defaults = new SubCategoryOverride({});
|
|
42001
41982
|
|
|
42002
41983
|
|
|
42003
|
-
|
|
42004
41984
|
/***/ }),
|
|
42005
41985
|
|
|
42006
41986
|
/***/ "../../core/common/lib/esm/TerrainSettings.js":
|
|
@@ -42609,7 +42589,6 @@ class ThematicGradientSettings {
|
|
|
42609
42589
|
}
|
|
42610
42590
|
ThematicGradientSettings.defaults = new ThematicGradientSettings({});
|
|
42611
42591
|
ThematicGradientSettings._defaultCustomKeys = [[0.0, 255, 255, 255], [1.0, 0, 0, 0]];
|
|
42612
|
-
|
|
42613
42592
|
/** A sensor in world space, used for [[ThematicDisplayMode.InverseDistanceWeightedSensors]].
|
|
42614
42593
|
* @public
|
|
42615
42594
|
*/
|
|
@@ -43597,7 +43576,6 @@ class ViewDetails {
|
|
|
43597
43576
|
}
|
|
43598
43577
|
/** Maximum aspect ratio skew. Apps can override this by changing its value. */
|
|
43599
43578
|
ViewDetails.maxSkew = 25;
|
|
43600
|
-
|
|
43601
43579
|
/** Encapsulates access to optional 3d view details stored in JSON properties.
|
|
43602
43580
|
* @see [[ViewDetails3dProps]] for the JSON representation.
|
|
43603
43581
|
* @public
|
|
@@ -44023,7 +44001,6 @@ class ViewFlags {
|
|
|
44023
44001
|
ViewFlags.defaults = new ViewFlags();
|
|
44024
44002
|
|
|
44025
44003
|
|
|
44026
|
-
|
|
44027
44004
|
/***/ }),
|
|
44028
44005
|
|
|
44029
44006
|
/***/ "../../core/common/lib/esm/ViewProps.js":
|
|
@@ -44109,7 +44086,6 @@ WhiteOnWhiteReversalSettings._noIgnore = new WhiteOnWhiteReversalSettings(true);
|
|
|
44109
44086
|
WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
44110
44087
|
|
|
44111
44088
|
|
|
44112
|
-
|
|
44113
44089
|
/***/ }),
|
|
44114
44090
|
|
|
44115
44091
|
/***/ "../../core/common/lib/esm/annotation/TextAnnotation.js":
|
|
@@ -44677,7 +44653,6 @@ TextStyleSettings.defaultProps = {
|
|
|
44677
44653
|
};
|
|
44678
44654
|
/** Settings initialized to all default values. */
|
|
44679
44655
|
TextStyleSettings.defaults = new TextStyleSettings({});
|
|
44680
|
-
|
|
44681
44656
|
Object.freeze(TextStyleSettings.defaultProps);
|
|
44682
44657
|
Object.freeze(TextStyleSettings.defaults);
|
|
44683
44658
|
/** A named, immutable [[TextStyleSettings]] stored in a [Workspace]($backend).
|
|
@@ -46216,7 +46191,6 @@ Cartographic._scratchN = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.V
|
|
|
46216
46191
|
Cartographic._scratchK = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d();
|
|
46217
46192
|
Cartographic._scaleToGeodeticSurfaceIntersection = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d();
|
|
46218
46193
|
Cartographic._scaleToGeodeticSurfaceGradient = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d();
|
|
46219
|
-
|
|
46220
46194
|
/** A cartographic range representing a rectangular region if low longitude/latitude > high then area crossing seam is indicated.
|
|
46221
46195
|
* @public
|
|
46222
46196
|
*/
|
|
@@ -52254,10 +52228,10 @@ The below numbers are the indices into that array.
|
|
|
52254
52228
|
*/
|
|
52255
52229
|
// Ordering of sub-arrays is: [origin, a, b]
|
|
52256
52230
|
const planePointIndices = [
|
|
52257
|
-
[1, 5, 3],
|
|
52258
|
-
[0, 2, 4],
|
|
52259
|
-
[2, 3, 6],
|
|
52260
|
-
[0, 4, 1],
|
|
52231
|
+
[1, 5, 3], // right
|
|
52232
|
+
[0, 2, 4], // left
|
|
52233
|
+
[2, 3, 6], // top
|
|
52234
|
+
[0, 4, 1], // bottom
|
|
52261
52235
|
[0, 1, 2], // back
|
|
52262
52236
|
// Skip front plane because it can be too small. Instead derive it from back plane.
|
|
52263
52237
|
// Otherwise, it would be: [4, 6, 5]
|
|
@@ -54302,7 +54276,6 @@ class IpcWebSocket {
|
|
|
54302
54276
|
}
|
|
54303
54277
|
}
|
|
54304
54278
|
IpcWebSocket.receivers = new Set();
|
|
54305
|
-
|
|
54306
54279
|
/** @internal */
|
|
54307
54280
|
class IpcWebSocketFrontend extends IpcWebSocket {
|
|
54308
54281
|
constructor() {
|
|
@@ -54619,7 +54592,6 @@ DevToolsRpcInterface.interfaceName = "DevToolsRpcInterface";
|
|
|
54619
54592
|
DevToolsRpcInterface.interfaceVersion = "0.7.0";
|
|
54620
54593
|
|
|
54621
54594
|
|
|
54622
|
-
|
|
54623
54595
|
/***/ }),
|
|
54624
54596
|
|
|
54625
54597
|
/***/ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js":
|
|
@@ -54760,7 +54732,6 @@ __decorate([
|
|
|
54760
54732
|
], IModelReadRpcInterface.prototype, "getGeoCoordinatesFromIModelCoordinates", null);
|
|
54761
54733
|
|
|
54762
54734
|
|
|
54763
|
-
|
|
54764
54735
|
/***/ }),
|
|
54765
54736
|
|
|
54766
54737
|
/***/ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js":
|
|
@@ -54855,7 +54826,6 @@ __decorate([
|
|
|
54855
54826
|
], IModelTileRpcInterface.prototype, "requestTileTreeProps", null);
|
|
54856
54827
|
|
|
54857
54828
|
|
|
54858
|
-
|
|
54859
54829
|
/***/ }),
|
|
54860
54830
|
|
|
54861
54831
|
/***/ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js":
|
|
@@ -54918,7 +54888,6 @@ __decorate([
|
|
|
54918
54888
|
], SnapshotIModelRpcInterface.prototype, "openRemote", null);
|
|
54919
54889
|
|
|
54920
54890
|
|
|
54921
|
-
|
|
54922
54891
|
/***/ }),
|
|
54923
54892
|
|
|
54924
54893
|
/***/ "../../core/common/lib/esm/rpc/TestRpcManager.js":
|
|
@@ -55024,7 +54993,6 @@ WipRpcInterface.interfaceName = "WipRpcInterface";
|
|
|
55024
54993
|
WipRpcInterface.interfaceVersion = "0.5.0";
|
|
55025
54994
|
|
|
55026
54995
|
|
|
55027
|
-
|
|
55028
54996
|
/***/ }),
|
|
55029
54997
|
|
|
55030
54998
|
/***/ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js":
|
|
@@ -55098,13 +55066,13 @@ class RpcConfiguration {
|
|
|
55098
55066
|
/** Sets the configuration supplier for an RPC interface class for a given routing. */
|
|
55099
55067
|
static assignWithRouting(definition, routing, configuration) {
|
|
55100
55068
|
if (!definition.prototype.configurationSupplier) {
|
|
55101
|
-
|
|
55069
|
+
_a.assign(definition, RpcRoutingMap.create());
|
|
55102
55070
|
}
|
|
55103
55071
|
let map = definition.prototype.configurationSupplier;
|
|
55104
55072
|
if (typeof (map.configurations) === "undefined") {
|
|
55105
55073
|
const existing = map;
|
|
55106
55074
|
map = RpcRoutingMap.create();
|
|
55107
|
-
|
|
55075
|
+
_a.assign(definition, map);
|
|
55108
55076
|
map.configurations.set(_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_5__.RpcRoutingToken["default"].id, existing);
|
|
55109
55077
|
}
|
|
55110
55078
|
const supplier = () => configuration;
|
|
@@ -55128,7 +55096,7 @@ class RpcConfiguration {
|
|
|
55128
55096
|
return;
|
|
55129
55097
|
}
|
|
55130
55098
|
this.attached.push(definition);
|
|
55131
|
-
|
|
55099
|
+
_a.assign(definition, () => this.constructor);
|
|
55132
55100
|
_RpcManager__WEBPACK_IMPORTED_MODULE_0__.RpcManager.initializeInterface(definition);
|
|
55133
55101
|
}
|
|
55134
55102
|
/** Initializes the RPC interfaces managed by the configuration. */
|
|
@@ -55137,7 +55105,7 @@ class RpcConfiguration {
|
|
|
55137
55105
|
}
|
|
55138
55106
|
/** @internal */
|
|
55139
55107
|
static supply(definition) {
|
|
55140
|
-
return
|
|
55108
|
+
return _a.obtain(definition.configurationSupplier ? definition.configurationSupplier(definition.routing) : RpcDefaultConfiguration);
|
|
55141
55109
|
}
|
|
55142
55110
|
/** @internal */
|
|
55143
55111
|
onRpcClientInitialized(definition, client) {
|
|
@@ -55185,7 +55153,6 @@ RpcConfiguration.requestContext = {
|
|
|
55185
55153
|
authorization: "",
|
|
55186
55154
|
}),
|
|
55187
55155
|
};
|
|
55188
|
-
|
|
55189
55156
|
/** A default configuration that can be used for basic testing within a library.
|
|
55190
55157
|
* @internal
|
|
55191
55158
|
*/
|
|
@@ -55529,7 +55496,6 @@ RpcControlChannel.channels = [];
|
|
|
55529
55496
|
RpcControlChannel._obtainLock = 0;
|
|
55530
55497
|
|
|
55531
55498
|
|
|
55532
|
-
|
|
55533
55499
|
/***/ }),
|
|
55534
55500
|
|
|
55535
55501
|
/***/ "../../core/common/lib/esm/rpc/core/RpcInvocation.js":
|
|
@@ -55662,7 +55628,7 @@ class RpcInvocation {
|
|
|
55662
55628
|
const impl = _RpcRegistry__WEBPACK_IMPORTED_MODULE_10__.RpcRegistry.instance.getImplForInterface(this.operation.interfaceDefinition);
|
|
55663
55629
|
impl[_RpcRegistry__WEBPACK_IMPORTED_MODULE_10__.CURRENT_INVOCATION] = this;
|
|
55664
55630
|
const op = this.lookupOperationFunction(impl);
|
|
55665
|
-
return await
|
|
55631
|
+
return await _a.runActivity(activity, async () => op.call(impl, ...parameters)
|
|
55666
55632
|
.catch(async (error) => {
|
|
55667
55633
|
// this catch block is intentionally placed inside `runActivity` to attach the right logging metadata and use the correct openTelemetry span.
|
|
55668
55634
|
if (!(error instanceof _RpcControl__WEBPACK_IMPORTED_MODULE_6__.RpcPendingResponse)) {
|
|
@@ -55685,7 +55651,7 @@ class RpcInvocation {
|
|
|
55685
55651
|
if (isToken && this.protocol.checkToken && !this.operation.policy.allowTokenMismatch) {
|
|
55686
55652
|
const inflated = this.protocol.inflateToken(parameter, this.request);
|
|
55687
55653
|
parameters[i] = inflated;
|
|
55688
|
-
if (!
|
|
55654
|
+
if (!_a.compareTokens(parameter, inflated)) {
|
|
55689
55655
|
if (_RpcConfiguration__WEBPACK_IMPORTED_MODULE_4__.RpcConfiguration.throwOnTokenMismatch) {
|
|
55690
55656
|
throw new _IModelError__WEBPACK_IMPORTED_MODULE_2__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyStatus.ERROR, "IModelRpcProps mismatch detected for this request.");
|
|
55691
55657
|
}
|
|
@@ -55809,7 +55775,6 @@ _a = RpcInvocation;
|
|
|
55809
55775
|
RpcInvocation.runActivity = async (_activity, fn) => fn();
|
|
55810
55776
|
|
|
55811
55777
|
|
|
55812
|
-
|
|
55813
55778
|
/***/ }),
|
|
55814
55779
|
|
|
55815
55780
|
/***/ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js":
|
|
@@ -56076,7 +56041,6 @@ class RpcOperation {
|
|
|
56076
56041
|
}
|
|
56077
56042
|
/** A fallback token to use for RPC requests that do not semantically depend on an iModel. */
|
|
56078
56043
|
RpcOperation.fallbackToken = undefined;
|
|
56079
|
-
|
|
56080
56044
|
/** @internal */
|
|
56081
56045
|
(function (RpcOperation) {
|
|
56082
56046
|
function obtainInstance(obj) {
|
|
@@ -56382,7 +56346,6 @@ RpcProtocol.events = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEven
|
|
|
56382
56346
|
RpcProtocol.protocolVersion = RpcProtocolVersion.IntroducedStatusCategory;
|
|
56383
56347
|
|
|
56384
56348
|
|
|
56385
|
-
|
|
56386
56349
|
/***/ }),
|
|
56387
56350
|
|
|
56388
56351
|
/***/ "../../core/common/lib/esm/rpc/core/RpcPush.js":
|
|
@@ -56429,7 +56392,6 @@ class RpcPushService {
|
|
|
56429
56392
|
}
|
|
56430
56393
|
/** The push service for the dedicated backend (for example, an electron or mobile app). */
|
|
56431
56394
|
RpcPushService.dedicated = new RpcPushService("dedicated");
|
|
56432
|
-
|
|
56433
56395
|
/** Defines a named stream of push messages.
|
|
56434
56396
|
* @internal
|
|
56435
56397
|
*/
|
|
@@ -56500,7 +56462,6 @@ class RpcPushChannel {
|
|
|
56500
56462
|
/** @internal */
|
|
56501
56463
|
RpcPushChannel.enabled = false;
|
|
56502
56464
|
RpcPushChannel._channels = new Map();
|
|
56503
|
-
|
|
56504
56465
|
/** Receives push messages from the backend.
|
|
56505
56466
|
* @internal
|
|
56506
56467
|
*/
|
|
@@ -57205,7 +57166,6 @@ RpcRequest._activeRequests = new Map();
|
|
|
57205
57166
|
RpcRequest.events = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
57206
57167
|
/** Resolvers for "not found" requests. See [[RpcRequestNotFoundHandler]] */
|
|
57207
57168
|
RpcRequest.notFoundHandlers = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
57208
|
-
|
|
57209
57169
|
/** @internal */
|
|
57210
57170
|
const initializeRpcRequest = (() => {
|
|
57211
57171
|
let initialized = false;
|
|
@@ -57297,7 +57257,6 @@ RpcRoutingToken._next = -1;
|
|
|
57297
57257
|
RpcRoutingToken.default = RpcRoutingToken.generate("default");
|
|
57298
57258
|
|
|
57299
57259
|
|
|
57300
|
-
|
|
57301
57260
|
/***/ }),
|
|
57302
57261
|
|
|
57303
57262
|
/***/ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js":
|
|
@@ -57419,7 +57378,6 @@ BentleyCloudRpcConfiguration.accessControl = {
|
|
|
57419
57378
|
allowMethods: "POST, GET, OPTIONS",
|
|
57420
57379
|
allowHeaders: "Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With, X-Correlation-Id, X-Session-Id, X-Application-Id, X-Application-Version, X-User-Id, X-Protocol-Version",
|
|
57421
57380
|
};
|
|
57422
|
-
|
|
57423
57381
|
/** Coordinates usage of RPC interfaces for Bentley cloud deployments.
|
|
57424
57382
|
* @beta
|
|
57425
57383
|
*/
|
|
@@ -57760,7 +57718,6 @@ RpcMultipart.platform = {
|
|
|
57760
57718
|
};
|
|
57761
57719
|
|
|
57762
57720
|
|
|
57763
|
-
|
|
57764
57721
|
/***/ }),
|
|
57765
57722
|
|
|
57766
57723
|
/***/ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js":
|
|
@@ -57862,9 +57819,9 @@ class WebAppRpcLogging {
|
|
|
57862
57819
|
operation: object.operation.operationName,
|
|
57863
57820
|
rpcInterface: this.getRpcInterfaceName(object.operation.interfaceDefinition),
|
|
57864
57821
|
// Alert! The following properties are required by Bentley DevOps standards. Do not change their names!
|
|
57865
|
-
ActivityId: object.id,
|
|
57866
|
-
TimeElapsed: ("elapsed" in object) ? object.elapsed : 0,
|
|
57867
|
-
MachineName: this.getHostname(),
|
|
57822
|
+
ActivityId: object.id, // eslint-disable-line @typescript-eslint/naming-convention
|
|
57823
|
+
TimeElapsed: ("elapsed" in object) ? object.elapsed : 0, // eslint-disable-line @typescript-eslint/naming-convention
|
|
57824
|
+
MachineName: this.getHostname(), // eslint-disable-line @typescript-eslint/naming-convention
|
|
57868
57825
|
...pathIds,
|
|
57869
57826
|
}));
|
|
57870
57827
|
}
|
|
@@ -57878,9 +57835,9 @@ class WebAppRpcLogging {
|
|
|
57878
57835
|
rpcInterface: this.getRpcInterfaceName(object.operation.interfaceDefinition),
|
|
57879
57836
|
status,
|
|
57880
57837
|
// Alert! The following properties are required by Bentley DevOps standards. Do not change their names!
|
|
57881
|
-
ActivityId: object.id,
|
|
57882
|
-
TimeElapsed: elapsed,
|
|
57883
|
-
MachineName: this.getHostname(),
|
|
57838
|
+
ActivityId: object.id, // eslint-disable-line @typescript-eslint/naming-convention
|
|
57839
|
+
TimeElapsed: elapsed, // eslint-disable-line @typescript-eslint/naming-convention
|
|
57840
|
+
MachineName: this.getHostname(), // eslint-disable-line @typescript-eslint/naming-convention
|
|
57884
57841
|
...pathIds,
|
|
57885
57842
|
}));
|
|
57886
57843
|
}
|
|
@@ -57909,8 +57866,8 @@ class WebAppRpcLoggingFrontend extends WebAppRpcLogging {
|
|
|
57909
57866
|
method: request.method,
|
|
57910
57867
|
path: request.path,
|
|
57911
57868
|
// Alert! The following properties are required by Bentley DevOps standards. Do not change their names!
|
|
57912
|
-
ActivityId: request.id,
|
|
57913
|
-
MachineName: this.getHostname(),
|
|
57869
|
+
ActivityId: request.id, // eslint-disable-line @typescript-eslint/naming-convention
|
|
57870
|
+
MachineName: this.getHostname(), // eslint-disable-line @typescript-eslint/naming-convention
|
|
57914
57871
|
...pathIds,
|
|
57915
57872
|
}));
|
|
57916
57873
|
}
|
|
@@ -58253,7 +58210,7 @@ class WebAppRpcRequest extends _core_RpcRequest__WEBPACK_IMPORTED_MODULE_4__.Rpc
|
|
|
58253
58210
|
}
|
|
58254
58211
|
async setupTransport() {
|
|
58255
58212
|
const parameters = (await this.protocol.serialize(this)).parameters;
|
|
58256
|
-
const transportType =
|
|
58213
|
+
const transportType = _a.computeTransportType(parameters, this.parameters);
|
|
58257
58214
|
if (transportType === _core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.RpcContentType.Binary) {
|
|
58258
58215
|
this.setupBinaryTransport(parameters);
|
|
58259
58216
|
}
|
|
@@ -58278,7 +58235,7 @@ class WebAppRpcRequest extends _core_RpcRequest__WEBPACK_IMPORTED_MODULE_4__.Rpc
|
|
|
58278
58235
|
setupTextTransport(parameters) {
|
|
58279
58236
|
if (this.operation.policy.allowResponseCaching(this)) {
|
|
58280
58237
|
const encodedBody = btoa(parameters.objects); // eslint-disable-line deprecation/deprecation
|
|
58281
|
-
if (encodedBody.length <=
|
|
58238
|
+
if (encodedBody.length <= _a.maxUrlComponentSize) {
|
|
58282
58239
|
this._request.method = "get";
|
|
58283
58240
|
this._request.body = undefined;
|
|
58284
58241
|
delete this._headers[_core_RpcConstants__WEBPACK_IMPORTED_MODULE_2__.WEB_RPC_CONSTANTS.CONTENT];
|
|
@@ -58310,7 +58267,6 @@ WebAppRpcRequest.backend = {
|
|
|
58310
58267
|
};
|
|
58311
58268
|
|
|
58312
58269
|
|
|
58313
|
-
|
|
58314
58270
|
/***/ }),
|
|
58315
58271
|
|
|
58316
58272
|
/***/ "../../core/common/lib/esm/rpc/web/multipart/RpcMultipartParser.js":
|
|
@@ -59125,7 +59081,6 @@ class FeatureTableHeader {
|
|
|
59125
59081
|
FeatureTableHeader.sizeInBytes = 12;
|
|
59126
59082
|
|
|
59127
59083
|
|
|
59128
|
-
|
|
59129
59084
|
/***/ }),
|
|
59130
59085
|
|
|
59131
59086
|
/***/ "../../core/common/lib/esm/tile/PntsTileIO.js":
|
|
@@ -60063,6 +60018,7 @@ exports.ECStringConstants = void 0;
|
|
|
60063
60018
|
*/
|
|
60064
60019
|
class ECStringConstants {
|
|
60065
60020
|
}
|
|
60021
|
+
exports.ECStringConstants = ECStringConstants;
|
|
60066
60022
|
// Relationship End
|
|
60067
60023
|
ECStringConstants.RELATIONSHIP_END_SOURCE = "Source";
|
|
60068
60024
|
ECStringConstants.RELATIONSHIP_END_TARGET = "Target";
|
|
@@ -60083,7 +60039,6 @@ ECStringConstants.CONTAINERTYPE_SOURCERELATIONSHIPCONSTRAINT = "SourceRelationsh
|
|
|
60083
60039
|
ECStringConstants.CONTAINERTYPE_TARGETRELATIONSHIPCONSTRAINT = "TargetRelationshipConstraint";
|
|
60084
60040
|
ECStringConstants.CONTAINERTYPE_ANYRELATIONSHIPCONSTRAINT = "AnyRelationshipConstraint";
|
|
60085
60041
|
ECStringConstants.CONTAINERTYPE_ANY = "Any";
|
|
60086
|
-
exports.ECStringConstants = ECStringConstants;
|
|
60087
60042
|
|
|
60088
60043
|
|
|
60089
60044
|
/***/ }),
|
|
@@ -60150,7 +60105,7 @@ class SchemaCache {
|
|
|
60150
60105
|
*/
|
|
60151
60106
|
async addSchemaPromise(schemaInfo, schema, schemaPromise) {
|
|
60152
60107
|
if (this.schemaExists(schemaInfo.schemaKey))
|
|
60153
|
-
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.DuplicateSchema, `The schema, ${
|
|
60108
|
+
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.DuplicateSchema, `The schema, ${schemaInfo.schemaKey.toString()}, already exists within this cache.`);
|
|
60154
60109
|
this._schema.push({ schemaInfo, schema, schemaPromise });
|
|
60155
60110
|
// This promise is cached and will be awaited when the user requests the full schema.
|
|
60156
60111
|
// If the promise competes successfully before the user requests the schema it will be removed from the cache
|
|
@@ -63396,7 +63351,7 @@ var XmlSerializationUtils;
|
|
|
63396
63351
|
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Unable to resolve the namespace for CustomAttribute '${caName}' because the referenced schema '${nameParts[0]}' could not be located.`);
|
|
63397
63352
|
return [nameParts[1], `${nameParts[0]}.${attributeSchema.schemaKey.version.toString()}`];
|
|
63398
63353
|
}
|
|
63399
|
-
})(XmlSerializationUtils
|
|
63354
|
+
})(XmlSerializationUtils || (exports.XmlSerializationUtils = XmlSerializationUtils = {}));
|
|
63400
63355
|
|
|
63401
63356
|
|
|
63402
63357
|
/***/ }),
|
|
@@ -63528,7 +63483,7 @@ var ECClassModifier;
|
|
|
63528
63483
|
ECClassModifier[ECClassModifier["None"] = 0] = "None";
|
|
63529
63484
|
ECClassModifier[ECClassModifier["Abstract"] = 1] = "Abstract";
|
|
63530
63485
|
ECClassModifier[ECClassModifier["Sealed"] = 2] = "Sealed";
|
|
63531
|
-
})(ECClassModifier
|
|
63486
|
+
})(ECClassModifier || (exports.ECClassModifier = ECClassModifier = {}));
|
|
63532
63487
|
/**
|
|
63533
63488
|
* An enumeration that has all the schema item type names as values
|
|
63534
63489
|
* @beta */
|
|
@@ -63548,7 +63503,7 @@ var SchemaItemType;
|
|
|
63548
63503
|
SchemaItemType["Phenomenon"] = "Phenomenon";
|
|
63549
63504
|
SchemaItemType["UnitSystem"] = "UnitSystem";
|
|
63550
63505
|
SchemaItemType["Format"] = "Format";
|
|
63551
|
-
})(SchemaItemType
|
|
63506
|
+
})(SchemaItemType || (exports.SchemaItemType = SchemaItemType = {}));
|
|
63552
63507
|
/**
|
|
63553
63508
|
* Primitive data types for ECProperties.
|
|
63554
63509
|
* @beta
|
|
@@ -63566,7 +63521,7 @@ var PrimitiveType;
|
|
|
63566
63521
|
PrimitiveType[PrimitiveType["Point3d"] = 2049] = "Point3d";
|
|
63567
63522
|
PrimitiveType[PrimitiveType["String"] = 2305] = "String";
|
|
63568
63523
|
PrimitiveType[PrimitiveType["IGeometry"] = 2561] = "IGeometry";
|
|
63569
|
-
})(PrimitiveType
|
|
63524
|
+
})(PrimitiveType || (exports.PrimitiveType = PrimitiveType = {}));
|
|
63570
63525
|
/**
|
|
63571
63526
|
* Defines the valid CustomAttribute container types.
|
|
63572
63527
|
* @beta
|
|
@@ -63589,7 +63544,7 @@ var CustomAttributeContainerType;
|
|
|
63589
63544
|
CustomAttributeContainerType[CustomAttributeContainerType["TargetRelationshipConstraint"] = 2048] = "TargetRelationshipConstraint";
|
|
63590
63545
|
CustomAttributeContainerType[CustomAttributeContainerType["AnyRelationshipConstraint"] = 3072] = "AnyRelationshipConstraint";
|
|
63591
63546
|
CustomAttributeContainerType[CustomAttributeContainerType["Any"] = 4095] = "Any";
|
|
63592
|
-
})(CustomAttributeContainerType
|
|
63547
|
+
})(CustomAttributeContainerType || (exports.CustomAttributeContainerType = CustomAttributeContainerType = {}));
|
|
63593
63548
|
/**
|
|
63594
63549
|
* Defines what sort of match should be used when locating a schema.
|
|
63595
63550
|
* @beta
|
|
@@ -63606,7 +63561,7 @@ var SchemaMatchType;
|
|
|
63606
63561
|
SchemaMatchType[SchemaMatchType["Latest"] = 3] = "Latest";
|
|
63607
63562
|
// Find latest version with matching VersionRead
|
|
63608
63563
|
SchemaMatchType[SchemaMatchType["LatestReadCompatible"] = 4] = "LatestReadCompatible";
|
|
63609
|
-
})(SchemaMatchType
|
|
63564
|
+
})(SchemaMatchType || (exports.SchemaMatchType = SchemaMatchType = {}));
|
|
63610
63565
|
/**
|
|
63611
63566
|
* Identifer for an ECRelationshipConstraint. Used to determine the side of the relationship the constraint is representing.
|
|
63612
63567
|
* @beta
|
|
@@ -63615,20 +63570,20 @@ var RelationshipEnd;
|
|
|
63615
63570
|
(function (RelationshipEnd) {
|
|
63616
63571
|
RelationshipEnd[RelationshipEnd["Source"] = 0] = "Source";
|
|
63617
63572
|
RelationshipEnd[RelationshipEnd["Target"] = 1] = "Target";
|
|
63618
|
-
})(RelationshipEnd
|
|
63573
|
+
})(RelationshipEnd || (exports.RelationshipEnd = RelationshipEnd = {}));
|
|
63619
63574
|
/** @beta */
|
|
63620
63575
|
var StrengthType;
|
|
63621
63576
|
(function (StrengthType) {
|
|
63622
63577
|
StrengthType[StrengthType["Referencing"] = 0] = "Referencing";
|
|
63623
63578
|
StrengthType[StrengthType["Holding"] = 1] = "Holding";
|
|
63624
63579
|
StrengthType[StrengthType["Embedding"] = 2] = "Embedding";
|
|
63625
|
-
})(StrengthType
|
|
63580
|
+
})(StrengthType || (exports.StrengthType = StrengthType = {}));
|
|
63626
63581
|
/** @beta */
|
|
63627
63582
|
var StrengthDirection;
|
|
63628
63583
|
(function (StrengthDirection) {
|
|
63629
63584
|
StrengthDirection[StrengthDirection["Forward"] = 1] = "Forward";
|
|
63630
63585
|
StrengthDirection[StrengthDirection["Backward"] = 2] = "Backward";
|
|
63631
|
-
})(StrengthDirection
|
|
63586
|
+
})(StrengthDirection || (exports.StrengthDirection = StrengthDirection = {}));
|
|
63632
63587
|
// Helper methods for going to/from string for the above Enumerations.
|
|
63633
63588
|
/**
|
|
63634
63589
|
* Parses the provided string into an ECClassModifier if the string is a valid modifier.
|
|
@@ -63999,7 +63954,7 @@ var ECObjectsStatus;
|
|
|
63999
63954
|
ECObjectsStatus[ECObjectsStatus["InvalidSchemaAlias"] = 35078] = "InvalidSchemaAlias";
|
|
64000
63955
|
ECObjectsStatus[ECObjectsStatus["InvalidSchemaKey"] = 35079] = "InvalidSchemaKey";
|
|
64001
63956
|
ECObjectsStatus[ECObjectsStatus["UnableToLoadSchema"] = 35080] = "UnableToLoadSchema";
|
|
64002
|
-
})(ECObjectsStatus
|
|
63957
|
+
})(ECObjectsStatus || (exports.ECObjectsStatus = ECObjectsStatus = {}));
|
|
64003
63958
|
/** @internal */
|
|
64004
63959
|
class ECObjectsError extends core_bentley_1.BentleyError {
|
|
64005
63960
|
constructor(errorNumber, message) {
|
|
@@ -65096,7 +65051,7 @@ async function createNavigationProperty(ecClass, name, relationship, direction)
|
|
|
65096
65051
|
else
|
|
65097
65052
|
resolvedRelationship = relationship;
|
|
65098
65053
|
if (!resolvedRelationship)
|
|
65099
|
-
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidType, `The provided RelationshipClass, ${relationship}, is not a valid RelationshipClassInterface.`);
|
|
65054
|
+
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidType, `The provided RelationshipClass, ${relationship}, is not a valid RelationshipClassInterface.`); // eslint-disable-line @typescript-eslint/no-base-to-string
|
|
65100
65055
|
if (typeof (direction) === "string") {
|
|
65101
65056
|
const tmpDirection = (0, ECObjects_1.parseStrengthDirection)(direction);
|
|
65102
65057
|
if (undefined === tmpDirection)
|
|
@@ -65118,7 +65073,7 @@ function createNavigationPropertySync(ecClass, name, relationship, direction) {
|
|
|
65118
65073
|
else
|
|
65119
65074
|
resolvedRelationship = relationship;
|
|
65120
65075
|
if (!resolvedRelationship)
|
|
65121
|
-
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidType, `The provided RelationshipClass, ${relationship}, is not a valid RelationshipClassInterface.`);
|
|
65076
|
+
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidType, `The provided RelationshipClass, ${relationship}, is not a valid RelationshipClassInterface.`); // eslint-disable-line @typescript-eslint/no-base-to-string
|
|
65122
65077
|
if (typeof (direction) === "string") {
|
|
65123
65078
|
const tmpDirection = (0, ECObjects_1.parseStrengthDirection)(direction);
|
|
65124
65079
|
if (undefined === tmpDirection)
|
|
@@ -67090,6 +67045,7 @@ class RelationshipConstraint {
|
|
|
67090
67045
|
this._constraintClasses.forEach((item, index) => {
|
|
67091
67046
|
const constraintName = item.fullName;
|
|
67092
67047
|
if (constraintName === constraint.fullName)
|
|
67048
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
67093
67049
|
this._constraintClasses?.splice(index, 1);
|
|
67094
67050
|
});
|
|
67095
67051
|
}
|
|
@@ -67279,11 +67235,11 @@ class RelationshipMultiplicity {
|
|
|
67279
67235
|
return `(${this.lowerLimit}..${this.upperLimit === INT32_MAX ? "*" : this.upperLimit})`;
|
|
67280
67236
|
}
|
|
67281
67237
|
}
|
|
67238
|
+
exports.RelationshipMultiplicity = RelationshipMultiplicity;
|
|
67282
67239
|
RelationshipMultiplicity.zeroOne = new RelationshipMultiplicity(0, 1);
|
|
67283
67240
|
RelationshipMultiplicity.zeroMany = new RelationshipMultiplicity(0, INT32_MAX);
|
|
67284
67241
|
RelationshipMultiplicity.oneOne = new RelationshipMultiplicity(1, 1);
|
|
67285
67242
|
RelationshipMultiplicity.oneMany = new RelationshipMultiplicity(1, INT32_MAX);
|
|
67286
|
-
exports.RelationshipMultiplicity = RelationshipMultiplicity;
|
|
67287
67243
|
/**
|
|
67288
67244
|
* @internal
|
|
67289
67245
|
* An abstract class used for schema editing.
|
|
@@ -68271,7 +68227,7 @@ var PropertyType;
|
|
|
68271
68227
|
PropertyType[PropertyType["String_Enumeration_Array"] = 2325] = "String_Enumeration_Array";
|
|
68272
68228
|
PropertyType[PropertyType["IGeometry"] = 2561] = "IGeometry";
|
|
68273
68229
|
PropertyType[PropertyType["IGeometry_Array"] = 2565] = "IGeometry_Array";
|
|
68274
|
-
})(PropertyType
|
|
68230
|
+
})(PropertyType || (exports.PropertyType = PropertyType = {}));
|
|
68275
68231
|
/** @beta */
|
|
68276
68232
|
var PropertyTypeUtils;
|
|
68277
68233
|
(function (PropertyTypeUtils) {
|
|
@@ -68307,7 +68263,7 @@ var PropertyTypeUtils;
|
|
|
68307
68263
|
return t | 0;
|
|
68308
68264
|
}
|
|
68309
68265
|
PropertyTypeUtils.fromPrimitiveType = fromPrimitiveType;
|
|
68310
|
-
})(PropertyTypeUtils
|
|
68266
|
+
})(PropertyTypeUtils || (exports.PropertyTypeUtils = PropertyTypeUtils = {}));
|
|
68311
68267
|
/** @beta */
|
|
68312
68268
|
function propertyTypeToString(type) {
|
|
68313
68269
|
if (PropertyTypeUtils.isPrimitive(type))
|
|
@@ -69132,9 +69088,9 @@ class UnitConversion {
|
|
|
69132
69088
|
return new UnitConversion(unit.denominator / unit.numerator, 0.0);
|
|
69133
69089
|
}
|
|
69134
69090
|
}
|
|
69091
|
+
exports.UnitConversion = UnitConversion;
|
|
69135
69092
|
/** @internal */
|
|
69136
69093
|
UnitConversion.identity = new UnitConversion();
|
|
69137
|
-
exports.UnitConversion = UnitConversion;
|
|
69138
69094
|
|
|
69139
69095
|
|
|
69140
69096
|
/***/ }),
|
|
@@ -70046,6 +70002,7 @@ class ECSchemaRpcInterface extends core_common_1.RpcInterface {
|
|
|
70046
70002
|
return this.forward.apply(this, [arguments]);
|
|
70047
70003
|
}
|
|
70048
70004
|
}
|
|
70005
|
+
exports.ECSchemaRpcInterface = ECSchemaRpcInterface;
|
|
70049
70006
|
/** The version of the RPC Interface. */
|
|
70050
70007
|
ECSchemaRpcInterface.version = "2.0.0";
|
|
70051
70008
|
ECSchemaRpcInterface.interfaceName = "ECSchemaRpcInterface";
|
|
@@ -70053,7 +70010,6 @@ ECSchemaRpcInterface.interfaceVersion = ECSchemaRpcInterface.version;
|
|
|
70053
70010
|
__decorate([
|
|
70054
70011
|
core_common_1.RpcOperation.setPolicy({ allowResponseCompression: true })
|
|
70055
70012
|
], ECSchemaRpcInterface.prototype, "getSchemaJSON", null);
|
|
70056
|
-
exports.ECSchemaRpcInterface = ECSchemaRpcInterface;
|
|
70057
70013
|
|
|
70058
70014
|
|
|
70059
70015
|
/***/ }),
|
|
@@ -72904,7 +72860,6 @@ class AccuDraw {
|
|
|
72904
72860
|
}
|
|
72905
72861
|
}
|
|
72906
72862
|
AccuDraw._tempRot = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d();
|
|
72907
|
-
|
|
72908
72863
|
/** Specify the rotation to return from [[AccuDrawHintBuilder.getContextRotation]].
|
|
72909
72864
|
* @public
|
|
72910
72865
|
* @extensions
|
|
@@ -74359,7 +74314,6 @@ class ApproximateTerrainHeights {
|
|
|
74359
74314
|
ApproximateTerrainHeights.maxLevel = 6;
|
|
74360
74315
|
|
|
74361
74316
|
|
|
74362
|
-
|
|
74363
74317
|
/***/ }),
|
|
74364
74318
|
|
|
74365
74319
|
/***/ "../../core/frontend/lib/esm/AuxCoordSys.js":
|
|
@@ -75127,7 +75081,6 @@ BackgroundMapGeometry._transitionDistanceMultiplier = .25; // In the transition
|
|
|
75127
75081
|
BackgroundMapGeometry._scratchRayFractions = new Array();
|
|
75128
75082
|
BackgroundMapGeometry._scratchRayAngles = new Array();
|
|
75129
75083
|
BackgroundMapGeometry._scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.createZero();
|
|
75130
|
-
|
|
75131
75084
|
/** Calculate the ECEF to database (IModel) coordinate transform at a provided location, using the GCS of the iModel.
|
|
75132
75085
|
* The transform will exactly represent the GCS at the provided location.
|
|
75133
75086
|
* @public
|
|
@@ -75580,6 +75533,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
75580
75533
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
75581
75534
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
75582
75535
|
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
75536
|
+
/* harmony import */ var _TxnEntityChanges__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./TxnEntityChanges */ "../../core/frontend/lib/esm/TxnEntityChanges.js");
|
|
75583
75537
|
/*---------------------------------------------------------------------------------------------
|
|
75584
75538
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
75585
75539
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -75591,6 +75545,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
75591
75545
|
|
|
75592
75546
|
|
|
75593
75547
|
|
|
75548
|
+
|
|
75594
75549
|
/**
|
|
75595
75550
|
* Base class for notification handlers for events from the backend that are specific to a [[BriefcaseConnection]].
|
|
75596
75551
|
* @see [[BriefcaseTxns]].
|
|
@@ -75766,11 +75721,11 @@ class BriefcaseTxns extends BriefcaseNotificationHandler {
|
|
|
75766
75721
|
}
|
|
75767
75722
|
/** @internal */
|
|
75768
75723
|
notifyElementsChanged(changed) {
|
|
75769
|
-
this.onElementsChanged.raiseEvent(changed);
|
|
75724
|
+
this.onElementsChanged.raiseEvent(new _TxnEntityChanges__WEBPACK_IMPORTED_MODULE_4__.EntityChanges(changed));
|
|
75770
75725
|
}
|
|
75771
75726
|
/** @internal */
|
|
75772
75727
|
notifyModelsChanged(changed) {
|
|
75773
|
-
this.onModelsChanged.raiseEvent(changed);
|
|
75728
|
+
this.onModelsChanged.raiseEvent(new _TxnEntityChanges__WEBPACK_IMPORTED_MODULE_4__.EntityChanges(changed));
|
|
75774
75729
|
}
|
|
75775
75730
|
/** @internal */
|
|
75776
75731
|
notifyGeometryGuidsChanged(changes) {
|
|
@@ -77754,7 +77709,6 @@ DrawingViewState.alwaysDisplaySpatialView = false;
|
|
|
77754
77709
|
DrawingViewState.hideDrawingGraphics = false;
|
|
77755
77710
|
|
|
77756
77711
|
|
|
77757
|
-
|
|
77758
77712
|
/***/ }),
|
|
77759
77713
|
|
|
77760
77714
|
/***/ "../../core/frontend/lib/esm/ElementLocateManager.js":
|
|
@@ -79324,7 +79278,7 @@ class FrustumAnimator {
|
|
|
79324
79278
|
start: true,
|
|
79325
79279
|
easing: options.easingFunction ? options.easingFunction : settings.easing,
|
|
79326
79280
|
interpolation: zoomSettings.interpolation,
|
|
79327
|
-
onComplete: () => viewport.setupFromView(end),
|
|
79281
|
+
onComplete: () => viewport.setupFromView(end), // when we're done, set up from final state
|
|
79328
79282
|
onUpdate: () => {
|
|
79329
79283
|
const fraction = extentBias ? timing.position : timing.fraction; // if we're zooming, fraction comes from position interpolation
|
|
79330
79284
|
const rot = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Matrix3d.createRotationAroundVector(axis.axis, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Angle.createDegrees(fraction * axis.angle.degrees)).multiplyMatrixMatrix(begin.rotation);
|
|
@@ -80250,7 +80204,6 @@ class GraphicalEditingScope extends _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
80250
80204
|
GraphicalEditingScope.onEnter = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
80251
80205
|
|
|
80252
80206
|
|
|
80253
|
-
|
|
80254
80207
|
/***/ }),
|
|
80255
80208
|
|
|
80256
80209
|
/***/ "../../core/frontend/lib/esm/HitDetail.js":
|
|
@@ -81122,7 +81075,7 @@ class IModelApp {
|
|
|
81122
81075
|
this.onBeforeShutdown.clear();
|
|
81123
81076
|
if (false) {}
|
|
81124
81077
|
this._wantEventLoop = false;
|
|
81125
|
-
window.removeEventListener("resize", () =>
|
|
81078
|
+
window.removeEventListener("resize", () => _a.requestNextAnimation());
|
|
81126
81079
|
this.clearIntervalAnimation();
|
|
81127
81080
|
[this.toolAdmin, this.viewManager, this.tileAdmin].forEach((sys) => sys.onShutDown());
|
|
81128
81081
|
this.tools.shutdown();
|
|
@@ -81140,14 +81093,14 @@ class IModelApp {
|
|
|
81140
81093
|
* @param interval The interval at which to poll for changes. If undefined (or negative), the application will never poll. If zero, the application will poll as frequently as possible.
|
|
81141
81094
|
* @beta
|
|
81142
81095
|
*/
|
|
81143
|
-
static get animationInterval() { return
|
|
81096
|
+
static get animationInterval() { return _a._animationInterval; }
|
|
81144
81097
|
static set animationInterval(interval) {
|
|
81145
81098
|
if (undefined !== interval && interval.isTowardsPast)
|
|
81146
81099
|
interval = undefined;
|
|
81147
|
-
if (interval !==
|
|
81148
|
-
|
|
81149
|
-
if (
|
|
81150
|
-
|
|
81100
|
+
if (interval !== _a._animationInterval) {
|
|
81101
|
+
_a._animationInterval = interval;
|
|
81102
|
+
if (_a._wantEventLoop)
|
|
81103
|
+
_a.requestIntervalAnimation();
|
|
81151
81104
|
}
|
|
81152
81105
|
}
|
|
81153
81106
|
/** Request that the event loop execute on the next [animation frame](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
|
|
@@ -81155,35 +81108,35 @@ class IModelApp {
|
|
|
81155
81108
|
*/
|
|
81156
81109
|
static requestNextAnimation() {
|
|
81157
81110
|
// Only want to call requestAnimationFrame if it is defined. Need to check whether current iModelApp is a NoRenderApp.
|
|
81158
|
-
if (
|
|
81111
|
+
if (_a._noRender)
|
|
81159
81112
|
return;
|
|
81160
|
-
if (!
|
|
81161
|
-
|
|
81162
|
-
requestAnimationFrame(() =>
|
|
81113
|
+
if (!_a._animationRequested) {
|
|
81114
|
+
_a._animationRequested = true;
|
|
81115
|
+
requestAnimationFrame(() => _a.eventLoop());
|
|
81163
81116
|
}
|
|
81164
81117
|
}
|
|
81165
81118
|
/** @internal */
|
|
81166
81119
|
static clearIntervalAnimation() {
|
|
81167
|
-
if (undefined !==
|
|
81168
|
-
window.clearInterval(
|
|
81169
|
-
|
|
81120
|
+
if (undefined !== _a._animationIntervalId) {
|
|
81121
|
+
window.clearInterval(_a._animationIntervalId);
|
|
81122
|
+
_a._animationIntervalId = undefined;
|
|
81170
81123
|
}
|
|
81171
81124
|
}
|
|
81172
81125
|
/** @internal */
|
|
81173
81126
|
static requestIntervalAnimation() {
|
|
81174
|
-
|
|
81175
|
-
if (undefined !==
|
|
81176
|
-
|
|
81177
|
-
|
|
81178
|
-
},
|
|
81127
|
+
_a.clearIntervalAnimation();
|
|
81128
|
+
if (undefined !== _a.animationInterval)
|
|
81129
|
+
_a._animationIntervalId = window.setInterval(() => {
|
|
81130
|
+
_a.requestNextAnimation();
|
|
81131
|
+
}, _a.animationInterval.milliseconds);
|
|
81179
81132
|
}
|
|
81180
81133
|
/** @internal */
|
|
81181
81134
|
static startEventLoop() {
|
|
81182
|
-
if (!
|
|
81183
|
-
|
|
81184
|
-
window.addEventListener("resize", () =>
|
|
81185
|
-
|
|
81186
|
-
|
|
81135
|
+
if (!_a._wantEventLoop) {
|
|
81136
|
+
_a._wantEventLoop = true;
|
|
81137
|
+
window.addEventListener("resize", () => _a.requestNextAnimation());
|
|
81138
|
+
_a.requestIntervalAnimation();
|
|
81139
|
+
_a.requestNextAnimation();
|
|
81187
81140
|
}
|
|
81188
81141
|
}
|
|
81189
81142
|
/** Strictly for tests. @internal */
|
|
@@ -81192,19 +81145,19 @@ class IModelApp {
|
|
|
81192
81145
|
}
|
|
81193
81146
|
/** The main event processing loop for Tools and rendering. */
|
|
81194
81147
|
static eventLoop() {
|
|
81195
|
-
|
|
81196
|
-
if (!
|
|
81148
|
+
_a._animationRequested = false;
|
|
81149
|
+
if (!_a._wantEventLoop) // flag turned on at startup
|
|
81197
81150
|
return;
|
|
81198
81151
|
try {
|
|
81199
|
-
|
|
81200
|
-
|
|
81201
|
-
|
|
81152
|
+
_a.toolAdmin.processEvent(); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
81153
|
+
_a.viewManager.renderLoop();
|
|
81154
|
+
_a.tileAdmin.process();
|
|
81202
81155
|
}
|
|
81203
81156
|
catch (exception) {
|
|
81204
81157
|
_tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_34__.ToolAdmin.exceptionHandler(exception); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
81205
|
-
|
|
81206
|
-
|
|
81207
|
-
window.removeEventListener("resize", () =>
|
|
81158
|
+
_a._wantEventLoop = false;
|
|
81159
|
+
_a._animationRequested = true; // unrecoverable after exception, don't request any further frames.
|
|
81160
|
+
window.removeEventListener("resize", () => _a.requestNextAnimation());
|
|
81208
81161
|
}
|
|
81209
81162
|
}
|
|
81210
81163
|
/** Get the user's access token for this IModelApp, or a blank string if none is available.
|
|
@@ -81234,7 +81187,7 @@ class IModelApp {
|
|
|
81234
81187
|
sessionId: this.sessionId,
|
|
81235
81188
|
authorization: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_2__.ProcessDetector.isMobileAppFrontend ? "" : await this.getAccessToken(),
|
|
81236
81189
|
};
|
|
81237
|
-
const csrf =
|
|
81190
|
+
const csrf = _a.securityOptions.csrfProtection;
|
|
81238
81191
|
if (csrf && csrf.enabled) {
|
|
81239
81192
|
const cookieName = csrf.cookieName || "XSRF-TOKEN";
|
|
81240
81193
|
const cookieValue = document.cookie.split("; ").find((r) => r.startsWith(`${cookieName}=`));
|
|
@@ -81271,7 +81224,7 @@ class IModelApp {
|
|
|
81271
81224
|
static makeModalDiv(options) {
|
|
81272
81225
|
const root = options.rootDiv ? options.rootDiv : document.body;
|
|
81273
81226
|
// create the overlay div to "black out" the application to indicate everything is inactive until the modal has been dismissed.
|
|
81274
|
-
const overlay =
|
|
81227
|
+
const overlay = _a.makeHTMLElement("div", { parent: root, className: "imodeljs-modal-overlay" });
|
|
81275
81228
|
overlay.tabIndex = -1; // so we can catch keystroke events
|
|
81276
81229
|
// function to remove modal dialog
|
|
81277
81230
|
const stop = (ev) => {
|
|
@@ -81291,14 +81244,14 @@ class IModelApp {
|
|
|
81291
81244
|
};
|
|
81292
81245
|
overlay.focus();
|
|
81293
81246
|
}
|
|
81294
|
-
const modal =
|
|
81247
|
+
const modal = _a.makeHTMLElement("div", { parent: overlay, className: "imodeljs-modal" });
|
|
81295
81248
|
if (undefined !== options.width) {
|
|
81296
81249
|
modal.style.width = `${options.width}px`;
|
|
81297
81250
|
// allow the dialog to be smaller than the width
|
|
81298
81251
|
modal.style.maxWidth = `min(100% - (2 * var(--width-border)), ${options.width}px)`;
|
|
81299
81252
|
}
|
|
81300
81253
|
if (options.closeBox) {
|
|
81301
|
-
const close =
|
|
81254
|
+
const close = _a.makeHTMLElement("p", { parent: modal, className: "imodeljs-modal-close" });
|
|
81302
81255
|
close.innerText = "\u00d7"; // unicode "times" symbol
|
|
81303
81256
|
close.onclick = stop;
|
|
81304
81257
|
}
|
|
@@ -81309,27 +81262,27 @@ class IModelApp {
|
|
|
81309
81262
|
* @beta
|
|
81310
81263
|
*/
|
|
81311
81264
|
static makeLogoCard(opts) {
|
|
81312
|
-
const card =
|
|
81313
|
-
const iconCell =
|
|
81265
|
+
const card = _a.makeHTMLElement("tr");
|
|
81266
|
+
const iconCell = _a.makeHTMLElement("td", { parent: card, className: "logo-card-logo" });
|
|
81314
81267
|
if (undefined !== opts.iconSrc) {
|
|
81315
81268
|
if (typeof opts.iconSrc === "string") {
|
|
81316
|
-
const logo =
|
|
81269
|
+
const logo = _a.makeHTMLElement("img");
|
|
81317
81270
|
logo.src = opts.iconSrc;
|
|
81318
81271
|
logo.width = opts.iconWidth ? opts.iconWidth : 64;
|
|
81319
81272
|
opts.iconSrc = logo;
|
|
81320
81273
|
}
|
|
81321
81274
|
iconCell.appendChild(opts.iconSrc);
|
|
81322
81275
|
}
|
|
81323
|
-
const noticeCell =
|
|
81276
|
+
const noticeCell = _a.makeHTMLElement("td", { parent: card, className: "logo-card-message" });
|
|
81324
81277
|
if (undefined !== opts.heading) {
|
|
81325
81278
|
if (typeof opts.heading === "string")
|
|
81326
|
-
|
|
81279
|
+
_a.makeHTMLElement("h2", { parent: noticeCell, innerHTML: opts.heading, className: "logo-card-header" });
|
|
81327
81280
|
else
|
|
81328
81281
|
noticeCell.appendChild(opts.heading);
|
|
81329
81282
|
}
|
|
81330
81283
|
if (undefined !== opts.notice) {
|
|
81331
81284
|
if (typeof opts.notice === "string")
|
|
81332
|
-
|
|
81285
|
+
_a.makeHTMLElement("p", { parent: noticeCell, innerHTML: opts.notice, className: "logo-cards" });
|
|
81333
81286
|
else
|
|
81334
81287
|
noticeCell.appendChild(opts.notice);
|
|
81335
81288
|
}
|
|
@@ -81350,7 +81303,7 @@ class IModelApp {
|
|
|
81350
81303
|
*/
|
|
81351
81304
|
static formatElementToolTip(msg) {
|
|
81352
81305
|
let out = "";
|
|
81353
|
-
msg.forEach((line) => out += `${
|
|
81306
|
+
msg.forEach((line) => out += `${_a.localization?.getLocalizedKeys(line)}<br>`);
|
|
81354
81307
|
const div = document.createElement("div");
|
|
81355
81308
|
div.innerHTML = out;
|
|
81356
81309
|
return div;
|
|
@@ -81383,7 +81336,7 @@ class IModelApp {
|
|
|
81383
81336
|
*/
|
|
81384
81337
|
static _createExtensionAdmin() {
|
|
81385
81338
|
const extensionAdmin = new _extension_ExtensionAdmin__WEBPACK_IMPORTED_MODULE_11__.ExtensionAdmin();
|
|
81386
|
-
|
|
81339
|
+
_a.onAfterStartup.addListener(extensionAdmin.onStartup);
|
|
81387
81340
|
return extensionAdmin;
|
|
81388
81341
|
}
|
|
81389
81342
|
}
|
|
@@ -81408,7 +81361,6 @@ IModelApp.extensionAdmin = _a._createExtensionAdmin();
|
|
|
81408
81361
|
IModelApp._entityClasses = new Map();
|
|
81409
81362
|
|
|
81410
81363
|
|
|
81411
|
-
|
|
81412
81364
|
/***/ }),
|
|
81413
81365
|
|
|
81414
81366
|
/***/ "../../core/frontend/lib/esm/IModelConnection.js":
|
|
@@ -81974,7 +81926,6 @@ IModelConnection.connectionTimeout = 10 * 60 * 1000;
|
|
|
81974
81926
|
IModelConnection.onClose = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
81975
81927
|
/** Event called immediately after *any* IModelConnection is opened. */
|
|
81976
81928
|
IModelConnection.onOpen = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
81977
|
-
|
|
81978
81929
|
/** A connection that exists without an iModel. Useful for connecting to Reality Data services.
|
|
81979
81930
|
* @note This class exists because our display system requires an IModelConnection type even if only reality data is drawn.
|
|
81980
81931
|
* @public
|
|
@@ -82563,7 +82514,6 @@ class IModelRoutingContext {
|
|
|
82563
82514
|
IModelRoutingContext.default = new IModelRoutingContext(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcRoutingToken["default"]);
|
|
82564
82515
|
|
|
82565
82516
|
|
|
82566
|
-
|
|
82567
82517
|
/***/ }),
|
|
82568
82518
|
|
|
82569
82519
|
/***/ "../../core/frontend/lib/esm/IModeljs-css.js":
|
|
@@ -82869,7 +82819,6 @@ class IpcApp {
|
|
|
82869
82819
|
}
|
|
82870
82820
|
/** A Proxy to call one of the [IpcAppFunctions]($common) functions via IPC. */
|
|
82871
82821
|
IpcApp.appFunctionIpc = IpcApp.makeIpcProxy(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.ipcAppChannels.functions);
|
|
82872
|
-
|
|
82873
82822
|
/**
|
|
82874
82823
|
* Base class for all implementations of an Ipc notification response interface. This class is implemented on your frontend to supply
|
|
82875
82824
|
* methods to receive notifications from your backend.
|
|
@@ -83046,7 +82995,6 @@ class LocalhostIpcApp {
|
|
|
83046
82995
|
LocalhostIpcApp._initialized = false;
|
|
83047
82996
|
|
|
83048
82997
|
|
|
83049
|
-
|
|
83050
82998
|
/***/ }),
|
|
83051
82999
|
|
|
83052
83000
|
/***/ "../../core/frontend/lib/esm/MarginPercent.js":
|
|
@@ -83941,7 +83889,7 @@ class NativeApp {
|
|
|
83941
83889
|
return;
|
|
83942
83890
|
this._isValid = true;
|
|
83943
83891
|
this._removeAppNotify = NativeAppNotifyHandler.register(); // receives notifications from backend
|
|
83944
|
-
|
|
83892
|
+
_a.hookBrowserConnectivityEvents();
|
|
83945
83893
|
// initialize current online state.
|
|
83946
83894
|
if (window.navigator.onLine) {
|
|
83947
83895
|
await this.setConnectivity(_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.OverriddenBy.Browser, window.navigator.onLine ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.InternetConnectivityStatus.Online : _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.InternetConnectivityStatus.Offline);
|
|
@@ -83950,7 +83898,7 @@ class NativeApp {
|
|
|
83950
83898
|
/** @internal */
|
|
83951
83899
|
static async shutdown() {
|
|
83952
83900
|
this._removeAppNotify?.();
|
|
83953
|
-
|
|
83901
|
+
_a.unhookBrowserConnectivityEvents();
|
|
83954
83902
|
await _NativeAppLogger__WEBPACK_IMPORTED_MODULE_4__.NativeAppLogger.flush();
|
|
83955
83903
|
await _IpcApp__WEBPACK_IMPORTED_MODULE_3__.IpcApp.shutdown();
|
|
83956
83904
|
this._isValid = false;
|
|
@@ -84024,7 +83972,7 @@ class NativeApp {
|
|
|
84024
83972
|
}
|
|
84025
83973
|
/** Get the list of existing Storages on the local disk. */
|
|
84026
83974
|
static async getStorageNames() {
|
|
84027
|
-
return
|
|
83975
|
+
return _a.nativeAppIpc.storageMgrNames();
|
|
84028
83976
|
}
|
|
84029
83977
|
}
|
|
84030
83978
|
_a = NativeApp;
|
|
@@ -84032,15 +83980,14 @@ _a = NativeApp;
|
|
|
84032
83980
|
NativeApp.nativeAppIpc = _IpcApp__WEBPACK_IMPORTED_MODULE_3__.IpcApp.makeIpcProxy(_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.nativeAppIpcStrings.channelName);
|
|
84033
83981
|
NativeApp._storages = new Map();
|
|
84034
83982
|
NativeApp._onOnline = async () => {
|
|
84035
|
-
await
|
|
83983
|
+
await _a.setConnectivity(_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.OverriddenBy.Browser, _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.InternetConnectivityStatus.Online);
|
|
84036
83984
|
};
|
|
84037
83985
|
NativeApp._onOffline = async () => {
|
|
84038
|
-
await
|
|
83986
|
+
await _a.setConnectivity(_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.OverriddenBy.Browser, _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.InternetConnectivityStatus.Offline);
|
|
84039
83987
|
};
|
|
84040
83988
|
/** event called when internet connectivity changes, if known */
|
|
84041
83989
|
NativeApp.onInternetConnectivityChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
84042
83990
|
NativeApp._isValid = false;
|
|
84043
|
-
|
|
84044
83991
|
/**
|
|
84045
83992
|
* A local disk-based cache for key value pairs for NativeApps.
|
|
84046
83993
|
* @note This should be used only for local caching, since its not guaranteed to exist permanently.
|
|
@@ -84169,7 +84116,6 @@ class NativeAppLogger {
|
|
|
84169
84116
|
NativeAppLogger._messages = [];
|
|
84170
84117
|
|
|
84171
84118
|
|
|
84172
|
-
|
|
84173
84119
|
/***/ }),
|
|
84174
84120
|
|
|
84175
84121
|
/***/ "../../core/frontend/lib/esm/NoRenderApp.js":
|
|
@@ -87271,7 +87217,6 @@ class IconSprites {
|
|
|
87271
87217
|
static emptyAll() { this._sprites.clear(); }
|
|
87272
87218
|
}
|
|
87273
87219
|
IconSprites._sprites = new Map();
|
|
87274
|
-
|
|
87275
87220
|
/** A Sprite location. Sprites generally move around on the screen and this object holds the current location
|
|
87276
87221
|
* and current Sprite within a ScreenViewport. SpriteLocations can be either inactive (not visible) or active.
|
|
87277
87222
|
*
|
|
@@ -88198,6 +88143,96 @@ class Tiles {
|
|
|
88198
88143
|
}
|
|
88199
88144
|
|
|
88200
88145
|
|
|
88146
|
+
/***/ }),
|
|
88147
|
+
|
|
88148
|
+
/***/ "../../core/frontend/lib/esm/TxnEntityChanges.js":
|
|
88149
|
+
/*!*******************************************************!*\
|
|
88150
|
+
!*** ../../core/frontend/lib/esm/TxnEntityChanges.js ***!
|
|
88151
|
+
\*******************************************************/
|
|
88152
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
88153
|
+
|
|
88154
|
+
"use strict";
|
|
88155
|
+
__webpack_require__.r(__webpack_exports__);
|
|
88156
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
88157
|
+
/* harmony export */ "EntityChanges": () => (/* binding */ EntityChanges),
|
|
88158
|
+
/* harmony export */ "Metadata": () => (/* binding */ Metadata)
|
|
88159
|
+
/* harmony export */ });
|
|
88160
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
88161
|
+
/*---------------------------------------------------------------------------------------------
|
|
88162
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
88163
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
88164
|
+
*--------------------------------------------------------------------------------------------*/
|
|
88165
|
+
/** @packageDocumentation
|
|
88166
|
+
* @module IModelConnection
|
|
88167
|
+
*/
|
|
88168
|
+
|
|
88169
|
+
class Metadata {
|
|
88170
|
+
constructor(name) {
|
|
88171
|
+
this.baseClasses = [];
|
|
88172
|
+
this.classFullName = name;
|
|
88173
|
+
}
|
|
88174
|
+
is(baseName) {
|
|
88175
|
+
return baseName === this.classFullName || this.baseClasses.some((base) => base.is(baseName));
|
|
88176
|
+
}
|
|
88177
|
+
}
|
|
88178
|
+
function* entityChangesIterator(changes, options) {
|
|
88179
|
+
let excludedMetaIndices;
|
|
88180
|
+
if (options?.includeMetadata) {
|
|
88181
|
+
for (let i = 0; i < changes.metadata.length; i++) {
|
|
88182
|
+
if (!options.includeMetadata(changes.metadata[i])) {
|
|
88183
|
+
excludedMetaIndices = excludedMetaIndices ?? new Set();
|
|
88184
|
+
excludedMetaIndices.add(i);
|
|
88185
|
+
}
|
|
88186
|
+
}
|
|
88187
|
+
}
|
|
88188
|
+
function* process(type) {
|
|
88189
|
+
if (options?.includeTypes && !options.includeTypes.includes(type)) {
|
|
88190
|
+
return;
|
|
88191
|
+
}
|
|
88192
|
+
const ids = changes[type];
|
|
88193
|
+
if (undefined === ids) {
|
|
88194
|
+
return;
|
|
88195
|
+
}
|
|
88196
|
+
const metaIndices = changes.args[`${type}Meta`];
|
|
88197
|
+
let index = 0;
|
|
88198
|
+
for (const id of _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.CompressedId64Set.iterable(ids)) {
|
|
88199
|
+
const metaIndex = metaIndices[index++];
|
|
88200
|
+
if (excludedMetaIndices && excludedMetaIndices.has(metaIndex)) {
|
|
88201
|
+
continue;
|
|
88202
|
+
}
|
|
88203
|
+
const metadata = changes.metadata[metaIndex];
|
|
88204
|
+
yield { type, id, metadata };
|
|
88205
|
+
}
|
|
88206
|
+
}
|
|
88207
|
+
yield* process("inserted");
|
|
88208
|
+
yield* process("deleted");
|
|
88209
|
+
yield* process("updated");
|
|
88210
|
+
}
|
|
88211
|
+
class EntityChanges {
|
|
88212
|
+
constructor(args) {
|
|
88213
|
+
this.args = args;
|
|
88214
|
+
this.metadata = args.meta.map((x) => new Metadata(x.name));
|
|
88215
|
+
for (let i = 0; i < this.metadata.length; i++) {
|
|
88216
|
+
const meta = this.metadata[i];
|
|
88217
|
+
for (const baseIndex of args.meta[i].bases) {
|
|
88218
|
+
meta.baseClasses.push(this.metadata[baseIndex]);
|
|
88219
|
+
}
|
|
88220
|
+
}
|
|
88221
|
+
}
|
|
88222
|
+
get inserted() { return this.args.inserted; }
|
|
88223
|
+
get deleted() { return this.args.deleted; }
|
|
88224
|
+
get updated() { return this.args.updated; }
|
|
88225
|
+
[Symbol.iterator]() {
|
|
88226
|
+
return entityChangesIterator(this);
|
|
88227
|
+
}
|
|
88228
|
+
filter(options) {
|
|
88229
|
+
return {
|
|
88230
|
+
[Symbol.iterator]: () => entityChangesIterator(this, options),
|
|
88231
|
+
};
|
|
88232
|
+
}
|
|
88233
|
+
}
|
|
88234
|
+
|
|
88235
|
+
|
|
88201
88236
|
/***/ }),
|
|
88202
88237
|
|
|
88203
88238
|
/***/ "../../core/frontend/lib/esm/UserPreferences.js":
|
|
@@ -88938,7 +88973,6 @@ ViewCreator2d._drawingModelClasses = [_ModelState__WEBPACK_IMPORTED_MODULE_4__.D
|
|
|
88938
88973
|
ViewCreator2d._sheetModelClasses = [_ModelState__WEBPACK_IMPORTED_MODULE_4__.SheetModelState.classFullName];
|
|
88939
88974
|
|
|
88940
88975
|
|
|
88941
|
-
|
|
88942
88976
|
/***/ }),
|
|
88943
88977
|
|
|
88944
88978
|
/***/ "../../core/frontend/lib/esm/ViewCreator3d.js":
|
|
@@ -89185,7 +89219,6 @@ ViewGlobalLocationConstants.satelliteHeightAboveEarthInMeters = 402336.0 * 24;
|
|
|
89185
89219
|
ViewGlobalLocationConstants.largestEarthArc = 20037500.0; // distance from point on earth to opposite point in meters
|
|
89186
89220
|
ViewGlobalLocationConstants.birdPitchAngleRadians = 0.0; // Angle.piOver4Radians;
|
|
89187
89221
|
ViewGlobalLocationConstants.maximumDistanceToDrive = 96560.6; // The distance in meters that we will "drive" instead of fly to a destination (60 miles)
|
|
89188
|
-
|
|
89189
89222
|
/** Converts a distance in meters to some range (smaller distances result in lower number; longer distances result in larger number)
|
|
89190
89223
|
* Uses 500 for minimum output and 3000 for maximum output, unless either are specified.
|
|
89191
89224
|
* Uses [[ViewGlobalLocationConstants.satelliteHeightAboveEarthInMeters]] as maximum input meters unless specified.
|
|
@@ -91679,7 +91712,6 @@ class ViewState3d extends ViewState {
|
|
|
91679
91712
|
}
|
|
91680
91713
|
ViewState3d._minGlobeEyeHeight = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Constant.earthRadiusWGS84.equator / 4; // View as globe if more than a quarter of earth radius from surface.
|
|
91681
91714
|
ViewState3d._scratchGlobeCarto = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Cartographic.createZero();
|
|
91682
|
-
|
|
91683
91715
|
/** Defines the state of a view of a single 2d model.
|
|
91684
91716
|
* @public
|
|
91685
91717
|
* @extensions
|
|
@@ -92297,7 +92329,6 @@ ViewingSpace.nearScaleLog24 = 1.0E-8;
|
|
|
92297
92329
|
ViewingSpace._minDepth = 1; // Allowing very small depth will cause frustum calculations to fail.
|
|
92298
92330
|
|
|
92299
92331
|
|
|
92300
|
-
|
|
92301
92332
|
/***/ }),
|
|
92302
92333
|
|
|
92303
92334
|
/***/ "../../core/frontend/lib/esm/Viewport.js":
|
|
@@ -93804,9 +93835,9 @@ class Viewport {
|
|
|
93804
93835
|
depthRange = { minimum: 0, maximum: 1 };
|
|
93805
93836
|
const middle = depthRange.minimum + ((depthRange.maximum - depthRange.minimum) / 2.0);
|
|
93806
93837
|
const corners = [
|
|
93807
|
-
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(0.0, 0.0, middle),
|
|
93808
|
-
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(1.0, 1.0, middle),
|
|
93809
|
-
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(0.0, 0.0, depthRange.maximum),
|
|
93838
|
+
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(0.0, 0.0, middle), // lower left, at target depth
|
|
93839
|
+
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(1.0, 1.0, middle), // upper right at target depth
|
|
93840
|
+
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(0.0, 0.0, depthRange.maximum), // lower left, at closest npc
|
|
93810
93841
|
new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d(1.0, 1.0, depthRange.maximum), // upper right at closest
|
|
93811
93842
|
];
|
|
93812
93843
|
this.npcToWorldArray(corners);
|
|
@@ -94690,7 +94721,6 @@ class Viewport {
|
|
|
94690
94721
|
}
|
|
94691
94722
|
/** Don't allow entries in the view undo buffer unless they're separated by more than this amount of time. */
|
|
94692
94723
|
Viewport.undoDelay = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(.5);
|
|
94693
|
-
|
|
94694
94724
|
/** An interactive Viewport that exists within an HTMLDivElement. ScreenViewports can receive HTML events.
|
|
94695
94725
|
* To render the contents of a ScreenViewport, it must be added to the [[ViewManager]] via ViewManager.addViewport().
|
|
94696
94726
|
* Every frame, the ViewManager will update the Viewport's state and re-render its contents if anything has changed.
|
|
@@ -95340,7 +95370,6 @@ ScreenViewport.animation = {
|
|
|
95340
95370
|
durationFactor: 1.5,
|
|
95341
95371
|
},
|
|
95342
95372
|
};
|
|
95343
|
-
|
|
95344
95373
|
function _clear2dCanvas(canvas) {
|
|
95345
95374
|
const ctx = canvas.getContext("2d", { alpha: true });
|
|
95346
95375
|
ctx.save();
|
|
@@ -98612,7 +98641,6 @@ class DisplayParams {
|
|
|
98612
98641
|
}
|
|
98613
98642
|
}
|
|
98614
98643
|
DisplayParams.minTransparency = 15; // Threshold below which we consider a color fully opaque
|
|
98615
|
-
|
|
98616
98644
|
/** @internal */
|
|
98617
98645
|
(function (DisplayParams) {
|
|
98618
98646
|
let Type;
|
|
@@ -102475,7 +102503,7 @@ class QuantityFormatter {
|
|
|
102475
102503
|
// ========================================================================================================================================
|
|
102476
102504
|
const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
102477
102505
|
{
|
|
102478
|
-
system: "metric",
|
|
102506
|
+
system: "metric", // PresentationUnitSystem.Metric,
|
|
102479
102507
|
entries: [
|
|
102480
102508
|
{ type: getQuantityTypeKey(QuantityType.Length), formatKey: "[units:length]meter4" },
|
|
102481
102509
|
{ type: getQuantityTypeKey(QuantityType.Angle), formatKey: "[units:angle]degree2" },
|
|
@@ -102489,7 +102517,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
102489
102517
|
],
|
|
102490
102518
|
},
|
|
102491
102519
|
{
|
|
102492
|
-
system: "imperial",
|
|
102520
|
+
system: "imperial", // PresentationUnitSystem.BritishImperial,
|
|
102493
102521
|
entries: [
|
|
102494
102522
|
{ type: getQuantityTypeKey(QuantityType.Length), formatKey: "[units:length]fi8" },
|
|
102495
102523
|
{ type: getQuantityTypeKey(QuantityType.Angle), formatKey: "[units:angle]dms2" },
|
|
@@ -102503,7 +102531,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
102503
102531
|
],
|
|
102504
102532
|
},
|
|
102505
102533
|
{
|
|
102506
|
-
system: "usCustomary",
|
|
102534
|
+
system: "usCustomary", // PresentationUnitSystem.UsCustomary
|
|
102507
102535
|
entries: [
|
|
102508
102536
|
{ type: getQuantityTypeKey(QuantityType.Length), formatKey: "[units:length]fi8" },
|
|
102509
102537
|
{ type: getQuantityTypeKey(QuantityType.Angle), formatKey: "[units:angle]dms2" },
|
|
@@ -102517,7 +102545,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
102517
102545
|
],
|
|
102518
102546
|
},
|
|
102519
102547
|
{
|
|
102520
|
-
system: "usSurvey",
|
|
102548
|
+
system: "usSurvey", // PresentationUnitSystem.UsSurvey
|
|
102521
102549
|
entries: [
|
|
102522
102550
|
{ type: getQuantityTypeKey(QuantityType.Length), formatKey: "[units:length]f-survey-4" },
|
|
102523
102551
|
{ type: getQuantityTypeKey(QuantityType.Angle), formatKey: "[units:angle]dms2" },
|
|
@@ -109896,7 +109924,6 @@ class BackgroundMapDrape extends _TextureDrape__WEBPACK_IMPORTED_MODULE_13__.Tex
|
|
|
109896
109924
|
BackgroundMapDrape._postProjectionMatrix = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix4d.createRowValues(0, 1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 1);
|
|
109897
109925
|
|
|
109898
109926
|
|
|
109899
|
-
|
|
109900
109927
|
/***/ }),
|
|
109901
109928
|
|
|
109902
109929
|
/***/ "../../core/frontend/lib/esm/render/webgl/BatchState.js":
|
|
@@ -110020,7 +110047,6 @@ class BatchState {
|
|
|
110020
110047
|
BatchState._scratchElementIdPair = { lower: 0, upper: 0 };
|
|
110021
110048
|
|
|
110022
110049
|
|
|
110023
|
-
|
|
110024
110050
|
/***/ }),
|
|
110025
110051
|
|
|
110026
110052
|
/***/ "../../core/frontend/lib/esm/render/webgl/BatchUniforms.js":
|
|
@@ -112106,7 +112132,6 @@ ColorInfo._nonUniformTranslucent = new ColorInfo(true);
|
|
|
112106
112132
|
ColorInfo._nonUniformOpaque = new ColorInfo(false);
|
|
112107
112133
|
|
|
112108
112134
|
|
|
112109
|
-
|
|
112110
112135
|
/***/ }),
|
|
112111
112136
|
|
|
112112
112137
|
/***/ "../../core/frontend/lib/esm/render/webgl/Diagnostics.js":
|
|
@@ -112163,7 +112188,6 @@ Debug.printEnabled = false;
|
|
|
112163
112188
|
Debug.evaluateEnabled = false;
|
|
112164
112189
|
|
|
112165
112190
|
|
|
112166
|
-
|
|
112167
112191
|
/***/ }),
|
|
112168
112192
|
|
|
112169
112193
|
/***/ "../../core/frontend/lib/esm/render/webgl/DrawCommand.js":
|
|
@@ -112276,7 +112300,6 @@ class PopBatchCommand {
|
|
|
112276
112300
|
}
|
|
112277
112301
|
}
|
|
112278
112302
|
PopBatchCommand.instance = new PopBatchCommand();
|
|
112279
|
-
|
|
112280
112303
|
/** @internal */
|
|
112281
112304
|
class PushBatchCommand {
|
|
112282
112305
|
constructor(batch) {
|
|
@@ -112317,7 +112340,6 @@ class PopBranchCommand {
|
|
|
112317
112340
|
}
|
|
112318
112341
|
}
|
|
112319
112342
|
PopBranchCommand.instance = new PopBranchCommand();
|
|
112320
|
-
|
|
112321
112343
|
/** @internal */
|
|
112322
112344
|
class PushClipCommand {
|
|
112323
112345
|
constructor(clip) {
|
|
@@ -112338,7 +112360,6 @@ class PopClipCommand {
|
|
|
112338
112360
|
}
|
|
112339
112361
|
}
|
|
112340
112362
|
PopClipCommand.instance = new PopClipCommand();
|
|
112341
|
-
|
|
112342
112363
|
/** @internal */
|
|
112343
112364
|
class PrimitiveCommand {
|
|
112344
112365
|
constructor(primitive) {
|
|
@@ -112380,7 +112401,6 @@ class PrimitiveCommand {
|
|
|
112380
112401
|
}
|
|
112381
112402
|
}
|
|
112382
112403
|
PrimitiveCommand._scratchTechniqueFlags = new _TechniqueFlags__WEBPACK_IMPORTED_MODULE_4__.TechniqueFlags();
|
|
112383
|
-
|
|
112384
112404
|
/** Extracts the commands for rendering the flashed classifier (if any) from the by-index set of volume classifier commands.
|
|
112385
112405
|
* NB: Cmds will be sets of some pushes, a primitive, and then some pops (equal to number of pushes).
|
|
112386
112406
|
* The primitive should be right in the middle of a set. We need to find the set which matches the flashID.
|
|
@@ -115014,7 +115034,6 @@ IModelFrameLifecycle.onChangeCameraFrustum = new _itwin_core_bentley__WEBPACK_IM
|
|
|
115014
115034
|
IModelFrameLifecycle.onChangeCameraView = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
115015
115035
|
|
|
115016
115036
|
|
|
115017
|
-
|
|
115018
115037
|
/***/ }),
|
|
115019
115038
|
|
|
115020
115039
|
/***/ "../../core/frontend/lib/esm/render/webgl/IndexedEdgeGeometry.js":
|
|
@@ -115281,7 +115300,6 @@ class InstanceBuffers extends InstanceData {
|
|
|
115281
115300
|
}
|
|
115282
115301
|
}
|
|
115283
115302
|
InstanceBuffers._patternParams = new Float32Array([0, 0, 0, 0]);
|
|
115284
|
-
|
|
115285
115303
|
/** @internal */
|
|
115286
115304
|
class PatternBuffers extends InstanceData {
|
|
115287
115305
|
constructor(count, rtcCenter, range, patternParams, // [ isAreaPattern, spacingX, spacingY, scale ]
|
|
@@ -116006,7 +116024,6 @@ class Material extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RenderMat
|
|
|
116006
116024
|
}
|
|
116007
116025
|
// eslint-disable-next-line deprecation/deprecation
|
|
116008
116026
|
Material.default = new Material(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RenderMaterial.Params.defaults);
|
|
116009
|
-
|
|
116010
116027
|
Object.freeze(Material.default);
|
|
116011
116028
|
/** @internal */
|
|
116012
116029
|
function createMaterialInfo(source) {
|
|
@@ -117264,7 +117281,7 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
117264
117281
|
const maskViewFlags = {
|
|
117265
117282
|
renderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.SmoothShade,
|
|
117266
117283
|
wiremesh: false,
|
|
117267
|
-
transparency: !this.isClassifyingPointCloud,
|
|
117284
|
+
transparency: !this.isClassifyingPointCloud, // point clouds don't support transparency.
|
|
117268
117285
|
textures: false,
|
|
117269
117286
|
lighting: false,
|
|
117270
117287
|
shadows: false,
|
|
@@ -117334,7 +117351,6 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
117334
117351
|
PlanarClassifier._postProjectionMatrix = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Matrix4d.createRowValues(0, 1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 1);
|
|
117335
117352
|
|
|
117336
117353
|
|
|
117337
|
-
|
|
117338
117354
|
/***/ }),
|
|
117339
117355
|
|
|
117340
117356
|
/***/ "../../core/frontend/lib/esm/render/webgl/PlanarGrid.js":
|
|
@@ -117631,7 +117647,6 @@ class PlanarTextureProjection {
|
|
|
117631
117647
|
PlanarTextureProjection._postProjectionMatrixNpc = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix4d.createRowValues(/* Row 1 */ 0, 1, 0, 0, /* Row 1 */ 0, 0, 1, 0, /* Row 3 */ 1, 0, 0, 0, /* Row 4 */ 0, 0, 0, 1);
|
|
117632
117648
|
|
|
117633
117649
|
|
|
117634
|
-
|
|
117635
117650
|
/***/ }),
|
|
117636
117651
|
|
|
117637
117652
|
/***/ "../../core/frontend/lib/esm/render/webgl/PointCloud.js":
|
|
@@ -119863,7 +119878,6 @@ class RenderState {
|
|
|
119863
119878
|
}
|
|
119864
119879
|
}
|
|
119865
119880
|
RenderState.defaults = new RenderState();
|
|
119866
|
-
|
|
119867
119881
|
Object.freeze(RenderState.defaults);
|
|
119868
119882
|
|
|
119869
119883
|
|
|
@@ -127987,7 +128001,6 @@ class TechniqueFlags {
|
|
|
127987
128001
|
TechniqueFlags.defaults = new TechniqueFlags();
|
|
127988
128002
|
|
|
127989
128003
|
|
|
127990
|
-
|
|
127991
128004
|
/***/ }),
|
|
127992
128005
|
|
|
127993
128006
|
/***/ "../../core/frontend/lib/esm/render/webgl/TechniqueId.js":
|
|
@@ -128011,13 +128024,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
128011
128024
|
*/
|
|
128012
128025
|
|
|
128013
128026
|
const compositeTechniqueIds = [
|
|
128014
|
-
-1 /* TechniqueId.Invalid */,
|
|
128015
|
-
10 /* TechniqueId.CompositeTranslucent */,
|
|
128016
|
-
9 /* TechniqueId.CompositeHilite */,
|
|
128017
|
-
11 /* TechniqueId.CompositeHiliteAndTranslucent */,
|
|
128018
|
-
12 /* TechniqueId.CompositeOcclusion */,
|
|
128019
|
-
13 /* TechniqueId.CompositeTranslucentAndOcclusion */,
|
|
128020
|
-
14 /* TechniqueId.CompositeHiliteAndOcclusion */,
|
|
128027
|
+
-1 /* TechniqueId.Invalid */, // None = 0
|
|
128028
|
+
10 /* TechniqueId.CompositeTranslucent */, // Translucent == 1 << 0
|
|
128029
|
+
9 /* TechniqueId.CompositeHilite */, // Hilite == 1 << 1 == 2
|
|
128030
|
+
11 /* TechniqueId.CompositeHiliteAndTranslucent */, // Hilite | Translucent == 1 | 2 == 3
|
|
128031
|
+
12 /* TechniqueId.CompositeOcclusion */, // AmbientOcclusion == 1 << 2 == 4
|
|
128032
|
+
13 /* TechniqueId.CompositeTranslucentAndOcclusion */, // Translucent | AmbientOcclusion == 1 | 4 == 5
|
|
128033
|
+
14 /* TechniqueId.CompositeHiliteAndOcclusion */, // Hilite | AmbientOcclusion == 2 | 4 == 6
|
|
128021
128034
|
15 /* TechniqueId.CompositeAll */, // Translucent | Hilite | AmbientOcclusion == 1 | 2 | 4 == 7
|
|
128022
128035
|
];
|
|
128023
128036
|
/** @internal */
|
|
@@ -128479,7 +128492,6 @@ class Texture2DHandle extends TextureHandle {
|
|
|
128479
128492
|
}
|
|
128480
128493
|
}
|
|
128481
128494
|
Texture2DHandle._placeHolderTextureData = new Uint8Array([128, 128, 128, 255]);
|
|
128482
|
-
|
|
128483
128495
|
/** @internal */
|
|
128484
128496
|
class ExternalTextureLoader {
|
|
128485
128497
|
get numActiveRequests() { return this._activeRequests.length; }
|
|
@@ -128575,7 +128587,6 @@ class ExternalTextureLoader {
|
|
|
128575
128587
|
}
|
|
128576
128588
|
}
|
|
128577
128589
|
ExternalTextureLoader.instance = new ExternalTextureLoader(2);
|
|
128578
|
-
|
|
128579
128590
|
/** @internal */
|
|
128580
128591
|
class TextureCubeHandle extends TextureHandle {
|
|
128581
128592
|
get width() { return this._dim; }
|
|
@@ -129856,7 +129867,7 @@ vec2 computeAnimationParam(float frameIndex0, float frameIndex1, float fraction,
|
|
|
129856
129867
|
const scratchAnimParams = [
|
|
129857
129868
|
undefined,
|
|
129858
129869
|
undefined,
|
|
129859
|
-
new Float32Array(2),
|
|
129870
|
+
new Float32Array(2), // origin, scale
|
|
129860
129871
|
new Float32Array(3), // index0, index1, fraction
|
|
129861
129872
|
];
|
|
129862
129873
|
function getAnimParams(size, initialValue) {
|
|
@@ -135344,7 +135355,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
135344
135355
|
// render passes actually used in shader code.
|
|
135345
135356
|
const renderPasses = [
|
|
135346
135357
|
[0 /* RenderPass.Background */, "Background"],
|
|
135347
|
-
[1 /* RenderPass.OpaqueLayers */, "Layers"],
|
|
135358
|
+
[1 /* RenderPass.OpaqueLayers */, "Layers"], // Shaders treat all layer passes the same
|
|
135348
135359
|
[2 /* RenderPass.OpaqueLinear */, "OpaqueLinear"],
|
|
135349
135360
|
[3 /* RenderPass.OpaquePlanar */, "OpaquePlanar"],
|
|
135350
135361
|
[5 /* RenderPass.OpaqueGeneral */, "OpaqueGeneral"],
|
|
@@ -138027,7 +138038,6 @@ class CesiumIonAssetProvider {
|
|
|
138027
138038
|
CesiumIonAssetProvider.osmBuildingId = "OSMBuildings";
|
|
138028
138039
|
|
|
138029
138040
|
|
|
138030
|
-
|
|
138031
138041
|
/***/ }),
|
|
138032
138042
|
|
|
138033
138043
|
/***/ "../../core/frontend/lib/esm/tile/ClassifierTileTree.js":
|
|
@@ -138154,7 +138164,7 @@ class ClassifierTreeReference extends SpatialClassifierTileTreeReference {
|
|
|
138154
138164
|
get viewFlags() {
|
|
138155
138165
|
return {
|
|
138156
138166
|
renderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.SmoothShade,
|
|
138157
|
-
transparency: true,
|
|
138167
|
+
transparency: true, // Igored for point clouds as they don't support transparency.
|
|
138158
138168
|
textures: false,
|
|
138159
138169
|
lighting: false,
|
|
138160
138170
|
shadows: false,
|
|
@@ -138711,7 +138721,7 @@ class GraphicsTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.Tile {
|
|
|
138711
138721
|
omitEdges: !this.tree.edgeOptions,
|
|
138712
138722
|
edgeType: this.tree.edgeOptions && "non-indexed" !== this.tree.edgeOptions.type ? 2 : 1,
|
|
138713
138723
|
smoothPolyfaceEdges: this.tree.edgeOptions && this.tree.edgeOptions.smooth,
|
|
138714
|
-
clipToProjectExtents:
|
|
138724
|
+
clipToProjectExtents: this.tree.is3d,
|
|
138715
138725
|
sectionCut: this.tree.stringifiedSectionClip,
|
|
138716
138726
|
};
|
|
138717
138727
|
return _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.tileAdmin.requestElementGraphics(this.tree.iModel, props);
|
|
@@ -143696,7 +143706,7 @@ class ModelMapLayerTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_
|
|
|
143696
143706
|
this._source = _source;
|
|
143697
143707
|
this._id = {
|
|
143698
143708
|
modelId: _classifier.modelId,
|
|
143699
|
-
is3d: true,
|
|
143709
|
+
is3d: true, // model.is3d,
|
|
143700
143710
|
treeId: this.createTreeId(),
|
|
143701
143711
|
isPlanProjection: false, // isPlanProjection(view, model),
|
|
143702
143712
|
};
|
|
@@ -143716,7 +143726,7 @@ class ModelMapLayerTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_
|
|
|
143716
143726
|
get viewFlags() {
|
|
143717
143727
|
return {
|
|
143718
143728
|
renderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.SmoothShade,
|
|
143719
|
-
transparency: true,
|
|
143729
|
+
transparency: true, // Igored for point clouds as they don't support transparency.
|
|
143720
143730
|
textures: true,
|
|
143721
143731
|
lighting: false,
|
|
143722
143732
|
shadows: false,
|
|
@@ -144472,7 +144482,7 @@ class RealityModelTileTree extends _internal__WEBPACK_IMPORTED_MODULE_8__.Realit
|
|
|
144472
144482
|
// If we can get a valid connection from sourceKey, returns the tile tree
|
|
144473
144483
|
if (rdSource) {
|
|
144474
144484
|
// Serialize the reality data source key into a string to uniquely identify this tile tree
|
|
144475
|
-
const tileTreeId = rdSource.key
|
|
144485
|
+
const tileTreeId = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityDataSourceKey.convertToString(rdSource.key);
|
|
144476
144486
|
if (tileTreeId === undefined)
|
|
144477
144487
|
return undefined;
|
|
144478
144488
|
const props = await getTileTreeProps(rdSource, tilesetToDb, iModel);
|
|
@@ -147497,8 +147507,8 @@ class TileAdmin {
|
|
|
147497
147507
|
* @see [[TileAdmin.mobileMemoryLimits]] for mobile devices.
|
|
147498
147508
|
*/
|
|
147499
147509
|
TileAdmin.nonMobileGpuMemoryLimits = {
|
|
147500
|
-
default: 1024 * 1024 * 1024,
|
|
147501
|
-
aggressive: 500 * 1024 * 1024,
|
|
147510
|
+
default: 1024 * 1024 * 1024, // 1 GB
|
|
147511
|
+
aggressive: 500 * 1024 * 1024, // 500 MB
|
|
147502
147512
|
relaxed: 2.5 * 1024 * 1024 * 1024, // 2.5 GB
|
|
147503
147513
|
};
|
|
147504
147514
|
/** @internal exported for tests */
|
|
@@ -147509,8 +147519,8 @@ class TileAdmin {
|
|
|
147509
147519
|
* @see [[TileAdmin.nonMobileMemoryLimits]] for non-mobile devices.
|
|
147510
147520
|
*/
|
|
147511
147521
|
TileAdmin.mobileGpuMemoryLimits = {
|
|
147512
|
-
default: 200 * 1024 * 1024,
|
|
147513
|
-
aggressive: 75 * 1024 * 1024,
|
|
147522
|
+
default: 200 * 1024 * 1024, // 200 MB
|
|
147523
|
+
aggressive: 75 * 1024 * 1024, // 75 MB
|
|
147514
147524
|
relaxed: 500 * 1024 * 1024, // 500 MB
|
|
147515
147525
|
};
|
|
147516
147526
|
})(TileAdmin || (TileAdmin = {}));
|
|
@@ -149970,6 +149980,7 @@ class ArcGISTileMap {
|
|
|
149970
149980
|
this._restBaseUrl = restBaseUrl;
|
|
149971
149981
|
this._fetchFunc = fetchFunc;
|
|
149972
149982
|
this._settings = settings;
|
|
149983
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
149973
149984
|
this._callQueues = new Array(ArcGISTileMap.maxLod).fill(Promise.resolve(nonVisibleChildren));
|
|
149974
149985
|
}
|
|
149975
149986
|
async fetchTileMapFromServer(level, row, column, width, height) {
|
|
@@ -150175,7 +150186,6 @@ class ArcGISTileMap {
|
|
|
150175
150186
|
ArcGISTileMap.maxLod = 30;
|
|
150176
150187
|
|
|
150177
150188
|
|
|
150178
|
-
|
|
150179
150189
|
/***/ }),
|
|
150180
150190
|
|
|
150181
150191
|
/***/ "../../core/frontend/lib/esm/tile/map/ArcGisUtilities.js":
|
|
@@ -150544,7 +150554,6 @@ class ArcGisUtilities {
|
|
|
150544
150554
|
ArcGisUtilities._serviceCache = new Map();
|
|
150545
150555
|
|
|
150546
150556
|
|
|
150547
|
-
|
|
150548
150557
|
/***/ }),
|
|
150549
150558
|
|
|
150550
150559
|
/***/ "../../core/frontend/lib/esm/tile/map/BingElevation.js":
|
|
@@ -153172,7 +153181,6 @@ class ImageryMapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityT
|
|
|
153172
153181
|
}
|
|
153173
153182
|
ImageryMapTileTree._scratchDrapeRectangle = _internal__WEBPACK_IMPORTED_MODULE_4__.MapCartoRectangle.createZero();
|
|
153174
153183
|
ImageryMapTileTree._drapeIntersectionScale = 1.0 - 1.0E-5;
|
|
153175
|
-
|
|
153176
153184
|
class ImageryTileLoader extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTileLoader {
|
|
153177
153185
|
constructor(_imageryProvider, _iModel) {
|
|
153178
153186
|
super();
|
|
@@ -153847,7 +153855,7 @@ class WmtsMapLayerFormat extends ImageryMapLayerFormat {
|
|
|
153847
153855
|
subLayers.push({
|
|
153848
153856
|
name: layer.identifier,
|
|
153849
153857
|
title: layer.title ?? layer.identifier,
|
|
153850
|
-
visible: (subLayers.length === 0),
|
|
153858
|
+
visible: (subLayers.length === 0), // Make the first layer visible.
|
|
153851
153859
|
parent: undefined,
|
|
153852
153860
|
children: undefined,
|
|
153853
153861
|
id: subLayerId++,
|
|
@@ -155360,7 +155368,6 @@ MapTile._scratchRectangle2 = _internal__WEBPACK_IMPORTED_MODULE_7__.MapCartoRect
|
|
|
155360
155368
|
MapTile._scratchThisDiagonal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Vector2d.create();
|
|
155361
155369
|
MapTile._scratchDrapeDiagonal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Vector2d.create();
|
|
155362
155370
|
MapTile._scratchIntersectRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range2d.createNull();
|
|
155363
|
-
|
|
155364
155371
|
/** A child tile that has no content of its own available. It instead produces content by up-sampling the content of an ancestor tile.
|
|
155365
155372
|
* @internal
|
|
155366
155373
|
*/
|
|
@@ -155637,7 +155644,6 @@ class TileAvailability {
|
|
|
155637
155644
|
TileAvailability.rectangleScratch = _internal__WEBPACK_IMPORTED_MODULE_1__.MapCartoRectangle.createMaximum();
|
|
155638
155645
|
|
|
155639
155646
|
|
|
155640
|
-
|
|
155641
155647
|
/***/ }),
|
|
155642
155648
|
|
|
155643
155649
|
/***/ "../../core/frontend/lib/esm/tile/map/MapTileLoader.js":
|
|
@@ -156205,7 +156211,6 @@ MapTileTree.maxGlobeDisplayDepth = 8;
|
|
|
156205
156211
|
/** @internal */
|
|
156206
156212
|
MapTileTree.minDisplayableDepth = 3;
|
|
156207
156213
|
MapTileTree._scratchCarto = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Cartographic.createZero();
|
|
156208
|
-
|
|
156209
156214
|
/** @internal */
|
|
156210
156215
|
class MapTileTreeProps {
|
|
156211
156216
|
get priority() { return this.loader.priority; }
|
|
@@ -157121,7 +157126,6 @@ class WebMercatorProjection {
|
|
|
157121
157126
|
}
|
|
157122
157127
|
}
|
|
157123
157128
|
WebMercatorProjection.maximumLatitude = WebMercatorProjection.mercatorAngleToGeodeticLatitude(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Angle.piRadians);
|
|
157124
|
-
|
|
157125
157129
|
/** A [[MapTilingScheme]] using the [EPSG:3857](https://en.wikipedia.org/wiki/Web_Mercator_projection) projection.
|
|
157126
157130
|
* This scheme is used by most [tiled web maps](https://en.wikipedia.org/wiki/Tiled_web_map), including Bing Maps and Google Maps.
|
|
157127
157131
|
* @beta
|
|
@@ -157657,7 +157661,6 @@ class WmsCapabilities {
|
|
|
157657
157661
|
WmsCapabilities._capabilitiesCache = new Map();
|
|
157658
157662
|
|
|
157659
157663
|
|
|
157660
|
-
|
|
157661
157664
|
/***/ }),
|
|
157662
157665
|
|
|
157663
157666
|
/***/ "../../core/frontend/lib/esm/tile/map/WmsUtilities.js":
|
|
@@ -158166,7 +158169,6 @@ class WmtsCapabilities {
|
|
|
158166
158169
|
WmtsCapabilities._capabilitiesCache = new Map();
|
|
158167
158170
|
|
|
158168
158171
|
|
|
158169
|
-
|
|
158170
158172
|
/***/ }),
|
|
158171
158173
|
|
|
158172
158174
|
/***/ "../../core/frontend/lib/esm/tools/AccuDrawTool.js":
|
|
@@ -159053,7 +159055,6 @@ class AccuDrawSetOriginTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159053
159055
|
}
|
|
159054
159056
|
}
|
|
159055
159057
|
AccuDrawSetOriginTool.toolId = "AccuDraw.SetOrigin";
|
|
159056
|
-
|
|
159057
159058
|
/** @internal */
|
|
159058
159059
|
class AccuDrawSetLockSmartTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159059
159060
|
async run() {
|
|
@@ -159062,7 +159063,6 @@ class AccuDrawSetLockSmartTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159062
159063
|
}
|
|
159063
159064
|
}
|
|
159064
159065
|
AccuDrawSetLockSmartTool.toolId = "AccuDraw.LockSmart";
|
|
159065
|
-
|
|
159066
159066
|
/** @internal */
|
|
159067
159067
|
class AccuDrawSetLockXTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159068
159068
|
async run() {
|
|
@@ -159071,7 +159071,6 @@ class AccuDrawSetLockXTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159071
159071
|
}
|
|
159072
159072
|
}
|
|
159073
159073
|
AccuDrawSetLockXTool.toolId = "AccuDraw.LockX";
|
|
159074
|
-
|
|
159075
159074
|
/** @internal */
|
|
159076
159075
|
class AccuDrawSetLockYTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159077
159076
|
async run() {
|
|
@@ -159080,7 +159079,6 @@ class AccuDrawSetLockYTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159080
159079
|
}
|
|
159081
159080
|
}
|
|
159082
159081
|
AccuDrawSetLockYTool.toolId = "AccuDraw.LockY";
|
|
159083
|
-
|
|
159084
159082
|
/** @internal */
|
|
159085
159083
|
class AccuDrawSetLockZTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159086
159084
|
async run() {
|
|
@@ -159089,7 +159087,6 @@ class AccuDrawSetLockZTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159089
159087
|
}
|
|
159090
159088
|
}
|
|
159091
159089
|
AccuDrawSetLockZTool.toolId = "AccuDraw.LockZ";
|
|
159092
|
-
|
|
159093
159090
|
/** @internal */
|
|
159094
159091
|
class AccuDrawSetLockDistanceTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159095
159092
|
async run() {
|
|
@@ -159098,7 +159095,6 @@ class AccuDrawSetLockDistanceTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Too
|
|
|
159098
159095
|
}
|
|
159099
159096
|
}
|
|
159100
159097
|
AccuDrawSetLockDistanceTool.toolId = "AccuDraw.LockDistance";
|
|
159101
|
-
|
|
159102
159098
|
/** @internal */
|
|
159103
159099
|
class AccuDrawSetLockAngleTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159104
159100
|
async run() {
|
|
@@ -159107,7 +159103,6 @@ class AccuDrawSetLockAngleTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159107
159103
|
}
|
|
159108
159104
|
}
|
|
159109
159105
|
AccuDrawSetLockAngleTool.toolId = "AccuDraw.LockAngle";
|
|
159110
|
-
|
|
159111
159106
|
/** @internal */
|
|
159112
159107
|
class AccuDrawChangeModeTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159113
159108
|
async run() {
|
|
@@ -159116,7 +159111,6 @@ class AccuDrawChangeModeTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159116
159111
|
}
|
|
159117
159112
|
}
|
|
159118
159113
|
AccuDrawChangeModeTool.toolId = "AccuDraw.ChangeMode";
|
|
159119
|
-
|
|
159120
159114
|
/** @internal */
|
|
159121
159115
|
class AccuDrawRotateCycleTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159122
159116
|
async run() {
|
|
@@ -159125,7 +159119,6 @@ class AccuDrawRotateCycleTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159125
159119
|
}
|
|
159126
159120
|
}
|
|
159127
159121
|
AccuDrawRotateCycleTool.toolId = "AccuDraw.RotateCycle";
|
|
159128
|
-
|
|
159129
159122
|
/** @internal */
|
|
159130
159123
|
class AccuDrawRotateTopTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159131
159124
|
async run() {
|
|
@@ -159134,7 +159127,6 @@ class AccuDrawRotateTopTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159134
159127
|
}
|
|
159135
159128
|
}
|
|
159136
159129
|
AccuDrawRotateTopTool.toolId = "AccuDraw.RotateTop";
|
|
159137
|
-
|
|
159138
159130
|
/** @internal */
|
|
159139
159131
|
class AccuDrawRotateFrontTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159140
159132
|
async run() {
|
|
@@ -159143,7 +159135,6 @@ class AccuDrawRotateFrontTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159143
159135
|
}
|
|
159144
159136
|
}
|
|
159145
159137
|
AccuDrawRotateFrontTool.toolId = "AccuDraw.RotateFront";
|
|
159146
|
-
|
|
159147
159138
|
/** @internal */
|
|
159148
159139
|
class AccuDrawRotateSideTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159149
159140
|
async run() {
|
|
@@ -159152,7 +159143,6 @@ class AccuDrawRotateSideTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159152
159143
|
}
|
|
159153
159144
|
}
|
|
159154
159145
|
AccuDrawRotateSideTool.toolId = "AccuDraw.RotateSide";
|
|
159155
|
-
|
|
159156
159146
|
/** @internal */
|
|
159157
159147
|
class AccuDrawRotateViewTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
159158
159148
|
async run() {
|
|
@@ -159161,7 +159151,6 @@ class AccuDrawRotateViewTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.Tool {
|
|
|
159161
159151
|
}
|
|
159162
159152
|
}
|
|
159163
159153
|
AccuDrawRotateViewTool.toolId = "AccuDraw.RotateView";
|
|
159164
|
-
|
|
159165
159154
|
/** @internal */
|
|
159166
159155
|
class AccuDrawShortcutsTool extends _Tool__WEBPACK_IMPORTED_MODULE_6__.InputCollector {
|
|
159167
159156
|
constructor() {
|
|
@@ -159254,7 +159243,6 @@ class AccuDrawRotateAxesTool extends AccuDrawShortcutsTool {
|
|
|
159254
159243
|
}
|
|
159255
159244
|
}
|
|
159256
159245
|
AccuDrawRotateAxesTool.toolId = "AccuDraw.RotateAxes";
|
|
159257
|
-
|
|
159258
159246
|
/** @internal */
|
|
159259
159247
|
class AccuDrawRotateElementTool extends AccuDrawShortcutsTool {
|
|
159260
159248
|
constructor() {
|
|
@@ -159296,7 +159284,6 @@ class AccuDrawRotateElementTool extends AccuDrawShortcutsTool {
|
|
|
159296
159284
|
}
|
|
159297
159285
|
}
|
|
159298
159286
|
AccuDrawRotateElementTool.toolId = "AccuDraw.RotateElement";
|
|
159299
|
-
|
|
159300
159287
|
/** @internal */
|
|
159301
159288
|
class DefineACSByElementTool extends AccuDrawShortcutsTool {
|
|
159302
159289
|
constructor() {
|
|
@@ -159346,7 +159333,6 @@ class DefineACSByElementTool extends AccuDrawShortcutsTool {
|
|
|
159346
159333
|
}
|
|
159347
159334
|
}
|
|
159348
159335
|
DefineACSByElementTool.toolId = "AccuDraw.DefineACSByElement";
|
|
159349
|
-
|
|
159350
159336
|
/** @internal */
|
|
159351
159337
|
class DefineACSByPointsTool extends AccuDrawShortcutsTool {
|
|
159352
159338
|
constructor() {
|
|
@@ -159403,7 +159389,6 @@ class DefineACSByPointsTool extends AccuDrawShortcutsTool {
|
|
|
159403
159389
|
DefineACSByPointsTool.toolId = "AccuDraw.DefineACSByPoints";
|
|
159404
159390
|
|
|
159405
159391
|
|
|
159406
|
-
|
|
159407
159392
|
/***/ }),
|
|
159408
159393
|
|
|
159409
159394
|
/***/ "../../core/frontend/lib/esm/tools/ClipViewTool.js":
|
|
@@ -159790,7 +159775,6 @@ ViewClipTool._getEnumAsOrientationDescription = () => {
|
|
|
159790
159775
|
},
|
|
159791
159776
|
};
|
|
159792
159777
|
};
|
|
159793
|
-
|
|
159794
159778
|
/** A tool to remove a clip volume for a view
|
|
159795
159779
|
* @public @extensions
|
|
159796
159780
|
*/
|
|
@@ -159825,7 +159809,6 @@ class ViewClipClearTool extends ViewClipTool {
|
|
|
159825
159809
|
}
|
|
159826
159810
|
ViewClipClearTool.toolId = "ViewClip.Clear";
|
|
159827
159811
|
ViewClipClearTool.iconSpec = "icon-section-tool";
|
|
159828
|
-
|
|
159829
159812
|
/** A tool to define a clip volume for a view by specifying a plane
|
|
159830
159813
|
* @public
|
|
159831
159814
|
*/
|
|
@@ -159898,7 +159881,6 @@ class ViewClipByPlaneTool extends ViewClipTool {
|
|
|
159898
159881
|
}
|
|
159899
159882
|
ViewClipByPlaneTool.toolId = "ViewClip.ByPlane";
|
|
159900
159883
|
ViewClipByPlaneTool.iconSpec = "icon-section-plane";
|
|
159901
|
-
|
|
159902
159884
|
/** A tool to define a clip volume for a view by specifying a shape
|
|
159903
159885
|
* @public
|
|
159904
159886
|
*/
|
|
@@ -160099,7 +160081,6 @@ class ViewClipByShapeTool extends ViewClipTool {
|
|
|
160099
160081
|
}
|
|
160100
160082
|
ViewClipByShapeTool.toolId = "ViewClip.ByShape";
|
|
160101
160083
|
ViewClipByShapeTool.iconSpec = "icon-section-shape";
|
|
160102
|
-
|
|
160103
160084
|
/** A tool to define a clip volume for a view by specifying range corners
|
|
160104
160085
|
* @public
|
|
160105
160086
|
*/
|
|
@@ -160200,7 +160181,6 @@ class ViewClipByRangeTool extends ViewClipTool {
|
|
|
160200
160181
|
}
|
|
160201
160182
|
ViewClipByRangeTool.toolId = "ViewClip.ByRange";
|
|
160202
160183
|
ViewClipByRangeTool.iconSpec = "icon-section-range";
|
|
160203
|
-
|
|
160204
160184
|
/** A tool to define a clip volume for a view using the element aligned box or axis aligned box.
|
|
160205
160185
|
* @public
|
|
160206
160186
|
*/
|
|
@@ -160320,7 +160300,6 @@ class ViewClipByElementTool extends ViewClipTool {
|
|
|
160320
160300
|
}
|
|
160321
160301
|
ViewClipByElementTool.toolId = "ViewClip.ByElement";
|
|
160322
160302
|
ViewClipByElementTool.iconSpec = "icon-section-element";
|
|
160323
|
-
|
|
160324
160303
|
/** @internal Interactive tool base class to modify a view's clip */
|
|
160325
160304
|
class ViewClipModifyTool extends _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.EditManipulator.HandleTool {
|
|
160326
160305
|
constructor(manipulator, clip, vp, hitId, ids, controls) {
|
|
@@ -162583,7 +162562,6 @@ IdleTool.toolId = "Idle";
|
|
|
162583
162562
|
IdleTool.hidden = true;
|
|
162584
162563
|
|
|
162585
162564
|
|
|
162586
|
-
|
|
162587
162565
|
/***/ }),
|
|
162588
162566
|
|
|
162589
162567
|
/***/ "../../core/frontend/lib/esm/tools/MeasureTool.js":
|
|
@@ -163182,7 +163160,6 @@ class MeasureDistanceTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_11__.P
|
|
|
163182
163160
|
}
|
|
163183
163161
|
MeasureDistanceTool.toolId = "Measure.Distance";
|
|
163184
163162
|
MeasureDistanceTool.iconSpec = "icon-measure-distance";
|
|
163185
|
-
|
|
163186
163163
|
/** Report spatial coordinate at a point as well as cartographic location for geolocated models using current quantity formatters.
|
|
163187
163164
|
* @public
|
|
163188
163165
|
*/
|
|
@@ -163327,7 +163304,6 @@ class MeasureLocationTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_11__.P
|
|
|
163327
163304
|
}
|
|
163328
163305
|
MeasureLocationTool.toolId = "Measure.Location";
|
|
163329
163306
|
MeasureLocationTool.iconSpec = "icon-measure-location";
|
|
163330
|
-
|
|
163331
163307
|
/** Report area defined by points using current quantity formatter for area.
|
|
163332
163308
|
* @public
|
|
163333
163309
|
*/
|
|
@@ -163671,7 +163647,6 @@ MeasureAreaByPointsTool._getEnumAsOrientationDescription = () => {
|
|
|
163671
163647
|
},
|
|
163672
163648
|
};
|
|
163673
163649
|
};
|
|
163674
|
-
|
|
163675
163650
|
/** Base class for mass properties tools.
|
|
163676
163651
|
* @public
|
|
163677
163652
|
*/
|
|
@@ -164015,7 +163990,6 @@ class MeasureLengthTool extends MeasureElementTool {
|
|
|
164015
163990
|
}
|
|
164016
163991
|
MeasureLengthTool.toolId = "Measure.Length";
|
|
164017
163992
|
MeasureLengthTool.iconSpec = "icon-measure";
|
|
164018
|
-
|
|
164019
163993
|
/** Report accumulated areas of selected elements using the current quantity formatter for area.
|
|
164020
163994
|
* @public
|
|
164021
163995
|
*/
|
|
@@ -164030,7 +164004,6 @@ class MeasureAreaTool extends MeasureElementTool {
|
|
|
164030
164004
|
}
|
|
164031
164005
|
MeasureAreaTool.toolId = "Measure.Area";
|
|
164032
164006
|
MeasureAreaTool.iconSpec = "icon-measure-area";
|
|
164033
|
-
|
|
164034
164007
|
/** Report accumulated volumes of selected elements using the current quantity formatter for volume.
|
|
164035
164008
|
* @public
|
|
164036
164009
|
*/
|
|
@@ -164047,7 +164020,6 @@ MeasureVolumeTool.toolId = "Measure.Volume";
|
|
|
164047
164020
|
MeasureVolumeTool.iconSpec = "icon-measure-3d";
|
|
164048
164021
|
|
|
164049
164022
|
|
|
164050
|
-
|
|
164051
164023
|
/***/ }),
|
|
164052
164024
|
|
|
164053
164025
|
/***/ "../../core/frontend/lib/esm/tools/PrimitiveTool.js":
|
|
@@ -164895,7 +164867,6 @@ SelectionTool._methodsName = "selectionMethods";
|
|
|
164895
164867
|
SelectionTool._modesName = "selectionModes";
|
|
164896
164868
|
|
|
164897
164869
|
|
|
164898
|
-
|
|
164899
164870
|
/***/ }),
|
|
164900
164871
|
|
|
164901
164872
|
/***/ "../../core/frontend/lib/esm/tools/Tool.js":
|
|
@@ -165319,7 +165290,6 @@ Tool.toolId = "";
|
|
|
165319
165290
|
* The value is the name of an icon WebFont entry, or if specifying an SVG symbol, use `svg:` prefix.
|
|
165320
165291
|
*/
|
|
165321
165292
|
Tool.iconSpec = "";
|
|
165322
|
-
|
|
165323
165293
|
/**
|
|
165324
165294
|
* @public
|
|
165325
165295
|
* @extensions
|
|
@@ -165926,7 +165896,6 @@ CoreTools.namespace = "CoreTools";
|
|
|
165926
165896
|
CoreTools.tools = "CoreTools:tools.";
|
|
165927
165897
|
|
|
165928
165898
|
|
|
165929
|
-
|
|
165930
165899
|
/***/ }),
|
|
165931
165900
|
|
|
165932
165901
|
/***/ "../../core/frontend/lib/esm/tools/ToolAdmin.js":
|
|
@@ -167499,7 +167468,6 @@ ToolAdmin._keyEventHandler = (ev) => {
|
|
|
167499
167468
|
};
|
|
167500
167469
|
/** A first-in-first-out queue of ToolEvents. */
|
|
167501
167470
|
ToolAdmin._toolEvents = [];
|
|
167502
|
-
|
|
167503
167471
|
/**
|
|
167504
167472
|
* Default processor to handle wheel events.
|
|
167505
167473
|
* @internal
|
|
@@ -167849,7 +167817,6 @@ ToolAssistance.ctrlSymbol = "\u2038";
|
|
|
167849
167817
|
ToolAssistance.altSymbol = "\u2387";
|
|
167850
167818
|
|
|
167851
167819
|
|
|
167852
|
-
|
|
167853
167820
|
/***/ }),
|
|
167854
167821
|
|
|
167855
167822
|
/***/ "../../core/frontend/lib/esm/tools/ToolSettings.js":
|
|
@@ -167945,7 +167912,6 @@ ToolSettings.viewingInertia = {
|
|
|
167945
167912
|
ToolSettings.maxOnMotionSnapCallPerSecond = 15;
|
|
167946
167913
|
|
|
167947
167914
|
|
|
167948
|
-
|
|
167949
167915
|
/***/ }),
|
|
167950
167916
|
|
|
167951
167917
|
/***/ "../../core/frontend/lib/esm/tools/ViewTool.js":
|
|
@@ -170460,7 +170426,6 @@ class PanViewTool extends ViewManip {
|
|
|
170460
170426
|
}
|
|
170461
170427
|
PanViewTool.toolId = "View.Pan";
|
|
170462
170428
|
PanViewTool.iconSpec = "icon-hand-2";
|
|
170463
|
-
|
|
170464
170429
|
/** A tool that performs a Rotate view operation
|
|
170465
170430
|
* @public
|
|
170466
170431
|
*/
|
|
@@ -170475,7 +170440,6 @@ class RotateViewTool extends ViewManip {
|
|
|
170475
170440
|
}
|
|
170476
170441
|
RotateViewTool.toolId = "View.Rotate";
|
|
170477
170442
|
RotateViewTool.iconSpec = "icon-gyroscope";
|
|
170478
|
-
|
|
170479
170443
|
/** A tool that performs the look operation
|
|
170480
170444
|
* @public
|
|
170481
170445
|
*/
|
|
@@ -170490,7 +170454,6 @@ class LookViewTool extends ViewManip {
|
|
|
170490
170454
|
}
|
|
170491
170455
|
LookViewTool.toolId = "View.Look";
|
|
170492
170456
|
LookViewTool.iconSpec = "icon-view-navigation";
|
|
170493
|
-
|
|
170494
170457
|
/** A tool that performs the scroll operation
|
|
170495
170458
|
* @public
|
|
170496
170459
|
*/
|
|
@@ -170505,7 +170468,6 @@ class ScrollViewTool extends ViewManip {
|
|
|
170505
170468
|
}
|
|
170506
170469
|
ScrollViewTool.toolId = "View.Scroll";
|
|
170507
170470
|
ScrollViewTool.iconSpec = "icon-move";
|
|
170508
|
-
|
|
170509
170471
|
/** A tool that performs the zoom operation
|
|
170510
170472
|
* @public
|
|
170511
170473
|
*/
|
|
@@ -170520,7 +170482,6 @@ class ZoomViewTool extends ViewManip {
|
|
|
170520
170482
|
}
|
|
170521
170483
|
ZoomViewTool.toolId = "View.Zoom";
|
|
170522
170484
|
ZoomViewTool.iconSpec = "icon-zoom";
|
|
170523
|
-
|
|
170524
170485
|
/** A tool that performs the walk operation using mouse+keyboard or touch controls.
|
|
170525
170486
|
* Keyboard and mouse controls are similar to those used by many video games:
|
|
170526
170487
|
* - Mouse motion: look around.
|
|
@@ -170569,7 +170530,6 @@ class LookAndMoveTool extends ViewManip {
|
|
|
170569
170530
|
}
|
|
170570
170531
|
LookAndMoveTool.toolId = "View.LookAndMove";
|
|
170571
170532
|
LookAndMoveTool.iconSpec = "icon-walk";
|
|
170572
|
-
|
|
170573
170533
|
/** A tool that performs the walk operation
|
|
170574
170534
|
* @public
|
|
170575
170535
|
*/
|
|
@@ -170592,7 +170552,6 @@ class WalkViewTool extends ViewManip {
|
|
|
170592
170552
|
}
|
|
170593
170553
|
WalkViewTool.toolId = "View.Walk";
|
|
170594
170554
|
WalkViewTool.iconSpec = "icon-walk";
|
|
170595
|
-
|
|
170596
170555
|
/** A tool that performs the fly operation
|
|
170597
170556
|
* @public
|
|
170598
170557
|
*/
|
|
@@ -170614,7 +170573,6 @@ class FlyViewTool extends ViewManip {
|
|
|
170614
170573
|
}
|
|
170615
170574
|
FlyViewTool.toolId = "View.Fly";
|
|
170616
170575
|
FlyViewTool.iconSpec = "icon-airplane";
|
|
170617
|
-
|
|
170618
170576
|
/** A tool that performs a fit view
|
|
170619
170577
|
* @public
|
|
170620
170578
|
*/
|
|
@@ -170665,7 +170623,6 @@ class FitViewTool extends ViewTool {
|
|
|
170665
170623
|
}
|
|
170666
170624
|
FitViewTool.toolId = "View.Fit";
|
|
170667
170625
|
FitViewTool.iconSpec = "icon-fit-to-view";
|
|
170668
|
-
|
|
170669
170626
|
/** A tool that views a location on the background map from a satellite's perspective; the viewed location is derived from the position of the current camera's eye above the background map. Operates on the selected view.
|
|
170670
170627
|
* @public
|
|
170671
170628
|
*/
|
|
@@ -170715,7 +170672,6 @@ class ViewGlobeSatelliteTool extends ViewTool {
|
|
|
170715
170672
|
}
|
|
170716
170673
|
}
|
|
170717
170674
|
ViewGlobeSatelliteTool.toolId = "View.GlobeSatellite";
|
|
170718
|
-
|
|
170719
170675
|
/** A tool that views a location on the background map from a bird's eye perspective; the viewed location is derived from the position of the current camera's eye above the background map. Operates on the selected view.
|
|
170720
170676
|
* @public
|
|
170721
170677
|
*/
|
|
@@ -170762,7 +170718,6 @@ class ViewGlobeBirdTool extends ViewTool {
|
|
|
170762
170718
|
}
|
|
170763
170719
|
}
|
|
170764
170720
|
ViewGlobeBirdTool.toolId = "View.GlobeBird";
|
|
170765
|
-
|
|
170766
170721
|
/** A tool that views a location on the background map corresponding to a specified string.
|
|
170767
170722
|
* This will either look down at the location using a bird's eye height, or, if a range is available, the entire range corresponding to the location will be viewed.
|
|
170768
170723
|
* Operates on the selected view.
|
|
@@ -170829,7 +170784,6 @@ class ViewGlobeLocationTool extends ViewTool {
|
|
|
170829
170784
|
}
|
|
170830
170785
|
}
|
|
170831
170786
|
ViewGlobeLocationTool.toolId = "View.GlobeLocation";
|
|
170832
|
-
|
|
170833
170787
|
/** A tool that views the current iModel on the background map so that the extent of the project is visible. Operates on the selected view.
|
|
170834
170788
|
* @public
|
|
170835
170789
|
*/
|
|
@@ -170871,7 +170825,6 @@ class ViewGlobeIModelTool extends ViewTool {
|
|
|
170871
170825
|
}
|
|
170872
170826
|
}
|
|
170873
170827
|
ViewGlobeIModelTool.toolId = "View.GlobeIModel";
|
|
170874
|
-
|
|
170875
170828
|
/** A tool that rotates the view to one of the standard views.
|
|
170876
170829
|
* @public
|
|
170877
170830
|
*/
|
|
@@ -170901,7 +170854,6 @@ class StandardViewTool extends ViewTool {
|
|
|
170901
170854
|
}
|
|
170902
170855
|
StandardViewTool.toolId = "View.Standard";
|
|
170903
170856
|
StandardViewTool.iconSpec = "icon-cube-faces-top";
|
|
170904
|
-
|
|
170905
170857
|
/** A tool that performs a Window-area view operation
|
|
170906
170858
|
* @public
|
|
170907
170859
|
*/
|
|
@@ -171140,7 +171092,6 @@ class WindowAreaTool extends ViewTool {
|
|
|
171140
171092
|
}
|
|
171141
171093
|
WindowAreaTool.toolId = "View.WindowArea";
|
|
171142
171094
|
WindowAreaTool.iconSpec = "icon-window-area";
|
|
171143
|
-
|
|
171144
171095
|
/** @internal */
|
|
171145
171096
|
class DefaultViewTouchTool extends ViewManip {
|
|
171146
171097
|
/** Move this handle during the inertia duration */
|
|
@@ -171359,7 +171310,6 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
171359
171310
|
}
|
|
171360
171311
|
}
|
|
171361
171312
|
DefaultViewTouchTool.toolId = ""; // touch tools installed by IdleTool are never registered
|
|
171362
|
-
|
|
171363
171313
|
/** A tool that performs view undo operation. An application could also just call Viewport.doUndo directly, creating a ViewTool isn't required.
|
|
171364
171314
|
* @public
|
|
171365
171315
|
*/
|
|
@@ -171372,7 +171322,6 @@ class ViewUndoTool extends ViewTool {
|
|
|
171372
171322
|
}
|
|
171373
171323
|
ViewUndoTool.toolId = "View.Undo";
|
|
171374
171324
|
ViewUndoTool.iconSpec = "icon-window-backward";
|
|
171375
|
-
|
|
171376
171325
|
/** A tool that performs view redo operation. An application could also just call Viewport.doRedo directly, creating a ViewTool isn't required.
|
|
171377
171326
|
* @public
|
|
171378
171327
|
*/
|
|
@@ -171385,7 +171334,6 @@ class ViewRedoTool extends ViewTool {
|
|
|
171385
171334
|
}
|
|
171386
171335
|
ViewRedoTool.toolId = "View.Redo";
|
|
171387
171336
|
ViewRedoTool.iconSpec = "icon-window-forward";
|
|
171388
|
-
|
|
171389
171337
|
/** A tool that toggles the camera on/off in a spatial view
|
|
171390
171338
|
* @public
|
|
171391
171339
|
*/
|
|
@@ -171405,7 +171353,6 @@ class ViewToggleCameraTool extends ViewTool {
|
|
|
171405
171353
|
}
|
|
171406
171354
|
ViewToggleCameraTool.toolId = "View.ToggleCamera";
|
|
171407
171355
|
ViewToggleCameraTool.iconSpec = "icon-camera";
|
|
171408
|
-
|
|
171409
171356
|
/** A tool that sets the view camera by two points. This is a PrimitiveTool and not a ViewTool to allow the view to be panned, zoomed, and rotated while defining the points.
|
|
171410
171357
|
* To show tool settings for specifying camera and target heights above the snap point, make sure formatting and parsing data are cached before the tool starts
|
|
171411
171358
|
* by calling QuantityFormatter.onInitialized at app startup.
|
|
@@ -171666,7 +171613,6 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_18__.Primi
|
|
|
171666
171613
|
}
|
|
171667
171614
|
SetupCameraTool.toolId = "View.SetupCamera";
|
|
171668
171615
|
SetupCameraTool.iconSpec = "icon-camera-location";
|
|
171669
|
-
|
|
171670
171616
|
/** A tool that sets a walk tool starting position by a floor point and look direction. This is a PrimitiveTool and not a ViewTool to allow the view to be panned, zoomed, and rotated while defining the points.
|
|
171671
171617
|
* @public
|
|
171672
171618
|
*/
|
|
@@ -171849,7 +171795,6 @@ SetupWalkCameraTool.toolId = "View.SetupWalkCamera";
|
|
|
171849
171795
|
SetupWalkCameraTool.iconSpec = "icon-camera-location";
|
|
171850
171796
|
|
|
171851
171797
|
|
|
171852
|
-
|
|
171853
171798
|
/***/ }),
|
|
171854
171799
|
|
|
171855
171800
|
/***/ "../../core/geometry/lib/esm/Constant.js":
|
|
@@ -171894,7 +171839,6 @@ Constant.earthRadiusWGS84 = {
|
|
|
171894
171839
|
};
|
|
171895
171840
|
|
|
171896
171841
|
|
|
171897
|
-
|
|
171898
171842
|
/***/ }),
|
|
171899
171843
|
|
|
171900
171844
|
/***/ "../../core/geometry/lib/esm/Geometry.js":
|
|
@@ -173019,7 +172963,6 @@ Geometry.largeCoordinateResult = 1.0e13;
|
|
|
173019
172963
|
Geometry.hugeCoordinate = 1.0e12;
|
|
173020
172964
|
|
|
173021
172965
|
|
|
173022
|
-
|
|
173023
172966
|
/***/ }),
|
|
173024
172967
|
|
|
173025
172968
|
/***/ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js":
|
|
@@ -176019,7 +175962,7 @@ class BSplineSurface3d extends BSpline2dNd {
|
|
|
176019
175962
|
getPointGridJSON() {
|
|
176020
175963
|
const result = {
|
|
176021
175964
|
points: _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__.Point3dArray.unpackNumbersToNestedArraysIJK(this.coffs, 3, this.numPolesUV(0)),
|
|
176022
|
-
weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates,
|
|
175965
|
+
weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x. Use weightStyle instead.
|
|
176023
175966
|
weightStyle: WeightStyle.UnWeighted,
|
|
176024
175967
|
numCartesianDimensions: 3,
|
|
176025
175968
|
};
|
|
@@ -176432,7 +176375,7 @@ class BSplineSurface3dH extends BSpline2dNd {
|
|
|
176432
176375
|
const result = {
|
|
176433
176376
|
points: _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__.Point3dArray.unpackNumbersToNestedArraysIJK(this.coffs, 4, this.numPolesUV(0)),
|
|
176434
176377
|
numCartesianDimensions: 3,
|
|
176435
|
-
weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates,
|
|
176378
|
+
weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x. Use weightStyle instead.
|
|
176436
176379
|
weightStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates,
|
|
176437
176380
|
};
|
|
176438
176381
|
return result;
|
|
@@ -178561,7 +178504,6 @@ class KnotVector {
|
|
|
178561
178504
|
KnotVector.knotTolerance = 1.0e-9;
|
|
178562
178505
|
|
|
178563
178506
|
|
|
178564
|
-
|
|
178565
178507
|
/***/ }),
|
|
178566
178508
|
|
|
178567
178509
|
/***/ "../../core/geometry/lib/esm/bspline/SurfaceLocationDetail.js":
|
|
@@ -179189,7 +179131,6 @@ class AlternatingCCTreeNodeCurveClipper {
|
|
|
179189
179131
|
AlternatingCCTreeNodeCurveClipper._fractionIntervals = [];
|
|
179190
179132
|
|
|
179191
179133
|
|
|
179192
|
-
|
|
179193
179134
|
/***/ }),
|
|
179194
179135
|
|
|
179195
179136
|
/***/ "../../core/geometry/lib/esm/clipping/BooleanClipFactory.js":
|
|
@@ -180278,7 +180219,6 @@ class ClipPlane extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d
|
|
|
180278
180219
|
ClipPlane._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_12__.GrowableFloat64Array();
|
|
180279
180220
|
|
|
180280
180221
|
|
|
180281
|
-
|
|
180282
180222
|
/***/ }),
|
|
180283
180223
|
|
|
180284
180224
|
/***/ "../../core/geometry/lib/esm/clipping/ClipPrimitive.js":
|
|
@@ -182021,7 +181961,6 @@ class ClipUtilities {
|
|
|
182021
181961
|
}
|
|
182022
181962
|
}
|
|
182023
181963
|
ClipUtilities._selectIntervals01TestPoint = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_11__.Point3d.create();
|
|
182024
|
-
|
|
182025
181964
|
function moveFragments(fragments, destination, arrayCache) {
|
|
182026
181965
|
if (destination === undefined)
|
|
182027
181966
|
arrayCache.dropAllToCache(fragments);
|
|
@@ -182501,7 +182440,6 @@ class ClipVector {
|
|
|
182501
182440
|
}
|
|
182502
182441
|
}
|
|
182503
182442
|
ClipVector._TARGET_FRACTION_SUM = 0.99999999;
|
|
182504
|
-
|
|
182505
182443
|
/**
|
|
182506
182444
|
* Bundles a ClipVector with its compact string representation.
|
|
182507
182445
|
* @note The string representation is computed once; the ClipVector is assumed not to be subsequently modified.
|
|
@@ -183318,7 +183256,6 @@ ConvexClipPlaneSet.hugeVal = 1e37;
|
|
|
183318
183256
|
ConvexClipPlaneSet._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_11__.GrowableFloat64Array();
|
|
183319
183257
|
|
|
183320
183258
|
|
|
183321
|
-
|
|
183322
183259
|
/***/ }),
|
|
183323
183260
|
|
|
183324
183261
|
/***/ "../../core/geometry/lib/esm/clipping/UnionOfConvexClipPlaneSets.js":
|
|
@@ -183673,7 +183610,6 @@ class UnionOfConvexClipPlaneSets {
|
|
|
183673
183610
|
}
|
|
183674
183611
|
}
|
|
183675
183612
|
UnionOfConvexClipPlaneSets._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_6__.GrowableFloat64Array();
|
|
183676
|
-
|
|
183677
183613
|
/* FUNCTIONS SKIPPED DUE TO BSPLINES, VU, OR NON-USAGE IN NATIVE CODE----------------------------------------------------------------
|
|
183678
183614
|
|
|
183679
183615
|
Involves vu: skipping for now...
|
|
@@ -185504,7 +185440,6 @@ Arc3d.quadratureGuassCount = 5;
|
|
|
185504
185440
|
Arc3d.quadratureIntervalAngleDegrees = 10.0;
|
|
185505
185441
|
|
|
185506
185442
|
|
|
185507
|
-
|
|
185508
185443
|
/***/ }),
|
|
185509
185444
|
|
|
185510
185445
|
/***/ "../../core/geometry/lib/esm/curve/ConstructCurveBetweenCurves.js":
|
|
@@ -186540,7 +186475,6 @@ CurveChainWithDistanceIndex._numAssigned = 0;
|
|
|
186540
186475
|
CurveChainWithDistanceIndex._numCandidate = 0;
|
|
186541
186476
|
|
|
186542
186477
|
|
|
186543
|
-
|
|
186544
186478
|
/***/ }),
|
|
186545
186479
|
|
|
186546
186480
|
/***/ "../../core/geometry/lib/esm/curve/CurveCollection.js":
|
|
@@ -191406,7 +191340,6 @@ LineString3d._workPointB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_
|
|
|
191406
191340
|
LineString3d._workPointC = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
191407
191341
|
LineString3d._workRay = _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_7__.Ray3d.createXAxis();
|
|
191408
191342
|
LineString3d._indexPoint = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create(); // private point for addResolvedPoint
|
|
191409
|
-
|
|
191410
191343
|
/**
|
|
191411
191344
|
* An AnnotatedLineString3d is a linestring with additional surface-related data attached to each point
|
|
191412
191345
|
* * This is useful in facet construction.
|
|
@@ -195491,7 +195424,6 @@ class RegionBooleanContext {
|
|
|
195491
195424
|
}
|
|
195492
195425
|
}
|
|
195493
195426
|
RegionBooleanContext._bridgeDirection = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_14__.Vector3d.createNormalized(1.0, -0.12328974132467); // magic unit direction to minimize vertex hits
|
|
195494
|
-
|
|
195495
195427
|
/** return xy area between a (part of a) curve and the x axis through a reference point.
|
|
195496
195428
|
* If detail is undefined or does not have both start and end fractions, just do trapezoid area
|
|
195497
195429
|
*/
|
|
@@ -197442,7 +197374,6 @@ CurveCurveCloseApproachXY._workPointBB1 = _geometry3d_Point3dVector3d__WEBPACK_I
|
|
|
197442
197374
|
CurveCurveCloseApproachXY._workPointB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_14__.Point3d.create();
|
|
197443
197375
|
|
|
197444
197376
|
|
|
197445
|
-
|
|
197446
197377
|
/***/ }),
|
|
197447
197378
|
|
|
197448
197379
|
/***/ "../../core/geometry/lib/esm/curve/internalContexts/CurveCurveIntersectXY.js":
|
|
@@ -198325,7 +198256,6 @@ CurveCurveIntersectXY._workPointB0 = _geometry3d_Point3dVector3d__WEBPACK_IMPORT
|
|
|
198325
198256
|
CurveCurveIntersectXY._workPointB1 = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_18__.Point3d.create();
|
|
198326
198257
|
|
|
198327
198258
|
|
|
198328
|
-
|
|
198329
198259
|
/***/ }),
|
|
198330
198260
|
|
|
198331
198261
|
/***/ "../../core/geometry/lib/esm/curve/internalContexts/CurveCurveIntersectXYZ.js":
|
|
@@ -199106,7 +199036,6 @@ CurveCurveIntersectXYZ._workPointBB0 = _geometry3d_Point3dVector3d__WEBPACK_IMPO
|
|
|
199106
199036
|
CurveCurveIntersectXYZ._workPointBB1 = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
199107
199037
|
|
|
199108
199038
|
|
|
199109
|
-
|
|
199110
199039
|
/***/ }),
|
|
199111
199040
|
|
|
199112
199041
|
/***/ "../../core/geometry/lib/esm/curve/internalContexts/CurveLengthContext.js":
|
|
@@ -200471,7 +200400,6 @@ PolygonWireOffsetContext._unitAlong = _geometry3d_Point3dVector3d__WEBPACK_IMPOR
|
|
|
200471
200400
|
PolygonWireOffsetContext._unitPerp = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create();
|
|
200472
200401
|
PolygonWireOffsetContext._offsetA = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
200473
200402
|
PolygonWireOffsetContext._offsetB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
200474
|
-
|
|
200475
200403
|
/**
|
|
200476
200404
|
* Context for building a wire xy-offset from a Path or Loop of CurvePrimitives
|
|
200477
200405
|
* @internal
|
|
@@ -202305,7 +202233,6 @@ class IntegratedSpiral3d extends _TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_0_
|
|
|
202305
202233
|
}
|
|
202306
202234
|
/** default spiral type name. (clothoid) */
|
|
202307
202235
|
IntegratedSpiral3d.defaultSpiralType = "clothoid";
|
|
202308
|
-
|
|
202309
202236
|
// at load time, initialize gauss quadrature workspace
|
|
202310
202237
|
IntegratedSpiral3d.initWorkSpace();
|
|
202311
202238
|
|
|
@@ -203752,7 +203679,6 @@ Angle.degreesPerRadian = (45.0 / Angle.piOver4Radians);
|
|
|
203752
203679
|
Angle.radiansPerDegree = (Angle.piOver4Radians / 45.0);
|
|
203753
203680
|
|
|
203754
203681
|
|
|
203755
|
-
|
|
203756
203682
|
/***/ }),
|
|
203757
203683
|
|
|
203758
203684
|
/***/ "../../core/geometry/lib/esm/geometry3d/AngleSweep.js":
|
|
@@ -212730,7 +212656,6 @@ Matrix3d.numComputeCache = 0;
|
|
|
212730
212656
|
Matrix3d._productBuffer = new Float64Array(9);
|
|
212731
212657
|
|
|
212732
212658
|
|
|
212733
|
-
|
|
212734
212659
|
/***/ }),
|
|
212735
212660
|
|
|
212736
212661
|
/***/ "../../core/geometry/lib/esm/geometry3d/OrderedRotationAngles.js":
|
|
@@ -213067,7 +212992,6 @@ class OrderedRotationAngles {
|
|
|
213067
212992
|
OrderedRotationAngles._sTreatVectorsAsColumns = false;
|
|
213068
212993
|
|
|
213069
212994
|
|
|
213070
|
-
|
|
213071
212995
|
/***/ }),
|
|
213072
212996
|
|
|
213073
212997
|
/***/ "../../core/geometry/lib/esm/geometry3d/Plane3d.js":
|
|
@@ -217037,7 +216961,6 @@ class Point4dArray {
|
|
|
217037
216961
|
}
|
|
217038
216962
|
}
|
|
217039
216963
|
Point4dArray._workPoint4d = _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_2__.Point4d.create();
|
|
217040
|
-
|
|
217041
216964
|
/**
|
|
217042
216965
|
* The `Point3dArray` class contains static methods that act on arrays of 3d points.
|
|
217043
216966
|
* @public
|
|
@@ -217622,7 +217545,6 @@ Point3dArray._weightDV = new Float64Array(8);
|
|
|
217622
217545
|
Point3dArray._weightDW = new Float64Array(8);
|
|
217623
217546
|
|
|
217624
217547
|
|
|
217625
|
-
|
|
217626
217548
|
/***/ }),
|
|
217627
217549
|
|
|
217628
217550
|
/***/ "../../core/geometry/lib/esm/geometry3d/PointStreaming.js":
|
|
@@ -219140,7 +219062,6 @@ PolygonOps._normal = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.crea
|
|
|
219140
219062
|
PolygonOps._matrixA = _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_14__.Matrix4d.createIdentity();
|
|
219141
219063
|
PolygonOps._matrixB = _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_14__.Matrix4d.createIdentity();
|
|
219142
219064
|
PolygonOps._matrixC = _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_14__.Matrix4d.createIdentity();
|
|
219143
|
-
|
|
219144
219065
|
/**
|
|
219145
219066
|
* `IndexedXYZCollectionPolygonOps` class contains _static_ methods for typical operations on polygons carried as `IndexedXYZCollection`
|
|
219146
219067
|
* @public
|
|
@@ -219405,7 +219326,6 @@ class IndexedXYZCollectionPolygonOps {
|
|
|
219405
219326
|
IndexedXYZCollectionPolygonOps._xyz0Work = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
219406
219327
|
IndexedXYZCollectionPolygonOps._xyz1Work = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
219407
219328
|
IndexedXYZCollectionPolygonOps._xyz2Work = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
219408
|
-
|
|
219409
219329
|
/**
|
|
219410
219330
|
* `Point3dArrayPolygonOps` class contains _static_ methods for typical operations on polygons carried as `Point3d[]`
|
|
219411
219331
|
* @public
|
|
@@ -219487,7 +219407,6 @@ class Point3dArrayPolygonOps {
|
|
|
219487
219407
|
Point3dArrayPolygonOps._xyz0Work = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create();
|
|
219488
219408
|
|
|
219489
219409
|
|
|
219490
|
-
|
|
219491
219410
|
/***/ }),
|
|
219492
219411
|
|
|
219493
219412
|
/***/ "../../core/geometry/lib/esm/geometry3d/PolylineCompressionByEdgeOffset.js":
|
|
@@ -219779,7 +219698,6 @@ PolylineCompressionContext._vector01 = _Point3dVector3d__WEBPACK_IMPORTED_MODULE
|
|
|
219779
219698
|
PolylineCompressionContext._vectorQ = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create();
|
|
219780
219699
|
|
|
219781
219700
|
|
|
219782
|
-
|
|
219783
219701
|
/***/ }),
|
|
219784
219702
|
|
|
219785
219703
|
/***/ "../../core/geometry/lib/esm/geometry3d/PolylineOps.js":
|
|
@@ -220252,7 +220170,6 @@ class RangeBase {
|
|
|
220252
220170
|
RangeBase._EXTREME_POSITIVE = 1.0e200;
|
|
220253
220171
|
/** Number considered to be impossibly negative for a coordinate in a range. */
|
|
220254
220172
|
RangeBase._EXTREME_NEGATIVE = -1.0e200;
|
|
220255
|
-
|
|
220256
220173
|
/**
|
|
220257
220174
|
* Axis aligned range in 3D.
|
|
220258
220175
|
* * member `low` contains minimum coordinate of range box
|
|
@@ -228257,7 +228174,6 @@ class ClusterableArray extends _geometry3d_GrowableBlockedArray__WEBPACK_IMPORTE
|
|
|
228257
228174
|
ClusterableArray._vectorFactor = 0.8732; // use 1.0 to rig easy tests.
|
|
228258
228175
|
/** this value is used as cluster terminator in the Uint232Array of indices. */
|
|
228259
228176
|
ClusterableArray.clusterTerminator = 0xFFffFFff;
|
|
228260
|
-
|
|
228261
228177
|
/**
|
|
228262
228178
|
* @internal
|
|
228263
228179
|
*/
|
|
@@ -229271,7 +229187,6 @@ class PascalCoefficients {
|
|
|
229271
229187
|
PascalCoefficients._allRows = [];
|
|
229272
229188
|
|
|
229273
229189
|
|
|
229274
|
-
|
|
229275
229190
|
/***/ }),
|
|
229276
229191
|
|
|
229277
229192
|
/***/ "../../core/geometry/lib/esm/numerics/Polynomials.js":
|
|
@@ -230294,7 +230209,6 @@ class AnalyticRoots {
|
|
|
230294
230209
|
}
|
|
230295
230210
|
AnalyticRoots._EQN_EPS = 1.0e-9;
|
|
230296
230211
|
AnalyticRoots._safeDivideFactor = 1.0e-14;
|
|
230297
|
-
|
|
230298
230212
|
/**
|
|
230299
230213
|
* Manipulations of polynomials with where `coff[i]` multiplies x^i
|
|
230300
230214
|
* @internal
|
|
@@ -230554,7 +230468,6 @@ TrigPolynomial.WW = Float64Array.from([1.0, -4.0, 8.0, -8.0, 4.0]);
|
|
|
230554
230468
|
/** Standard Basis coefficients for (Math.Cos^2 - sine^2) numerator */
|
|
230555
230469
|
TrigPolynomial.CCminusSS = Float64Array.from([1.0, -4.0, 0.0, 8.0, -4.0]);
|
|
230556
230470
|
TrigPolynomial._coefficientRelTol = 1.0e-12;
|
|
230557
|
-
|
|
230558
230471
|
/**
|
|
230559
230472
|
* static methods for commonly appearing sets of equations in 2 or 3 variables
|
|
230560
230473
|
* @public
|
|
@@ -231195,7 +231108,6 @@ Quadrature.gaussW4Interval01 = new Float64Array([0.17392742256872692, 0.32607257
|
|
|
231195
231108
|
Quadrature.gaussX5Interval01 = new Float64Array([0.04691007703066802, 0.23076534494715845, 0.5, 0.7692346550528415, 0.9530899229693319]);
|
|
231196
231109
|
/** weight for 5 point gauss rule in 0..1 interval */
|
|
231197
231110
|
Quadrature.gaussW5Interval01 = new Float64Array([0.11846344252809454, 0.23931433524968324, 0.28444444444444444, 0.23931433524968324, 0.11846344252809454]);
|
|
231198
|
-
|
|
231199
231111
|
/**
|
|
231200
231112
|
* This class carries public members as needed for users to have gauss points that are used
|
|
231201
231113
|
* in the callers loops.
|
|
@@ -232538,7 +232450,6 @@ BoxTopology.axisEdgeVertex = [
|
|
|
232538
232450
|
];
|
|
232539
232451
|
|
|
232540
232452
|
|
|
232541
|
-
|
|
232542
232453
|
/***/ }),
|
|
232543
232454
|
|
|
232544
232455
|
/***/ "../../core/geometry/lib/esm/polyface/FacetFaceData.js":
|
|
@@ -233565,7 +233476,6 @@ class GreedyTriangulationBetweenLineStrings {
|
|
|
233565
233476
|
}
|
|
233566
233477
|
/** Default angle for considering two vectors to be colinear */
|
|
233567
233478
|
GreedyTriangulationBetweenLineStrings.defaultNearColinearAngle = _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_3__.Angle.createDegrees(15);
|
|
233568
|
-
|
|
233569
233479
|
/**
|
|
233570
233480
|
* * If there are no contiguous duplicated points in `data` return `data` unchanged.
|
|
233571
233481
|
* * If there are duplicates, compress to a new array.
|
|
@@ -236628,7 +236538,6 @@ class PolyfaceBuilder extends _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODU
|
|
|
236628
236538
|
PolyfaceBuilder._workPointFindOrAddA = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Point3d.create();
|
|
236629
236539
|
PolyfaceBuilder._workVectorFindOrAdd = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Vector3d.create();
|
|
236630
236540
|
PolyfaceBuilder._workUVFindOrAdd = _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_1__.Point2d.create();
|
|
236631
|
-
|
|
236632
236541
|
function resolveToIndexedXYZCollectionOrCarrier(points) {
|
|
236633
236542
|
if (Array.isArray(points))
|
|
236634
236543
|
return new _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_31__.Point3dArrayCarrier(points);
|
|
@@ -237938,7 +237847,6 @@ class PolyfaceData {
|
|
|
237938
237847
|
PolyfaceData.planarityLocalRelTol = 1.0e-13;
|
|
237939
237848
|
|
|
237940
237849
|
|
|
237941
|
-
|
|
237942
237850
|
/***/ }),
|
|
237943
237851
|
|
|
237944
237852
|
/***/ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js":
|
|
@@ -239666,7 +239574,6 @@ PolyfaceQuery._asyncWorkLimit = 1.e06;
|
|
|
239666
239574
|
PolyfaceQuery.awaitBlockCount = 0;
|
|
239667
239575
|
|
|
239668
239576
|
|
|
239669
|
-
|
|
239670
239577
|
/***/ }),
|
|
239671
239578
|
|
|
239672
239579
|
/***/ "../../core/geometry/lib/esm/polyface/RangeLengthData.js":
|
|
@@ -242528,7 +242435,7 @@ class OffsetMeshContext {
|
|
|
242528
242435
|
assignOffsetByAverageNormalAroundVertex(vertexSeed, maxAllowedDeviationRadians, data, distance) {
|
|
242529
242436
|
const maxDeviationRadians = this.computeAverageNormalAndMaxDeviationAroundVertex(vertexSeed, data);
|
|
242530
242437
|
if (OffsetMeshContext.stringDebugFunction) {
|
|
242531
|
-
OffsetMeshContext.stringDebugFunction(`XYZ ${_topology_Graph__WEBPACK_IMPORTED_MODULE_1__.HalfEdge.nodeToIdXYZString(vertexSeed)} Average Normal ${data.averageNormal.toJSON()}`);
|
|
242438
|
+
OffsetMeshContext.stringDebugFunction(`XYZ ${_topology_Graph__WEBPACK_IMPORTED_MODULE_1__.HalfEdge.nodeToIdXYZString(vertexSeed)} Average Normal ${JSON.stringify(data.averageNormal.toJSON())}`);
|
|
242532
242439
|
OffsetMeshContext.stringDebugFunction(` angle ratio ${data.radiansSum / (2 * Math.PI)} maxDeviation ${data.maxDeviationRadiansFromAverage}`);
|
|
242533
242440
|
}
|
|
242534
242441
|
if (maxDeviationRadians !== undefined && maxDeviationRadians <= maxAllowedDeviationRadians) {
|
|
@@ -242811,7 +242718,7 @@ class OffsetMeshContext {
|
|
|
242811
242718
|
vertexSeed = vertexSeedA;
|
|
242812
242719
|
if (OffsetMeshContext.stringDebugFunction !== undefined) {
|
|
242813
242720
|
OffsetMeshContext.stringDebugFunction("");
|
|
242814
|
-
OffsetMeshContext.stringDebugFunction(` VERTEX LOOP ${vertexSeed.getPoint3d().toJSON()} `);
|
|
242721
|
+
OffsetMeshContext.stringDebugFunction(` VERTEX LOOP ${JSON.stringify(vertexSeed.getPoint3d().toJSON())} `);
|
|
242815
242722
|
vertexSeed.sumAroundVertex((node) => { OffsetMeshContext.stringDebugFunction(this.inspectMasks(node, false, true)); return 0; });
|
|
242816
242723
|
}
|
|
242817
242724
|
// Take care of the easiest vertices directly . . . note that this returns from the lambda, not computeOffsetFacetIntersections
|
|
@@ -243026,7 +242933,6 @@ RangeSearch.defaultRangesPerBlockEdge = 4;
|
|
|
243026
242933
|
RangeSearch.defaultStandardDeviationAdjustment = 1.0;
|
|
243027
242934
|
|
|
243028
242935
|
|
|
243029
|
-
|
|
243030
242936
|
/***/ }),
|
|
243031
242937
|
|
|
243032
242938
|
/***/ "../../core/geometry/lib/esm/polyface/multiclip/SweepLineStringToFacetContext.js":
|
|
@@ -249752,7 +249658,6 @@ DgnSpiralTypeQueries.spiralTypeCodeMap = [
|
|
|
249752
249658
|
];
|
|
249753
249659
|
|
|
249754
249660
|
|
|
249755
|
-
|
|
249756
249661
|
/***/ }),
|
|
249757
249662
|
|
|
249758
249663
|
/***/ "../../core/geometry/lib/esm/serialization/BGFBWriter.js":
|
|
@@ -253149,7 +253054,6 @@ Sample.range3d = [
|
|
|
253149
253054
|
];
|
|
253150
253055
|
|
|
253151
253056
|
|
|
253152
|
-
|
|
253153
253057
|
/***/ }),
|
|
253154
253058
|
|
|
253155
253059
|
/***/ "../../core/geometry/lib/esm/serialization/IModelJsonSchema.js":
|
|
@@ -258724,7 +258628,6 @@ HalfEdge._totalNodesCreated = 0;
|
|
|
258724
258628
|
HalfEdge._edgePropertyMasks = [
|
|
258725
258629
|
HalfEdgeMask.BOUNDARY_EDGE, HalfEdgeMask.EXTERIOR, HalfEdgeMask.PRIMARY_EDGE, HalfEdgeMask.NULL_FACE,
|
|
258726
258630
|
];
|
|
258727
|
-
|
|
258728
258631
|
/**
|
|
258729
258632
|
* A HalfEdgeGraph has:
|
|
258730
258633
|
* * An array of (pointers to) HalfEdge objects.
|
|
@@ -263273,7 +263176,6 @@ Triangulator._planes = [
|
|
|
263273
263176
|
_geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_9__.Plane3dByOriginAndUnitNormal.createXYPlane(),
|
|
263274
263177
|
_geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_9__.Plane3dByOriginAndUnitNormal.createXYPlane(),
|
|
263275
263178
|
];
|
|
263276
|
-
|
|
263277
263179
|
/**
|
|
263278
263180
|
* Internal class for assembling chains
|
|
263279
263181
|
* @internal
|
|
@@ -264027,7 +263929,6 @@ class BlockRecord {
|
|
|
264027
263929
|
BlockRecord.RECORD_SIZE = 24;
|
|
264028
263930
|
|
|
264029
263931
|
|
|
264030
|
-
|
|
264031
263932
|
/***/ }),
|
|
264032
263933
|
|
|
264033
263934
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/format/opc/ContainerFile.js":
|
|
@@ -264247,7 +264148,6 @@ class ContainerFile {
|
|
|
264247
264148
|
ContainerFile.MODULE = "ContainerFile";
|
|
264248
264149
|
|
|
264249
264150
|
|
|
264250
|
-
|
|
264251
264151
|
/***/ }),
|
|
264252
264152
|
|
|
264253
264153
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/format/opc/ContainerFilePart.js":
|
|
@@ -265167,7 +265067,6 @@ class FileReader {
|
|
|
265167
265067
|
FileReader.MODULE = "FileReader";
|
|
265168
265068
|
|
|
265169
265069
|
|
|
265170
|
-
|
|
265171
265070
|
/***/ }),
|
|
265172
265071
|
|
|
265173
265072
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/format/opc/FileRecord.js":
|
|
@@ -265484,7 +265383,6 @@ GeometryReader.RECORD_SIZE_LR = 3;
|
|
|
265484
265383
|
GeometryReader.MR_BIN_COUNT = 64;
|
|
265485
265384
|
|
|
265486
265385
|
|
|
265487
|
-
|
|
265488
265386
|
/***/ }),
|
|
265489
265387
|
|
|
265490
265388
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/format/opc/GeometryRecord.js":
|
|
@@ -266398,7 +266296,6 @@ class TileRecord {
|
|
|
266398
266296
|
TileRecord.RECORD_SIZE = 16;
|
|
266399
266297
|
|
|
266400
266298
|
|
|
266401
|
-
|
|
266402
266299
|
/***/ }),
|
|
266403
266300
|
|
|
266404
266301
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/AttributeTypes.js":
|
|
@@ -266474,7 +266371,6 @@ AttributeTypes.TYPE_FLOAT8 = 7;
|
|
|
266474
266371
|
AttributeTypes.TYPE_COLOR = 8;
|
|
266475
266372
|
|
|
266476
266373
|
|
|
266477
|
-
|
|
266478
266374
|
/***/ }),
|
|
266479
266375
|
|
|
266480
266376
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/AttributeValue.js":
|
|
@@ -266999,7 +266895,6 @@ AttributeValue.FALSE = AttributeValue.createBoolean(false);
|
|
|
266999
266895
|
AttributeValue.TRUE = AttributeValue.createBoolean(true);
|
|
267000
266896
|
|
|
267001
266897
|
|
|
267002
|
-
|
|
267003
266898
|
/***/ }),
|
|
267004
266899
|
|
|
267005
266900
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/BlockIndex.js":
|
|
@@ -267394,7 +267289,6 @@ class CloudPoint {
|
|
|
267394
267289
|
CloudPoint.MODULE = "CloudPoint";
|
|
267395
267290
|
|
|
267396
267291
|
|
|
267397
|
-
|
|
267398
267292
|
/***/ }),
|
|
267399
267293
|
|
|
267400
267294
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/Grid.js":
|
|
@@ -268351,7 +268245,6 @@ class PointDataRaw extends _PointData__WEBPACK_IMPORTED_MODULE_0__.PointData {
|
|
|
268351
268245
|
PointDataRaw.TYPE = 1;
|
|
268352
268246
|
|
|
268353
268247
|
|
|
268354
|
-
|
|
268355
268248
|
/***/ }),
|
|
268356
268249
|
|
|
268357
268250
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/ReadRequest.js":
|
|
@@ -268605,7 +268498,6 @@ ReadRequest.READ_GEOMETRY_AND_COLOR = ReadRequest.getGeometryAndColor();
|
|
|
268605
268498
|
ReadRequest.READ_ALL = ReadRequest.getGeometryAndAttributes();
|
|
268606
268499
|
|
|
268607
268500
|
|
|
268608
|
-
|
|
268609
268501
|
/***/ }),
|
|
268610
268502
|
|
|
268611
268503
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/StandardAttributes.js":
|
|
@@ -268667,7 +268559,6 @@ StandardAttributes.GPS_TIME_OFFSET = 1.0e9;
|
|
|
268667
268559
|
StandardAttributes.GPS_WEEK_SECONDS = 604800.0;
|
|
268668
268560
|
|
|
268669
268561
|
|
|
268670
|
-
|
|
268671
268562
|
/***/ }),
|
|
268672
268563
|
|
|
268673
268564
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/model/TileIndex.js":
|
|
@@ -269254,7 +269145,6 @@ DataManager.MAX_FILE_CONTENT_SIZE = 128 * 1024;
|
|
|
269254
269145
|
DataManager.POINT_DATA_EXIRE_TIME = 5 * 60.0;
|
|
269255
269146
|
|
|
269256
269147
|
|
|
269257
|
-
|
|
269258
269148
|
/***/ }),
|
|
269259
269149
|
|
|
269260
269150
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/render/FrameData.js":
|
|
@@ -269549,7 +269439,6 @@ class TileLoadSorter {
|
|
|
269549
269439
|
TileLoadSorter._CLASSNAME_ = "orbitgt.pointcloud.render.TileLoadSorter"; // the full name of the original java class
|
|
269550
269440
|
|
|
269551
269441
|
|
|
269552
|
-
|
|
269553
269442
|
/***/ }),
|
|
269554
269443
|
|
|
269555
269444
|
/***/ "../../core/orbitgt/lib/esm/pointcloud/render/ViewTree.js":
|
|
@@ -269928,7 +269817,6 @@ ViewTree.MODULE = "ViewTree";
|
|
|
269928
269817
|
ViewTree.DEBUG = false;
|
|
269929
269818
|
|
|
269930
269819
|
|
|
269931
|
-
|
|
269932
269820
|
/***/ }),
|
|
269933
269821
|
|
|
269934
269822
|
/***/ "../../core/orbitgt/lib/esm/spatial/crs/CRSEngine.js":
|
|
@@ -270158,7 +270046,6 @@ class CRSManager {
|
|
|
270158
270046
|
CRSManager.ENGINE = null;
|
|
270159
270047
|
|
|
270160
270048
|
|
|
270161
|
-
|
|
270162
270049
|
/***/ }),
|
|
270163
270050
|
|
|
270164
270051
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/CRS.js":
|
|
@@ -271109,7 +270996,6 @@ CRS._CACHE_WGS84_3D = null;
|
|
|
271109
270996
|
CRS._CACHE_WGS84_2D = null;
|
|
271110
270997
|
|
|
271111
270998
|
|
|
271112
|
-
|
|
271113
270999
|
/***/ }),
|
|
271114
271000
|
|
|
271115
271001
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/CoordinateSystem.js":
|
|
@@ -271452,7 +271338,6 @@ class CoordinateSystem {
|
|
|
271452
271338
|
CoordinateSystem.MODULE = "CoordinateSystem";
|
|
271453
271339
|
|
|
271454
271340
|
|
|
271455
|
-
|
|
271456
271341
|
/***/ }),
|
|
271457
271342
|
|
|
271458
271343
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/DataFileUnit.js":
|
|
@@ -271569,7 +271454,6 @@ class DataFileUnit {
|
|
|
271569
271454
|
DataFileUnit.DATA_LINES = null;
|
|
271570
271455
|
|
|
271571
271456
|
|
|
271572
|
-
|
|
271573
271457
|
/***/ }),
|
|
271574
271458
|
|
|
271575
271459
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/Datum.js":
|
|
@@ -271749,7 +271633,6 @@ Datum.TYPE_GEODETIC = "geodetic";
|
|
|
271749
271633
|
Datum.TYPE_VERTICAL = "vertical";
|
|
271750
271634
|
|
|
271751
271635
|
|
|
271752
|
-
|
|
271753
271636
|
/***/ }),
|
|
271754
271637
|
|
|
271755
271638
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/Ellipsoid.js":
|
|
@@ -272310,7 +272193,6 @@ class OnlineRegistry {
|
|
|
272310
272193
|
OnlineRegistry.MODULE = "OnlineRegistry";
|
|
272311
272194
|
|
|
272312
272195
|
|
|
272313
|
-
|
|
272314
272196
|
/***/ }),
|
|
272315
272197
|
|
|
272316
272198
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/Operation.js":
|
|
@@ -272671,7 +272553,6 @@ Operation.CONVERSION = 2;
|
|
|
272671
272553
|
Operation.TRANSFORMATION = 3;
|
|
272672
272554
|
|
|
272673
272555
|
|
|
272674
|
-
|
|
272675
272556
|
/***/ }),
|
|
272676
272557
|
|
|
272677
272558
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/OperationMethod.js":
|
|
@@ -273313,7 +273194,6 @@ Registry._UNIT_LIST = null;
|
|
|
273313
273194
|
Registry._CRS_MAP = new _system_collection_StringMap__WEBPACK_IMPORTED_MODULE_1__.StringMap();
|
|
273314
273195
|
|
|
273315
273196
|
|
|
273316
|
-
|
|
273317
273197
|
/***/ }),
|
|
273318
273198
|
|
|
273319
273199
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/Transform.js":
|
|
@@ -273726,7 +273606,6 @@ Transform._FULL_TRANSFORM = 8;
|
|
|
273726
273606
|
Transform._VERTICAL = 9;
|
|
273727
273607
|
|
|
273728
273608
|
|
|
273729
|
-
|
|
273730
273609
|
/***/ }),
|
|
273731
273610
|
|
|
273732
273611
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/Unit.js":
|
|
@@ -274077,7 +273956,6 @@ Unit._TYPE_TIME = "time";
|
|
|
274077
273956
|
Unit._TYPE_SCALE = "scale";
|
|
274078
273957
|
|
|
274079
273958
|
|
|
274080
|
-
|
|
274081
273959
|
/***/ }),
|
|
274082
273960
|
|
|
274083
273961
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/WellKnownText.js":
|
|
@@ -274608,7 +274486,6 @@ WellKnownText._ARC_SEC_TO_RAD = (1.0 / 3600.0 * Math.PI / 180.0);
|
|
|
274608
274486
|
WellKnownText._CODES = 100000;
|
|
274609
274487
|
|
|
274610
274488
|
|
|
274611
|
-
|
|
274612
274489
|
/***/ }),
|
|
274613
274490
|
|
|
274614
274491
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/WellKnownTextNode.js":
|
|
@@ -274925,7 +274802,6 @@ class HotineObliqueMercator extends _OperationMethod__WEBPACK_IMPORTED_MODULE_0_
|
|
|
274925
274802
|
HotineObliqueMercator.METHOD_CODE = 9812;
|
|
274926
274803
|
|
|
274927
274804
|
|
|
274928
|
-
|
|
274929
274805
|
/***/ }),
|
|
274930
274806
|
|
|
274931
274807
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/KrovakObliqueConformalConic.js":
|
|
@@ -275063,7 +274939,6 @@ class KrovakObliqueConformalConic extends _OperationMethod__WEBPACK_IMPORTED_MOD
|
|
|
275063
274939
|
KrovakObliqueConformalConic.METHOD_CODE = 9819;
|
|
275064
274940
|
|
|
275065
274941
|
|
|
275066
|
-
|
|
275067
274942
|
/***/ }),
|
|
275068
274943
|
|
|
275069
274944
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/KrovakObliqueConformalConicEN.js":
|
|
@@ -275150,7 +275025,6 @@ class KrovakObliqueConformalConicEN extends _OperationMethod__WEBPACK_IMPORTED_M
|
|
|
275150
275025
|
KrovakObliqueConformalConicEN.METHOD_CODE = 1041;
|
|
275151
275026
|
|
|
275152
275027
|
|
|
275153
|
-
|
|
275154
275028
|
/***/ }),
|
|
275155
275029
|
|
|
275156
275030
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/LambertConical1SP.js":
|
|
@@ -275292,7 +275166,6 @@ class LambertConical1SP extends _OperationMethod__WEBPACK_IMPORTED_MODULE_0__.Op
|
|
|
275292
275166
|
LambertConical1SP.METHOD_CODE = 9801;
|
|
275293
275167
|
|
|
275294
275168
|
|
|
275295
|
-
|
|
275296
275169
|
/***/ }),
|
|
275297
275170
|
|
|
275298
275171
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/LambertConical2SP.js":
|
|
@@ -275484,7 +275357,6 @@ LambertConical2SP.PI = Math.PI;
|
|
|
275484
275357
|
LambertConical2SP.hPI = 0.5 * Math.PI;
|
|
275485
275358
|
|
|
275486
275359
|
|
|
275487
|
-
|
|
275488
275360
|
/***/ }),
|
|
275489
275361
|
|
|
275490
275362
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/Mercator1SP.js":
|
|
@@ -275609,7 +275481,6 @@ Mercator1SP.METHOD_CODE = 9804;
|
|
|
275609
275481
|
Mercator1SP.QPI = Math.PI / 4.0;
|
|
275610
275482
|
|
|
275611
275483
|
|
|
275612
|
-
|
|
275613
275484
|
/***/ }),
|
|
275614
275485
|
|
|
275615
275486
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/ObliqueMercator.js":
|
|
@@ -275795,7 +275666,6 @@ ObliqueMercator.METHOD_CODE = 9815; // Hotine Variant B
|
|
|
275795
275666
|
ObliqueMercator.PI = Math.PI;
|
|
275796
275667
|
|
|
275797
275668
|
|
|
275798
|
-
|
|
275799
275669
|
/***/ }),
|
|
275800
275670
|
|
|
275801
275671
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/ObliqueStereographic.js":
|
|
@@ -276016,7 +275886,6 @@ ObliqueStereographic.METHOD_CODE = 9809;
|
|
|
276016
275886
|
ObliqueStereographic.PI = Math.PI;
|
|
276017
275887
|
|
|
276018
275888
|
|
|
276019
|
-
|
|
276020
275889
|
/***/ }),
|
|
276021
275890
|
|
|
276022
275891
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/projection/TransverseMercator.js":
|
|
@@ -276212,7 +276081,6 @@ TransverseMercator.METHOD_CODE = 9807;
|
|
|
276212
276081
|
TransverseMercator.PI = Math.PI;
|
|
276213
276082
|
|
|
276214
276083
|
|
|
276215
|
-
|
|
276216
276084
|
/***/ }),
|
|
276217
276085
|
|
|
276218
276086
|
/***/ "../../core/orbitgt/lib/esm/spatial/ecrs/transformation/PositionVector.js":
|
|
@@ -276357,7 +276225,6 @@ class PositionVector extends _OperationMethod__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
276357
276225
|
PositionVector.METHOD_CODE = 9606;
|
|
276358
276226
|
|
|
276359
276227
|
|
|
276360
|
-
|
|
276361
276228
|
/***/ }),
|
|
276362
276229
|
|
|
276363
276230
|
/***/ "../../core/orbitgt/lib/esm/spatial/geom/Bounds.js":
|
|
@@ -278424,7 +278291,6 @@ class Uint16Buffer {
|
|
|
278424
278291
|
Uint16Buffer.BYTES_PER_ELEMENT = 2;
|
|
278425
278292
|
|
|
278426
278293
|
|
|
278427
|
-
|
|
278428
278294
|
/***/ }),
|
|
278429
278295
|
|
|
278430
278296
|
/***/ "../../core/orbitgt/lib/esm/system/buffer/Uint8Buffer.js":
|
|
@@ -278502,7 +278368,6 @@ class Uint8Buffer {
|
|
|
278502
278368
|
Uint8Buffer.BYTES_PER_ELEMENT = 1;
|
|
278503
278369
|
|
|
278504
278370
|
|
|
278505
|
-
|
|
278506
278371
|
/***/ }),
|
|
278507
278372
|
|
|
278508
278373
|
/***/ "../../core/orbitgt/lib/esm/system/collection/AList.js":
|
|
@@ -279509,7 +279374,6 @@ ALong.MAX_VALUE = new ALong(ALong._U31 - 1.0, ALong._U32 - 1.0);
|
|
|
279509
279374
|
ALong.MIN_VALUE = new ALong(ALong._U31, 0.0);
|
|
279510
279375
|
|
|
279511
279376
|
|
|
279512
|
-
|
|
279513
279377
|
/***/ }),
|
|
279514
279378
|
|
|
279515
279379
|
/***/ "../../core/orbitgt/lib/esm/system/runtime/ASystem.js":
|
|
@@ -279552,7 +279416,6 @@ class ASystem {
|
|
|
279552
279416
|
ASystem.TIME0 = new Date().getTime();
|
|
279553
279417
|
|
|
279554
279418
|
|
|
279555
|
-
|
|
279556
279419
|
/***/ }),
|
|
279557
279420
|
|
|
279558
279421
|
/***/ "../../core/orbitgt/lib/esm/system/runtime/Downloader.js":
|
|
@@ -279602,7 +279465,6 @@ class Downloader {
|
|
|
279602
279465
|
Downloader.INSTANCE = null;
|
|
279603
279466
|
|
|
279604
279467
|
|
|
279605
|
-
|
|
279606
279468
|
/***/ }),
|
|
279607
279469
|
|
|
279608
279470
|
/***/ "../../core/orbitgt/lib/esm/system/runtime/DownloaderXhr.js":
|
|
@@ -279798,7 +279660,6 @@ class Message {
|
|
|
279798
279660
|
Message.DISPLAY = false;
|
|
279799
279661
|
|
|
279800
279662
|
|
|
279801
|
-
|
|
279802
279663
|
/***/ }),
|
|
279803
279664
|
|
|
279804
279665
|
/***/ "../../core/orbitgt/lib/esm/system/runtime/Numbers.js":
|
|
@@ -279898,7 +279759,6 @@ Numbers.F32_BUFFER1 = new Float32Array(Numbers.BUFFER1);
|
|
|
279898
279759
|
Numbers.F64_BUFFER1 = new Float64Array(Numbers.BUFFER1);
|
|
279899
279760
|
|
|
279900
279761
|
|
|
279901
|
-
|
|
279902
279762
|
/***/ }),
|
|
279903
279763
|
|
|
279904
279764
|
/***/ "../../core/orbitgt/lib/esm/system/runtime/Strings.js":
|
|
@@ -280099,7 +279959,6 @@ Strings.NL = String.fromCharCode(10);
|
|
|
280099
279959
|
Strings.CR_NL = String.fromCharCode(13) + String.fromCharCode(10);
|
|
280100
279960
|
|
|
280101
279961
|
|
|
280102
|
-
|
|
280103
279962
|
/***/ }),
|
|
280104
279963
|
|
|
280105
279964
|
/***/ "../../core/orbitgt/lib/esm/system/storage/CacheList.js":
|
|
@@ -280340,7 +280199,6 @@ class ContentLoader {
|
|
|
280340
280199
|
ContentLoader.MODULE = "ContentLoader";
|
|
280341
280200
|
|
|
280342
280201
|
|
|
280343
|
-
|
|
280344
280202
|
/***/ }),
|
|
280345
280203
|
|
|
280346
280204
|
/***/ "../../core/orbitgt/lib/esm/system/storage/FileContent.js":
|
|
@@ -280866,7 +280724,6 @@ QuantityConstants._LOCALE_DECIMAL_SEPARATOR = "";
|
|
|
280866
280724
|
QuantityConstants._LOCALE_THOUSAND_SEPARATOR = "";
|
|
280867
280725
|
|
|
280868
280726
|
|
|
280869
|
-
|
|
280870
280727
|
/***/ }),
|
|
280871
280728
|
|
|
280872
280729
|
/***/ "../../core/quantity/lib/esm/Exception.js":
|
|
@@ -281983,7 +281840,6 @@ class Formatter {
|
|
|
281983
281840
|
Formatter.FPV_MINTHRESHOLD = 1.0e-14;
|
|
281984
281841
|
|
|
281985
281842
|
|
|
281986
|
-
|
|
281987
281843
|
/***/ }),
|
|
281988
281844
|
|
|
281989
281845
|
/***/ "../../core/quantity/lib/esm/Formatter/FormatterSpec.js":
|
|
@@ -282754,7 +282610,6 @@ class Parser {
|
|
|
282754
282610
|
Parser._log = false;
|
|
282755
282611
|
|
|
282756
282612
|
|
|
282757
|
-
|
|
282758
282613
|
/***/ }),
|
|
282759
282614
|
|
|
282760
282615
|
/***/ "../../core/quantity/lib/esm/ParserSpec.js":
|
|
@@ -283516,7 +283371,6 @@ Capabilities.requiredFeatures = [
|
|
|
283516
283371
|
];
|
|
283517
283372
|
|
|
283518
283373
|
|
|
283519
|
-
|
|
283520
283374
|
/***/ }),
|
|
283521
283375
|
|
|
283522
283376
|
/***/ "../../core/webgl-compatibility/lib/esm/RenderCompatibility.js":
|
|
@@ -283993,8 +283847,8 @@ class TestContext {
|
|
|
283993
283847
|
console.log("TestSetup: Done"); // eslint-disable-line
|
|
283994
283848
|
}
|
|
283995
283849
|
}
|
|
283996
|
-
TestContext._instance = undefined;
|
|
283997
283850
|
exports.TestContext = TestContext;
|
|
283851
|
+
TestContext._instance = undefined;
|
|
283998
283852
|
|
|
283999
283853
|
|
|
284000
283854
|
/***/ }),
|
|
@@ -284602,7 +284456,6 @@ class UiAdmin {
|
|
|
284602
284456
|
UiAdmin.onGenericUiEvent = new GenericUiEvent();
|
|
284603
284457
|
|
|
284604
284458
|
|
|
284605
|
-
|
|
284606
284459
|
/***/ }),
|
|
284607
284460
|
|
|
284608
284461
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/UiItemsManager.js":
|
|
@@ -284809,7 +284662,6 @@ UiItemsManager._registeredUiItemsProviders = new Map();
|
|
|
284809
284662
|
UiItemsManager.onUiProviderRegisteredEvent = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
284810
284663
|
|
|
284811
284664
|
|
|
284812
|
-
|
|
284813
284665
|
/***/ }),
|
|
284814
284666
|
|
|
284815
284667
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/UiItemsProvider.js":
|
|
@@ -284910,7 +284762,6 @@ BackstageItemUtilities.createActionItem = (itemId, groupPriority, itemPriority,
|
|
|
284910
284762
|
});
|
|
284911
284763
|
|
|
284912
284764
|
|
|
284913
|
-
|
|
284914
284765
|
/***/ }),
|
|
284915
284766
|
|
|
284916
284767
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/backstage/BackstageItemsManager.js":
|
|
@@ -285116,6 +284967,7 @@ var SpecialKey;
|
|
|
285116
284967
|
SpecialKey["ArrowUp"] = "ArrowUp";
|
|
285117
284968
|
SpecialKey["ArrowDown"] = "ArrowDown";
|
|
285118
284969
|
SpecialKey["Enter"] = "Enter";
|
|
284970
|
+
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
|
|
285119
284971
|
SpecialKey["Return"] = "Enter";
|
|
285120
284972
|
SpecialKey["Space"] = " ";
|
|
285121
284973
|
SpecialKey["Backspace"] = "Backspace";
|
|
@@ -285274,7 +285126,6 @@ StandardContentLayouts.availableLayouts = [
|
|
|
285274
285126
|
];
|
|
285275
285127
|
|
|
285276
285128
|
|
|
285277
|
-
|
|
285278
285129
|
/***/ }),
|
|
285279
285130
|
|
|
285280
285131
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/dialogs/DialogItem.js":
|
|
@@ -285600,7 +285451,6 @@ UiLayoutDataProvider.getPropertyRecord = (dialogItem) => {
|
|
|
285600
285451
|
record.isDisabled = UiLayoutDataProvider.getItemDisabledState(dialogItem);
|
|
285601
285452
|
return record;
|
|
285602
285453
|
};
|
|
285603
|
-
|
|
285604
285454
|
/** [[DialogLayoutDataProvider]] Abstract class that allows property values to be passed between hosting API and Dialog that generates and arranges components dynamically
|
|
285605
285455
|
* including the buttons at the bottom of the dialog.
|
|
285606
285456
|
* @public
|
|
@@ -286757,7 +286607,6 @@ AbstractStatusBarItemUtilities.createLabelItem = (id, section, itemPriority, ico
|
|
|
286757
286607
|
});
|
|
286758
286608
|
|
|
286759
286609
|
|
|
286760
|
-
|
|
286761
286610
|
/***/ }),
|
|
286762
286611
|
|
|
286763
286612
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/statusbar/StatusBarItemsManager.js":
|
|
@@ -286984,7 +286833,6 @@ ToolbarItemUtilities.createGroupButton = (id, itemPriority, icon, label, items,
|
|
|
286984
286833
|
});
|
|
286985
286834
|
|
|
286986
286835
|
|
|
286987
|
-
|
|
286988
286836
|
/***/ }),
|
|
286989
286837
|
|
|
286990
286838
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/toolbars/ToolbarItemsManager.js":
|
|
@@ -287298,7 +287146,6 @@ IconSpecUtilities.SVG_PREFIX = "svg:";
|
|
|
287298
287146
|
IconSpecUtilities.WEB_COMPONENT_PREFIX = "webSvg:";
|
|
287299
287147
|
|
|
287300
287148
|
|
|
287301
|
-
|
|
287302
287149
|
/***/ }),
|
|
287303
287150
|
|
|
287304
287151
|
/***/ "../../ui/appui-abstract/lib/esm/appui-abstract/utils/PointProps.js":
|
|
@@ -289465,9 +289312,9 @@ const gBase64 = {
|
|
|
289465
289312
|
|
|
289466
289313
|
/***/ }),
|
|
289467
289314
|
|
|
289468
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289315
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
289469
289316
|
/*!******************************************************************************************************************************!*\
|
|
289470
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289317
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
289471
289318
|
\******************************************************************************************************************************/
|
|
289472
289319
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289473
289320
|
|
|
@@ -289484,9 +289331,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
289484
289331
|
|
|
289485
289332
|
/***/ }),
|
|
289486
289333
|
|
|
289487
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289334
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
289488
289335
|
/*!****************************************************************************************************************************!*\
|
|
289489
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289336
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
289490
289337
|
\****************************************************************************************************************************/
|
|
289491
289338
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289492
289339
|
|
|
@@ -289501,9 +289348,9 @@ function _arrayWithHoles(arr) {
|
|
|
289501
289348
|
|
|
289502
289349
|
/***/ }),
|
|
289503
289350
|
|
|
289504
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289351
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
289505
289352
|
/*!***********************************************************************************************************************************!*\
|
|
289506
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289353
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
289507
289354
|
\***********************************************************************************************************************************/
|
|
289508
289355
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289509
289356
|
|
|
@@ -289521,9 +289368,9 @@ function _assertThisInitialized(self) {
|
|
|
289521
289368
|
|
|
289522
289369
|
/***/ }),
|
|
289523
289370
|
|
|
289524
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289371
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
289525
289372
|
/*!****************************************************************************************************************************!*\
|
|
289526
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289373
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
289527
289374
|
\****************************************************************************************************************************/
|
|
289528
289375
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289529
289376
|
|
|
@@ -289540,9 +289387,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
289540
289387
|
|
|
289541
289388
|
/***/ }),
|
|
289542
289389
|
|
|
289543
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289390
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
289544
289391
|
/*!*************************************************************************************************************************!*\
|
|
289545
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289392
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
289546
289393
|
\*************************************************************************************************************************/
|
|
289547
289394
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289548
289395
|
|
|
@@ -289551,7 +289398,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289551
289398
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289552
289399
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
289553
289400
|
/* harmony export */ });
|
|
289554
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289401
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
289555
289402
|
|
|
289556
289403
|
function _defineProperties(target, props) {
|
|
289557
289404
|
for (var i = 0; i < props.length; i++) {
|
|
@@ -289573,9 +289420,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
289573
289420
|
|
|
289574
289421
|
/***/ }),
|
|
289575
289422
|
|
|
289576
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289423
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
289577
289424
|
/*!****************************************************************************************************************************!*\
|
|
289578
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289425
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
289579
289426
|
\****************************************************************************************************************************/
|
|
289580
289427
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289581
289428
|
|
|
@@ -289584,7 +289431,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289584
289431
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289585
289432
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
289586
289433
|
/* harmony export */ });
|
|
289587
|
-
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289434
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
289588
289435
|
|
|
289589
289436
|
function _defineProperty(obj, key, value) {
|
|
289590
289437
|
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
@@ -289603,9 +289450,9 @@ function _defineProperty(obj, key, value) {
|
|
|
289603
289450
|
|
|
289604
289451
|
/***/ }),
|
|
289605
289452
|
|
|
289606
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289453
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
289607
289454
|
/*!****************************************************************************************************************************!*\
|
|
289608
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289455
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
289609
289456
|
\****************************************************************************************************************************/
|
|
289610
289457
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289611
289458
|
|
|
@@ -289623,9 +289470,9 @@ function _getPrototypeOf(o) {
|
|
|
289623
289470
|
|
|
289624
289471
|
/***/ }),
|
|
289625
289472
|
|
|
289626
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289473
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
289627
289474
|
/*!**********************************************************************************************************************!*\
|
|
289628
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289475
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
289629
289476
|
\**********************************************************************************************************************/
|
|
289630
289477
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289631
289478
|
|
|
@@ -289634,7 +289481,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289634
289481
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289635
289482
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
289636
289483
|
/* harmony export */ });
|
|
289637
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289484
|
+
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js");
|
|
289638
289485
|
|
|
289639
289486
|
function _inherits(subClass, superClass) {
|
|
289640
289487
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -289655,9 +289502,9 @@ function _inherits(subClass, superClass) {
|
|
|
289655
289502
|
|
|
289656
289503
|
/***/ }),
|
|
289657
289504
|
|
|
289658
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289505
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
289659
289506
|
/*!*****************************************************************************************************************************!*\
|
|
289660
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289507
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
289661
289508
|
\*****************************************************************************************************************************/
|
|
289662
289509
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289663
289510
|
|
|
@@ -289672,9 +289519,9 @@ function _iterableToArray(iter) {
|
|
|
289672
289519
|
|
|
289673
289520
|
/***/ }),
|
|
289674
289521
|
|
|
289675
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289522
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
289676
289523
|
/*!*****************************************************************************************************************************!*\
|
|
289677
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289524
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
289678
289525
|
\*****************************************************************************************************************************/
|
|
289679
289526
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289680
289527
|
|
|
@@ -289689,9 +289536,9 @@ function _nonIterableRest() {
|
|
|
289689
289536
|
|
|
289690
289537
|
/***/ }),
|
|
289691
289538
|
|
|
289692
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289539
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
289693
289540
|
/*!***************************************************************************************************************************************!*\
|
|
289694
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289541
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
289695
289542
|
\***************************************************************************************************************************************/
|
|
289696
289543
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289697
289544
|
|
|
@@ -289700,8 +289547,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289700
289547
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289701
289548
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
289702
289549
|
/* harmony export */ });
|
|
289703
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289704
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289550
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
289551
|
+
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
289705
289552
|
|
|
289706
289553
|
|
|
289707
289554
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -289715,9 +289562,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
289715
289562
|
|
|
289716
289563
|
/***/ }),
|
|
289717
289564
|
|
|
289718
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289565
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
289719
289566
|
/*!****************************************************************************************************************************!*\
|
|
289720
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289567
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
289721
289568
|
\****************************************************************************************************************************/
|
|
289722
289569
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289723
289570
|
|
|
@@ -289736,9 +289583,9 @@ function _setPrototypeOf(o, p) {
|
|
|
289736
289583
|
|
|
289737
289584
|
/***/ }),
|
|
289738
289585
|
|
|
289739
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289586
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
289740
289587
|
/*!*********************************************************************************************************************!*\
|
|
289741
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289588
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
289742
289589
|
\*********************************************************************************************************************/
|
|
289743
289590
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289744
289591
|
|
|
@@ -289747,10 +289594,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289747
289594
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289748
289595
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
289749
289596
|
/* harmony export */ });
|
|
289750
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289751
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289752
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289753
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289597
|
+
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js");
|
|
289598
|
+
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/iterableToArray.js");
|
|
289599
|
+
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js");
|
|
289600
|
+
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js");
|
|
289754
289601
|
|
|
289755
289602
|
|
|
289756
289603
|
|
|
@@ -289761,9 +289608,9 @@ function _toArray(arr) {
|
|
|
289761
289608
|
|
|
289762
289609
|
/***/ }),
|
|
289763
289610
|
|
|
289764
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289611
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
289765
289612
|
/*!*************************************************************************************************************************!*\
|
|
289766
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289613
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
289767
289614
|
\*************************************************************************************************************************/
|
|
289768
289615
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289769
289616
|
|
|
@@ -289772,7 +289619,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289772
289619
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289773
289620
|
/* harmony export */ "default": () => (/* binding */ toPrimitive)
|
|
289774
289621
|
/* harmony export */ });
|
|
289775
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289622
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
289776
289623
|
|
|
289777
289624
|
function toPrimitive(t, r) {
|
|
289778
289625
|
if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t;
|
|
@@ -289787,9 +289634,9 @@ function toPrimitive(t, r) {
|
|
|
289787
289634
|
|
|
289788
289635
|
/***/ }),
|
|
289789
289636
|
|
|
289790
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289637
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
289791
289638
|
/*!***************************************************************************************************************************!*\
|
|
289792
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289639
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
289793
289640
|
\***************************************************************************************************************************/
|
|
289794
289641
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289795
289642
|
|
|
@@ -289798,8 +289645,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289798
289645
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289799
289646
|
/* harmony export */ "default": () => (/* binding */ toPropertyKey)
|
|
289800
289647
|
/* harmony export */ });
|
|
289801
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289802
|
-
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289648
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
289649
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
289803
289650
|
|
|
289804
289651
|
|
|
289805
289652
|
function toPropertyKey(t) {
|
|
@@ -289809,9 +289656,9 @@ function toPropertyKey(t) {
|
|
|
289809
289656
|
|
|
289810
289657
|
/***/ }),
|
|
289811
289658
|
|
|
289812
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289659
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
289813
289660
|
/*!********************************************************************************************************************!*\
|
|
289814
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289661
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
289815
289662
|
\********************************************************************************************************************/
|
|
289816
289663
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289817
289664
|
|
|
@@ -289832,9 +289679,9 @@ function _typeof(o) {
|
|
|
289832
289679
|
|
|
289833
289680
|
/***/ }),
|
|
289834
289681
|
|
|
289835
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289682
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
289836
289683
|
/*!****************************************************************************************************************************************!*\
|
|
289837
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289684
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
289838
289685
|
\****************************************************************************************************************************************/
|
|
289839
289686
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289840
289687
|
|
|
@@ -289843,7 +289690,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289843
289690
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289844
289691
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
289845
289692
|
/* harmony export */ });
|
|
289846
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
289693
|
+
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js");
|
|
289847
289694
|
|
|
289848
289695
|
function _unsupportedIterableToArray(o, minLen) {
|
|
289849
289696
|
if (!o) return;
|
|
@@ -289856,9 +289703,9 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
289856
289703
|
|
|
289857
289704
|
/***/ }),
|
|
289858
289705
|
|
|
289859
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289706
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/adapters.js":
|
|
289860
289707
|
/*!****************************************************************************************************!*\
|
|
289861
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289708
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/adapters.js ***!
|
|
289862
289709
|
\****************************************************************************************************/
|
|
289863
289710
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289864
289711
|
|
|
@@ -289867,10 +289714,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289867
289714
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289868
289715
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
289869
289716
|
/* harmony export */ });
|
|
289870
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289871
|
-
/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289872
|
-
/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289873
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289717
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
289718
|
+
/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/null.js");
|
|
289719
|
+
/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/xhr.js");
|
|
289720
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
289874
289721
|
|
|
289875
289722
|
|
|
289876
289723
|
|
|
@@ -289952,9 +289799,9 @@ const isResolvedHandle = (adapter) => _utils_js__WEBPACK_IMPORTED_MODULE_2__["de
|
|
|
289952
289799
|
|
|
289953
289800
|
/***/ }),
|
|
289954
289801
|
|
|
289955
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289802
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/xhr.js":
|
|
289956
289803
|
/*!***********************************************************************************************!*\
|
|
289957
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289804
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/xhr.js ***!
|
|
289958
289805
|
\***********************************************************************************************/
|
|
289959
289806
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
289960
289807
|
|
|
@@ -289963,19 +289810,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
289963
289810
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
289964
289811
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
289965
289812
|
/* harmony export */ });
|
|
289966
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289967
|
-
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289968
|
-
/* harmony import */ var _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./../helpers/cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289969
|
-
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289970
|
-
/* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289971
|
-
/* harmony import */ var _helpers_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./../helpers/isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289972
|
-
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289973
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289974
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289975
|
-
/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289976
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289977
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289978
|
-
/* harmony import */ var _helpers_speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
289813
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
289814
|
+
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./../core/settle.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/settle.js");
|
|
289815
|
+
/* harmony import */ var _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./../helpers/cookies.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/cookies.js");
|
|
289816
|
+
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/buildURL.js");
|
|
289817
|
+
/* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/buildFullPath.js");
|
|
289818
|
+
/* harmony import */ var _helpers_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./../helpers/isURLSameOrigin.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
|
289819
|
+
/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../defaults/transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/transitional.js");
|
|
289820
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
289821
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js");
|
|
289822
|
+
/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseProtocol.js");
|
|
289823
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js");
|
|
289824
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
289825
|
+
/* harmony import */ var _helpers_speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/speedometer.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/speedometer.js");
|
|
289979
289826
|
|
|
289980
289827
|
|
|
289981
289828
|
|
|
@@ -290240,9 +290087,9 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
290240
290087
|
|
|
290241
290088
|
/***/ }),
|
|
290242
290089
|
|
|
290243
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290090
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/axios.js":
|
|
290244
290091
|
/*!****************************************************************************************!*\
|
|
290245
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290092
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/axios.js ***!
|
|
290246
290093
|
\****************************************************************************************/
|
|
290247
290094
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290248
290095
|
|
|
@@ -290251,23 +290098,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290251
290098
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290252
290099
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290253
290100
|
/* harmony export */ });
|
|
290254
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290255
|
-
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290256
|
-
/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290257
|
-
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290258
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290259
|
-
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290260
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290261
|
-
/* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290262
|
-
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290263
|
-
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290264
|
-
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290265
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290266
|
-
/* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290267
|
-
/* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290268
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290269
|
-
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290270
|
-
/* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290101
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
290102
|
+
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/bind.js");
|
|
290103
|
+
/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/Axios.js");
|
|
290104
|
+
/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/mergeConfig.js");
|
|
290105
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/index.js");
|
|
290106
|
+
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/formDataToJSON.js");
|
|
290107
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js");
|
|
290108
|
+
/* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CancelToken.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CancelToken.js");
|
|
290109
|
+
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/isCancel.js");
|
|
290110
|
+
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/env/data.js");
|
|
290111
|
+
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js");
|
|
290112
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
290113
|
+
/* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./helpers/spread.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/spread.js");
|
|
290114
|
+
/* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAxiosError.js");
|
|
290115
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
290116
|
+
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/adapters.js");
|
|
290117
|
+
/* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/HttpStatusCode.js");
|
|
290271
290118
|
|
|
290272
290119
|
|
|
290273
290120
|
|
|
@@ -290361,9 +290208,9 @@ axios.default = axios;
|
|
|
290361
290208
|
|
|
290362
290209
|
/***/ }),
|
|
290363
290210
|
|
|
290364
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290211
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CancelToken.js":
|
|
290365
290212
|
/*!*****************************************************************************************************!*\
|
|
290366
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290213
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CancelToken.js ***!
|
|
290367
290214
|
\*****************************************************************************************************/
|
|
290368
290215
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290369
290216
|
|
|
@@ -290372,7 +290219,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290372
290219
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290373
290220
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290374
290221
|
/* harmony export */ });
|
|
290375
|
-
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290222
|
+
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js");
|
|
290376
290223
|
|
|
290377
290224
|
|
|
290378
290225
|
|
|
@@ -290498,9 +290345,9 @@ class CancelToken {
|
|
|
290498
290345
|
|
|
290499
290346
|
/***/ }),
|
|
290500
290347
|
|
|
290501
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290348
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js":
|
|
290502
290349
|
/*!*******************************************************************************************************!*\
|
|
290503
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290350
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js ***!
|
|
290504
290351
|
\*******************************************************************************************************/
|
|
290505
290352
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290506
290353
|
|
|
@@ -290509,8 +290356,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290509
290356
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290510
290357
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290511
290358
|
/* harmony export */ });
|
|
290512
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290513
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290359
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
290360
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
290514
290361
|
|
|
290515
290362
|
|
|
290516
290363
|
|
|
@@ -290540,9 +290387,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].inherits(CanceledError, _core_
|
|
|
290540
290387
|
|
|
290541
290388
|
/***/ }),
|
|
290542
290389
|
|
|
290543
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290390
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/isCancel.js":
|
|
290544
290391
|
/*!**************************************************************************************************!*\
|
|
290545
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290392
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/isCancel.js ***!
|
|
290546
290393
|
\**************************************************************************************************/
|
|
290547
290394
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290548
290395
|
|
|
@@ -290560,9 +290407,9 @@ function isCancel(value) {
|
|
|
290560
290407
|
|
|
290561
290408
|
/***/ }),
|
|
290562
290409
|
|
|
290563
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290410
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/Axios.js":
|
|
290564
290411
|
/*!*********************************************************************************************!*\
|
|
290565
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290412
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/Axios.js ***!
|
|
290566
290413
|
\*********************************************************************************************/
|
|
290567
290414
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290568
290415
|
|
|
@@ -290571,14 +290418,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290571
290418
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290572
290419
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290573
290420
|
/* harmony export */ });
|
|
290574
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290575
|
-
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290576
|
-
/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290577
|
-
/* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290578
|
-
/* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290579
|
-
/* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290580
|
-
/* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290581
|
-
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290421
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
290422
|
+
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/buildURL.js");
|
|
290423
|
+
/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/InterceptorManager.js");
|
|
290424
|
+
/* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dispatchRequest.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/dispatchRequest.js");
|
|
290425
|
+
/* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mergeConfig.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/mergeConfig.js");
|
|
290426
|
+
/* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./buildFullPath.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/buildFullPath.js");
|
|
290427
|
+
/* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/validator.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/validator.js");
|
|
290428
|
+
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
290582
290429
|
|
|
290583
290430
|
|
|
290584
290431
|
|
|
@@ -290616,31 +290463,7 @@ class Axios {
|
|
|
290616
290463
|
*
|
|
290617
290464
|
* @returns {Promise} The Promise to be fulfilled
|
|
290618
290465
|
*/
|
|
290619
|
-
|
|
290620
|
-
try {
|
|
290621
|
-
return await this._request(configOrUrl, config);
|
|
290622
|
-
} catch (err) {
|
|
290623
|
-
if (err instanceof Error) {
|
|
290624
|
-
let dummy;
|
|
290625
|
-
|
|
290626
|
-
Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : (dummy = new Error());
|
|
290627
|
-
|
|
290628
|
-
// slice off the Error: ... line
|
|
290629
|
-
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
|
290630
|
-
|
|
290631
|
-
if (!err.stack) {
|
|
290632
|
-
err.stack = stack;
|
|
290633
|
-
// match without the 2 top stack lines
|
|
290634
|
-
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
|
|
290635
|
-
err.stack += '\n' + stack
|
|
290636
|
-
}
|
|
290637
|
-
}
|
|
290638
|
-
|
|
290639
|
-
throw err;
|
|
290640
|
-
}
|
|
290641
|
-
}
|
|
290642
|
-
|
|
290643
|
-
_request(configOrUrl, config) {
|
|
290466
|
+
request(configOrUrl, config) {
|
|
290644
290467
|
/*eslint no-param-reassign:0*/
|
|
290645
290468
|
// Allow for axios('example/url'[, config]) a la fetch API
|
|
290646
290469
|
if (typeof configOrUrl === 'string') {
|
|
@@ -290808,9 +290631,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
290808
290631
|
|
|
290809
290632
|
/***/ }),
|
|
290810
290633
|
|
|
290811
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290634
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js":
|
|
290812
290635
|
/*!**************************************************************************************************!*\
|
|
290813
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290636
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js ***!
|
|
290814
290637
|
\**************************************************************************************************/
|
|
290815
290638
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290816
290639
|
|
|
@@ -290819,7 +290642,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290819
290642
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290820
290643
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290821
290644
|
/* harmony export */ });
|
|
290822
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290645
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
290823
290646
|
|
|
290824
290647
|
|
|
290825
290648
|
|
|
@@ -290924,9 +290747,9 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
|
290924
290747
|
|
|
290925
290748
|
/***/ }),
|
|
290926
290749
|
|
|
290927
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290750
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js":
|
|
290928
290751
|
/*!****************************************************************************************************!*\
|
|
290929
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290752
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js ***!
|
|
290930
290753
|
\****************************************************************************************************/
|
|
290931
290754
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
290932
290755
|
|
|
@@ -290935,8 +290758,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
290935
290758
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
290936
290759
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
290937
290760
|
/* harmony export */ });
|
|
290938
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290939
|
-
/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
290761
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
290762
|
+
/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseHeaders.js");
|
|
290940
290763
|
|
|
290941
290764
|
|
|
290942
290765
|
|
|
@@ -291239,9 +291062,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
|
|
|
291239
291062
|
|
|
291240
291063
|
/***/ }),
|
|
291241
291064
|
|
|
291242
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291065
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/InterceptorManager.js":
|
|
291243
291066
|
/*!**********************************************************************************************************!*\
|
|
291244
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291067
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/InterceptorManager.js ***!
|
|
291245
291068
|
\**********************************************************************************************************/
|
|
291246
291069
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291247
291070
|
|
|
@@ -291250,7 +291073,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291250
291073
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291251
291074
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
291252
291075
|
/* harmony export */ });
|
|
291253
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291076
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
291254
291077
|
|
|
291255
291078
|
|
|
291256
291079
|
|
|
@@ -291326,9 +291149,9 @@ class InterceptorManager {
|
|
|
291326
291149
|
|
|
291327
291150
|
/***/ }),
|
|
291328
291151
|
|
|
291329
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291152
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/buildFullPath.js":
|
|
291330
291153
|
/*!*****************************************************************************************************!*\
|
|
291331
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291154
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/buildFullPath.js ***!
|
|
291332
291155
|
\*****************************************************************************************************/
|
|
291333
291156
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291334
291157
|
|
|
@@ -291337,8 +291160,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291337
291160
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291338
291161
|
/* harmony export */ "default": () => (/* binding */ buildFullPath)
|
|
291339
291162
|
/* harmony export */ });
|
|
291340
|
-
/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291341
|
-
/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291163
|
+
/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
|
291164
|
+
/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/combineURLs.js");
|
|
291342
291165
|
|
|
291343
291166
|
|
|
291344
291167
|
|
|
@@ -291364,9 +291187,9 @@ function buildFullPath(baseURL, requestedURL) {
|
|
|
291364
291187
|
|
|
291365
291188
|
/***/ }),
|
|
291366
291189
|
|
|
291367
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291190
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/dispatchRequest.js":
|
|
291368
291191
|
/*!*******************************************************************************************************!*\
|
|
291369
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291192
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/dispatchRequest.js ***!
|
|
291370
291193
|
\*******************************************************************************************************/
|
|
291371
291194
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291372
291195
|
|
|
@@ -291375,12 +291198,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291375
291198
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291376
291199
|
/* harmony export */ "default": () => (/* binding */ dispatchRequest)
|
|
291377
291200
|
/* harmony export */ });
|
|
291378
|
-
/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291379
|
-
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291380
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291381
|
-
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291382
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291383
|
-
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291201
|
+
/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/transformData.js");
|
|
291202
|
+
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/isCancel.js");
|
|
291203
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/index.js");
|
|
291204
|
+
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/cancel/CanceledError.js");
|
|
291205
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
291206
|
+
/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adapters/adapters.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/adapters/adapters.js");
|
|
291384
291207
|
|
|
291385
291208
|
|
|
291386
291209
|
|
|
@@ -291466,9 +291289,9 @@ function dispatchRequest(config) {
|
|
|
291466
291289
|
|
|
291467
291290
|
/***/ }),
|
|
291468
291291
|
|
|
291469
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291292
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/mergeConfig.js":
|
|
291470
291293
|
/*!***************************************************************************************************!*\
|
|
291471
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291294
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/mergeConfig.js ***!
|
|
291472
291295
|
\***************************************************************************************************/
|
|
291473
291296
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291474
291297
|
|
|
@@ -291477,8 +291300,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291477
291300
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291478
291301
|
/* harmony export */ "default": () => (/* binding */ mergeConfig)
|
|
291479
291302
|
/* harmony export */ });
|
|
291480
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291481
|
-
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291303
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
291304
|
+
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
291482
291305
|
|
|
291483
291306
|
|
|
291484
291307
|
|
|
@@ -291589,9 +291412,9 @@ function mergeConfig(config1, config2) {
|
|
|
291589
291412
|
|
|
291590
291413
|
/***/ }),
|
|
291591
291414
|
|
|
291592
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291415
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/settle.js":
|
|
291593
291416
|
/*!**********************************************************************************************!*\
|
|
291594
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291417
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/settle.js ***!
|
|
291595
291418
|
\**********************************************************************************************/
|
|
291596
291419
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291597
291420
|
|
|
@@ -291600,7 +291423,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291600
291423
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291601
291424
|
/* harmony export */ "default": () => (/* binding */ settle)
|
|
291602
291425
|
/* harmony export */ });
|
|
291603
|
-
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291426
|
+
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
291604
291427
|
|
|
291605
291428
|
|
|
291606
291429
|
|
|
@@ -291632,9 +291455,9 @@ function settle(resolve, reject, response) {
|
|
|
291632
291455
|
|
|
291633
291456
|
/***/ }),
|
|
291634
291457
|
|
|
291635
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291458
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/transformData.js":
|
|
291636
291459
|
/*!*****************************************************************************************************!*\
|
|
291637
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291460
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/transformData.js ***!
|
|
291638
291461
|
\*****************************************************************************************************/
|
|
291639
291462
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291640
291463
|
|
|
@@ -291643,9 +291466,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291643
291466
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291644
291467
|
/* harmony export */ "default": () => (/* binding */ transformData)
|
|
291645
291468
|
/* harmony export */ });
|
|
291646
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291647
|
-
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291648
|
-
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291469
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
291470
|
+
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/index.js");
|
|
291471
|
+
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosHeaders.js");
|
|
291649
291472
|
|
|
291650
291473
|
|
|
291651
291474
|
|
|
@@ -291678,9 +291501,9 @@ function transformData(fns, response) {
|
|
|
291678
291501
|
|
|
291679
291502
|
/***/ }),
|
|
291680
291503
|
|
|
291681
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291504
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/index.js":
|
|
291682
291505
|
/*!*************************************************************************************************!*\
|
|
291683
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291506
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/index.js ***!
|
|
291684
291507
|
\*************************************************************************************************/
|
|
291685
291508
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291686
291509
|
|
|
@@ -291689,13 +291512,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291689
291512
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291690
291513
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
291691
291514
|
/* harmony export */ });
|
|
291692
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291693
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291694
|
-
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291695
|
-
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291696
|
-
/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291697
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291698
|
-
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291515
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
291516
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
291517
|
+
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/transitional.js");
|
|
291518
|
+
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js");
|
|
291519
|
+
/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toURLEncodedForm.js");
|
|
291520
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js");
|
|
291521
|
+
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/formDataToJSON.js");
|
|
291699
291522
|
|
|
291700
291523
|
|
|
291701
291524
|
|
|
@@ -291749,6 +291572,9 @@ const defaults = {
|
|
|
291749
291572
|
const isFormData = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFormData(data);
|
|
291750
291573
|
|
|
291751
291574
|
if (isFormData) {
|
|
291575
|
+
if (!hasJSONContentType) {
|
|
291576
|
+
return data;
|
|
291577
|
+
}
|
|
291752
291578
|
return hasJSONContentType ? JSON.stringify((0,_helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__["default"])(data)) : data;
|
|
291753
291579
|
}
|
|
291754
291580
|
|
|
@@ -291856,9 +291682,9 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
|
|
|
291856
291682
|
|
|
291857
291683
|
/***/ }),
|
|
291858
291684
|
|
|
291859
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291685
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/transitional.js":
|
|
291860
291686
|
/*!********************************************************************************************************!*\
|
|
291861
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291687
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/defaults/transitional.js ***!
|
|
291862
291688
|
\********************************************************************************************************/
|
|
291863
291689
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291864
291690
|
|
|
@@ -291878,9 +291704,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291878
291704
|
|
|
291879
291705
|
/***/ }),
|
|
291880
291706
|
|
|
291881
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291707
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/env/data.js":
|
|
291882
291708
|
/*!*******************************************************************************************!*\
|
|
291883
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291709
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/env/data.js ***!
|
|
291884
291710
|
\*******************************************************************************************/
|
|
291885
291711
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291886
291712
|
|
|
@@ -291889,13 +291715,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291889
291715
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291890
291716
|
/* harmony export */ "VERSION": () => (/* binding */ VERSION)
|
|
291891
291717
|
/* harmony export */ });
|
|
291892
|
-
const VERSION = "1.6.
|
|
291718
|
+
const VERSION = "1.6.5";
|
|
291893
291719
|
|
|
291894
291720
|
/***/ }),
|
|
291895
291721
|
|
|
291896
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291722
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js":
|
|
291897
291723
|
/*!***************************************************************************************************************!*\
|
|
291898
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291724
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
|
|
291899
291725
|
\***************************************************************************************************************/
|
|
291900
291726
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291901
291727
|
|
|
@@ -291904,7 +291730,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
291904
291730
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
291905
291731
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
291906
291732
|
/* harmony export */ });
|
|
291907
|
-
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291733
|
+
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js");
|
|
291908
291734
|
|
|
291909
291735
|
|
|
291910
291736
|
|
|
@@ -291967,9 +291793,9 @@ prototype.toString = function toString(encoder) {
|
|
|
291967
291793
|
|
|
291968
291794
|
/***/ }),
|
|
291969
291795
|
|
|
291970
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291796
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/HttpStatusCode.js":
|
|
291971
291797
|
/*!*********************************************************************************************************!*\
|
|
291972
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291798
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/HttpStatusCode.js ***!
|
|
291973
291799
|
\*********************************************************************************************************/
|
|
291974
291800
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
291975
291801
|
|
|
@@ -292053,9 +291879,9 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
292053
291879
|
|
|
292054
291880
|
/***/ }),
|
|
292055
291881
|
|
|
292056
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291882
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/bind.js":
|
|
292057
291883
|
/*!***********************************************************************************************!*\
|
|
292058
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291884
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/bind.js ***!
|
|
292059
291885
|
\***********************************************************************************************/
|
|
292060
291886
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292061
291887
|
|
|
@@ -292075,9 +291901,9 @@ function bind(fn, thisArg) {
|
|
|
292075
291901
|
|
|
292076
291902
|
/***/ }),
|
|
292077
291903
|
|
|
292078
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291904
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/buildURL.js":
|
|
292079
291905
|
/*!***************************************************************************************************!*\
|
|
292080
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291906
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/buildURL.js ***!
|
|
292081
291907
|
\***************************************************************************************************/
|
|
292082
291908
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292083
291909
|
|
|
@@ -292086,8 +291912,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292086
291912
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292087
291913
|
/* harmony export */ "default": () => (/* binding */ buildURL)
|
|
292088
291914
|
/* harmony export */ });
|
|
292089
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292090
|
-
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291915
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
291916
|
+
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
292091
291917
|
|
|
292092
291918
|
|
|
292093
291919
|
|
|
@@ -292155,9 +291981,9 @@ function buildURL(url, params, options) {
|
|
|
292155
291981
|
|
|
292156
291982
|
/***/ }),
|
|
292157
291983
|
|
|
292158
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291984
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/combineURLs.js":
|
|
292159
291985
|
/*!******************************************************************************************************!*\
|
|
292160
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
291986
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/combineURLs.js ***!
|
|
292161
291987
|
\******************************************************************************************************/
|
|
292162
291988
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292163
291989
|
|
|
@@ -292185,9 +292011,9 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
292185
292011
|
|
|
292186
292012
|
/***/ }),
|
|
292187
292013
|
|
|
292188
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292014
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/cookies.js":
|
|
292189
292015
|
/*!**************************************************************************************************!*\
|
|
292190
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292016
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/cookies.js ***!
|
|
292191
292017
|
\**************************************************************************************************/
|
|
292192
292018
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292193
292019
|
|
|
@@ -292196,8 +292022,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292196
292022
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292197
292023
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
292198
292024
|
/* harmony export */ });
|
|
292199
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292200
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292025
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292026
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js");
|
|
292201
292027
|
|
|
292202
292028
|
|
|
292203
292029
|
|
|
@@ -292244,9 +292070,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292244
292070
|
|
|
292245
292071
|
/***/ }),
|
|
292246
292072
|
|
|
292247
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292073
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/formDataToJSON.js":
|
|
292248
292074
|
/*!*********************************************************************************************************!*\
|
|
292249
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292075
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/formDataToJSON.js ***!
|
|
292250
292076
|
\*********************************************************************************************************/
|
|
292251
292077
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292252
292078
|
|
|
@@ -292255,7 +292081,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292255
292081
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292256
292082
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
292257
292083
|
/* harmony export */ });
|
|
292258
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292084
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292259
292085
|
|
|
292260
292086
|
|
|
292261
292087
|
|
|
@@ -292355,9 +292181,9 @@ function formDataToJSON(formData) {
|
|
|
292355
292181
|
|
|
292356
292182
|
/***/ }),
|
|
292357
292183
|
|
|
292358
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292184
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAbsoluteURL.js":
|
|
292359
292185
|
/*!********************************************************************************************************!*\
|
|
292360
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292186
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
|
|
292361
292187
|
\********************************************************************************************************/
|
|
292362
292188
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292363
292189
|
|
|
@@ -292385,9 +292211,9 @@ function isAbsoluteURL(url) {
|
|
|
292385
292211
|
|
|
292386
292212
|
/***/ }),
|
|
292387
292213
|
|
|
292388
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292214
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAxiosError.js":
|
|
292389
292215
|
/*!*******************************************************************************************************!*\
|
|
292390
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292216
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isAxiosError.js ***!
|
|
292391
292217
|
\*******************************************************************************************************/
|
|
292392
292218
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292393
292219
|
|
|
@@ -292396,7 +292222,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292396
292222
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292397
292223
|
/* harmony export */ "default": () => (/* binding */ isAxiosError)
|
|
292398
292224
|
/* harmony export */ });
|
|
292399
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292225
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292400
292226
|
|
|
292401
292227
|
|
|
292402
292228
|
|
|
@@ -292415,9 +292241,9 @@ function isAxiosError(payload) {
|
|
|
292415
292241
|
|
|
292416
292242
|
/***/ }),
|
|
292417
292243
|
|
|
292418
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292244
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
|
292419
292245
|
/*!**********************************************************************************************************!*\
|
|
292420
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292246
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
|
|
292421
292247
|
\**********************************************************************************************************/
|
|
292422
292248
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292423
292249
|
|
|
@@ -292426,8 +292252,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292426
292252
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292427
292253
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
292428
292254
|
/* harmony export */ });
|
|
292429
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292430
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292255
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292256
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js");
|
|
292431
292257
|
|
|
292432
292258
|
|
|
292433
292259
|
|
|
@@ -292499,9 +292325,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292499
292325
|
|
|
292500
292326
|
/***/ }),
|
|
292501
292327
|
|
|
292502
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292328
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/null.js":
|
|
292503
292329
|
/*!***********************************************************************************************!*\
|
|
292504
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292330
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/null.js ***!
|
|
292505
292331
|
\***********************************************************************************************/
|
|
292506
292332
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292507
292333
|
|
|
@@ -292516,9 +292342,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292516
292342
|
|
|
292517
292343
|
/***/ }),
|
|
292518
292344
|
|
|
292519
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292345
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseHeaders.js":
|
|
292520
292346
|
/*!*******************************************************************************************************!*\
|
|
292521
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292347
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseHeaders.js ***!
|
|
292522
292348
|
\*******************************************************************************************************/
|
|
292523
292349
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292524
292350
|
|
|
@@ -292527,7 +292353,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292527
292353
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292528
292354
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
292529
292355
|
/* harmony export */ });
|
|
292530
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292356
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292531
292357
|
|
|
292532
292358
|
|
|
292533
292359
|
|
|
@@ -292587,9 +292413,9 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
|
|
|
292587
292413
|
|
|
292588
292414
|
/***/ }),
|
|
292589
292415
|
|
|
292590
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292416
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseProtocol.js":
|
|
292591
292417
|
/*!********************************************************************************************************!*\
|
|
292592
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292418
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/parseProtocol.js ***!
|
|
292593
292419
|
\********************************************************************************************************/
|
|
292594
292420
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292595
292421
|
|
|
@@ -292608,9 +292434,9 @@ function parseProtocol(url) {
|
|
|
292608
292434
|
|
|
292609
292435
|
/***/ }),
|
|
292610
292436
|
|
|
292611
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292437
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/speedometer.js":
|
|
292612
292438
|
/*!******************************************************************************************************!*\
|
|
292613
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292439
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/speedometer.js ***!
|
|
292614
292440
|
\******************************************************************************************************/
|
|
292615
292441
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292616
292442
|
|
|
@@ -292678,9 +292504,9 @@ function speedometer(samplesCount, min) {
|
|
|
292678
292504
|
|
|
292679
292505
|
/***/ }),
|
|
292680
292506
|
|
|
292681
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292507
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/spread.js":
|
|
292682
292508
|
/*!*************************************************************************************************!*\
|
|
292683
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292509
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/spread.js ***!
|
|
292684
292510
|
\*************************************************************************************************/
|
|
292685
292511
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292686
292512
|
|
|
@@ -292721,9 +292547,9 @@ function spread(callback) {
|
|
|
292721
292547
|
|
|
292722
292548
|
/***/ }),
|
|
292723
292549
|
|
|
292724
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292550
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js":
|
|
292725
292551
|
/*!*****************************************************************************************************!*\
|
|
292726
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292552
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js ***!
|
|
292727
292553
|
\*****************************************************************************************************/
|
|
292728
292554
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292729
292555
|
|
|
@@ -292732,9 +292558,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292732
292558
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292733
292559
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
292734
292560
|
/* harmony export */ });
|
|
292735
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292736
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292737
|
-
/* 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.6.
|
|
292561
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292562
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
292563
|
+
/* 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.6.5/node_modules/axios/lib/helpers/null.js");
|
|
292738
292564
|
|
|
292739
292565
|
|
|
292740
292566
|
|
|
@@ -292958,9 +292784,9 @@ function toFormData(obj, formData, options) {
|
|
|
292958
292784
|
|
|
292959
292785
|
/***/ }),
|
|
292960
292786
|
|
|
292961
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292787
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toURLEncodedForm.js":
|
|
292962
292788
|
/*!***********************************************************************************************************!*\
|
|
292963
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292789
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
|
|
292964
292790
|
\***********************************************************************************************************/
|
|
292965
292791
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
292966
292792
|
|
|
@@ -292969,9 +292795,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
292969
292795
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
292970
292796
|
/* harmony export */ "default": () => (/* binding */ toURLEncodedForm)
|
|
292971
292797
|
/* harmony export */ });
|
|
292972
|
-
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292973
|
-
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292974
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292798
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js");
|
|
292799
|
+
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/toFormData.js");
|
|
292800
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js");
|
|
292975
292801
|
|
|
292976
292802
|
|
|
292977
292803
|
|
|
@@ -292994,9 +292820,9 @@ function toURLEncodedForm(data, options) {
|
|
|
292994
292820
|
|
|
292995
292821
|
/***/ }),
|
|
292996
292822
|
|
|
292997
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292823
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/validator.js":
|
|
292998
292824
|
/*!****************************************************************************************************!*\
|
|
292999
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292825
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/validator.js ***!
|
|
293000
292826
|
\****************************************************************************************************/
|
|
293001
292827
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293002
292828
|
|
|
@@ -293005,8 +292831,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293005
292831
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
293006
292832
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
293007
292833
|
/* harmony export */ });
|
|
293008
|
-
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293009
|
-
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292834
|
+
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/env/data.js");
|
|
292835
|
+
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/core/AxiosError.js");
|
|
293010
292836
|
|
|
293011
292837
|
|
|
293012
292838
|
|
|
@@ -293102,9 +292928,9 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
293102
292928
|
|
|
293103
292929
|
/***/ }),
|
|
293104
292930
|
|
|
293105
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292931
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/Blob.js":
|
|
293106
292932
|
/*!****************************************************************************************************************!*\
|
|
293107
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292933
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/Blob.js ***!
|
|
293108
292934
|
\****************************************************************************************************************/
|
|
293109
292935
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293110
292936
|
|
|
@@ -293120,9 +292946,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293120
292946
|
|
|
293121
292947
|
/***/ }),
|
|
293122
292948
|
|
|
293123
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292949
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/FormData.js":
|
|
293124
292950
|
/*!********************************************************************************************************************!*\
|
|
293125
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292951
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/FormData.js ***!
|
|
293126
292952
|
\********************************************************************************************************************/
|
|
293127
292953
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293128
292954
|
|
|
@@ -293138,9 +292964,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293138
292964
|
|
|
293139
292965
|
/***/ }),
|
|
293140
292966
|
|
|
293141
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292967
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js":
|
|
293142
292968
|
/*!***************************************************************************************************************************!*\
|
|
293143
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292969
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
|
|
293144
292970
|
\***************************************************************************************************************************/
|
|
293145
292971
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293146
292972
|
|
|
@@ -293149,7 +292975,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293149
292975
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
293150
292976
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
293151
292977
|
/* harmony export */ });
|
|
293152
|
-
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292978
|
+
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
293153
292979
|
|
|
293154
292980
|
|
|
293155
292981
|
|
|
@@ -293158,9 +292984,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293158
292984
|
|
|
293159
292985
|
/***/ }),
|
|
293160
292986
|
|
|
293161
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292987
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/index.js":
|
|
293162
292988
|
/*!*********************************************************************************************************!*\
|
|
293163
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292989
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/index.js ***!
|
|
293164
292990
|
\*********************************************************************************************************/
|
|
293165
292991
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293166
292992
|
|
|
@@ -293169,9 +292995,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293169
292995
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
293170
292996
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
293171
292997
|
/* harmony export */ });
|
|
293172
|
-
/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293173
|
-
/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293174
|
-
/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
292998
|
+
/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js");
|
|
292999
|
+
/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/FormData.js");
|
|
293000
|
+
/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/classes/Blob.js");
|
|
293175
293001
|
|
|
293176
293002
|
|
|
293177
293003
|
|
|
@@ -293189,9 +293015,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293189
293015
|
|
|
293190
293016
|
/***/ }),
|
|
293191
293017
|
|
|
293192
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293018
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/common/utils.js":
|
|
293193
293019
|
/*!********************************************************************************************************!*\
|
|
293194
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293020
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/common/utils.js ***!
|
|
293195
293021
|
\********************************************************************************************************/
|
|
293196
293022
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293197
293023
|
|
|
@@ -293249,9 +293075,9 @@ const hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
293249
293075
|
|
|
293250
293076
|
/***/ }),
|
|
293251
293077
|
|
|
293252
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293078
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js":
|
|
293253
293079
|
/*!*************************************************************************************************!*\
|
|
293254
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293080
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/index.js ***!
|
|
293255
293081
|
\*************************************************************************************************/
|
|
293256
293082
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293257
293083
|
|
|
@@ -293260,8 +293086,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293260
293086
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
293261
293087
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
293262
293088
|
/* harmony export */ });
|
|
293263
|
-
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293264
|
-
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293089
|
+
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/browser/index.js");
|
|
293090
|
+
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/platform/common/utils.js");
|
|
293265
293091
|
|
|
293266
293092
|
|
|
293267
293093
|
|
|
@@ -293273,9 +293099,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293273
293099
|
|
|
293274
293100
|
/***/ }),
|
|
293275
293101
|
|
|
293276
|
-
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293102
|
+
/***/ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js":
|
|
293277
293103
|
/*!****************************************************************************************!*\
|
|
293278
|
-
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293104
|
+
!*** ../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/utils.js ***!
|
|
293279
293105
|
\****************************************************************************************/
|
|
293280
293106
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
293281
293107
|
|
|
@@ -293284,7 +293110,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293284
293110
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
293285
293111
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
293286
293112
|
/* harmony export */ });
|
|
293287
|
-
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.
|
|
293113
|
+
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../../common/temp/node_modules/.pnpm/axios@1.6.5/node_modules/axios/lib/helpers/bind.js");
|
|
293288
293114
|
|
|
293289
293115
|
|
|
293290
293116
|
|
|
@@ -294497,15 +294323,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
294497
294323
|
/* harmony export */ "t": () => (/* binding */ t),
|
|
294498
294324
|
/* harmony export */ "use": () => (/* binding */ use)
|
|
294499
294325
|
/* harmony export */ });
|
|
294500
|
-
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294501
|
-
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294502
|
-
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294503
|
-
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294504
|
-
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294505
|
-
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294506
|
-
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294507
|
-
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294508
|
-
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
294326
|
+
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
294327
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
294328
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
294329
|
+
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
294330
|
+
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
294331
|
+
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
294332
|
+
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
294333
|
+
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
294334
|
+
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toArray.js");
|
|
294509
294335
|
|
|
294510
294336
|
|
|
294511
294337
|
|
|
@@ -297322,7 +297148,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
297322
297148
|
/***/ ((module) => {
|
|
297323
297149
|
|
|
297324
297150
|
"use strict";
|
|
297325
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.6.0-dev.
|
|
297151
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.6.0-dev.24","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","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 ES2020 --outDir lib/esm","clean":"rimraf 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","docs":"betools docs --includes=../../generated-docs/extract --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 -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","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:^4.6.0-dev.24","@itwin/core-bentley":"workspace:^4.6.0-dev.24","@itwin/core-common":"workspace:^4.6.0-dev.24","@itwin/core-geometry":"workspace:^4.6.0-dev.24","@itwin/core-orbitgt":"workspace:^4.6.0-dev.24","@itwin/core-quantity":"workspace:^4.6.0-dev.24"},"//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/certa":"workspace:*","@itwin/eslint-plugin":"4.0.0-dev.52","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^10.0.6","@types/sinon":"^17.0.2","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.3.10","chai-as-promised":"^7.1.1","cpx2":"^3.0.0","eslint":"^8.44.0","glob":"^10.3.12","mocha":"^10.2.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^17.0.1","source-map-loader":"^4.0.0","typescript":"~5.3.3","typemoq":"^2.1.0","webpack":"^5.76.0"},"//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/cloud-agnostic-core":"^2.1.0","@itwin/object-storage-core":"^2.2.2","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","meshoptimizer":"~0.20.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
297326
297152
|
|
|
297327
297153
|
/***/ })
|
|
297328
297154
|
|