@itwin/ecschema-rpcinterface-tests 5.8.0-dev.4 → 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 +481 -430
- 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 +16 -16
|
@@ -30761,11 +30761,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30761
30761
|
"use strict";
|
|
30762
30762
|
__webpack_require__.r(__webpack_exports__);
|
|
30763
30763
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
30764
|
-
/* harmony export */ ECSqlReader: () => (/* binding */ ECSqlReader)
|
|
30765
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* binding */ PropertyMetaDataMap)
|
|
30764
|
+
/* harmony export */ ECSqlReader: () => (/* binding */ ECSqlReader)
|
|
30766
30765
|
/* harmony export */ });
|
|
30767
|
-
/* harmony import */ var
|
|
30768
|
-
/* harmony import */ var
|
|
30766
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
30767
|
+
/* harmony import */ var _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ECSqlReaderBase */ "../../core/common/lib/esm/ECSqlReaderBase.js");
|
|
30769
30768
|
/*---------------------------------------------------------------------------------------------
|
|
30770
30769
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
30771
30770
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -30775,51 +30774,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30775
30774
|
*/
|
|
30776
30775
|
|
|
30777
30776
|
|
|
30778
|
-
/** @public */
|
|
30779
|
-
class PropertyMetaDataMap {
|
|
30780
|
-
properties;
|
|
30781
|
-
_byPropName = new Map();
|
|
30782
|
-
_byJsonName = new Map();
|
|
30783
|
-
_byNoCase = new Map();
|
|
30784
|
-
constructor(properties) {
|
|
30785
|
-
this.properties = properties;
|
|
30786
|
-
for (const property of this.properties) {
|
|
30787
|
-
property.extendType = property.extendedType !== undefined ? property.extendedType : ""; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
30788
|
-
property.extendedType = property.extendedType === "" ? undefined : property.extendedType;
|
|
30789
|
-
this._byPropName.set(property.name, property.index);
|
|
30790
|
-
this._byJsonName.set(property.jsonName, property.index);
|
|
30791
|
-
this._byNoCase.set(property.name.toLowerCase(), property.index);
|
|
30792
|
-
this._byNoCase.set(property.jsonName.toLowerCase(), property.index);
|
|
30793
|
-
}
|
|
30794
|
-
}
|
|
30795
|
-
get length() {
|
|
30796
|
-
return this.properties.length;
|
|
30797
|
-
}
|
|
30798
|
-
[Symbol.iterator]() {
|
|
30799
|
-
return this.properties[Symbol.iterator]();
|
|
30800
|
-
}
|
|
30801
|
-
findByName(name) {
|
|
30802
|
-
const index = this._byPropName.get(name);
|
|
30803
|
-
if (typeof index === "number") {
|
|
30804
|
-
return this.properties[index];
|
|
30805
|
-
}
|
|
30806
|
-
return undefined;
|
|
30807
|
-
}
|
|
30808
|
-
findByJsonName(name) {
|
|
30809
|
-
const index = this._byJsonName.get(name);
|
|
30810
|
-
if (typeof index === "number") {
|
|
30811
|
-
return this.properties[index];
|
|
30812
|
-
}
|
|
30813
|
-
return undefined;
|
|
30814
|
-
}
|
|
30815
|
-
findByNoCase(name) {
|
|
30816
|
-
const index = this._byNoCase.get(name.toLowerCase());
|
|
30817
|
-
if (typeof index === "number") {
|
|
30818
|
-
return this.properties[index];
|
|
30819
|
-
}
|
|
30820
|
-
return undefined;
|
|
30821
|
-
}
|
|
30822
|
-
}
|
|
30823
30777
|
/**
|
|
30824
30778
|
* Execute ECSQL statements and read the results.
|
|
30825
30779
|
*
|
|
@@ -30842,7 +30796,7 @@ class PropertyMetaDataMap {
|
|
|
30842
30796
|
* JavaScript object, call [[QueryRowProxy.toRow]] on it.
|
|
30843
30797
|
* @public
|
|
30844
30798
|
*/
|
|
30845
|
-
class ECSqlReader {
|
|
30799
|
+
class ECSqlReader extends _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.ECSqlReaderBase {
|
|
30846
30800
|
_executor;
|
|
30847
30801
|
query;
|
|
30848
30802
|
static _maxRetryCount = 10;
|
|
@@ -30850,51 +30804,16 @@ class ECSqlReader {
|
|
|
30850
30804
|
_localOffset = 0;
|
|
30851
30805
|
_globalOffset = -1;
|
|
30852
30806
|
_globalCount = -1;
|
|
30853
|
-
_done = false;
|
|
30854
30807
|
_globalDone = false;
|
|
30855
|
-
|
|
30856
|
-
_param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryBinder().serialize();
|
|
30808
|
+
_param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryBinder().serialize();
|
|
30857
30809
|
_lockArgs = false;
|
|
30858
30810
|
_stats = { backendCpuTime: 0, backendTotalTime: 0, backendMemUsed: 0, backendRowsReturned: 0, totalTime: 0, retryCount: 0, prepareTime: 0 };
|
|
30859
|
-
_options = new
|
|
30860
|
-
_rowProxy = new Proxy(this, {
|
|
30861
|
-
get: (target, key) => {
|
|
30862
|
-
if (typeof key === "string") {
|
|
30863
|
-
const idx = Number.parseInt(key, 10);
|
|
30864
|
-
if (!Number.isNaN(idx)) {
|
|
30865
|
-
return target.getRowInternal()[idx];
|
|
30866
|
-
}
|
|
30867
|
-
const prop = target._props.findByNoCase(key);
|
|
30868
|
-
if (prop) {
|
|
30869
|
-
return target.getRowInternal()[prop.index];
|
|
30870
|
-
}
|
|
30871
|
-
if (key === "getMetaData") {
|
|
30872
|
-
return () => target._props.properties;
|
|
30873
|
-
}
|
|
30874
|
-
if (key === "toRow") {
|
|
30875
|
-
return () => target.formatCurrentRow(true);
|
|
30876
|
-
}
|
|
30877
|
-
if (key === "toArray") {
|
|
30878
|
-
return () => this.getRowInternal();
|
|
30879
|
-
}
|
|
30880
|
-
}
|
|
30881
|
-
return undefined;
|
|
30882
|
-
},
|
|
30883
|
-
has: (target, p) => {
|
|
30884
|
-
return !target._props.findByNoCase(p);
|
|
30885
|
-
},
|
|
30886
|
-
ownKeys: (target) => {
|
|
30887
|
-
const keys = [];
|
|
30888
|
-
for (const prop of target._props) {
|
|
30889
|
-
keys.push(prop.name);
|
|
30890
|
-
}
|
|
30891
|
-
return keys;
|
|
30892
|
-
},
|
|
30893
|
-
});
|
|
30811
|
+
_options = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryOptionsBuilder().getOptions();
|
|
30894
30812
|
/**
|
|
30895
30813
|
* @internal
|
|
30896
30814
|
*/
|
|
30897
30815
|
constructor(_executor, query, param, options) {
|
|
30816
|
+
super(options?.rowFormat);
|
|
30898
30817
|
this._executor = _executor;
|
|
30899
30818
|
this.query = query;
|
|
30900
30819
|
if (query.trim().length === 0) {
|
|
@@ -30903,38 +30822,33 @@ class ECSqlReader {
|
|
|
30903
30822
|
if (param) {
|
|
30904
30823
|
this._param = param.serialize();
|
|
30905
30824
|
}
|
|
30825
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
30906
30826
|
this.reset(options);
|
|
30907
30827
|
}
|
|
30908
|
-
|
|
30909
|
-
|
|
30910
|
-
|
|
30911
|
-
if (typeof val === "string") {
|
|
30912
|
-
if (_Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.hasPrefix(val)) {
|
|
30913
|
-
row[key] = _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.toUint8Array(val);
|
|
30914
|
-
}
|
|
30915
|
-
}
|
|
30916
|
-
else if (typeof val === "object" && val !== null) {
|
|
30917
|
-
this.replaceBase64WithUint8Array(val);
|
|
30918
|
-
}
|
|
30919
|
-
}
|
|
30920
|
-
}
|
|
30828
|
+
/**
|
|
30829
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
30830
|
+
*/
|
|
30921
30831
|
setParams(param) {
|
|
30922
30832
|
if (this._lockArgs) {
|
|
30923
30833
|
throw new Error("call resetBindings() before setting or changing parameters");
|
|
30924
30834
|
}
|
|
30925
30835
|
this._param = param.serialize();
|
|
30926
30836
|
}
|
|
30837
|
+
/**
|
|
30838
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
30839
|
+
*/
|
|
30927
30840
|
reset(options) {
|
|
30928
30841
|
if (options) {
|
|
30929
30842
|
this._options = options;
|
|
30930
30843
|
}
|
|
30931
|
-
this._props = new PropertyMetaDataMap([]);
|
|
30844
|
+
this._props = new _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.PropertyMetaDataMap([]);
|
|
30932
30845
|
this._localRows = [];
|
|
30933
30846
|
this._globalDone = false;
|
|
30934
30847
|
this._globalOffset = 0;
|
|
30935
30848
|
this._globalCount = -1;
|
|
30936
30849
|
if (typeof this._options.rowFormat === "undefined")
|
|
30937
|
-
this._options.rowFormat =
|
|
30850
|
+
this._options.rowFormat = _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryRowFormat.UseECSqlPropertyIndexes;
|
|
30851
|
+
this._rowFormat = this._options.rowFormat;
|
|
30938
30852
|
if (this._options.limit) {
|
|
30939
30853
|
if (typeof this._options.limit.offset === "number" && this._options.limit.offset > 0)
|
|
30940
30854
|
this._globalOffset = this._options.limit.offset;
|
|
@@ -30943,53 +30857,14 @@ class ECSqlReader {
|
|
|
30943
30857
|
}
|
|
30944
30858
|
this._done = false;
|
|
30945
30859
|
}
|
|
30946
|
-
/**
|
|
30947
|
-
* Get the current row from the query result. The current row is the one most recently stepped-to
|
|
30948
|
-
* (by step() or during iteration).
|
|
30949
|
-
*
|
|
30950
|
-
* Each value from the row can be accessed by index or by name.
|
|
30951
|
-
*
|
|
30952
|
-
* The format of the row is dictated by the [[QueryOptions.rowFormat]] specified in the `options` parameter of the
|
|
30953
|
-
* constructed ECSqlReader object.
|
|
30954
|
-
*
|
|
30955
|
-
* @see
|
|
30956
|
-
* - [[QueryRowFormat]]
|
|
30957
|
-
* - [ECSQL Row Formats]($docs/learning/ECSQLRowFormat)
|
|
30958
|
-
*
|
|
30959
|
-
* @note The current row is be a [[QueryRowProxy]] object. To get the row as a basic JavaScript object, call
|
|
30960
|
-
* [[QueryRowProxy.toRow]] on it.
|
|
30961
|
-
*
|
|
30962
|
-
* @example
|
|
30963
|
-
* ```ts
|
|
30964
|
-
* const reader = iModel.createQueryReader("SELECT ECInstanceId FROM bis.Element");
|
|
30965
|
-
* while (await reader.step()) {
|
|
30966
|
-
* // Both lines below print the same value
|
|
30967
|
-
* console.log(reader.current[0]);
|
|
30968
|
-
* console.log(reader.current.ecinstanceid);
|
|
30969
|
-
* }
|
|
30970
|
-
* ```
|
|
30971
|
-
*
|
|
30972
|
-
* @return The current row as a [[QueryRowProxy]].
|
|
30973
|
-
*/
|
|
30974
|
-
get current() {
|
|
30975
|
-
return this._rowProxy;
|
|
30976
|
-
}
|
|
30977
30860
|
/**
|
|
30978
30861
|
* Clear all bindings.
|
|
30862
|
+
* @deprecated in 5.6. Will not be removed until 2027-02-18. Should not be used. Will be made private in a future release.
|
|
30979
30863
|
*/
|
|
30980
30864
|
resetBindings() {
|
|
30981
|
-
this._param = new
|
|
30865
|
+
this._param = new _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.QueryBinder().serialize();
|
|
30982
30866
|
this._lockArgs = false;
|
|
30983
30867
|
}
|
|
30984
|
-
/**
|
|
30985
|
-
* Returns if there are more rows available.
|
|
30986
|
-
*
|
|
30987
|
-
* @returns `true` if all rows have been stepped through already.<br/>
|
|
30988
|
-
* `false` if there are any yet unaccessed rows.
|
|
30989
|
-
*/
|
|
30990
|
-
get done() {
|
|
30991
|
-
return this._done;
|
|
30992
|
-
}
|
|
30993
30868
|
/**
|
|
30994
30869
|
* @internal
|
|
30995
30870
|
*/
|
|
@@ -31017,10 +30892,10 @@ class ECSqlReader {
|
|
|
31017
30892
|
if (this._globalCount === 0) {
|
|
31018
30893
|
return [];
|
|
31019
30894
|
}
|
|
31020
|
-
const valueFormat = this._options.rowFormat ===
|
|
30895
|
+
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;
|
|
31021
30896
|
const request = {
|
|
31022
30897
|
...this._options,
|
|
31023
|
-
kind:
|
|
30898
|
+
kind: _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbRequestKind.ECSql,
|
|
31024
30899
|
valueFormat,
|
|
31025
30900
|
query: this.query,
|
|
31026
30901
|
args: this._param,
|
|
@@ -31028,9 +30903,9 @@ class ECSqlReader {
|
|
|
31028
30903
|
request.includeMetaData = this._props.length > 0 ? false : true;
|
|
31029
30904
|
request.limit = { offset: this._globalOffset, count: this._globalCount < 1 ? -1 : this._globalCount };
|
|
31030
30905
|
const resp = await this.runWithRetry(request);
|
|
31031
|
-
this._globalDone = resp.status ===
|
|
30906
|
+
this._globalDone = resp.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbResponseStatus.Done;
|
|
31032
30907
|
if (this._props.length === 0 && resp.meta.length > 0) {
|
|
31033
|
-
this._props = new PropertyMetaDataMap(resp.meta);
|
|
30908
|
+
this._props = new _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_1__.PropertyMetaDataMap(resp.meta);
|
|
31034
30909
|
}
|
|
31035
30910
|
for (const row of resp.data) {
|
|
31036
30911
|
ECSqlReader.replaceBase64WithUint8Array(row);
|
|
@@ -31041,7 +30916,7 @@ class ECSqlReader {
|
|
|
31041
30916
|
* @internal
|
|
31042
30917
|
*/
|
|
31043
30918
|
async runWithRetry(request) {
|
|
31044
|
-
const needRetry = (rs) => (rs.status ===
|
|
30919
|
+
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);
|
|
31045
30920
|
const updateStats = (rs) => {
|
|
31046
30921
|
this._stats.backendCpuTime += rs.stats.cpuTime;
|
|
31047
30922
|
this._stats.backendTotalTime += rs.stats.totalTime;
|
|
@@ -31057,7 +30932,7 @@ class ECSqlReader {
|
|
|
31057
30932
|
};
|
|
31058
30933
|
let retry = ECSqlReader._maxRetryCount;
|
|
31059
30934
|
let resp = await execQuery(request);
|
|
31060
|
-
|
|
30935
|
+
_ConcurrentQuery__WEBPACK_IMPORTED_MODULE_0__.DbQueryError.throwIfError(resp, request);
|
|
31061
30936
|
while (--retry > 0 && needRetry(resp)) {
|
|
31062
30937
|
resp = await execQuery(request);
|
|
31063
30938
|
this._stats.retryCount += 1;
|
|
@@ -31071,26 +30946,6 @@ class ECSqlReader {
|
|
|
31071
30946
|
updateStats(resp);
|
|
31072
30947
|
return resp;
|
|
31073
30948
|
}
|
|
31074
|
-
/**
|
|
31075
|
-
* @internal
|
|
31076
|
-
*/
|
|
31077
|
-
formatCurrentRow(onlyReturnObject = false) {
|
|
31078
|
-
if (!onlyReturnObject && this._options.rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes) {
|
|
31079
|
-
return this.getRowInternal();
|
|
31080
|
-
}
|
|
31081
|
-
const formattedRow = {};
|
|
31082
|
-
for (const prop of this._props) {
|
|
31083
|
-
const propName = this._options.rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseJsPropertyNames ? prop.jsonName : prop.name;
|
|
31084
|
-
const val = this.getRowInternal()[prop.index];
|
|
31085
|
-
if (typeof val !== "undefined" && val !== null) {
|
|
31086
|
-
Object.defineProperty(formattedRow, propName, {
|
|
31087
|
-
value: val,
|
|
31088
|
-
enumerable: true,
|
|
31089
|
-
});
|
|
31090
|
-
}
|
|
31091
|
-
}
|
|
31092
|
-
return formattedRow;
|
|
31093
|
-
}
|
|
31094
30949
|
/**
|
|
31095
30950
|
* Get the metadata for each column in the query result.
|
|
31096
30951
|
*
|
|
@@ -31177,6 +31032,199 @@ class ECSqlReader {
|
|
|
31177
31032
|
}
|
|
31178
31033
|
|
|
31179
31034
|
|
|
31035
|
+
/***/ }),
|
|
31036
|
+
|
|
31037
|
+
/***/ "../../core/common/lib/esm/ECSqlReaderBase.js":
|
|
31038
|
+
/*!****************************************************!*\
|
|
31039
|
+
!*** ../../core/common/lib/esm/ECSqlReaderBase.js ***!
|
|
31040
|
+
\****************************************************/
|
|
31041
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31042
|
+
|
|
31043
|
+
"use strict";
|
|
31044
|
+
__webpack_require__.r(__webpack_exports__);
|
|
31045
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
31046
|
+
/* harmony export */ ECSqlReaderBase: () => (/* binding */ ECSqlReaderBase),
|
|
31047
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* binding */ PropertyMetaDataMap)
|
|
31048
|
+
/* harmony export */ });
|
|
31049
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
31050
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
31051
|
+
/*---------------------------------------------------------------------------------------------
|
|
31052
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
31053
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
31054
|
+
*--------------------------------------------------------------------------------------------*/
|
|
31055
|
+
/** @packageDocumentation
|
|
31056
|
+
* @module iModels
|
|
31057
|
+
*/
|
|
31058
|
+
|
|
31059
|
+
|
|
31060
|
+
/** @public */
|
|
31061
|
+
class PropertyMetaDataMap {
|
|
31062
|
+
properties;
|
|
31063
|
+
_byPropName = new Map();
|
|
31064
|
+
_byJsonName = new Map();
|
|
31065
|
+
_byNoCase = new Map();
|
|
31066
|
+
constructor(properties) {
|
|
31067
|
+
this.properties = properties;
|
|
31068
|
+
for (const property of this.properties) {
|
|
31069
|
+
property.extendType = property.extendedType !== undefined ? property.extendedType : ""; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
31070
|
+
property.extendedType = property.extendedType === "" ? undefined : property.extendedType;
|
|
31071
|
+
this._byPropName.set(property.name, property.index);
|
|
31072
|
+
this._byJsonName.set(property.jsonName, property.index);
|
|
31073
|
+
this._byNoCase.set(property.name.toLowerCase(), property.index);
|
|
31074
|
+
this._byNoCase.set(property.jsonName.toLowerCase(), property.index);
|
|
31075
|
+
}
|
|
31076
|
+
}
|
|
31077
|
+
get length() {
|
|
31078
|
+
return this.properties.length;
|
|
31079
|
+
}
|
|
31080
|
+
[Symbol.iterator]() {
|
|
31081
|
+
return this.properties[Symbol.iterator]();
|
|
31082
|
+
}
|
|
31083
|
+
findByName(name) {
|
|
31084
|
+
const index = this._byPropName.get(name);
|
|
31085
|
+
if (typeof index === "number") {
|
|
31086
|
+
return this.properties[index];
|
|
31087
|
+
}
|
|
31088
|
+
return undefined;
|
|
31089
|
+
}
|
|
31090
|
+
findByJsonName(name) {
|
|
31091
|
+
const index = this._byJsonName.get(name);
|
|
31092
|
+
if (typeof index === "number") {
|
|
31093
|
+
return this.properties[index];
|
|
31094
|
+
}
|
|
31095
|
+
return undefined;
|
|
31096
|
+
}
|
|
31097
|
+
findByNoCase(name) {
|
|
31098
|
+
const index = this._byNoCase.get(name.toLowerCase());
|
|
31099
|
+
if (typeof index === "number") {
|
|
31100
|
+
return this.properties[index];
|
|
31101
|
+
}
|
|
31102
|
+
return undefined;
|
|
31103
|
+
}
|
|
31104
|
+
}
|
|
31105
|
+
/**
|
|
31106
|
+
* Abstract base class providing shared row-proxy access, row formatting, and
|
|
31107
|
+
* Base64-to-Uint8Array conversion logic for both the asynchronous [[ECSqlReader]]
|
|
31108
|
+
* and the synchronous ECSqlSyncReader.
|
|
31109
|
+
*
|
|
31110
|
+
* Subclasses must implement [[getRowInternal]] to supply the current row data.
|
|
31111
|
+
* @public
|
|
31112
|
+
*/
|
|
31113
|
+
class ECSqlReaderBase {
|
|
31114
|
+
/** @internal */
|
|
31115
|
+
_done = false;
|
|
31116
|
+
/** @internal */
|
|
31117
|
+
_props = new PropertyMetaDataMap([]);
|
|
31118
|
+
/** @internal */
|
|
31119
|
+
_rowFormat;
|
|
31120
|
+
_rowProxy = new Proxy(this, {
|
|
31121
|
+
get: (target, key) => {
|
|
31122
|
+
if (typeof key === "string") {
|
|
31123
|
+
const idx = Number.parseInt(key, 10);
|
|
31124
|
+
if (!Number.isNaN(idx)) {
|
|
31125
|
+
return target.getRowInternal()[idx];
|
|
31126
|
+
}
|
|
31127
|
+
const prop = target._props.findByNoCase(key);
|
|
31128
|
+
if (prop) {
|
|
31129
|
+
return target.getRowInternal()[prop.index];
|
|
31130
|
+
}
|
|
31131
|
+
if (key === "getMetaData") {
|
|
31132
|
+
return () => target._props.properties;
|
|
31133
|
+
}
|
|
31134
|
+
if (key === "toRow") {
|
|
31135
|
+
return () => target.formatCurrentRow(true);
|
|
31136
|
+
}
|
|
31137
|
+
if (key === "toArray") {
|
|
31138
|
+
return () => target.getRowInternal();
|
|
31139
|
+
}
|
|
31140
|
+
}
|
|
31141
|
+
return undefined;
|
|
31142
|
+
},
|
|
31143
|
+
has: (target, p) => {
|
|
31144
|
+
return !target._props.findByNoCase(p);
|
|
31145
|
+
},
|
|
31146
|
+
ownKeys: (target) => {
|
|
31147
|
+
const keys = [];
|
|
31148
|
+
for (const prop of target._props) {
|
|
31149
|
+
keys.push(prop.name);
|
|
31150
|
+
}
|
|
31151
|
+
return keys;
|
|
31152
|
+
},
|
|
31153
|
+
});
|
|
31154
|
+
/**
|
|
31155
|
+
* @internal
|
|
31156
|
+
*/
|
|
31157
|
+
constructor(rowFormat) {
|
|
31158
|
+
this._rowFormat = rowFormat ?? _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes;
|
|
31159
|
+
}
|
|
31160
|
+
/**
|
|
31161
|
+
* Get the current row from the query result. The current row is the one most recently stepped-to
|
|
31162
|
+
* (by step() or during iteration).
|
|
31163
|
+
*
|
|
31164
|
+
* Each value from the row can be accessed by index or by name.
|
|
31165
|
+
*
|
|
31166
|
+
* @see
|
|
31167
|
+
* - [[QueryRowFormat]]
|
|
31168
|
+
* - [ECSQL Row Formats]($docs/learning/ECSQLRowFormat)
|
|
31169
|
+
*
|
|
31170
|
+
* @note The current row is a [[QueryRowProxy]] object. To get the row as a basic JavaScript object, call
|
|
31171
|
+
* [[QueryRowProxy.toRow]] on it.
|
|
31172
|
+
*
|
|
31173
|
+
* @return The current row as a [[QueryRowProxy]].
|
|
31174
|
+
*/
|
|
31175
|
+
get current() {
|
|
31176
|
+
return this._rowProxy;
|
|
31177
|
+
}
|
|
31178
|
+
/**
|
|
31179
|
+
* Returns if there are more rows available.
|
|
31180
|
+
*
|
|
31181
|
+
* @returns `true` if all rows have been stepped through already.<br/>
|
|
31182
|
+
* `false` if there are any yet unaccessed rows.
|
|
31183
|
+
*/
|
|
31184
|
+
get done() {
|
|
31185
|
+
return this._done;
|
|
31186
|
+
}
|
|
31187
|
+
/**
|
|
31188
|
+
* Converts Base64-encoded strings in a row object into Uint8Arrays in-place.
|
|
31189
|
+
* @internal
|
|
31190
|
+
*/
|
|
31191
|
+
static replaceBase64WithUint8Array(row) {
|
|
31192
|
+
for (const key of Object.keys(row)) {
|
|
31193
|
+
const val = row[key];
|
|
31194
|
+
if (typeof val === "string") {
|
|
31195
|
+
if (_Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.hasPrefix(val)) {
|
|
31196
|
+
row[key] = _Base64EncodedString__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.toUint8Array(val);
|
|
31197
|
+
}
|
|
31198
|
+
}
|
|
31199
|
+
else if (typeof val === "object" && val !== null) {
|
|
31200
|
+
this.replaceBase64WithUint8Array(val);
|
|
31201
|
+
}
|
|
31202
|
+
}
|
|
31203
|
+
}
|
|
31204
|
+
/**
|
|
31205
|
+
* Format the current row as a JavaScript object or array depending on the row format.
|
|
31206
|
+
* @internal
|
|
31207
|
+
*/
|
|
31208
|
+
formatCurrentRow(onlyReturnObject = false) {
|
|
31209
|
+
if (!onlyReturnObject && this._rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseECSqlPropertyIndexes) {
|
|
31210
|
+
return this.getRowInternal();
|
|
31211
|
+
}
|
|
31212
|
+
const formattedRow = {};
|
|
31213
|
+
for (const prop of this._props) {
|
|
31214
|
+
const propName = this._rowFormat === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseJsPropertyNames ? prop.jsonName : prop.name;
|
|
31215
|
+
const val = this.getRowInternal()[prop.index];
|
|
31216
|
+
if (typeof val !== "undefined" && val !== null) {
|
|
31217
|
+
Object.defineProperty(formattedRow, propName, {
|
|
31218
|
+
value: val,
|
|
31219
|
+
enumerable: true,
|
|
31220
|
+
});
|
|
31221
|
+
}
|
|
31222
|
+
}
|
|
31223
|
+
return formattedRow;
|
|
31224
|
+
}
|
|
31225
|
+
}
|
|
31226
|
+
|
|
31227
|
+
|
|
31180
31228
|
/***/ }),
|
|
31181
31229
|
|
|
31182
31230
|
/***/ "../../core/common/lib/esm/ECSqlTypes.js":
|
|
@@ -45232,7 +45280,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45232
45280
|
/* harmony export */ AnalysisStyleThematic: () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
45233
45281
|
/* harmony export */ AreaPattern: () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_44__.AreaPattern),
|
|
45234
45282
|
/* harmony export */ Atmosphere: () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_8__.Atmosphere),
|
|
45235
|
-
/* harmony export */ B3dmHeader: () => (/* reexport safe */
|
|
45283
|
+
/* harmony export */ B3dmHeader: () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_152__.B3dmHeader),
|
|
45236
45284
|
/* harmony export */ BRepEntity: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.BRepEntity),
|
|
45237
45285
|
/* harmony export */ BRepGeometryOperation: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.BRepGeometryOperation),
|
|
45238
45286
|
/* harmony export */ BackendError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.BackendError),
|
|
@@ -45244,22 +45292,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45244
45292
|
/* harmony export */ BaseLayerSettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.BaseLayerSettings),
|
|
45245
45293
|
/* harmony export */ BaseMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.BaseMapLayerSettings),
|
|
45246
45294
|
/* harmony export */ BatchType: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.BatchType),
|
|
45247
|
-
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */
|
|
45248
|
-
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */
|
|
45249
|
-
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */
|
|
45295
|
+
/* harmony export */ BentleyCloudRpcConfiguration: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__.BentleyCloudRpcConfiguration),
|
|
45296
|
+
/* harmony export */ BentleyCloudRpcManager: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__.BentleyCloudRpcManager),
|
|
45297
|
+
/* harmony export */ BentleyCloudRpcProtocol: () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_146__.BentleyCloudRpcProtocol),
|
|
45250
45298
|
/* harmony export */ BisCodeSpec: () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_20__.BisCodeSpec),
|
|
45251
45299
|
/* harmony export */ BlobOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.BlobOptionsBuilder),
|
|
45252
45300
|
/* harmony export */ BoundingSphere: () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_45__.BoundingSphere),
|
|
45253
45301
|
/* harmony export */ BriefcaseIdValue: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.BriefcaseIdValue),
|
|
45254
|
-
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */
|
|
45255
|
-
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */
|
|
45302
|
+
/* harmony export */ CURRENT_INVOCATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.CURRENT_INVOCATION),
|
|
45303
|
+
/* harmony export */ CURRENT_REQUEST: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.CURRENT_REQUEST),
|
|
45256
45304
|
/* harmony export */ Camera: () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_14__.Camera),
|
|
45257
45305
|
/* harmony export */ Carto2DDegrees: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Carto2DDegrees),
|
|
45258
45306
|
/* harmony export */ Cartographic: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.Cartographic),
|
|
45259
45307
|
/* harmony export */ CartographicRange: () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_46__.CartographicRange),
|
|
45260
45308
|
/* harmony export */ CatalogError: () => (/* reexport safe */ _CatalogIModel__WEBPACK_IMPORTED_MODULE_15__.CatalogError),
|
|
45261
|
-
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */
|
|
45262
|
-
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */
|
|
45309
|
+
/* harmony export */ CesiumIonAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__.CesiumIonAssetId),
|
|
45310
|
+
/* harmony export */ CesiumTerrainAssetId: () => (/* reexport safe */ _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__.CesiumTerrainAssetId),
|
|
45263
45311
|
/* harmony export */ ChangeOpCode: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangeOpCode),
|
|
45264
45312
|
/* harmony export */ ChangedValueState: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ChangedValueState),
|
|
45265
45313
|
/* harmony export */ ChangesetType: () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_18__.ChangesetType),
|
|
@@ -45274,40 +45322,41 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45274
45322
|
/* harmony export */ ColorDef: () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_22__.ColorDef),
|
|
45275
45323
|
/* harmony export */ ColorIndex: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.ColorIndex),
|
|
45276
45324
|
/* harmony export */ CommonLoggerCategory: () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_23__.CommonLoggerCategory),
|
|
45277
|
-
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */
|
|
45325
|
+
/* harmony export */ CompositeTileHeader: () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_153__.CompositeTileHeader),
|
|
45278
45326
|
/* harmony export */ ConcreteEntityTypes: () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_34__.ConcreteEntityTypes),
|
|
45279
45327
|
/* harmony export */ ConflictingLocksError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ConflictingLocksError),
|
|
45280
|
-
/* harmony export */ ContentFlags: () => (/* reexport safe */
|
|
45281
|
-
/* harmony export */ ContentIdProvider: () => (/* reexport safe */
|
|
45328
|
+
/* harmony export */ ContentFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.ContentFlags),
|
|
45329
|
+
/* harmony export */ ContentIdProvider: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.ContentIdProvider),
|
|
45282
45330
|
/* harmony export */ ContextRealityModel: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModel),
|
|
45283
45331
|
/* harmony export */ ContextRealityModelProps: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModelProps),
|
|
45284
45332
|
/* harmony export */ ContextRealityModels: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.ContextRealityModels),
|
|
45285
|
-
/* harmony export */ Contour: () => (/* reexport safe */
|
|
45286
|
-
/* harmony export */ ContourDisplay: () => (/* reexport safe */
|
|
45287
|
-
/* harmony export */ ContourGroup: () => (/* reexport safe */
|
|
45288
|
-
/* harmony export */ ContourStyle: () => (/* reexport safe */
|
|
45289
|
-
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */
|
|
45333
|
+
/* harmony export */ Contour: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.Contour),
|
|
45334
|
+
/* harmony export */ ContourDisplay: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourDisplay),
|
|
45335
|
+
/* harmony export */ ContourGroup: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourGroup),
|
|
45336
|
+
/* harmony export */ ContourStyle: () => (/* reexport safe */ _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__.ContourStyle),
|
|
45337
|
+
/* harmony export */ CurrentImdlVersion: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.CurrentImdlVersion),
|
|
45290
45338
|
/* harmony export */ CutStyle: () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_19__.CutStyle),
|
|
45291
45339
|
/* harmony export */ DbQueryError: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbQueryError),
|
|
45292
45340
|
/* harmony export */ DbRequestKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbRequestKind),
|
|
45293
45341
|
/* harmony export */ DbResponseKind: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseKind),
|
|
45294
45342
|
/* harmony export */ DbResponseStatus: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbResponseStatus),
|
|
45295
45343
|
/* harmony export */ DbValueFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.DbValueFormat),
|
|
45296
|
-
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */
|
|
45297
|
-
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */
|
|
45298
|
-
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */
|
|
45344
|
+
/* harmony export */ DefaultSupportedTypes: () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_96__.DefaultSupportedTypes),
|
|
45345
|
+
/* harmony export */ DevToolsRpcInterface: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__.DevToolsRpcInterface),
|
|
45346
|
+
/* harmony export */ DevToolsStatsOptions: () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__.DevToolsStatsOptions),
|
|
45299
45347
|
/* harmony export */ DisplayStyle3dSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyle3dSettings),
|
|
45300
45348
|
/* harmony export */ DisplayStyleSettings: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.DisplayStyleSettings),
|
|
45301
45349
|
/* harmony export */ DomainOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.DomainOptions),
|
|
45302
45350
|
/* harmony export */ ECJsNames: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECJsNames),
|
|
45303
|
-
/* harmony export */ ECSqlReader: () => (/* reexport safe */
|
|
45351
|
+
/* harmony export */ ECSqlReader: () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_91__.ECSqlReader),
|
|
45352
|
+
/* harmony export */ ECSqlReaderBase: () => (/* reexport safe */ _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__.ECSqlReaderBase),
|
|
45304
45353
|
/* harmony export */ ECSqlSystemProperty: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlSystemProperty),
|
|
45305
45354
|
/* harmony export */ ECSqlValueType: () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_29__.ECSqlValueType),
|
|
45306
|
-
/* harmony export */ Easing: () => (/* reexport safe */
|
|
45355
|
+
/* harmony export */ Easing: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Easing),
|
|
45307
45356
|
/* harmony export */ EcefLocation: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.EcefLocation),
|
|
45308
|
-
/* harmony export */ EdgeArgs: () => (/* reexport safe */
|
|
45357
|
+
/* harmony export */ EdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.EdgeArgs),
|
|
45309
45358
|
/* harmony export */ ElementGeometry: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometry),
|
|
45310
|
-
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */
|
|
45359
|
+
/* harmony export */ ElementGeometryChange: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__.ElementGeometryChange),
|
|
45311
45360
|
/* harmony export */ ElementGeometryOpcode: () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_48__.ElementGeometryOpcode),
|
|
45312
45361
|
/* harmony export */ EmptyLocalization: () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_80__.EmptyLocalization),
|
|
45313
45362
|
/* harmony export */ EntityMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.EntityMetaData),
|
|
@@ -45322,7 +45371,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45322
45371
|
/* harmony export */ FeatureOverrideType: () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrideType),
|
|
45323
45372
|
/* harmony export */ FeatureOverrides: () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_37__.FeatureOverrides),
|
|
45324
45373
|
/* harmony export */ FeatureTable: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.FeatureTable),
|
|
45325
|
-
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */
|
|
45374
|
+
/* harmony export */ FeatureTableHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.FeatureTableHeader),
|
|
45326
45375
|
/* harmony export */ FieldRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FieldRun),
|
|
45327
45376
|
/* harmony export */ FillDisplay: () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_59__.FillDisplay),
|
|
45328
45377
|
/* harmony export */ FillFlags: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.FillFlags),
|
|
@@ -45347,16 +45396,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45347
45396
|
/* harmony export */ GeometryStreamFlags: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamFlags),
|
|
45348
45397
|
/* harmony export */ GeometryStreamIterator: () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_52__.GeometryStreamIterator),
|
|
45349
45398
|
/* harmony export */ GeometrySummaryVerbosity: () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_60__.GeometrySummaryVerbosity),
|
|
45350
|
-
/* harmony export */ GlbHeader: () => (/* reexport safe */
|
|
45399
|
+
/* harmony export */ GlbHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GlbHeader),
|
|
45351
45400
|
/* harmony export */ GlobeMode: () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_11__.GlobeMode),
|
|
45352
|
-
/* harmony export */ GltfHeader: () => (/* reexport safe */
|
|
45353
|
-
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */
|
|
45354
|
-
/* harmony export */ GltfVersions: () => (/* reexport safe */
|
|
45401
|
+
/* harmony export */ GltfHeader: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfHeader),
|
|
45402
|
+
/* harmony export */ GltfV2ChunkTypes: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfV2ChunkTypes),
|
|
45403
|
+
/* harmony export */ GltfVersions: () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__.GltfVersions),
|
|
45355
45404
|
/* harmony export */ Gradient: () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_61__.Gradient),
|
|
45356
45405
|
/* harmony export */ GraphicParams: () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_62__.GraphicParams),
|
|
45357
45406
|
/* harmony export */ GridFileDefinition: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileDefinition),
|
|
45358
45407
|
/* harmony export */ GridFileTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.GridFileTransform),
|
|
45359
|
-
/* harmony export */ GridOrientationType: () => (/* reexport safe */
|
|
45408
|
+
/* harmony export */ GridOrientationType: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.GridOrientationType),
|
|
45360
45409
|
/* harmony export */ GroundPlane: () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_63__.GroundPlane),
|
|
45361
45410
|
/* harmony export */ HSLColor: () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_66__.HSLColor),
|
|
45362
45411
|
/* harmony export */ HSVColor: () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_67__.HSVColor),
|
|
@@ -45367,14 +45416,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45367
45416
|
/* harmony export */ Hilite: () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_65__.Hilite),
|
|
45368
45417
|
/* harmony export */ HorizontalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRS),
|
|
45369
45418
|
/* harmony export */ HorizontalCRSExtent: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.HorizontalCRSExtent),
|
|
45370
|
-
/* harmony export */ I3dmHeader: () => (/* reexport safe */
|
|
45419
|
+
/* harmony export */ I3dmHeader: () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_156__.I3dmHeader),
|
|
45371
45420
|
/* harmony export */ IModel: () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_69__.IModel),
|
|
45372
45421
|
/* harmony export */ IModelError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.IModelError),
|
|
45373
|
-
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */
|
|
45374
|
-
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */
|
|
45375
|
-
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */
|
|
45422
|
+
/* harmony export */ IModelNotFoundResponse: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__.IModelNotFoundResponse),
|
|
45423
|
+
/* harmony export */ IModelReadRpcInterface: () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__.IModelReadRpcInterface),
|
|
45424
|
+
/* harmony export */ IModelTileRpcInterface: () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_141__.IModelTileRpcInterface),
|
|
45376
45425
|
/* harmony export */ IModelVersion: () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_71__.IModelVersion),
|
|
45377
|
-
/* harmony export */ INSTANCE: () => (/* reexport safe */
|
|
45426
|
+
/* harmony export */ INSTANCE: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.INSTANCE),
|
|
45378
45427
|
/* harmony export */ ImageBuffer: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBuffer),
|
|
45379
45428
|
/* harmony export */ ImageBufferFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageBufferFormat),
|
|
45380
45429
|
/* harmony export */ ImageGraphic: () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_53__.ImageGraphic),
|
|
@@ -45382,10 +45431,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45382
45431
|
/* harmony export */ ImageMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ImageMapLayerSettings),
|
|
45383
45432
|
/* harmony export */ ImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSource),
|
|
45384
45433
|
/* harmony export */ ImageSourceFormat: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.ImageSourceFormat),
|
|
45385
|
-
/* harmony export */ ImdlFlags: () => (/* reexport safe */
|
|
45386
|
-
/* harmony export */ ImdlHeader: () => (/* reexport safe */
|
|
45434
|
+
/* harmony export */ ImdlFlags: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.ImdlFlags),
|
|
45435
|
+
/* harmony export */ ImdlHeader: () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__.ImdlHeader),
|
|
45387
45436
|
/* harmony export */ InternetConnectivityStatus: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.InternetConnectivityStatus),
|
|
45388
|
-
/* harmony export */ Interpolation: () => (/* reexport safe */
|
|
45437
|
+
/* harmony export */ Interpolation: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Interpolation),
|
|
45389
45438
|
/* harmony export */ IpcSession: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.IpcSession),
|
|
45390
45439
|
/* harmony export */ IpcWebSocket: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocket),
|
|
45391
45440
|
/* harmony export */ IpcWebSocketBackend: () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_74__.IpcWebSocketBackend),
|
|
@@ -45403,144 +45452,144 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45403
45452
|
/* harmony export */ MapImagerySettings: () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_81__.MapImagerySettings),
|
|
45404
45453
|
/* harmony export */ MapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapLayerSettings),
|
|
45405
45454
|
/* harmony export */ MapSubLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.MapSubLayerSettings),
|
|
45406
|
-
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */
|
|
45455
|
+
/* harmony export */ MarshalingBinaryMarker: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.MarshalingBinaryMarker),
|
|
45407
45456
|
/* harmony export */ MassPropertiesOperation: () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_83__.MassPropertiesOperation),
|
|
45408
|
-
/* harmony export */ MeshEdge: () => (/* reexport safe */
|
|
45409
|
-
/* harmony export */ MeshEdges: () => (/* reexport safe */
|
|
45410
|
-
/* harmony export */ MeshPolyline: () => (/* reexport safe */
|
|
45457
|
+
/* harmony export */ MeshEdge: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshEdge),
|
|
45458
|
+
/* harmony export */ MeshEdges: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshEdges),
|
|
45459
|
+
/* harmony export */ MeshPolyline: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MeshPolyline),
|
|
45411
45460
|
/* harmony export */ ModelClipGroup: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroup),
|
|
45412
45461
|
/* harmony export */ ModelClipGroups: () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_85__.ModelClipGroups),
|
|
45413
45462
|
/* harmony export */ ModelFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.ModelFeature),
|
|
45414
|
-
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */
|
|
45463
|
+
/* harmony export */ ModelGeometryChanges: () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__.ModelGeometryChanges),
|
|
45415
45464
|
/* harmony export */ ModelMapLayerDrapeTarget: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerDrapeTarget),
|
|
45416
45465
|
/* harmony export */ ModelMapLayerSettings: () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_82__.ModelMapLayerSettings),
|
|
45417
45466
|
/* harmony export */ MonochromeMode: () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_25__.MonochromeMode),
|
|
45418
|
-
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */
|
|
45467
|
+
/* harmony export */ MultiModelPackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.MultiModelPackedFeatureTable),
|
|
45419
45468
|
/* harmony export */ NoContentError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.NoContentError),
|
|
45420
45469
|
/* harmony export */ NonUniformColor: () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_36__.NonUniformColor),
|
|
45421
45470
|
/* harmony export */ NormalMapFlags: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.NormalMapFlags),
|
|
45422
45471
|
/* harmony export */ Npc: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.Npc),
|
|
45423
45472
|
/* harmony export */ NpcCenter: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCenter),
|
|
45424
45473
|
/* harmony export */ NpcCorners: () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_40__.NpcCorners),
|
|
45425
|
-
/* harmony export */ OPERATION: () => (/* reexport safe */
|
|
45474
|
+
/* harmony export */ OPERATION: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.OPERATION),
|
|
45426
45475
|
/* harmony export */ OctEncodedNormal: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormal),
|
|
45427
45476
|
/* harmony export */ OctEncodedNormalPair: () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__.OctEncodedNormalPair),
|
|
45428
45477
|
/* harmony export */ OverriddenBy: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.OverriddenBy),
|
|
45429
|
-
/* harmony export */ POLICY: () => (/* reexport safe */
|
|
45478
|
+
/* harmony export */ POLICY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.POLICY),
|
|
45430
45479
|
/* harmony export */ PackedFeature: () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_38__.PackedFeature),
|
|
45431
|
-
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */
|
|
45432
|
-
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */
|
|
45480
|
+
/* harmony export */ PackedFeatureModelTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PackedFeatureModelTable),
|
|
45481
|
+
/* harmony export */ PackedFeatureTable: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PackedFeatureTable),
|
|
45433
45482
|
/* harmony export */ Paragraph: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
45434
45483
|
/* harmony export */ Placement2d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement2d),
|
|
45435
45484
|
/* harmony export */ Placement3d: () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_55__.Placement3d),
|
|
45436
|
-
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */
|
|
45437
|
-
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */
|
|
45438
|
-
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */
|
|
45439
|
-
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */
|
|
45440
|
-
/* harmony export */ PntsHeader: () => (/* reexport safe */
|
|
45441
|
-
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */
|
|
45442
|
-
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */
|
|
45443
|
-
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */
|
|
45485
|
+
/* harmony export */ PlanProjectionSettings: () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_94__.PlanProjectionSettings),
|
|
45486
|
+
/* harmony export */ PlanarClipMaskMode: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskMode),
|
|
45487
|
+
/* harmony export */ PlanarClipMaskPriority: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskPriority),
|
|
45488
|
+
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__.PlanarClipMaskSettings),
|
|
45489
|
+
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_158__.PntsHeader),
|
|
45490
|
+
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__.PointCloudDisplaySettings),
|
|
45491
|
+
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.PolylineEdgeArgs),
|
|
45492
|
+
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _RenderPolyline__WEBPACK_IMPORTED_MODULE_98__.PolylineTypeFlags),
|
|
45444
45493
|
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.PositionalVectorTransform),
|
|
45445
45494
|
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PrimitiveTypeCode),
|
|
45446
45495
|
/* harmony export */ ProfileOptions: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.ProfileOptions),
|
|
45447
45496
|
/* harmony export */ Projection: () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_56__.Projection),
|
|
45448
45497
|
/* harmony export */ PropertyMetaData: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_33__.PropertyMetaData),
|
|
45449
|
-
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */
|
|
45450
|
-
/* harmony export */ QParams2d: () => (/* reexport safe */
|
|
45451
|
-
/* harmony export */ QParams3d: () => (/* reexport safe */
|
|
45452
|
-
/* harmony export */ QPoint2d: () => (/* reexport safe */
|
|
45453
|
-
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */
|
|
45454
|
-
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */
|
|
45455
|
-
/* harmony export */ QPoint2dList: () => (/* reexport safe */
|
|
45456
|
-
/* harmony export */ QPoint3d: () => (/* reexport safe */
|
|
45457
|
-
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */
|
|
45458
|
-
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */
|
|
45459
|
-
/* harmony export */ QPoint3dList: () => (/* reexport safe */
|
|
45460
|
-
/* harmony export */ Quantization: () => (/* reexport safe */
|
|
45498
|
+
/* harmony export */ PropertyMetaDataMap: () => (/* reexport safe */ _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__.PropertyMetaDataMap),
|
|
45499
|
+
/* harmony export */ QParams2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QParams2d),
|
|
45500
|
+
/* harmony export */ QParams3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QParams3d),
|
|
45501
|
+
/* harmony export */ QPoint2d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2d),
|
|
45502
|
+
/* harmony export */ QPoint2dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dBuffer),
|
|
45503
|
+
/* harmony export */ QPoint2dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dBufferBuilder),
|
|
45504
|
+
/* harmony export */ QPoint2dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint2dList),
|
|
45505
|
+
/* harmony export */ QPoint3d: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3d),
|
|
45506
|
+
/* harmony export */ QPoint3dBuffer: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dBuffer),
|
|
45507
|
+
/* harmony export */ QPoint3dBufferBuilder: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dBufferBuilder),
|
|
45508
|
+
/* harmony export */ QPoint3dList: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.QPoint3dList),
|
|
45509
|
+
/* harmony export */ Quantization: () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_95__.Quantization),
|
|
45461
45510
|
/* harmony export */ QueryBinder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryBinder),
|
|
45462
45511
|
/* harmony export */ QueryOptionsBuilder: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryOptionsBuilder),
|
|
45463
45512
|
/* harmony export */ QueryParamType: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryParamType),
|
|
45464
45513
|
/* harmony export */ QueryRowFormat: () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__.QueryRowFormat),
|
|
45465
|
-
/* harmony export */ REGISTRY: () => (/* reexport safe */
|
|
45514
|
+
/* harmony export */ REGISTRY: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.REGISTRY),
|
|
45466
45515
|
/* harmony export */ Rank: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.Rank),
|
|
45467
45516
|
/* harmony export */ RealityDataFormat: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataFormat),
|
|
45468
45517
|
/* harmony export */ RealityDataProvider: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataProvider),
|
|
45469
45518
|
/* harmony export */ RealityDataSourceKey: () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_24__.RealityDataSourceKey),
|
|
45470
|
-
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */
|
|
45519
|
+
/* harmony export */ RealityModelDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__.RealityModelDisplaySettings),
|
|
45471
45520
|
/* harmony export */ RelatedElement: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.RelatedElement),
|
|
45472
|
-
/* harmony export */ RenderMaterial: () => (/* reexport safe */
|
|
45473
|
-
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */
|
|
45474
|
-
/* harmony export */ RenderMode: () => (/* reexport safe */
|
|
45475
|
-
/* harmony export */ RenderSchedule: () => (/* reexport safe */
|
|
45476
|
-
/* harmony export */ RenderTexture: () => (/* reexport safe */
|
|
45477
|
-
/* harmony export */ RenderTextureParams: () => (/* reexport safe */
|
|
45478
|
-
/* harmony export */ ResponseLike: () => (/* reexport safe */
|
|
45479
|
-
/* harmony export */ RgbColor: () => (/* reexport safe */
|
|
45480
|
-
/* harmony export */ RpcConfiguration: () => (/* reexport safe */
|
|
45481
|
-
/* harmony export */ RpcContentType: () => (/* reexport safe */
|
|
45482
|
-
/* harmony export */ RpcControlChannel: () => (/* reexport safe */
|
|
45483
|
-
/* harmony export */ RpcControlResponse: () => (/* reexport safe */
|
|
45484
|
-
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */
|
|
45485
|
-
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */
|
|
45486
|
-
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */
|
|
45487
|
-
/* harmony export */ RpcEndpoint: () => (/* reexport safe */
|
|
45488
|
-
/* harmony export */ RpcInterface: () => (/* reexport safe */
|
|
45489
|
-
/* harmony export */ RpcInvocation: () => (/* reexport safe */
|
|
45490
|
-
/* harmony export */ RpcManager: () => (/* reexport safe */
|
|
45491
|
-
/* harmony export */ RpcMarshaling: () => (/* reexport safe */
|
|
45492
|
-
/* harmony export */ RpcMultipart: () => (/* reexport safe */
|
|
45493
|
-
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */
|
|
45494
|
-
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */
|
|
45495
|
-
/* harmony export */ RpcOperation: () => (/* reexport safe */
|
|
45496
|
-
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */
|
|
45497
|
-
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */
|
|
45498
|
-
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */
|
|
45499
|
-
/* harmony export */ RpcProtocol: () => (/* reexport safe */
|
|
45500
|
-
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */
|
|
45501
|
-
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */
|
|
45502
|
-
/* harmony export */ RpcPushChannel: () => (/* reexport safe */
|
|
45503
|
-
/* harmony export */ RpcPushConnection: () => (/* reexport safe */
|
|
45504
|
-
/* harmony export */ RpcPushService: () => (/* reexport safe */
|
|
45505
|
-
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */
|
|
45506
|
-
/* harmony export */ RpcPushTransport: () => (/* reexport safe */
|
|
45507
|
-
/* harmony export */ RpcRegistry: () => (/* reexport safe */
|
|
45508
|
-
/* harmony export */ RpcRequest: () => (/* reexport safe */
|
|
45509
|
-
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */
|
|
45510
|
-
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */
|
|
45511
|
-
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */
|
|
45512
|
-
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */
|
|
45513
|
-
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */
|
|
45514
|
-
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */
|
|
45515
|
-
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */
|
|
45516
|
-
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */
|
|
45521
|
+
/* harmony export */ RenderMaterial: () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_99__.RenderMaterial),
|
|
45522
|
+
/* harmony export */ RenderMaterialParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.RenderMaterialParams),
|
|
45523
|
+
/* harmony export */ RenderMode: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_123__.RenderMode),
|
|
45524
|
+
/* harmony export */ RenderSchedule: () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_100__.RenderSchedule),
|
|
45525
|
+
/* harmony export */ RenderTexture: () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_101__.RenderTexture),
|
|
45526
|
+
/* harmony export */ RenderTextureParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.RenderTextureParams),
|
|
45527
|
+
/* harmony export */ ResponseLike: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.ResponseLike),
|
|
45528
|
+
/* harmony export */ RgbColor: () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_102__.RgbColor),
|
|
45529
|
+
/* harmony export */ RpcConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcConfiguration),
|
|
45530
|
+
/* harmony export */ RpcContentType: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcContentType),
|
|
45531
|
+
/* harmony export */ RpcControlChannel: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcControlChannel),
|
|
45532
|
+
/* harmony export */ RpcControlResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcControlResponse),
|
|
45533
|
+
/* harmony export */ RpcDefaultConfiguration: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDefaultConfiguration),
|
|
45534
|
+
/* harmony export */ RpcDirectProtocol: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDirectProtocol),
|
|
45535
|
+
/* harmony export */ RpcDirectRequest: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcDirectRequest),
|
|
45536
|
+
/* harmony export */ RpcEndpoint: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcEndpoint),
|
|
45537
|
+
/* harmony export */ RpcInterface: () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_144__.RpcInterface),
|
|
45538
|
+
/* harmony export */ RpcInvocation: () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcInvocation),
|
|
45539
|
+
/* harmony export */ RpcManager: () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_103__.RpcManager),
|
|
45540
|
+
/* harmony export */ RpcMarshaling: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.RpcMarshaling),
|
|
45541
|
+
/* harmony export */ RpcMultipart: () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_148__.RpcMultipart),
|
|
45542
|
+
/* harmony export */ RpcNotFoundResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcNotFoundResponse),
|
|
45543
|
+
/* harmony export */ RpcOpenAPIDescription: () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_147__.RpcOpenAPIDescription),
|
|
45544
|
+
/* harmony export */ RpcOperation: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__.RpcOperation),
|
|
45545
|
+
/* harmony export */ RpcOperationPolicy: () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__.RpcOperationPolicy),
|
|
45546
|
+
/* harmony export */ RpcPendingQueue: () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_131__.RpcPendingQueue),
|
|
45547
|
+
/* harmony export */ RpcPendingResponse: () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__.RpcPendingResponse),
|
|
45548
|
+
/* harmony export */ RpcProtocol: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcProtocol),
|
|
45549
|
+
/* harmony export */ RpcProtocolEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcProtocolEvent),
|
|
45550
|
+
/* harmony export */ RpcProtocolVersion: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcProtocolVersion),
|
|
45551
|
+
/* harmony export */ RpcPushChannel: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushChannel),
|
|
45552
|
+
/* harmony export */ RpcPushConnection: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushConnection),
|
|
45553
|
+
/* harmony export */ RpcPushService: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushService),
|
|
45554
|
+
/* harmony export */ RpcPushSubscription: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushSubscription),
|
|
45555
|
+
/* harmony export */ RpcPushTransport: () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__.RpcPushTransport),
|
|
45556
|
+
/* harmony export */ RpcRegistry: () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__.RpcRegistry),
|
|
45557
|
+
/* harmony export */ RpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.RpcRequest),
|
|
45558
|
+
/* harmony export */ RpcRequestEvent: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcRequestEvent),
|
|
45559
|
+
/* harmony export */ RpcRequestFulfillment: () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__.RpcRequestFulfillment),
|
|
45560
|
+
/* harmony export */ RpcRequestStatus: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcRequestStatus),
|
|
45561
|
+
/* harmony export */ RpcResponseCacheControl: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.RpcResponseCacheControl),
|
|
45562
|
+
/* harmony export */ RpcRoutingMap: () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__.RpcRoutingMap),
|
|
45563
|
+
/* harmony export */ RpcRoutingToken: () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_136__.RpcRoutingToken),
|
|
45564
|
+
/* harmony export */ RpcSerializedValue: () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__.RpcSerializedValue),
|
|
45565
|
+
/* harmony export */ RpcSessionInvocation: () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_128__.RpcSessionInvocation),
|
|
45517
45566
|
/* harmony export */ Run: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
45518
45567
|
/* harmony export */ SchemaState: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SchemaState),
|
|
45519
45568
|
/* harmony export */ SectionType: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.SectionType),
|
|
45520
45569
|
/* harmony export */ ServerError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerError),
|
|
45521
45570
|
/* harmony export */ ServerTimeoutError: () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_70__.ServerTimeoutError),
|
|
45522
|
-
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */
|
|
45523
|
-
/* harmony export */ SkyBox: () => (/* reexport safe */
|
|
45524
|
-
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */
|
|
45525
|
-
/* harmony export */ SkyCube: () => (/* reexport safe */
|
|
45526
|
-
/* harmony export */ SkyGradient: () => (/* reexport safe */
|
|
45527
|
-
/* harmony export */ SkySphere: () => (/* reexport safe */
|
|
45528
|
-
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */
|
|
45571
|
+
/* harmony export */ SilhouetteEdgeArgs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.SilhouetteEdgeArgs),
|
|
45572
|
+
/* harmony export */ SkyBox: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyBox),
|
|
45573
|
+
/* harmony export */ SkyBoxImageType: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyBoxImageType),
|
|
45574
|
+
/* harmony export */ SkyCube: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyCube),
|
|
45575
|
+
/* harmony export */ SkyGradient: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkyGradient),
|
|
45576
|
+
/* harmony export */ SkySphere: () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_105__.SkySphere),
|
|
45577
|
+
/* harmony export */ SnapshotIModelRpcInterface: () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_142__.SnapshotIModelRpcInterface),
|
|
45529
45578
|
/* harmony export */ SolarLight: () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_78__.SolarLight),
|
|
45530
|
-
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */
|
|
45531
|
-
/* harmony export */ SpatialClassifier: () => (/* reexport safe */
|
|
45532
|
-
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */
|
|
45533
|
-
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */
|
|
45534
|
-
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */
|
|
45535
|
-
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */
|
|
45579
|
+
/* harmony export */ SolarShadowSettings: () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_107__.SolarShadowSettings),
|
|
45580
|
+
/* harmony export */ SpatialClassifier: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifier),
|
|
45581
|
+
/* harmony export */ SpatialClassifierFlags: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierFlags),
|
|
45582
|
+
/* harmony export */ SpatialClassifierInsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierInsideDisplay),
|
|
45583
|
+
/* harmony export */ SpatialClassifierOutsideDisplay: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifierOutsideDisplay),
|
|
45584
|
+
/* harmony export */ SpatialClassifiers: () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__.SpatialClassifiers),
|
|
45536
45585
|
/* harmony export */ SqliteError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.SqliteError),
|
|
45537
|
-
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */
|
|
45538
|
-
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */
|
|
45586
|
+
/* harmony export */ SubCategoryAppearance: () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_109__.SubCategoryAppearance),
|
|
45587
|
+
/* harmony export */ SubCategoryOverride: () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_110__.SubCategoryOverride),
|
|
45539
45588
|
/* harmony export */ SyncMode: () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_13__.SyncMode),
|
|
45540
45589
|
/* harmony export */ TabRun: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TabRun),
|
|
45541
|
-
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */
|
|
45542
|
-
/* harmony export */ TerrainSettings: () => (/* reexport safe */
|
|
45543
|
-
/* harmony export */ TestRpcManager: () => (/* reexport safe */
|
|
45590
|
+
/* harmony export */ TerrainHeightOriginMode: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__.TerrainHeightOriginMode),
|
|
45591
|
+
/* harmony export */ TerrainSettings: () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__.TerrainSettings),
|
|
45592
|
+
/* harmony export */ TestRpcManager: () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_143__.TestRpcManager),
|
|
45544
45593
|
/* harmony export */ TextAnnotation: () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
45545
45594
|
/* harmony export */ TextBlock: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
45546
45595
|
/* harmony export */ TextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
@@ -45548,67 +45597,67 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45548
45597
|
/* harmony export */ TextString: () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_57__.TextString),
|
|
45549
45598
|
/* harmony export */ TextStyleSettings: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.TextStyleSettings),
|
|
45550
45599
|
/* harmony export */ TextureMapUnits: () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_84__.TextureMapUnits),
|
|
45551
|
-
/* harmony export */ TextureMapping: () => (/* reexport safe */
|
|
45552
|
-
/* harmony export */ TextureTransparency: () => (/* reexport safe */
|
|
45553
|
-
/* harmony export */ ThematicDisplay: () => (/* reexport safe */
|
|
45554
|
-
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */
|
|
45555
|
-
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */
|
|
45556
|
-
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */
|
|
45557
|
-
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */
|
|
45558
|
-
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */
|
|
45559
|
-
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */
|
|
45560
|
-
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */
|
|
45561
|
-
/* harmony export */ TileContentSource: () => (/* reexport safe */
|
|
45562
|
-
/* harmony export */ TileFormat: () => (/* reexport safe */
|
|
45563
|
-
/* harmony export */ TileHeader: () => (/* reexport safe */
|
|
45564
|
-
/* harmony export */ TileMetadataReader: () => (/* reexport safe */
|
|
45565
|
-
/* harmony export */ TileOptions: () => (/* reexport safe */
|
|
45566
|
-
/* harmony export */ TileReadError: () => (/* reexport safe */
|
|
45567
|
-
/* harmony export */ TileReadStatus: () => (/* reexport safe */
|
|
45568
|
-
/* harmony export */ TreeFlags: () => (/* reexport safe */
|
|
45569
|
-
/* harmony export */ Tween: () => (/* reexport safe */
|
|
45570
|
-
/* harmony export */ Tweens: () => (/* reexport safe */
|
|
45571
|
-
/* harmony export */ TxnAction: () => (/* reexport safe */
|
|
45600
|
+
/* harmony export */ TextureMapping: () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_113__.TextureMapping),
|
|
45601
|
+
/* harmony export */ TextureTransparency: () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_114__.TextureTransparency),
|
|
45602
|
+
/* harmony export */ ThematicDisplay: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
45603
|
+
/* harmony export */ ThematicDisplayMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
45604
|
+
/* harmony export */ ThematicDisplaySensor: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
45605
|
+
/* harmony export */ ThematicDisplaySensorSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
45606
|
+
/* harmony export */ ThematicGradientColorScheme: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
45607
|
+
/* harmony export */ ThematicGradientMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
45608
|
+
/* harmony export */ ThematicGradientSettings: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
45609
|
+
/* harmony export */ ThematicGradientTransparencyMode: () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientTransparencyMode),
|
|
45610
|
+
/* harmony export */ TileContentSource: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_119__.TileContentSource),
|
|
45611
|
+
/* harmony export */ TileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileFormat),
|
|
45612
|
+
/* harmony export */ TileHeader: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileHeader),
|
|
45613
|
+
/* harmony export */ TileMetadataReader: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TileMetadataReader),
|
|
45614
|
+
/* harmony export */ TileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TileOptions),
|
|
45615
|
+
/* harmony export */ TileReadError: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileReadError),
|
|
45616
|
+
/* harmony export */ TileReadStatus: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.TileReadStatus),
|
|
45617
|
+
/* harmony export */ TreeFlags: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.TreeFlags),
|
|
45618
|
+
/* harmony export */ Tween: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Tween),
|
|
45619
|
+
/* harmony export */ Tweens: () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_120__.Tweens),
|
|
45620
|
+
/* harmony export */ TxnAction: () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_121__.TxnAction),
|
|
45572
45621
|
/* harmony export */ TypeDefinition: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.TypeDefinition),
|
|
45573
45622
|
/* harmony export */ TypeOfChange: () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_16__.TypeOfChange),
|
|
45574
45623
|
/* harmony export */ VerticalCRS: () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_47__.VerticalCRS),
|
|
45575
|
-
/* harmony export */ ViewDetails: () => (/* reexport safe */
|
|
45576
|
-
/* harmony export */ ViewDetails3d: () => (/* reexport safe */
|
|
45577
|
-
/* harmony export */ ViewFlags: () => (/* reexport safe */
|
|
45624
|
+
/* harmony export */ ViewDetails: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.ViewDetails),
|
|
45625
|
+
/* harmony export */ ViewDetails3d: () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_122__.ViewDetails3d),
|
|
45626
|
+
/* harmony export */ ViewFlags: () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_123__.ViewFlags),
|
|
45578
45627
|
/* harmony export */ ViewStoreError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.ViewStoreError),
|
|
45579
|
-
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */
|
|
45580
|
-
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */
|
|
45581
|
-
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */
|
|
45582
|
-
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */
|
|
45583
|
-
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */
|
|
45584
|
-
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */
|
|
45628
|
+
/* harmony export */ ViewStoreRpc: () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_124__.ViewStoreRpc),
|
|
45629
|
+
/* harmony export */ WEB_RPC_CONSTANTS: () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__.WEB_RPC_CONSTANTS),
|
|
45630
|
+
/* harmony export */ WebAppRpcLogging: () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_151__.WebAppRpcLogging),
|
|
45631
|
+
/* harmony export */ WebAppRpcProtocol: () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_149__.WebAppRpcProtocol),
|
|
45632
|
+
/* harmony export */ WebAppRpcRequest: () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_150__.WebAppRpcRequest),
|
|
45633
|
+
/* harmony export */ WhiteOnWhiteReversalSettings: () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_162__.WhiteOnWhiteReversalSettings),
|
|
45585
45634
|
/* harmony export */ WorkspaceError: () => (/* reexport safe */ _ITwinCoreErrors__WEBPACK_IMPORTED_MODULE_72__.WorkspaceError),
|
|
45586
45635
|
/* harmony export */ XyzRotation: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_50__.XyzRotation),
|
|
45587
|
-
/* harmony export */ aggregateLoad: () => (/* reexport safe */
|
|
45588
|
-
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */
|
|
45589
|
-
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */
|
|
45590
|
-
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */
|
|
45591
|
-
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */
|
|
45592
|
-
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */
|
|
45593
|
-
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */
|
|
45594
|
-
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */
|
|
45595
|
-
/* harmony export */ computeChildTileProps: () => (/* reexport safe */
|
|
45596
|
-
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */
|
|
45597
|
-
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */
|
|
45598
|
-
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */
|
|
45599
|
-
/* harmony export */ defaultTileOptions: () => (/* reexport safe */
|
|
45600
|
-
/* harmony export */ formatFieldValue: () => (/* reexport safe */
|
|
45636
|
+
/* harmony export */ aggregateLoad: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.aggregateLoad),
|
|
45637
|
+
/* harmony export */ bisectTileRange2d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.bisectTileRange2d),
|
|
45638
|
+
/* harmony export */ bisectTileRange3d: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.bisectTileRange3d),
|
|
45639
|
+
/* harmony export */ calculateSolarAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarAngles),
|
|
45640
|
+
/* harmony export */ calculateSolarDirection: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarDirection),
|
|
45641
|
+
/* harmony export */ calculateSolarDirectionFromAngles: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSolarDirectionFromAngles),
|
|
45642
|
+
/* harmony export */ calculateSunriseOrSunset: () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__.calculateSunriseOrSunset),
|
|
45643
|
+
/* harmony export */ compareIModelTileTreeIds: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.compareIModelTileTreeIds),
|
|
45644
|
+
/* harmony export */ computeChildTileProps: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeChildTileProps),
|
|
45645
|
+
/* harmony export */ computeChildTileRanges: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeChildTileRanges),
|
|
45646
|
+
/* harmony export */ computeTileChordTolerance: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.computeTileChordTolerance),
|
|
45647
|
+
/* harmony export */ decodeTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.decodeTileContentDescription),
|
|
45648
|
+
/* harmony export */ defaultTileOptions: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.defaultTileOptions),
|
|
45649
|
+
/* harmony export */ formatFieldValue: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.formatFieldValue),
|
|
45601
45650
|
/* harmony export */ getMarkerText: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.getMarkerText),
|
|
45602
|
-
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */
|
|
45651
|
+
/* harmony export */ getMaximumMajorTileFormatVersion: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.getMaximumMajorTileFormatVersion),
|
|
45603
45652
|
/* harmony export */ getPullChangesIpcChannel: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.getPullChangesIpcChannel),
|
|
45604
|
-
/* harmony export */ getTileObjectReference: () => (/* reexport safe */
|
|
45605
|
-
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */
|
|
45653
|
+
/* harmony export */ getTileObjectReference: () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_119__.getTileObjectReference),
|
|
45654
|
+
/* harmony export */ iModelTileTreeIdToString: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.iModelTileTreeIdToString),
|
|
45606
45655
|
/* harmony export */ iTwinChannel: () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_73__.iTwinChannel),
|
|
45607
|
-
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */
|
|
45656
|
+
/* harmony export */ initializeRpcRequest: () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__.initializeRpcRequest),
|
|
45608
45657
|
/* harmony export */ ipcAppChannels: () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_77__.ipcAppChannels),
|
|
45609
45658
|
/* harmony export */ isBinaryImageSource: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isBinaryImageSource),
|
|
45610
|
-
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */
|
|
45611
|
-
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */
|
|
45659
|
+
/* harmony export */ isKnownFieldPropertyType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__.isKnownFieldPropertyType),
|
|
45660
|
+
/* harmony export */ isKnownTileFormat: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.isKnownTileFormat),
|
|
45612
45661
|
/* harmony export */ isPlacement2dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement2dProps),
|
|
45613
45662
|
/* harmony export */ isPlacement3dProps: () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_31__.isPlacement3dProps),
|
|
45614
45663
|
/* harmony export */ isPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.isPowerOfTwo),
|
|
@@ -45616,14 +45665,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45616
45665
|
/* harmony export */ mapToGeoServiceStatus: () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_42__.mapToGeoServiceStatus),
|
|
45617
45666
|
/* harmony export */ nativeAppIpcStrings: () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__.nativeAppIpcStrings),
|
|
45618
45667
|
/* harmony export */ nextHighestPowerOfTwo: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_68__.nextHighestPowerOfTwo),
|
|
45619
|
-
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */
|
|
45620
|
-
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */
|
|
45668
|
+
/* harmony export */ nextPoint3d64FromByteStream: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.nextPoint3d64FromByteStream),
|
|
45669
|
+
/* harmony export */ parseTileTreeIdAndContentId: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.parseTileTreeIdAndContentId),
|
|
45621
45670
|
/* harmony export */ readElementMeshes: () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_30__.readElementMeshes),
|
|
45622
|
-
/* harmony export */ readTileContentDescription: () => (/* reexport safe */
|
|
45671
|
+
/* harmony export */ readTileContentDescription: () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__.readTileContentDescription),
|
|
45623
45672
|
/* harmony export */ rpcOverIpcStrings: () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_76__.rpcOverIpcStrings),
|
|
45624
45673
|
/* harmony export */ terminatorShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.terminatorShapes),
|
|
45625
45674
|
/* harmony export */ textAnnotationFrameShapes: () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_7__.textAnnotationFrameShapes),
|
|
45626
|
-
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */
|
|
45675
|
+
/* harmony export */ tileFormatFromNumber: () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__.tileFormatFromNumber),
|
|
45627
45676
|
/* harmony export */ traverseTextBlockComponent: () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.traverseTextBlockComponent)
|
|
45628
45677
|
/* harmony export */ });
|
|
45629
45678
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
@@ -45716,79 +45765,80 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45716
45765
|
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
45717
45766
|
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
45718
45767
|
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
45719
|
-
/* harmony import */ var
|
|
45720
|
-
/* harmony import */ var
|
|
45721
|
-
/* harmony import */ var
|
|
45722
|
-
/* harmony import */ var
|
|
45723
|
-
/* harmony import */ var
|
|
45724
|
-
/* harmony import */ var
|
|
45725
|
-
/* harmony import */ var
|
|
45726
|
-
/* harmony import */ var
|
|
45727
|
-
/* harmony import */ var
|
|
45728
|
-
/* harmony import */ var
|
|
45729
|
-
/* harmony import */ var
|
|
45730
|
-
/* harmony import */ var
|
|
45731
|
-
/* harmony import */ var
|
|
45732
|
-
/* harmony import */ var
|
|
45733
|
-
/* harmony import */ var
|
|
45734
|
-
/* harmony import */ var
|
|
45735
|
-
/* harmony import */ var
|
|
45736
|
-
/* harmony import */ var
|
|
45737
|
-
/* harmony import */ var
|
|
45738
|
-
/* harmony import */ var
|
|
45739
|
-
/* harmony import */ var
|
|
45740
|
-
/* harmony import */ var
|
|
45741
|
-
/* harmony import */ var
|
|
45742
|
-
/* harmony import */ var
|
|
45743
|
-
/* harmony import */ var
|
|
45744
|
-
/* harmony import */ var
|
|
45745
|
-
/* harmony import */ var
|
|
45746
|
-
/* harmony import */ var
|
|
45747
|
-
/* harmony import */ var
|
|
45748
|
-
/* harmony import */ var
|
|
45749
|
-
/* harmony import */ var
|
|
45750
|
-
/* harmony import */ var
|
|
45751
|
-
/* harmony import */ var
|
|
45752
|
-
/* harmony import */ var
|
|
45753
|
-
/* harmony import */ var
|
|
45754
|
-
/* harmony import */ var
|
|
45755
|
-
/* harmony import */ var
|
|
45756
|
-
/* harmony import */ var
|
|
45757
|
-
/* harmony import */ var
|
|
45758
|
-
/* harmony import */ var
|
|
45759
|
-
/* harmony import */ var
|
|
45760
|
-
/* harmony import */ var
|
|
45761
|
-
/* harmony import */ var
|
|
45762
|
-
/* harmony import */ var
|
|
45763
|
-
/* harmony import */ var
|
|
45764
|
-
/* harmony import */ var
|
|
45765
|
-
/* harmony import */ var
|
|
45766
|
-
/* harmony import */ var
|
|
45767
|
-
/* harmony import */ var
|
|
45768
|
-
/* harmony import */ var
|
|
45769
|
-
/* harmony import */ var
|
|
45770
|
-
/* harmony import */ var
|
|
45771
|
-
/* harmony import */ var
|
|
45772
|
-
/* harmony import */ var
|
|
45773
|
-
/* harmony import */ var
|
|
45774
|
-
/* harmony import */ var
|
|
45775
|
-
/* harmony import */ var
|
|
45776
|
-
/* harmony import */ var
|
|
45777
|
-
/* harmony import */ var
|
|
45778
|
-
/* harmony import */ var
|
|
45779
|
-
/* harmony import */ var
|
|
45780
|
-
/* harmony import */ var
|
|
45781
|
-
/* harmony import */ var
|
|
45782
|
-
/* harmony import */ var
|
|
45783
|
-
/* harmony import */ var
|
|
45784
|
-
/* harmony import */ var
|
|
45785
|
-
/* harmony import */ var
|
|
45786
|
-
/* harmony import */ var
|
|
45787
|
-
/* harmony import */ var
|
|
45788
|
-
/* harmony import */ var
|
|
45789
|
-
/* harmony import */ var
|
|
45790
|
-
/* harmony import */ var
|
|
45791
|
-
/* harmony import */ var
|
|
45768
|
+
/* harmony import */ var _ECSqlReaderBase__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ECSqlReaderBase */ "../../core/common/lib/esm/ECSqlReaderBase.js");
|
|
45769
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
45770
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
45771
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
45772
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
45773
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
45774
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
45775
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
45776
|
+
/* harmony import */ var _RenderPolyline__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderPolyline */ "../../core/common/lib/esm/RenderPolyline.js");
|
|
45777
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
45778
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
45779
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
45780
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
45781
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
45782
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
45783
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
45784
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
45785
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
45786
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
45787
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
45788
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
45789
|
+
/* harmony import */ var _CesiumIonAssets__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./CesiumIonAssets */ "../../core/common/lib/esm/CesiumIonAssets.js");
|
|
45790
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
45791
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
45792
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
45793
|
+
/* harmony import */ var _TxnProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TxnProps */ "../../core/common/lib/esm/TxnProps.js");
|
|
45794
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
45795
|
+
/* harmony import */ var _ContourDisplay__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ContourDisplay */ "../../core/common/lib/esm/ContourDisplay.js");
|
|
45796
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
45797
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
45798
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
45799
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
45800
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
45801
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
45802
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
45803
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
45804
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
45805
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
45806
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
45807
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
45808
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
45809
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
45810
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
45811
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
45812
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
45813
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
45814
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
45815
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
45816
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
45817
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
45818
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
45819
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
45820
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
45821
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
45822
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
45823
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
45824
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
45825
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
45826
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
45827
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
45828
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
45829
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
45830
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
45831
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
45832
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
45833
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
45834
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
45835
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
45836
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
45837
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
45838
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
45839
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
45840
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
45841
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/common/lib/esm/internal/cross-package.js");
|
|
45792
45842
|
/*---------------------------------------------------------------------------------------------
|
|
45793
45843
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
45794
45844
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -45954,6 +46004,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45954
46004
|
|
|
45955
46005
|
|
|
45956
46006
|
|
|
46007
|
+
|
|
45957
46008
|
|
|
45958
46009
|
|
|
45959
46010
|
/** @docs-package-description
|
|
@@ -321891,7 +321942,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
321891
321942
|
/***/ ((module) => {
|
|
321892
321943
|
|
|
321893
321944
|
"use strict";
|
|
321894
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.8.0-dev.
|
|
321945
|
+
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"}}');
|
|
321895
321946
|
|
|
321896
321947
|
/***/ })
|
|
321897
321948
|
|