@itwin/rpcinterface-full-stack-tests 5.8.0-dev.5 → 5.8.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/bundled-tests.js +482 -431
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_4_3_4__loaders_gl_core_4_3_4_node_modu-4c1fc9.bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -67370,11 +67370,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67370
67370
|
"use strict";
|
|
67371
67371
|
__webpack_require__.r(__webpack_exports__);
|
|
67372
67372
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
67373
|
-
/* harmony export */ ECSqlReader: () => (/* binding */ ECSqlReader)
|
|
67374
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* binding */ PropertyMetaDataMap)
|
|
67373
|
+
/* harmony export */ ECSqlReader: () => (/* binding */ ECSqlReader)
|
|
67375
67374
|
/* harmony export */ });
|
|
67376
|
-
/* harmony import */ var
|
|
67377
|
-
/* harmony import */ var
|
|
67375
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
67376
|
+
/* harmony import */ var _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ECSqlReaderBase */ "../../core/common/lib/esm/ECSqlReaderBase.js");
|
|
67378
67377
|
/*---------------------------------------------------------------------------------------------
|
|
67379
67378
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
67380
67379
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -67384,51 +67383,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67384
67383
|
*/
|
|
67385
67384
|
|
|
67386
67385
|
|
|
67387
|
-
/** @public */
|
|
67388
|
-
class PropertyMetaDataMap {
|
|
67389
|
-
properties;
|
|
67390
|
-
_byPropName = new Map();
|
|
67391
|
-
_byJsonName = new Map();
|
|
67392
|
-
_byNoCase = new Map();
|
|
67393
|
-
constructor(properties) {
|
|
67394
|
-
this.properties = properties;
|
|
67395
|
-
for (const property of this.properties) {
|
|
67396
|
-
property.extendType = property.extendedType !== undefined ? property.extendedType : ""; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
67397
|
-
property.extendedType = property.extendedType === "" ? undefined : property.extendedType;
|
|
67398
|
-
this._byPropName.set(property.name, property.index);
|
|
67399
|
-
this._byJsonName.set(property.jsonName, property.index);
|
|
67400
|
-
this._byNoCase.set(property.name.toLowerCase(), property.index);
|
|
67401
|
-
this._byNoCase.set(property.jsonName.toLowerCase(), property.index);
|
|
67402
|
-
}
|
|
67403
|
-
}
|
|
67404
|
-
get length() {
|
|
67405
|
-
return this.properties.length;
|
|
67406
|
-
}
|
|
67407
|
-
[Symbol.iterator]() {
|
|
67408
|
-
return this.properties[Symbol.iterator]();
|
|
67409
|
-
}
|
|
67410
|
-
findByName(name) {
|
|
67411
|
-
const index = this._byPropName.get(name);
|
|
67412
|
-
if (typeof index === "number") {
|
|
67413
|
-
return this.properties[index];
|
|
67414
|
-
}
|
|
67415
|
-
return undefined;
|
|
67416
|
-
}
|
|
67417
|
-
findByJsonName(name) {
|
|
67418
|
-
const index = this._byJsonName.get(name);
|
|
67419
|
-
if (typeof index === "number") {
|
|
67420
|
-
return this.properties[index];
|
|
67421
|
-
}
|
|
67422
|
-
return undefined;
|
|
67423
|
-
}
|
|
67424
|
-
findByNoCase(name) {
|
|
67425
|
-
const index = this._byNoCase.get(name.toLowerCase());
|
|
67426
|
-
if (typeof index === "number") {
|
|
67427
|
-
return this.properties[index];
|
|
67428
|
-
}
|
|
67429
|
-
return undefined;
|
|
67430
|
-
}
|
|
67431
|
-
}
|
|
67432
67386
|
/**
|
|
67433
67387
|
* Execute ECSQL statements and read the results.
|
|
67434
67388
|
*
|
|
@@ -67451,7 +67405,7 @@ class PropertyMetaDataMap {
|
|
|
67451
67405
|
* JavaScript object, call [[QueryRowProxy.toRow]] on it.
|
|
67452
67406
|
* @public
|
|
67453
67407
|
*/
|
|
67454
|
-
class ECSqlReader {
|
|
67408
|
+
class ECSqlReader extends _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.ECSqlReaderBase {
|
|
67455
67409
|
_executor;
|
|
67456
67410
|
query;
|
|
67457
67411
|
static _maxRetryCount = 10;
|
|
@@ -67459,51 +67413,16 @@ class ECSqlReader {
|
|
|
67459
67413
|
_localOffset = 0;
|
|
67460
67414
|
_globalOffset = -1;
|
|
67461
67415
|
_globalCount = -1;
|
|
67462
|
-
_done = false;
|
|
67463
67416
|
_globalDone = false;
|
|
67464
|
-
|
|
67465
|
-
_param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryBinder().serialize();
|
|
67417
|
+
_param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryBinder().serialize();
|
|
67466
67418
|
_lockArgs = false;
|
|
67467
67419
|
_stats = { backendCpuTime: 0, backendTotalTime: 0, backendMemUsed: 0, backendRowsReturned: 0, totalTime: 0, retryCount: 0, prepareTime: 0 };
|
|
67468
|
-
_options = new
|
|
67469
|
-
_rowProxy = new Proxy(this, {
|
|
67470
|
-
get: (target, key) => {
|
|
67471
|
-
if (typeof key === "string") {
|
|
67472
|
-
const idx = Number.parseInt(key, 10);
|
|
67473
|
-
if (!Number.isNaN(idx)) {
|
|
67474
|
-
return target.getRowInternal()[idx];
|
|
67475
|
-
}
|
|
67476
|
-
const prop = target._props.findByNoCase(key);
|
|
67477
|
-
if (prop) {
|
|
67478
|
-
return target.getRowInternal()[prop.index];
|
|
67479
|
-
}
|
|
67480
|
-
if (key === "getMetaData") {
|
|
67481
|
-
return () => target._props.properties;
|
|
67482
|
-
}
|
|
67483
|
-
if (key === "toRow") {
|
|
67484
|
-
return () => target.formatCurrentRow(true);
|
|
67485
|
-
}
|
|
67486
|
-
if (key === "toArray") {
|
|
67487
|
-
return () => this.getRowInternal();
|
|
67488
|
-
}
|
|
67489
|
-
}
|
|
67490
|
-
return undefined;
|
|
67491
|
-
},
|
|
67492
|
-
has: (target, p) => {
|
|
67493
|
-
return !target._props.findByNoCase(p);
|
|
67494
|
-
},
|
|
67495
|
-
ownKeys: (target) => {
|
|
67496
|
-
const keys = [];
|
|
67497
|
-
for (const prop of target._props) {
|
|
67498
|
-
keys.push(prop.name);
|
|
67499
|
-
}
|
|
67500
|
-
return keys;
|
|
67501
|
-
},
|
|
67502
|
-
});
|
|
67420
|
+
_options = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryOptionsBuilder().getOptions();
|
|
67503
67421
|
/**
|
|
67504
67422
|
* @internal
|
|
67505
67423
|
*/
|
|
67506
67424
|
constructor(_executor, query, param, options) {
|
|
67425
|
+
super(options?.rowFormat);
|
|
67507
67426
|
this._executor = _executor;
|
|
67508
67427
|
this.query = query;
|
|
67509
67428
|
if (query.trim().length === 0) {
|
|
@@ -67512,38 +67431,33 @@ class ECSqlReader {
|
|
|
67512
67431
|
if (param) {
|
|
67513
67432
|
this._param = param.serialize();
|
|
67514
67433
|
}
|
|
67434
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
67515
67435
|
this.reset(options);
|
|
67516
67436
|
}
|
|
67517
|
-
|
|
67518
|
-
|
|
67519
|
-
|
|
67520
|
-
if (typeof val === "string") {
|
|
67521
|
-
if (_Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.hasPrefix(val)) {
|
|
67522
|
-
row[key] = _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.toUint8Array(val);
|
|
67523
|
-
}
|
|
67524
|
-
}
|
|
67525
|
-
else if (typeof val === "object" && val !== null) {
|
|
67526
|
-
this.replaceBase64WithUint8Array(val);
|
|
67527
|
-
}
|
|
67528
|
-
}
|
|
67529
|
-
}
|
|
67437
|
+
/**
|
|
67438
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
67439
|
+
*/
|
|
67530
67440
|
setParams(param) {
|
|
67531
67441
|
if (this._lockArgs) {
|
|
67532
67442
|
throw new Error("call resetBindings() before setting or changing parameters");
|
|
67533
67443
|
}
|
|
67534
67444
|
this._param = param.serialize();
|
|
67535
67445
|
}
|
|
67446
|
+
/**
|
|
67447
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
67448
|
+
*/
|
|
67536
67449
|
reset(options) {
|
|
67537
67450
|
if (options) {
|
|
67538
67451
|
this._options = options;
|
|
67539
67452
|
}
|
|
67540
|
-
this._props = new PropertyMetaDataMap([]);
|
|
67453
|
+
this._props = new _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.PropertyMetaDataMap([]);
|
|
67541
67454
|
this._localRows = [];
|
|
67542
67455
|
this._globalDone = false;
|
|
67543
67456
|
this._globalOffset = 0;
|
|
67544
67457
|
this._globalCount = -1;
|
|
67545
67458
|
if (typeof this._options.rowFormat === "undefined")
|
|
67546
|
-
this._options.rowFormat =
|
|
67459
|
+
this._options.rowFormat = _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryRowFormat.UseECSqlPropertyIndexes;
|
|
67460
|
+
this._rowFormat = this._options.rowFormat;
|
|
67547
67461
|
if (this._options.limit) {
|
|
67548
67462
|
if (typeof this._options.limit.offset === "number" && this._options.limit.offset > 0)
|
|
67549
67463
|
this._globalOffset = this._options.limit.offset;
|
|
@@ -67552,53 +67466,14 @@ class ECSqlReader {
|
|
|
67552
67466
|
}
|
|
67553
67467
|
this._done = false;
|
|
67554
67468
|
}
|
|
67555
|
-
/**
|
|
67556
|
-
* Get the current row from the query result. The current row is the one most recently stepped-to
|
|
67557
|
-
* (by step() or during iteration).
|
|
67558
|
-
*
|
|
67559
|
-
* Each value from the row can be accessed by index or by name.
|
|
67560
|
-
*
|
|
67561
|
-
* The format of the row is dictated by the [[QueryOptions.rowFormat]] specified in the `options` parameter of the
|
|
67562
|
-
* constructed ECSqlReader object.
|
|
67563
|
-
*
|
|
67564
|
-
* @see
|
|
67565
|
-
* - [[QueryRowFormat]]
|
|
67566
|
-
* - [ECSQL Row Formats]($docs/learning/ECSQLRowFormat)
|
|
67567
|
-
*
|
|
67568
|
-
* @note The current row is be a [[QueryRowProxy]] object. To get the row as a basic JavaScript object, call
|
|
67569
|
-
* [[QueryRowProxy.toRow]] on it.
|
|
67570
|
-
*
|
|
67571
|
-
* @example
|
|
67572
|
-
* ```ts
|
|
67573
|
-
* const reader = iModel.createQueryReader("SELECT ECInstanceId FROM bis.Element");
|
|
67574
|
-
* while (await reader.step()) {
|
|
67575
|
-
* // Both lines below print the same value
|
|
67576
|
-
* console.log(reader.current[0]);
|
|
67577
|
-
* console.log(reader.current.ecinstanceid);
|
|
67578
|
-
* }
|
|
67579
|
-
* ```
|
|
67580
|
-
*
|
|
67581
|
-
* @return The current row as a [[QueryRowProxy]].
|
|
67582
|
-
*/
|
|
67583
|
-
get current() {
|
|
67584
|
-
return this._rowProxy;
|
|
67585
|
-
}
|
|
67586
67469
|
/**
|
|
67587
67470
|
* Clear all bindings.
|
|
67471
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
67588
67472
|
*/
|
|
67589
67473
|
resetBindings() {
|
|
67590
|
-
this._param = new
|
|
67474
|
+
this._param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryBinder().serialize();
|
|
67591
67475
|
this._lockArgs = false;
|
|
67592
67476
|
}
|
|
67593
|
-
/**
|
|
67594
|
-
* Returns if there are more rows available.
|
|
67595
|
-
*
|
|
67596
|
-
* @returns `true` if all rows have been stepped through already.<br/>
|
|
67597
|
-
* `false` if there are any yet unaccessed rows.
|
|
67598
|
-
*/
|
|
67599
|
-
get done() {
|
|
67600
|
-
return this._done;
|
|
67601
|
-
}
|
|
67602
67477
|
/**
|
|
67603
67478
|
* @internal
|
|
67604
67479
|
*/
|
|
@@ -67626,10 +67501,10 @@ class ECSqlReader {
|
|
|
67626
67501
|
if (this._globalCount === 0) {
|
|
67627
67502
|
return [];
|
|
67628
67503
|
}
|
|
67629
|
-
const valueFormat = this._options.rowFormat ===
|
|
67504
|
+
const valueFormat = this._options.rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryRowFormat.UseJsPropertyNames ? _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbValueFormat.JsNames : _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbValueFormat.ECSqlNames;
|
|
67630
67505
|
const request = {
|
|
67631
67506
|
...this._options,
|
|
67632
|
-
kind:
|
|
67507
|
+
kind: _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbRequestKind.ECSql,
|
|
67633
67508
|
valueFormat,
|
|
67634
67509
|
query: this.query,
|
|
67635
67510
|
args: this._param,
|
|
@@ -67637,9 +67512,9 @@ class ECSqlReader {
|
|
|
67637
67512
|
request.includeMetaData = this._props.length > 0 ? false : true;
|
|
67638
67513
|
request.limit = { offset: this._globalOffset, count: this._globalCount < 1 ? -1 : this._globalCount };
|
|
67639
67514
|
const resp = await this.runWithRetry(request);
|
|
67640
|
-
this._globalDone = resp.status ===
|
|
67515
|
+
this._globalDone = resp.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.Done;
|
|
67641
67516
|
if (this._props.length === 0 && resp.meta.length > 0) {
|
|
67642
|
-
this._props = new PropertyMetaDataMap(resp.meta);
|
|
67517
|
+
this._props = new _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.PropertyMetaDataMap(resp.meta);
|
|
67643
67518
|
}
|
|
67644
67519
|
for (const row of resp.data) {
|
|
67645
67520
|
ECSqlReader.replaceBase64WithUint8Array(row);
|
|
@@ -67650,7 +67525,7 @@ class ECSqlReader {
|
|
|
67650
67525
|
* @internal
|
|
67651
67526
|
*/
|
|
67652
67527
|
async runWithRetry(request) {
|
|
67653
|
-
const needRetry = (rs) => (rs.status ===
|
|
67528
|
+
const needRetry = (rs) => (rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.Partial || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.QueueFull || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.Timeout || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.ShuttingDown) && (rs.data === undefined || rs.data.length === 0);
|
|
67654
67529
|
const updateStats = (rs) => {
|
|
67655
67530
|
this._stats.backendCpuTime += rs.stats.cpuTime;
|
|
67656
67531
|
this._stats.backendTotalTime += rs.stats.totalTime;
|
|
@@ -67666,7 +67541,7 @@ class ECSqlReader {
|
|
|
67666
67541
|
};
|
|
67667
67542
|
let retry = ECSqlReader._maxRetryCount;
|
|
67668
67543
|
let resp = await execQuery(request);
|
|
67669
|
-
|
|
67544
|
+
_ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbQueryError.throwIfError(resp, request);
|
|
67670
67545
|
while (--retry > 0 && needRetry(resp)) {
|
|
67671
67546
|
resp = await execQuery(request);
|
|
67672
67547
|
this._stats.retryCount += 1;
|
|
@@ -67680,26 +67555,6 @@ class ECSqlReader {
|
|
|
67680
67555
|
updateStats(resp);
|
|
67681
67556
|
return resp;
|
|
67682
67557
|
}
|
|
67683
|
-
/**
|
|
67684
|
-
* @internal
|
|
67685
|
-
*/
|
|
67686
|
-
formatCurrentRow(onlyReturnObject = false) {
|
|
67687
|
-
if (!onlyReturnObject && this._options.rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes) {
|
|
67688
|
-
return this.getRowInternal();
|
|
67689
|
-
}
|
|
67690
|
-
const formattedRow = {};
|
|
67691
|
-
for (const prop of this._props) {
|
|
67692
|
-
const propName = this._options.rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseJsPropertyNames ? prop.jsonName : prop.name;
|
|
67693
|
-
const val = this.getRowInternal()[prop.index];
|
|
67694
|
-
if (typeof val !== "undefined" && val !== null) {
|
|
67695
|
-
Object.defineProperty(formattedRow, propName, {
|
|
67696
|
-
value: val,
|
|
67697
|
-
enumerable: true,
|
|
67698
|
-
});
|
|
67699
|
-
}
|
|
67700
|
-
}
|
|
67701
|
-
return formattedRow;
|
|
67702
|
-
}
|
|
67703
67558
|
/**
|
|
67704
67559
|
* Get the metadata for each column in the query result.
|
|
67705
67560
|
*
|
|
@@ -67786,6 +67641,199 @@ class ECSqlReader {
|
|
|
67786
67641
|
}
|
|
67787
67642
|
|
|
67788
67643
|
|
|
67644
|
+
/***/ }),
|
|
67645
|
+
|
|
67646
|
+
/***/ "../../core/common/lib/esm/ECSqlReaderBase.js":
|
|
67647
|
+
/*!****************************************************!*\
|
|
67648
|
+
!*** ../../core/common/lib/esm/ECSqlReaderBase.js ***!
|
|
67649
|
+
\****************************************************/
|
|
67650
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
67651
|
+
|
|
67652
|
+
"use strict";
|
|
67653
|
+
__webpack_require__.r(__webpack_exports__);
|
|
67654
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
67655
|
+
/* harmony export */ ECSqlReaderBase: () => (/* binding */ ECSqlReaderBase),
|
|
67656
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* binding */ PropertyMetaDataMap)
|
|
67657
|
+
/* harmony export */ });
|
|
67658
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
67659
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
67660
|
+
/*---------------------------------------------------------------------------------------------
|
|
67661
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
67662
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
67663
|
+
*--------------------------------------------------------------------------------------------*/
|
|
67664
|
+
/** @packageDocumentation
|
|
67665
|
+
* @module iModels
|
|
67666
|
+
*/
|
|
67667
|
+
|
|
67668
|
+
|
|
67669
|
+
/** @public */
|
|
67670
|
+
class PropertyMetaDataMap {
|
|
67671
|
+
properties;
|
|
67672
|
+
_byPropName = new Map();
|
|
67673
|
+
_byJsonName = new Map();
|
|
67674
|
+
_byNoCase = new Map();
|
|
67675
|
+
constructor(properties) {
|
|
67676
|
+
this.properties = properties;
|
|
67677
|
+
for (const property of this.properties) {
|
|
67678
|
+
property.extendType = property.extendedType !== undefined ? property.extendedType : ""; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
67679
|
+
property.extendedType = property.extendedType === "" ? undefined : property.extendedType;
|
|
67680
|
+
this._byPropName.set(property.name, property.index);
|
|
67681
|
+
this._byJsonName.set(property.jsonName, property.index);
|
|
67682
|
+
this._byNoCase.set(property.name.toLowerCase(), property.index);
|
|
67683
|
+
this._byNoCase.set(property.jsonName.toLowerCase(), property.index);
|
|
67684
|
+
}
|
|
67685
|
+
}
|
|
67686
|
+
get length() {
|
|
67687
|
+
return this.properties.length;
|
|
67688
|
+
}
|
|
67689
|
+
[Symbol.iterator]() {
|
|
67690
|
+
return this.properties[Symbol.iterator]();
|
|
67691
|
+
}
|
|
67692
|
+
findByName(name) {
|
|
67693
|
+
const index = this._byPropName.get(name);
|
|
67694
|
+
if (typeof index === "number") {
|
|
67695
|
+
return this.properties[index];
|
|
67696
|
+
}
|
|
67697
|
+
return undefined;
|
|
67698
|
+
}
|
|
67699
|
+
findByJsonName(name) {
|
|
67700
|
+
const index = this._byJsonName.get(name);
|
|
67701
|
+
if (typeof index === "number") {
|
|
67702
|
+
return this.properties[index];
|
|
67703
|
+
}
|
|
67704
|
+
return undefined;
|
|
67705
|
+
}
|
|
67706
|
+
findByNoCase(name) {
|
|
67707
|
+
const index = this._byNoCase.get(name.toLowerCase());
|
|
67708
|
+
if (typeof index === "number") {
|
|
67709
|
+
return this.properties[index];
|
|
67710
|
+
}
|
|
67711
|
+
return undefined;
|
|
67712
|
+
}
|
|
67713
|
+
}
|
|
67714
|
+
/**
|
|
67715
|
+
* Abstract base class providing shared row-proxy access, row formatting, and
|
|
67716
|
+
* Base64-to-Uint8Array conversion logic for both the asynchronous [[ECSqlReader]]
|
|
67717
|
+
* and the synchronous ECSqlSyncReader.
|
|
67718
|
+
*
|
|
67719
|
+
* Subclasses must implement [[getRowInternal]] to supply the current row data.
|
|
67720
|
+
* @public
|
|
67721
|
+
*/
|
|
67722
|
+
class ECSqlReaderBase {
|
|
67723
|
+
/** @internal */
|
|
67724
|
+
_done = false;
|
|
67725
|
+
/** @internal */
|
|
67726
|
+
_props = new PropertyMetaDataMap([]);
|
|
67727
|
+
/** @internal */
|
|
67728
|
+
_rowFormat;
|
|
67729
|
+
_rowProxy = new Proxy(this, {
|
|
67730
|
+
get: (target, key) => {
|
|
67731
|
+
if (typeof key === "string") {
|
|
67732
|
+
const idx = Number.parseInt(key, 10);
|
|
67733
|
+
if (!Number.isNaN(idx)) {
|
|
67734
|
+
return target.getRowInternal()[idx];
|
|
67735
|
+
}
|
|
67736
|
+
const prop = target._props.findByNoCase(key);
|
|
67737
|
+
if (prop) {
|
|
67738
|
+
return target.getRowInternal()[prop.index];
|
|
67739
|
+
}
|
|
67740
|
+
if (key === "getMetaData") {
|
|
67741
|
+
return () => target._props.properties;
|
|
67742
|
+
}
|
|
67743
|
+
if (key === "toRow") {
|
|
67744
|
+
return () => target.formatCurrentRow(true);
|
|
67745
|
+
}
|
|
67746
|
+
if (key === "toArray") {
|
|
67747
|
+
return () => target.getRowInternal();
|
|
67748
|
+
}
|
|
67749
|
+
}
|
|
67750
|
+
return undefined;
|
|
67751
|
+
},
|
|
67752
|
+
has: (target, p) => {
|
|
67753
|
+
return !target._props.findByNoCase(p);
|
|
67754
|
+
},
|
|
67755
|
+
ownKeys: (target) => {
|
|
67756
|
+
const keys = [];
|
|
67757
|
+
for (const prop of target._props) {
|
|
67758
|
+
keys.push(prop.name);
|
|
67759
|
+
}
|
|
67760
|
+
return keys;
|
|
67761
|
+
},
|
|
67762
|
+
});
|
|
67763
|
+
/**
|
|
67764
|
+
* @internal
|
|
67765
|
+
*/
|
|
67766
|
+
constructor(rowFormat) {
|
|
67767
|
+
this._rowFormat = rowFormat ?? _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes;
|
|
67768
|
+
}
|
|
67769
|
+
/**
|
|
67770
|
+
* Get the current row from the query result. The current row is the one most recently stepped-to
|
|
67771
|
+
* (by step() or during iteration).
|
|
67772
|
+
*
|
|
67773
|
+
* Each value from the row can be accessed by index or by name.
|
|
67774
|
+
*
|
|
67775
|
+
* @see
|
|
67776
|
+
* - [[QueryRowFormat]]
|
|
67777
|
+
* - [ECSQL Row Formats]($docs/learning/ECSQLRowFormat)
|
|
67778
|
+
*
|
|
67779
|
+
* @note The current row is a [[QueryRowProxy]] object. To get the row as a basic JavaScript object, call
|
|
67780
|
+
* [[QueryRowProxy.toRow]] on it.
|
|
67781
|
+
*
|
|
67782
|
+
* @return The current row as a [[QueryRowProxy]].
|
|
67783
|
+
*/
|
|
67784
|
+
get current() {
|
|
67785
|
+
return this._rowProxy;
|
|
67786
|
+
}
|
|
67787
|
+
/**
|
|
67788
|
+
* Returns if there are more rows available.
|
|
67789
|
+
*
|
|
67790
|
+
* @returns `true` if all rows have been stepped through already.<br/>
|
|
67791
|
+
* `false` if there are any yet unaccessed rows.
|
|
67792
|
+
*/
|
|
67793
|
+
get done() {
|
|
67794
|
+
return this._done;
|
|
67795
|
+
}
|
|
67796
|
+
/**
|
|
67797
|
+
* Converts Base64-encoded strings in a row object into Uint8Arrays in-place.
|
|
67798
|
+
* @internal
|
|
67799
|
+
*/
|
|
67800
|
+
static replaceBase64WithUint8Array(row) {
|
|
67801
|
+
for (const key of Object.keys(row)) {
|
|
67802
|
+
const val = row[key];
|
|
67803
|
+
if (typeof val === "string") {
|
|
67804
|
+
if (_Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.hasPrefix(val)) {
|
|
67805
|
+
row[key] = _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.toUint8Array(val);
|
|
67806
|
+
}
|
|
67807
|
+
}
|
|
67808
|
+
else if (typeof val === "object" && val !== null) {
|
|
67809
|
+
this.replaceBase64WithUint8Array(val);
|
|
67810
|
+
}
|
|
67811
|
+
}
|
|
67812
|
+
}
|
|
67813
|
+
/**
|
|
67814
|
+
* Format the current row as a JavaScript object or array depending on the row format.
|
|
67815
|
+
* @internal
|
|
67816
|
+
*/
|
|
67817
|
+
formatCurrentRow(onlyReturnObject = false) {
|
|
67818
|
+
if (!onlyReturnObject && this._rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes) {
|
|
67819
|
+
return this.getRowInternal();
|
|
67820
|
+
}
|
|
67821
|
+
const formattedRow = {};
|
|
67822
|
+
for (const prop of this._props) {
|
|
67823
|
+
const propName = this._rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseJsPropertyNames ? prop.jsonName : prop.name;
|
|
67824
|
+
const val = this.getRowInternal()[prop.index];
|
|
67825
|
+
if (typeof val !== "undefined" && val !== null) {
|
|
67826
|
+
Object.defineProperty(formattedRow, propName, {
|
|
67827
|
+
value: val,
|
|
67828
|
+
enumerable: true,
|
|
67829
|
+
});
|
|
67830
|
+
}
|
|
67831
|
+
}
|
|
67832
|
+
return formattedRow;
|
|
67833
|
+
}
|
|
67834
|
+
}
|
|
67835
|
+
|
|
67836
|
+
|
|
67789
67837
|
/***/ }),
|
|
67790
67838
|
|
|
67791
67839
|
/***/ "../../core/common/lib/esm/ECSqlTypes.js":
|
|
@@ -81841,7 +81889,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81841
81889
|
/* harmony export */ AnalysisStyleThematic: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
81842
81890
|
/* harmony export */ AreaPattern: () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__.AreaPattern),
|
|
81843
81891
|
/* harmony export */ Atmosphere: () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_8__.Atmosphere),
|
|
81844
|
-
/* harmony export */ B3dmHeader: () => (/* reexport safe */
|
|
81892
|
+
/* harmony export */ B3dmHeader: () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_152__.B3dmHeader),
|
|
81845
81893
|
/* harmony export */ BRepEntity: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.BRepEntity),
|
|
81846
81894
|
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.BRepGeometryOperation),
|
|
81847
81895
|
/* harmony export */ BackendError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.BackendError),
|
|
@@ -81853,22 +81901,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81853
81901
|
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.BaseLayerSettings),
|
|
81854
81902
|
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.BaseMapLayerSettings),
|
|
81855
81903
|
/* harmony export */ BatchType: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.BatchType),
|
|
81856
|
-
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */
|
|
81857
|
-
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */
|
|
81858
|
-
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */
|
|
81904
|
+
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__.BentleyCloudRpcConfiguration),
|
|
81905
|
+
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__.BentleyCloudRpcManager),
|
|
81906
|
+
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_146__.BentleyCloudRpcProtocol),
|
|
81859
81907
|
/* harmony export */ BisCodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.BisCodeSpec),
|
|
81860
81908
|
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.BlobOptionsBuilder),
|
|
81861
81909
|
/* harmony export */ BoundingSphere: () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__.BoundingSphere),
|
|
81862
81910
|
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.BriefcaseIdValue),
|
|
81863
|
-
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */
|
|
81864
|
-
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */
|
|
81911
|
+
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.CURRENT_INVOCATION),
|
|
81912
|
+
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.CURRENT_REQUEST),
|
|
81865
81913
|
/* harmony export */ Camera: () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_14__.Camera),
|
|
81866
81914
|
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Carto2DDegrees),
|
|
81867
81915
|
/* harmony export */ Cartographic: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.Cartographic),
|
|
81868
81916
|
/* harmony export */ CartographicRange: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.CartographicRange),
|
|
81869
81917
|
/* harmony export */ CatalogError: () => (/* reexport safe */ _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__.CatalogError),
|
|
81870
|
-
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */
|
|
81871
|
-
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */
|
|
81918
|
+
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__.CesiumIonAssetId),
|
|
81919
|
+
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__.CesiumTerrainAssetId),
|
|
81872
81920
|
/* harmony export */ ChangeOpCode: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangeOpCode),
|
|
81873
81921
|
/* harmony export */ ChangedValueState: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangedValueState),
|
|
81874
81922
|
/* harmony export */ ChangesetType: () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__.ChangesetType),
|
|
@@ -81883,40 +81931,41 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81883
81931
|
/* harmony export */ ColorDef: () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_22__.ColorDef),
|
|
81884
81932
|
/* harmony export */ ColorIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.ColorIndex),
|
|
81885
81933
|
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__.CommonLoggerCategory),
|
|
81886
|
-
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */
|
|
81934
|
+
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_153__.CompositeTileHeader),
|
|
81887
81935
|
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.ConcreteEntityTypes),
|
|
81888
81936
|
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ConflictingLocksError),
|
|
81889
|
-
/* harmony export */ ContentFlags: () => (/* reexport safe */
|
|
81890
|
-
/* harmony export */ ContentIdProvider: () => (/* reexport safe */
|
|
81937
|
+
/* harmony export */ ContentFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.ContentFlags),
|
|
81938
|
+
/* harmony export */ ContentIdProvider: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.ContentIdProvider),
|
|
81891
81939
|
/* harmony export */ ContextRealityModel: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModel),
|
|
81892
81940
|
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModelProps),
|
|
81893
81941
|
/* harmony export */ ContextRealityModels: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModels),
|
|
81894
|
-
/* harmony export */ Contour: () => (/* reexport safe */
|
|
81895
|
-
/* harmony export */ ContourDisplay: () => (/* reexport safe */
|
|
81896
|
-
/* harmony export */ ContourGroup: () => (/* reexport safe */
|
|
81897
|
-
/* harmony export */ ContourStyle: () => (/* reexport safe */
|
|
81898
|
-
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */
|
|
81942
|
+
/* harmony export */ Contour: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.Contour),
|
|
81943
|
+
/* harmony export */ ContourDisplay: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourDisplay),
|
|
81944
|
+
/* harmony export */ ContourGroup: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourGroup),
|
|
81945
|
+
/* harmony export */ ContourStyle: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourStyle),
|
|
81946
|
+
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.CurrentImdlVersion),
|
|
81899
81947
|
/* harmony export */ CutStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.CutStyle),
|
|
81900
81948
|
/* harmony export */ DbQueryError: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbQueryError),
|
|
81901
81949
|
/* harmony export */ DbRequestKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbRequestKind),
|
|
81902
81950
|
/* harmony export */ DbResponseKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseKind),
|
|
81903
81951
|
/* harmony export */ DbResponseStatus: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseStatus),
|
|
81904
81952
|
/* harmony export */ DbValueFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbValueFormat),
|
|
81905
|
-
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */
|
|
81906
|
-
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */
|
|
81907
|
-
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */
|
|
81953
|
+
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_96__.DefaultSupportedTypes),
|
|
81954
|
+
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__.DevToolsRpcInterface),
|
|
81955
|
+
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__.DevToolsStatsOptions),
|
|
81908
81956
|
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyle3dSettings),
|
|
81909
81957
|
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyleSettings),
|
|
81910
81958
|
/* harmony export */ DomainOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.DomainOptions),
|
|
81911
81959
|
/* harmony export */ ECJsNames: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECJsNames),
|
|
81912
|
-
/* harmony export */ ECSqlReader: () => (/* reexport safe */
|
|
81960
|
+
/* harmony export */ ECSqlReader: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_91__.ECSqlReader),
|
|
81961
|
+
/* harmony export */ ECSqlReaderBase: () => (/* reexport safe */ _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__.ECSqlReaderBase),
|
|
81913
81962
|
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlSystemProperty),
|
|
81914
81963
|
/* harmony export */ ECSqlValueType: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlValueType),
|
|
81915
|
-
/* harmony export */ Easing: () => (/* reexport safe */
|
|
81964
|
+
/* harmony export */ Easing: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Easing),
|
|
81916
81965
|
/* harmony export */ EcefLocation: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.EcefLocation),
|
|
81917
|
-
/* harmony export */ EdgeArgs: () => (/* reexport safe */
|
|
81966
|
+
/* harmony export */ EdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.EdgeArgs),
|
|
81918
81967
|
/* harmony export */ ElementGeometry: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometry),
|
|
81919
|
-
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */
|
|
81968
|
+
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__.ElementGeometryChange),
|
|
81920
81969
|
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometryOpcode),
|
|
81921
81970
|
/* harmony export */ EmptyLocalization: () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_80__.EmptyLocalization),
|
|
81922
81971
|
/* harmony export */ EntityMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.EntityMetaData),
|
|
@@ -81931,7 +81980,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81931
81980
|
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrideType),
|
|
81932
81981
|
/* harmony export */ FeatureOverrides: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureOverrides),
|
|
81933
81982
|
/* harmony export */ FeatureTable: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.FeatureTable),
|
|
81934
|
-
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */
|
|
81983
|
+
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.FeatureTableHeader),
|
|
81935
81984
|
/* harmony export */ FieldRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FieldRun),
|
|
81936
81985
|
/* harmony export */ FillDisplay: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.FillDisplay),
|
|
81937
81986
|
/* harmony export */ FillFlags: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.FillFlags),
|
|
@@ -81956,16 +82005,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81956
82005
|
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamFlags),
|
|
81957
82006
|
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamIterator),
|
|
81958
82007
|
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__.GeometrySummaryVerbosity),
|
|
81959
|
-
/* harmony export */ GlbHeader: () => (/* reexport safe */
|
|
82008
|
+
/* harmony export */ GlbHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GlbHeader),
|
|
81960
82009
|
/* harmony export */ GlobeMode: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.GlobeMode),
|
|
81961
|
-
/* harmony export */ GltfHeader: () => (/* reexport safe */
|
|
81962
|
-
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */
|
|
81963
|
-
/* harmony export */ GltfVersions: () => (/* reexport safe */
|
|
82010
|
+
/* harmony export */ GltfHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfHeader),
|
|
82011
|
+
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfV2ChunkTypes),
|
|
82012
|
+
/* harmony export */ GltfVersions: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfVersions),
|
|
81964
82013
|
/* harmony export */ Gradient: () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_61__.Gradient),
|
|
81965
82014
|
/* harmony export */ GraphicParams: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.GraphicParams),
|
|
81966
82015
|
/* harmony export */ GridFileDefinition: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileDefinition),
|
|
81967
82016
|
/* harmony export */ GridFileTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileTransform),
|
|
81968
|
-
/* harmony export */ GridOrientationType: () => (/* reexport safe */
|
|
82017
|
+
/* harmony export */ GridOrientationType: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.GridOrientationType),
|
|
81969
82018
|
/* harmony export */ GroundPlane: () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_63__.GroundPlane),
|
|
81970
82019
|
/* harmony export */ HSLColor: () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_66__.HSLColor),
|
|
81971
82020
|
/* harmony export */ HSVColor: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVColor),
|
|
@@ -81976,14 +82025,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81976
82025
|
/* harmony export */ Hilite: () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_65__.Hilite),
|
|
81977
82026
|
/* harmony export */ HorizontalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRS),
|
|
81978
82027
|
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRSExtent),
|
|
81979
|
-
/* harmony export */ I3dmHeader: () => (/* reexport safe */
|
|
82028
|
+
/* harmony export */ I3dmHeader: () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_156__.I3dmHeader),
|
|
81980
82029
|
/* harmony export */ IModel: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.IModel),
|
|
81981
82030
|
/* harmony export */ IModelError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.IModelError),
|
|
81982
|
-
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */
|
|
81983
|
-
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */
|
|
81984
|
-
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */
|
|
82031
|
+
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__.IModelNotFoundResponse),
|
|
82032
|
+
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__.IModelReadRpcInterface),
|
|
82033
|
+
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_141__.IModelTileRpcInterface),
|
|
81985
82034
|
/* harmony export */ IModelVersion: () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_71__.IModelVersion),
|
|
81986
|
-
/* harmony export */ INSTANCE: () => (/* reexport safe */
|
|
82035
|
+
/* harmony export */ INSTANCE: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.INSTANCE),
|
|
81987
82036
|
/* harmony export */ ImageBuffer: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBuffer),
|
|
81988
82037
|
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBufferFormat),
|
|
81989
82038
|
/* harmony export */ ImageGraphic: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphic),
|
|
@@ -81991,10 +82040,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81991
82040
|
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ImageMapLayerSettings),
|
|
81992
82041
|
/* harmony export */ ImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSource),
|
|
81993
82042
|
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSourceFormat),
|
|
81994
|
-
/* harmony export */ ImdlFlags: () => (/* reexport safe */
|
|
81995
|
-
/* harmony export */ ImdlHeader: () => (/* reexport safe */
|
|
82043
|
+
/* harmony export */ ImdlFlags: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.ImdlFlags),
|
|
82044
|
+
/* harmony export */ ImdlHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.ImdlHeader),
|
|
81996
82045
|
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.InternetConnectivityStatus),
|
|
81997
|
-
/* harmony export */ Interpolation: () => (/* reexport safe */
|
|
82046
|
+
/* harmony export */ Interpolation: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Interpolation),
|
|
81998
82047
|
/* harmony export */ IpcSession: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.IpcSession),
|
|
81999
82048
|
/* harmony export */ IpcWebSocket: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocket),
|
|
82000
82049
|
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketBackend),
|
|
@@ -82012,144 +82061,144 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
82012
82061
|
/* harmony export */ MapImagerySettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.MapImagerySettings),
|
|
82013
82062
|
/* harmony export */ MapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapLayerSettings),
|
|
82014
82063
|
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapSubLayerSettings),
|
|
82015
|
-
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */
|
|
82064
|
+
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.MarshalingBinaryMarker),
|
|
82016
82065
|
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_83__.MassPropertiesOperation),
|
|
82017
|
-
/* harmony export */ MeshEdge: () => (/* reexport safe */
|
|
82018
|
-
/* harmony export */ MeshEdges: () => (/* reexport safe */
|
|
82019
|
-
/* harmony export */ MeshPolyline: () => (/* reexport safe */
|
|
82066
|
+
/* harmony export */ MeshEdge: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshEdge),
|
|
82067
|
+
/* harmony export */ MeshEdges: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshEdges),
|
|
82068
|
+
/* harmony export */ MeshPolyline: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshPolyline),
|
|
82020
82069
|
/* harmony export */ ModelClipGroup: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroup),
|
|
82021
82070
|
/* harmony export */ ModelClipGroups: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroups),
|
|
82022
82071
|
/* harmony export */ ModelFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.ModelFeature),
|
|
82023
|
-
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */
|
|
82072
|
+
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__.ModelGeometryChanges),
|
|
82024
82073
|
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerDrapeTarget),
|
|
82025
82074
|
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerSettings),
|
|
82026
82075
|
/* harmony export */ MonochromeMode: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.MonochromeMode),
|
|
82027
|
-
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */
|
|
82076
|
+
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MultiModelPackedFeatureTable),
|
|
82028
82077
|
/* harmony export */ NoContentError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.NoContentError),
|
|
82029
82078
|
/* harmony export */ NonUniformColor: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.NonUniformColor),
|
|
82030
82079
|
/* harmony export */ NormalMapFlags: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.NormalMapFlags),
|
|
82031
82080
|
/* harmony export */ Npc: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Npc),
|
|
82032
82081
|
/* harmony export */ NpcCenter: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCenter),
|
|
82033
82082
|
/* harmony export */ NpcCorners: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCorners),
|
|
82034
|
-
/* harmony export */ OPERATION: () => (/* reexport safe */
|
|
82083
|
+
/* harmony export */ OPERATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.OPERATION),
|
|
82035
82084
|
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormal),
|
|
82036
82085
|
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormalPair),
|
|
82037
82086
|
/* harmony export */ OverriddenBy: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.OverriddenBy),
|
|
82038
|
-
/* harmony export */ POLICY: () => (/* reexport safe */
|
|
82087
|
+
/* harmony export */ POLICY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.POLICY),
|
|
82039
82088
|
/* harmony export */ PackedFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.PackedFeature),
|
|
82040
|
-
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */
|
|
82041
|
-
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */
|
|
82089
|
+
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PackedFeatureModelTable),
|
|
82090
|
+
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PackedFeatureTable),
|
|
82042
82091
|
/* harmony export */ Paragraph: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
82043
82092
|
/* harmony export */ Placement2d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement2d),
|
|
82044
82093
|
/* harmony export */ Placement3d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement3d),
|
|
82045
|
-
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */
|
|
82046
|
-
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */
|
|
82047
|
-
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */
|
|
82048
|
-
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */
|
|
82049
|
-
/* harmony export */ PntsHeader: () => (/* reexport safe */
|
|
82050
|
-
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */
|
|
82051
|
-
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */
|
|
82052
|
-
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */
|
|
82094
|
+
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_94__.PlanProjectionSettings),
|
|
82095
|
+
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskMode),
|
|
82096
|
+
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskPriority),
|
|
82097
|
+
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskSettings),
|
|
82098
|
+
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_158__.PntsHeader),
|
|
82099
|
+
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__.PointCloudDisplaySettings),
|
|
82100
|
+
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PolylineEdgeArgs),
|
|
82101
|
+
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _RenderPolyline__WEBPACK_IMPORTED_MODULE_98__.PolylineTypeFlags),
|
|
82053
82102
|
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.PositionalVectorTransform),
|
|
82054
82103
|
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PrimitiveTypeCode),
|
|
82055
82104
|
/* harmony export */ ProfileOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.ProfileOptions),
|
|
82056
82105
|
/* harmony export */ Projection: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Projection),
|
|
82057
82106
|
/* harmony export */ PropertyMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PropertyMetaData),
|
|
82058
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */
|
|
82059
|
-
/* harmony export */ QParams2d: () => (/* reexport safe */
|
|
82060
|
-
/* harmony export */ QParams3d: () => (/* reexport safe */
|
|
82061
|
-
/* harmony export */ QPoint2d: () => (/* reexport safe */
|
|
82062
|
-
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */
|
|
82063
|
-
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */
|
|
82064
|
-
/* harmony export */ QPoint2dList: () => (/* reexport safe */
|
|
82065
|
-
/* harmony export */ QPoint3d: () => (/* reexport safe */
|
|
82066
|
-
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */
|
|
82067
|
-
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */
|
|
82068
|
-
/* harmony export */ QPoint3dList: () => (/* reexport safe */
|
|
82069
|
-
/* harmony export */ Quantization: () => (/* reexport safe */
|
|
82107
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */ _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__.PropertyMetaDataMap),
|
|
82108
|
+
/* harmony export */ QParams2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QParams2d),
|
|
82109
|
+
/* harmony export */ QParams3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QParams3d),
|
|
82110
|
+
/* harmony export */ QPoint2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2d),
|
|
82111
|
+
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dBuffer),
|
|
82112
|
+
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dBufferBuilder),
|
|
82113
|
+
/* harmony export */ QPoint2dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dList),
|
|
82114
|
+
/* harmony export */ QPoint3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3d),
|
|
82115
|
+
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dBuffer),
|
|
82116
|
+
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dBufferBuilder),
|
|
82117
|
+
/* harmony export */ QPoint3dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dList),
|
|
82118
|
+
/* harmony export */ Quantization: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.Quantization),
|
|
82070
82119
|
/* harmony export */ QueryBinder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryBinder),
|
|
82071
82120
|
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryOptionsBuilder),
|
|
82072
82121
|
/* harmony export */ QueryParamType: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryParamType),
|
|
82073
82122
|
/* harmony export */ QueryRowFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryRowFormat),
|
|
82074
|
-
/* harmony export */ REGISTRY: () => (/* reexport safe */
|
|
82123
|
+
/* harmony export */ REGISTRY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.REGISTRY),
|
|
82075
82124
|
/* harmony export */ Rank: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.Rank),
|
|
82076
82125
|
/* harmony export */ RealityDataFormat: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataFormat),
|
|
82077
82126
|
/* harmony export */ RealityDataProvider: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataProvider),
|
|
82078
82127
|
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataSourceKey),
|
|
82079
|
-
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */
|
|
82128
|
+
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__.RealityModelDisplaySettings),
|
|
82080
82129
|
/* harmony export */ RelatedElement: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.RelatedElement),
|
|
82081
|
-
/* harmony export */ RenderMaterial: () => (/* reexport safe */
|
|
82082
|
-
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */
|
|
82083
|
-
/* harmony export */ RenderMode: () => (/* reexport safe */
|
|
82084
|
-
/* harmony export */ RenderSchedule: () => (/* reexport safe */
|
|
82085
|
-
/* harmony export */ RenderTexture: () => (/* reexport safe */
|
|
82086
|
-
/* harmony export */ RenderTextureParams: () => (/* reexport safe */
|
|
82087
|
-
/* harmony export */ ResponseLike: () => (/* reexport safe */
|
|
82088
|
-
/* harmony export */ RgbColor: () => (/* reexport safe */
|
|
82089
|
-
/* harmony export */ RpcConfiguration: () => (/* reexport safe */
|
|
82090
|
-
/* harmony export */ RpcContentType: () => (/* reexport safe */
|
|
82091
|
-
/* harmony export */ RpcControlChannel: () => (/* reexport safe */
|
|
82092
|
-
/* harmony export */ RpcControlResponse: () => (/* reexport safe */
|
|
82093
|
-
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */
|
|
82094
|
-
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */
|
|
82095
|
-
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */
|
|
82096
|
-
/* harmony export */ RpcEndpoint: () => (/* reexport safe */
|
|
82097
|
-
/* harmony export */ RpcInterface: () => (/* reexport safe */
|
|
82098
|
-
/* harmony export */ RpcInvocation: () => (/* reexport safe */
|
|
82099
|
-
/* harmony export */ RpcManager: () => (/* reexport safe */
|
|
82100
|
-
/* harmony export */ RpcMarshaling: () => (/* reexport safe */
|
|
82101
|
-
/* harmony export */ RpcMultipart: () => (/* reexport safe */
|
|
82102
|
-
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */
|
|
82103
|
-
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */
|
|
82104
|
-
/* harmony export */ RpcOperation: () => (/* reexport safe */
|
|
82105
|
-
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */
|
|
82106
|
-
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */
|
|
82107
|
-
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */
|
|
82108
|
-
/* harmony export */ RpcProtocol: () => (/* reexport safe */
|
|
82109
|
-
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */
|
|
82110
|
-
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */
|
|
82111
|
-
/* harmony export */ RpcPushChannel: () => (/* reexport safe */
|
|
82112
|
-
/* harmony export */ RpcPushConnection: () => (/* reexport safe */
|
|
82113
|
-
/* harmony export */ RpcPushService: () => (/* reexport safe */
|
|
82114
|
-
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */
|
|
82115
|
-
/* harmony export */ RpcPushTransport: () => (/* reexport safe */
|
|
82116
|
-
/* harmony export */ RpcRegistry: () => (/* reexport safe */
|
|
82117
|
-
/* harmony export */ RpcRequest: () => (/* reexport safe */
|
|
82118
|
-
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */
|
|
82119
|
-
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */
|
|
82120
|
-
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */
|
|
82121
|
-
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */
|
|
82122
|
-
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */
|
|
82123
|
-
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */
|
|
82124
|
-
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */
|
|
82125
|
-
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */
|
|
82130
|
+
/* harmony export */ RenderMaterial: () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_99__.RenderMaterial),
|
|
82131
|
+
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.RenderMaterialParams),
|
|
82132
|
+
/* harmony export */ RenderMode: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_123__.RenderMode),
|
|
82133
|
+
/* harmony export */ RenderSchedule: () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_100__.RenderSchedule),
|
|
82134
|
+
/* harmony export */ RenderTexture: () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_101__.RenderTexture),
|
|
82135
|
+
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.RenderTextureParams),
|
|
82136
|
+
/* harmony export */ ResponseLike: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.ResponseLike),
|
|
82137
|
+
/* harmony export */ RgbColor: () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_102__.RgbColor),
|
|
82138
|
+
/* harmony export */ RpcConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcConfiguration),
|
|
82139
|
+
/* harmony export */ RpcContentType: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcContentType),
|
|
82140
|
+
/* harmony export */ RpcControlChannel: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcControlChannel),
|
|
82141
|
+
/* harmony export */ RpcControlResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcControlResponse),
|
|
82142
|
+
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDefaultConfiguration),
|
|
82143
|
+
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDirectProtocol),
|
|
82144
|
+
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDirectRequest),
|
|
82145
|
+
/* harmony export */ RpcEndpoint: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcEndpoint),
|
|
82146
|
+
/* harmony export */ RpcInterface: () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_144__.RpcInterface),
|
|
82147
|
+
/* harmony export */ RpcInvocation: () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcInvocation),
|
|
82148
|
+
/* harmony export */ RpcManager: () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_103__.RpcManager),
|
|
82149
|
+
/* harmony export */ RpcMarshaling: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.RpcMarshaling),
|
|
82150
|
+
/* harmony export */ RpcMultipart: () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_148__.RpcMultipart),
|
|
82151
|
+
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcNotFoundResponse),
|
|
82152
|
+
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_147__.RpcOpenAPIDescription),
|
|
82153
|
+
/* harmony export */ RpcOperation: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__.RpcOperation),
|
|
82154
|
+
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__.RpcOperationPolicy),
|
|
82155
|
+
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_131__.RpcPendingQueue),
|
|
82156
|
+
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcPendingResponse),
|
|
82157
|
+
/* harmony export */ RpcProtocol: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcProtocol),
|
|
82158
|
+
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcProtocolEvent),
|
|
82159
|
+
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcProtocolVersion),
|
|
82160
|
+
/* harmony export */ RpcPushChannel: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushChannel),
|
|
82161
|
+
/* harmony export */ RpcPushConnection: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushConnection),
|
|
82162
|
+
/* harmony export */ RpcPushService: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushService),
|
|
82163
|
+
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushSubscription),
|
|
82164
|
+
/* harmony export */ RpcPushTransport: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushTransport),
|
|
82165
|
+
/* harmony export */ RpcRegistry: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.RpcRegistry),
|
|
82166
|
+
/* harmony export */ RpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.RpcRequest),
|
|
82167
|
+
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcRequestEvent),
|
|
82168
|
+
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcRequestFulfillment),
|
|
82169
|
+
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcRequestStatus),
|
|
82170
|
+
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcResponseCacheControl),
|
|
82171
|
+
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcRoutingMap),
|
|
82172
|
+
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_136__.RpcRoutingToken),
|
|
82173
|
+
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.RpcSerializedValue),
|
|
82174
|
+
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_128__.RpcSessionInvocation),
|
|
82126
82175
|
/* harmony export */ Run: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
82127
82176
|
/* harmony export */ SchemaState: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SchemaState),
|
|
82128
82177
|
/* harmony export */ SectionType: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.SectionType),
|
|
82129
82178
|
/* harmony export */ ServerError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerError),
|
|
82130
82179
|
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerTimeoutError),
|
|
82131
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */
|
|
82132
|
-
/* harmony export */ SkyBox: () => (/* reexport safe */
|
|
82133
|
-
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */
|
|
82134
|
-
/* harmony export */ SkyCube: () => (/* reexport safe */
|
|
82135
|
-
/* harmony export */ SkyGradient: () => (/* reexport safe */
|
|
82136
|
-
/* harmony export */ SkySphere: () => (/* reexport safe */
|
|
82137
|
-
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */
|
|
82180
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.SilhouetteEdgeArgs),
|
|
82181
|
+
/* harmony export */ SkyBox: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyBox),
|
|
82182
|
+
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyBoxImageType),
|
|
82183
|
+
/* harmony export */ SkyCube: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyCube),
|
|
82184
|
+
/* harmony export */ SkyGradient: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyGradient),
|
|
82185
|
+
/* harmony export */ SkySphere: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkySphere),
|
|
82186
|
+
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_142__.SnapshotIModelRpcInterface),
|
|
82138
82187
|
/* harmony export */ SolarLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.SolarLight),
|
|
82139
|
-
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */
|
|
82140
|
-
/* harmony export */ SpatialClassifier: () => (/* reexport safe */
|
|
82141
|
-
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */
|
|
82142
|
-
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */
|
|
82143
|
-
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */
|
|
82144
|
-
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */
|
|
82188
|
+
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_107__.SolarShadowSettings),
|
|
82189
|
+
/* harmony export */ SpatialClassifier: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifier),
|
|
82190
|
+
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierFlags),
|
|
82191
|
+
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierInsideDisplay),
|
|
82192
|
+
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierOutsideDisplay),
|
|
82193
|
+
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifiers),
|
|
82145
82194
|
/* harmony export */ SqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.SqliteError),
|
|
82146
|
-
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */
|
|
82147
|
-
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */
|
|
82195
|
+
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_109__.SubCategoryAppearance),
|
|
82196
|
+
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_110__.SubCategoryOverride),
|
|
82148
82197
|
/* harmony export */ SyncMode: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SyncMode),
|
|
82149
82198
|
/* harmony export */ TabRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TabRun),
|
|
82150
|
-
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */
|
|
82151
|
-
/* harmony export */ TerrainSettings: () => (/* reexport safe */
|
|
82152
|
-
/* harmony export */ TestRpcManager: () => (/* reexport safe */
|
|
82199
|
+
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__.TerrainHeightOriginMode),
|
|
82200
|
+
/* harmony export */ TerrainSettings: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__.TerrainSettings),
|
|
82201
|
+
/* harmony export */ TestRpcManager: () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_143__.TestRpcManager),
|
|
82153
82202
|
/* harmony export */ TextAnnotation: () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
82154
82203
|
/* harmony export */ TextBlock: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
82155
82204
|
/* harmony export */ TextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
@@ -82157,67 +82206,67 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
82157
82206
|
/* harmony export */ TextString: () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__.TextString),
|
|
82158
82207
|
/* harmony export */ TextStyleSettings: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.TextStyleSettings),
|
|
82159
82208
|
/* harmony export */ TextureMapUnits: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.TextureMapUnits),
|
|
82160
|
-
/* harmony export */ TextureMapping: () => (/* reexport safe */
|
|
82161
|
-
/* harmony export */ TextureTransparency: () => (/* reexport safe */
|
|
82162
|
-
/* harmony export */ ThematicDisplay: () => (/* reexport safe */
|
|
82163
|
-
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */
|
|
82164
|
-
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */
|
|
82165
|
-
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */
|
|
82166
|
-
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */
|
|
82167
|
-
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */
|
|
82168
|
-
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */
|
|
82169
|
-
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */
|
|
82170
|
-
/* harmony export */ TileContentSource: () => (/* reexport safe */
|
|
82171
|
-
/* harmony export */ TileFormat: () => (/* reexport safe */
|
|
82172
|
-
/* harmony export */ TileHeader: () => (/* reexport safe */
|
|
82173
|
-
/* harmony export */ TileMetadataReader: () => (/* reexport safe */
|
|
82174
|
-
/* harmony export */ TileOptions: () => (/* reexport safe */
|
|
82175
|
-
/* harmony export */ TileReadError: () => (/* reexport safe */
|
|
82176
|
-
/* harmony export */ TileReadStatus: () => (/* reexport safe */
|
|
82177
|
-
/* harmony export */ TreeFlags: () => (/* reexport safe */
|
|
82178
|
-
/* harmony export */ Tween: () => (/* reexport safe */
|
|
82179
|
-
/* harmony export */ Tweens: () => (/* reexport safe */
|
|
82180
|
-
/* harmony export */ TxnAction: () => (/* reexport safe */
|
|
82209
|
+
/* harmony export */ TextureMapping: () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_113__.TextureMapping),
|
|
82210
|
+
/* harmony export */ TextureTransparency: () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_114__.TextureTransparency),
|
|
82211
|
+
/* harmony export */ ThematicDisplay: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
82212
|
+
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
82213
|
+
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
82214
|
+
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
82215
|
+
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
82216
|
+
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
82217
|
+
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
82218
|
+
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientTransparencyMode),
|
|
82219
|
+
/* harmony export */ TileContentSource: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_119__.TileContentSource),
|
|
82220
|
+
/* harmony export */ TileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileFormat),
|
|
82221
|
+
/* harmony export */ TileHeader: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileHeader),
|
|
82222
|
+
/* harmony export */ TileMetadataReader: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TileMetadataReader),
|
|
82223
|
+
/* harmony export */ TileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TileOptions),
|
|
82224
|
+
/* harmony export */ TileReadError: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileReadError),
|
|
82225
|
+
/* harmony export */ TileReadStatus: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileReadStatus),
|
|
82226
|
+
/* harmony export */ TreeFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TreeFlags),
|
|
82227
|
+
/* harmony export */ Tween: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Tween),
|
|
82228
|
+
/* harmony export */ Tweens: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Tweens),
|
|
82229
|
+
/* harmony export */ TxnAction: () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_121__.TxnAction),
|
|
82181
82230
|
/* harmony export */ TypeDefinition: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.TypeDefinition),
|
|
82182
82231
|
/* harmony export */ TypeOfChange: () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_16__.TypeOfChange),
|
|
82183
82232
|
/* harmony export */ VerticalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.VerticalCRS),
|
|
82184
|
-
/* harmony export */ ViewDetails: () => (/* reexport safe */
|
|
82185
|
-
/* harmony export */ ViewDetails3d: () => (/* reexport safe */
|
|
82186
|
-
/* harmony export */ ViewFlags: () => (/* reexport safe */
|
|
82233
|
+
/* harmony export */ ViewDetails: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.ViewDetails),
|
|
82234
|
+
/* harmony export */ ViewDetails3d: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.ViewDetails3d),
|
|
82235
|
+
/* harmony export */ ViewFlags: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_123__.ViewFlags),
|
|
82187
82236
|
/* harmony export */ ViewStoreError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ViewStoreError),
|
|
82188
|
-
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */
|
|
82189
|
-
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */
|
|
82190
|
-
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */
|
|
82191
|
-
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */
|
|
82192
|
-
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */
|
|
82193
|
-
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */
|
|
82237
|
+
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_124__.ViewStoreRpc),
|
|
82238
|
+
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.WEB_RPC_CONSTANTS),
|
|
82239
|
+
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_151__.WebAppRpcLogging),
|
|
82240
|
+
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_149__.WebAppRpcProtocol),
|
|
82241
|
+
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_150__.WebAppRpcRequest),
|
|
82242
|
+
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_162__.WhiteOnWhiteReversalSettings),
|
|
82194
82243
|
/* harmony export */ WorkspaceError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.WorkspaceError),
|
|
82195
82244
|
/* harmony export */ XyzRotation: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.XyzRotation),
|
|
82196
|
-
/* harmony export */ aggregateLoad: () => (/* reexport safe */
|
|
82197
|
-
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */
|
|
82198
|
-
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */
|
|
82199
|
-
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */
|
|
82200
|
-
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */
|
|
82201
|
-
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */
|
|
82202
|
-
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */
|
|
82203
|
-
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */
|
|
82204
|
-
/* harmony export */ computeChildTileProps: () => (/* reexport safe */
|
|
82205
|
-
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */
|
|
82206
|
-
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */
|
|
82207
|
-
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */
|
|
82208
|
-
/* harmony export */ defaultTileOptions: () => (/* reexport safe */
|
|
82209
|
-
/* harmony export */ formatFieldValue: () => (/* reexport safe */
|
|
82245
|
+
/* harmony export */ aggregateLoad: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.aggregateLoad),
|
|
82246
|
+
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.bisectTileRange2d),
|
|
82247
|
+
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.bisectTileRange3d),
|
|
82248
|
+
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarAngles),
|
|
82249
|
+
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarDirection),
|
|
82250
|
+
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarDirectionFromAngles),
|
|
82251
|
+
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSunriseOrSunset),
|
|
82252
|
+
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.compareIModelTileTreeIds),
|
|
82253
|
+
/* harmony export */ computeChildTileProps: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeChildTileProps),
|
|
82254
|
+
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeChildTileRanges),
|
|
82255
|
+
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeTileChordTolerance),
|
|
82256
|
+
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.decodeTileContentDescription),
|
|
82257
|
+
/* harmony export */ defaultTileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.defaultTileOptions),
|
|
82258
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.formatFieldValue),
|
|
82210
82259
|
/* harmony export */ getMarkerText: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.getMarkerText),
|
|
82211
|
-
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */
|
|
82260
|
+
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.getMaximumMajorTileFormatVersion),
|
|
82212
82261
|
/* harmony export */ getPullChangesIpcChannel: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.getPullChangesIpcChannel),
|
|
82213
|
-
/* harmony export */ getTileObjectReference: () => (/* reexport safe */
|
|
82214
|
-
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */
|
|
82262
|
+
/* harmony export */ getTileObjectReference: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_119__.getTileObjectReference),
|
|
82263
|
+
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.iModelTileTreeIdToString),
|
|
82215
82264
|
/* harmony export */ iTwinChannel: () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__.iTwinChannel),
|
|
82216
|
-
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */
|
|
82265
|
+
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.initializeRpcRequest),
|
|
82217
82266
|
/* harmony export */ ipcAppChannels: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.ipcAppChannels),
|
|
82218
82267
|
/* harmony export */ isBinaryImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isBinaryImageSource),
|
|
82219
|
-
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */
|
|
82220
|
-
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */
|
|
82268
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.isKnownFieldPropertyType),
|
|
82269
|
+
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.isKnownTileFormat),
|
|
82221
82270
|
/* harmony export */ isPlacement2dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement2dProps),
|
|
82222
82271
|
/* harmony export */ isPlacement3dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement3dProps),
|
|
82223
82272
|
/* harmony export */ isPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isPowerOfTwo),
|
|
@@ -82225,14 +82274,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
82225
82274
|
/* harmony export */ mapToGeoServiceStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.mapToGeoServiceStatus),
|
|
82226
82275
|
/* harmony export */ nativeAppIpcStrings: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.nativeAppIpcStrings),
|
|
82227
82276
|
/* harmony export */ nextHighestPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.nextHighestPowerOfTwo),
|
|
82228
|
-
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */
|
|
82229
|
-
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */
|
|
82277
|
+
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.nextPoint3d64FromByteStream),
|
|
82278
|
+
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.parseTileTreeIdAndContentId),
|
|
82230
82279
|
/* harmony export */ readElementMeshes: () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_30__.readElementMeshes),
|
|
82231
|
-
/* harmony export */ readTileContentDescription: () => (/* reexport safe */
|
|
82280
|
+
/* harmony export */ readTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.readTileContentDescription),
|
|
82232
82281
|
/* harmony export */ rpcOverIpcStrings: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.rpcOverIpcStrings),
|
|
82233
82282
|
/* harmony export */ terminatorShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.terminatorShapes),
|
|
82234
82283
|
/* harmony export */ textAnnotationFrameShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.textAnnotationFrameShapes),
|
|
82235
|
-
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */
|
|
82284
|
+
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.tileFormatFromNumber),
|
|
82236
82285
|
/* harmony export */ traverseTextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.traverseTextBlockComponent)
|
|
82237
82286
|
/* harmony export */ });
|
|
82238
82287
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
@@ -82325,79 +82374,80 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
82325
82374
|
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
82326
82375
|
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
82327
82376
|
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
82328
|
-
/* harmony import */ var
|
|
82329
|
-
/* harmony import */ var
|
|
82330
|
-
/* harmony import */ var
|
|
82331
|
-
/* harmony import */ var
|
|
82332
|
-
/* harmony import */ var
|
|
82333
|
-
/* harmony import */ var
|
|
82334
|
-
/* harmony import */ var
|
|
82335
|
-
/* harmony import */ var
|
|
82336
|
-
/* harmony import */ var
|
|
82337
|
-
/* harmony import */ var
|
|
82338
|
-
/* harmony import */ var
|
|
82339
|
-
/* harmony import */ var
|
|
82340
|
-
/* harmony import */ var
|
|
82341
|
-
/* harmony import */ var
|
|
82342
|
-
/* harmony import */ var
|
|
82343
|
-
/* harmony import */ var
|
|
82344
|
-
/* harmony import */ var
|
|
82345
|
-
/* harmony import */ var
|
|
82346
|
-
/* harmony import */ var
|
|
82347
|
-
/* harmony import */ var
|
|
82348
|
-
/* harmony import */ var
|
|
82349
|
-
/* harmony import */ var
|
|
82350
|
-
/* harmony import */ var
|
|
82351
|
-
/* harmony import */ var
|
|
82352
|
-
/* harmony import */ var
|
|
82353
|
-
/* harmony import */ var
|
|
82354
|
-
/* harmony import */ var
|
|
82355
|
-
/* harmony import */ var
|
|
82356
|
-
/* harmony import */ var
|
|
82357
|
-
/* harmony import */ var
|
|
82358
|
-
/* harmony import */ var
|
|
82359
|
-
/* harmony import */ var
|
|
82360
|
-
/* harmony import */ var
|
|
82361
|
-
/* harmony import */ var
|
|
82362
|
-
/* harmony import */ var
|
|
82363
|
-
/* harmony import */ var
|
|
82364
|
-
/* harmony import */ var
|
|
82365
|
-
/* harmony import */ var
|
|
82366
|
-
/* harmony import */ var
|
|
82367
|
-
/* harmony import */ var
|
|
82368
|
-
/* harmony import */ var
|
|
82369
|
-
/* harmony import */ var
|
|
82370
|
-
/* harmony import */ var
|
|
82371
|
-
/* harmony import */ var
|
|
82372
|
-
/* harmony import */ var
|
|
82373
|
-
/* harmony import */ var
|
|
82374
|
-
/* harmony import */ var
|
|
82375
|
-
/* harmony import */ var
|
|
82376
|
-
/* harmony import */ var
|
|
82377
|
-
/* harmony import */ var
|
|
82378
|
-
/* harmony import */ var
|
|
82379
|
-
/* harmony import */ var
|
|
82380
|
-
/* harmony import */ var
|
|
82381
|
-
/* harmony import */ var
|
|
82382
|
-
/* harmony import */ var
|
|
82383
|
-
/* harmony import */ var
|
|
82384
|
-
/* harmony import */ var
|
|
82385
|
-
/* harmony import */ var
|
|
82386
|
-
/* harmony import */ var
|
|
82387
|
-
/* harmony import */ var
|
|
82388
|
-
/* harmony import */ var
|
|
82389
|
-
/* harmony import */ var
|
|
82390
|
-
/* harmony import */ var
|
|
82391
|
-
/* harmony import */ var
|
|
82392
|
-
/* harmony import */ var
|
|
82393
|
-
/* harmony import */ var
|
|
82394
|
-
/* harmony import */ var
|
|
82395
|
-
/* harmony import */ var
|
|
82396
|
-
/* harmony import */ var
|
|
82397
|
-
/* harmony import */ var
|
|
82398
|
-
/* harmony import */ var
|
|
82399
|
-
/* harmony import */ var
|
|
82400
|
-
/* harmony import */ var
|
|
82377
|
+
/* harmony import */ var _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ECSqlReaderBase */ "../../core/common/lib/esm/ECSqlReaderBase.js");
|
|
82378
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
82379
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
82380
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
82381
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
82382
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
82383
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
82384
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
82385
|
+
/* harmony import */ var _RenderPolyline__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderPolyline */ "../../core/common/lib/esm/RenderPolyline.js");
|
|
82386
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
82387
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
82388
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
82389
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
82390
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
82391
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
82392
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
82393
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
82394
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
82395
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
82396
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
82397
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
82398
|
+
/* harmony import */ var _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./CesiumIonAssets */ "../../core/common/lib/esm/CesiumIonAssets.js");
|
|
82399
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
82400
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
82401
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
82402
|
+
/* harmony import */ var _TxnProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TxnProps */ "../../core/common/lib/esm/TxnProps.js");
|
|
82403
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
82404
|
+
/* harmony import */ var _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ContourDisplay */ "../../core/common/lib/esm/ContourDisplay.js");
|
|
82405
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
82406
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
82407
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
82408
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
82409
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
82410
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
82411
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
82412
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
82413
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
82414
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
82415
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
82416
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
82417
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
82418
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
82419
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
82420
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
82421
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
82422
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
82423
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
82424
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
82425
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
82426
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
82427
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
82428
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
82429
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
82430
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
82431
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
82432
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
82433
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
82434
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
82435
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
82436
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
82437
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
82438
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
82439
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
82440
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
82441
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
82442
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
82443
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
82444
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
82445
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
82446
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
82447
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
82448
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
82449
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
82450
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/common/lib/esm/internal/cross-package.js");
|
|
82401
82451
|
/*---------------------------------------------------------------------------------------------
|
|
82402
82452
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
82403
82453
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -82563,6 +82613,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
82563
82613
|
|
|
82564
82614
|
|
|
82565
82615
|
|
|
82616
|
+
|
|
82566
82617
|
|
|
82567
82618
|
|
|
82568
82619
|
/** @docs-package-description
|
|
@@ -345427,7 +345478,7 @@ class TestContext {
|
|
|
345427
345478
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
345428
345479
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
345429
345480
|
await core_frontend_1.NoRenderApp.startup({
|
|
345430
|
-
applicationVersion: "5.8.0-dev.
|
|
345481
|
+
applicationVersion: "5.8.0-dev.6",
|
|
345431
345482
|
applicationId: this.settings.gprid,
|
|
345432
345483
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
345433
345484
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -372604,7 +372655,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
372604
372655
|
/***/ ((module) => {
|
|
372605
372656
|
|
|
372606
372657
|
"use strict";
|
|
372607
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.8.0-dev.
|
|
372658
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.8.0-dev.6","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.9","@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
372608
372659
|
|
|
372609
372660
|
/***/ }),
|
|
372610
372661
|
|