@itwin/rpcinterface-full-stack-tests 5.7.0-dev.5 → 5.7.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.
@@ -194287,7 +194287,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194287
194287
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]meter2" },
194288
194288
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]m-sta2" },
194289
194289
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]meter4" },
194290
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]meter4" },
194290
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]millimeter3" },
194291
194291
  ],
194292
194292
  },
194293
194293
  {
@@ -194301,7 +194301,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194301
194301
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
194302
194302
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
194303
194303
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4-labeled" },
194304
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
194304
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
194305
194305
  ],
194306
194306
  },
194307
194307
  {
@@ -194315,7 +194315,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194315
194315
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
194316
194316
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
194317
194317
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
194318
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
194318
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
194319
194319
  ],
194320
194320
  },
194321
194321
  {
@@ -194329,7 +194329,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194329
194329
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]f-survey-2" },
194330
194330
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-survey-sta2" },
194331
194331
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
194332
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-4" },
194332
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-2" },
194333
194333
  ],
194334
194334
  },
194335
194335
  ];
@@ -194349,6 +194349,20 @@ const DEFAULT_FORMATPROPS = [
194349
194349
  type: "Decimal",
194350
194350
  },
194351
194351
  },
194352
+ {
194353
+ key: "[units:length]millimeter3",
194354
+ description: "millimeters (labeled) 3 decimal places",
194355
+ format: {
194356
+ composite: {
194357
+ includeZero: true,
194358
+ spacer: "",
194359
+ units: [{ label: "mm", name: "Units.MM" }],
194360
+ },
194361
+ formatTraits: ["keepSingleZero", "showUnitLabel"],
194362
+ precision: 3,
194363
+ type: "Decimal",
194364
+ },
194365
+ },
194352
194366
  {
194353
194367
  key: "[units:length]meter2",
194354
194368
  description: "meters (labeled) 2 decimal places",
@@ -341126,12 +341140,12 @@ class BaseFormat {
341126
341140
  loadFormatProperties(formatProps) {
341127
341141
  this._type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(formatProps.type, this.name);
341128
341142
  if (formatProps.precision !== undefined) {
341129
- if (!Number.isInteger(formatProps.precision)) // mut be an integer
341143
+ if (!Number.isInteger(formatProps.precision))
341130
341144
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'precision' attribute. It should be an integer.`);
341131
341145
  this._precision = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parsePrecision)(formatProps.precision, this._type, this.name);
341132
341146
  }
341133
341147
  if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Scientific) {
341134
- if (undefined === formatProps.scientificType) // if format type is scientific and scientific type is undefined, throw
341148
+ if (undefined === formatProps.scientificType)
341135
341149
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Scientific' type therefore the attribute 'scientificType' is required.`);
341136
341150
  this._scientificType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseScientificType)(formatProps.scientificType, this.name);
341137
341151
  }
@@ -341139,7 +341153,7 @@ class BaseFormat {
341139
341153
  if (undefined === formatProps.ratioType)
341140
341154
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Ratio' type therefore the attribute 'ratioType' is required.`);
341141
341155
  this._ratioType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseRatioType)(formatProps.ratioType, this.name);
341142
- if (undefined !== formatProps.ratioSeparator) {
341156
+ if (undefined !== formatProps.ratioSeparator) { // optional; default is 0.0
341143
341157
  if (typeof (formatProps.ratioSeparator) !== "string")
341144
341158
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'ratioSeparator' attribute. It should be of type 'string'.`);
341145
341159
  if (formatProps.ratioSeparator.length !== 1)
@@ -341156,25 +341170,24 @@ class BaseFormat {
341156
341170
  this._ratioFormatType = _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.RatioFormatType.Decimal; // Apply default
341157
341171
  }
341158
341172
  }
341159
- if (undefined !== formatProps.roundFactor) { // optional; default is 0.0
341173
+ if (undefined !== formatProps.roundFactor) {
341160
341174
  if (typeof (formatProps.roundFactor) !== "number")
341161
341175
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'roundFactor' attribute. It should be of type 'number'.`);
341162
341176
  if (formatProps.roundFactor !== this.roundFactor) // if roundFactor isn't default value of 0.0, reassign roundFactor variable
341163
341177
  this._roundFactor = formatProps.roundFactor;
341164
341178
  }
341165
- if (undefined !== formatProps.minWidth) { // optional
341166
- if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0) // must be a positive int
341179
+ if (undefined !== formatProps.minWidth) {
341180
+ if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0)
341167
341181
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'minWidth' attribute. It should be a positive integer.`);
341168
341182
  this._minWidth = formatProps.minWidth;
341169
341183
  }
341170
341184
  if (_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Station === this.type) {
341171
341185
  if (undefined === formatProps.stationOffsetSize)
341172
341186
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Station' type therefore the attribute 'stationOffsetSize' is required.`);
341173
- if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0) // must be a positive int > 0
341187
+ if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0)
341174
341188
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationOffsetSize' attribute. It should be a positive integer.`);
341175
341189
  this._stationOffsetSize = formatProps.stationOffsetSize;
341176
341190
  if (undefined !== formatProps.stationBaseFactor) {
341177
- // optional - must be a positive integer
341178
341191
  if (!Number.isInteger(formatProps.stationBaseFactor) || formatProps.stationBaseFactor <= 0)
341179
341192
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationBaseFactor' attribute. It should be a positive integer.`);
341180
341193
  this._stationBaseFactor = formatProps.stationBaseFactor;
@@ -341183,19 +341196,19 @@ class BaseFormat {
341183
341196
  if (undefined !== formatProps.showSignOption) { // optional; default is "onlyNegative"
341184
341197
  this._showSignOption = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseShowSignOption)(formatProps.showSignOption, this.name);
341185
341198
  }
341186
- if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) { // FormatTraits is optional
341187
- if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string") // must be either an array of strings or a string
341199
+ if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) {
341200
+ if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string")
341188
341201
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'formatTraits' attribute. It should be of type 'string' or 'string[]'.`);
341189
- this.parseFormatTraits(formatProps.formatTraits); // check that all of the options for formatTraits are valid. If now, throw
341202
+ this.parseFormatTraits(formatProps.formatTraits);
341190
341203
  }
341191
- if (undefined !== formatProps.decimalSeparator) { // optional
341192
- if (typeof (formatProps.decimalSeparator) !== "string") // not a string or not a one character string
341204
+ if (undefined !== formatProps.decimalSeparator) {
341205
+ if (typeof (formatProps.decimalSeparator) !== "string")
341193
341206
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be of type 'string'.`);
341194
341207
  if (formatProps.decimalSeparator.length > 1)
341195
341208
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be an empty or one character string.`);
341196
341209
  this._decimalSeparator = formatProps.decimalSeparator;
341197
341210
  }
341198
- if (undefined !== formatProps.thousandSeparator) { // optional
341211
+ if (undefined !== formatProps.thousandSeparator) {
341199
341212
  if (typeof (formatProps.thousandSeparator) !== "string")
341200
341213
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'thousandSeparator' attribute. It should be of type 'string'.`);
341201
341214
  if (formatProps.thousandSeparator.length > 1)
@@ -341221,7 +341234,7 @@ class BaseFormat {
341221
341234
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthBase' attribute. It should be of type 'number'.`);
341222
341235
  this._azimuthBase = formatProps.azimuthBase;
341223
341236
  }
341224
- if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false
341237
+ if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false, azimuth values are clockwise from base
341225
341238
  if (typeof (formatProps.azimuthCounterClockwise) !== "boolean")
341226
341239
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthCounterClockwise' attribute. It should be of type 'boolean'.`);
341227
341240
  this._azimuthCounterClockwise = formatProps.azimuthCounterClockwise;
@@ -341322,25 +341335,25 @@ class Format extends BaseFormat {
341322
341335
  fromFullyResolvedJSON(jsonObj) {
341323
341336
  this.loadFormatProperties(jsonObj);
341324
341337
  this._customProps = jsonObj.custom;
341325
- if (undefined !== jsonObj.composite) { // optional
341338
+ if (undefined !== jsonObj.composite) {
341326
341339
  this._units = new Array();
341327
341340
  if (jsonObj.composite.includeZero !== undefined) {
341328
- if (typeof (jsonObj.composite.includeZero) !== "boolean") // includeZero must be a boolean IF it is defined
341341
+ if (typeof (jsonObj.composite.includeZero) !== "boolean")
341329
341342
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'includeZero' attribute. It should be of type 'boolean'.`);
341330
341343
  this._includeZero = jsonObj.composite.includeZero;
341331
341344
  }
341332
- if (jsonObj.composite.spacer !== undefined) { // spacer must be a string IF it is defined
341345
+ if (jsonObj.composite.spacer !== undefined) {
341333
341346
  if (typeof (jsonObj.composite.spacer) !== "string")
341334
341347
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It must be of type 'string'.`);
341335
341348
  if (jsonObj.composite.spacer.length > 1)
341336
341349
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It should be an empty or one character string.`);
341337
341350
  this._spacer = jsonObj.composite.spacer;
341338
341351
  }
341339
- if (jsonObj.composite.units !== undefined) { // if composite is defined, it must be an array with 1-4 units
341340
- if (!Array.isArray(jsonObj.composite.units)) { // must be an array
341352
+ if (jsonObj.composite.units !== undefined) { // If composite is defined, it must be an array with 1-4 units
341353
+ if (!Array.isArray(jsonObj.composite.units)) {
341341
341354
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'units' attribute. It must be of type 'array'`);
341342
341355
  }
341343
- if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
341356
+ if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) {
341344
341357
  const isDuplicateAllowed = this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Ratio;
341345
341358
  const seenUnits = new Set();
341346
341359
  this._units = [];
@@ -341610,7 +341623,7 @@ var FormatTraits;
341610
341623
  /** Indicates that if an exponent value is positive to not include a `+`. By default a sign, `+` or `-`, is always shown. Not yet supported */
341611
341624
  FormatTraits[FormatTraits["ExponentOnlyNegative"] = 512] = "ExponentOnlyNegative";
341612
341625
  })(FormatTraits || (FormatTraits = {}));
341613
- /** Precision for Fractional formatted value types. Range from Whole (1/1) through 1/256.
341626
+ /** Precision for Fractional formatted value types. Values must be powers of 2, ranging from Whole (1/1) through 1/256.
341614
341627
  * @beta */
341615
341628
  var FractionalPrecision;
341616
341629
  (function (FractionalPrecision) {
@@ -345152,7 +345165,7 @@ class TestContext {
345152
345165
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
345153
345166
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
345154
345167
  await core_frontend_1.NoRenderApp.startup({
345155
- applicationVersion: "5.7.0-dev.5",
345168
+ applicationVersion: "5.7.0-dev.6",
345156
345169
  applicationId: this.settings.gprid,
345157
345170
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
345158
345171
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -348960,9 +348973,9 @@ Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable
348960
348973
 
348961
348974
  /***/ }),
348962
348975
 
348963
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
348976
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
348964
348977
  /*!****************************************************************************************************************************************************!*\
348965
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
348978
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
348966
348979
  \****************************************************************************************************************************************************/
348967
348980
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
348968
348981
 
@@ -349007,32 +349020,32 @@ var __importStar = (this && this.__importStar) || (function () {
349007
349020
  })();
349008
349021
  Object.defineProperty(exports, "__esModule", ({ value: true }));
349009
349022
  exports.TypedPrimitiveValue = exports.PrimitiveValue = exports.InstanceKey = exports.trimWhitespace = exports.releaseMainThread = exports.parseFullClassName = exports.normalizeFullClassName = exports.julianToDateTime = exports.createMainThreadReleaseOnTimePassedHandler = exports.getClass = exports.createCachingECClassHierarchyInspector = exports.NOOP_LOGGER = exports.parseInstanceLabel = exports.createBisInstanceLabelSelectClauseFactory = exports.createClassBasedInstanceLabelSelectClauseFactory = exports.createDefaultInstanceLabelSelectClauseFactory = exports.formatConcatenatedValue = exports.createDefaultValueFormatter = exports.ConcatenatedValuePart = exports.ConcatenatedValue = exports.ECSql = void 0;
349010
- const ECSql = __importStar(__webpack_require__(/*! ./shared/ecsql-snippets/index.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js"));
349023
+ const ECSql = __importStar(__webpack_require__(/*! ./shared/ecsql-snippets/index.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js"));
349011
349024
  exports.ECSql = ECSql;
349012
- var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349025
+ var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349013
349026
  Object.defineProperty(exports, "ConcatenatedValue", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValue; } }));
349014
349027
  Object.defineProperty(exports, "ConcatenatedValuePart", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValuePart; } }));
349015
- var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js");
349028
+ var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js");
349016
349029
  Object.defineProperty(exports, "createDefaultValueFormatter", ({ enumerable: true, get: function () { return Formatting_js_1.createDefaultValueFormatter; } }));
349017
349030
  Object.defineProperty(exports, "formatConcatenatedValue", ({ enumerable: true, get: function () { return Formatting_js_1.formatConcatenatedValue; } }));
349018
- var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js");
349031
+ var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js");
349019
349032
  Object.defineProperty(exports, "createDefaultInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createDefaultInstanceLabelSelectClauseFactory; } }));
349020
349033
  Object.defineProperty(exports, "createClassBasedInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createClassBasedInstanceLabelSelectClauseFactory; } }));
349021
349034
  Object.defineProperty(exports, "createBisInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createBisInstanceLabelSelectClauseFactory; } }));
349022
349035
  Object.defineProperty(exports, "parseInstanceLabel", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.parseInstanceLabel; } }));
349023
- var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js");
349036
+ var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js");
349024
349037
  Object.defineProperty(exports, "NOOP_LOGGER", ({ enumerable: true, get: function () { return Logging_js_1.NOOP_LOGGER; } }));
349025
- var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349038
+ var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349026
349039
  Object.defineProperty(exports, "createCachingECClassHierarchyInspector", ({ enumerable: true, get: function () { return Metadata_js_1.createCachingECClassHierarchyInspector; } }));
349027
349040
  Object.defineProperty(exports, "getClass", ({ enumerable: true, get: function () { return Metadata_js_1.getClass; } }));
349028
- var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349041
+ var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349029
349042
  Object.defineProperty(exports, "createMainThreadReleaseOnTimePassedHandler", ({ enumerable: true, get: function () { return Utils_js_1.createMainThreadReleaseOnTimePassedHandler; } }));
349030
349043
  Object.defineProperty(exports, "julianToDateTime", ({ enumerable: true, get: function () { return Utils_js_1.julianToDateTime; } }));
349031
349044
  Object.defineProperty(exports, "normalizeFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.normalizeFullClassName; } }));
349032
349045
  Object.defineProperty(exports, "parseFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.parseFullClassName; } }));
349033
349046
  Object.defineProperty(exports, "releaseMainThread", ({ enumerable: true, get: function () { return Utils_js_1.releaseMainThread; } }));
349034
349047
  Object.defineProperty(exports, "trimWhitespace", ({ enumerable: true, get: function () { return Utils_js_1.trimWhitespace; } }));
349035
- var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349048
+ var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349036
349049
  Object.defineProperty(exports, "InstanceKey", ({ enumerable: true, get: function () { return Values_js_1.InstanceKey; } }));
349037
349050
  Object.defineProperty(exports, "PrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.PrimitiveValue; } }));
349038
349051
  Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.TypedPrimitiveValue; } }));
@@ -349040,9 +349053,9 @@ Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get:
349040
349053
 
349041
349054
  /***/ }),
349042
349055
 
349043
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
349056
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
349044
349057
  /*!*********************************************************************************************************************************************************!*\
349045
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
349058
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
349046
349059
  \*********************************************************************************************************************************************************/
349047
349060
  /***/ ((__unused_webpack_module, exports) => {
349048
349061
 
@@ -349099,9 +349112,9 @@ var ConcatenatedValue;
349099
349112
 
349100
349113
  /***/ }),
349101
349114
 
349102
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
349115
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
349103
349116
  /*!**************************************************************************************************************************************************!*\
349104
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
349117
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
349105
349118
  \**************************************************************************************************************************************************/
349106
349119
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349107
349120
 
@@ -349115,8 +349128,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
349115
349128
  exports.formatConcatenatedValue = formatConcatenatedValue;
349116
349129
  exports.createDefaultValueFormatter = createDefaultValueFormatter;
349117
349130
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349118
- const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349119
- const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349131
+ const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349132
+ const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349120
349133
  /**
349121
349134
  * Formats a concatenated value into a string, taking into account different types of `ConcatenatedValuePart` that
349122
349135
  * the value consists of.
@@ -349223,9 +349236,9 @@ function applyPointsFormatting(value) {
349223
349236
 
349224
349237
  /***/ }),
349225
349238
 
349226
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
349239
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
349227
349240
  /*!************************************************************************************************************************************************************************!*\
349228
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
349241
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
349229
349242
  \************************************************************************************************************************************************************************/
349230
349243
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349231
349244
 
@@ -349240,7 +349253,7 @@ exports.parseInstanceLabel = parseInstanceLabel;
349240
349253
  exports.createDefaultInstanceLabelSelectClauseFactory = createDefaultInstanceLabelSelectClauseFactory;
349241
349254
  exports.createClassBasedInstanceLabelSelectClauseFactory = createClassBasedInstanceLabelSelectClauseFactory;
349242
349255
  exports.createBisInstanceLabelSelectClauseFactory = createBisInstanceLabelSelectClauseFactory;
349243
- const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349256
+ const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349244
349257
  /**
349245
349258
  * Parses an instance label from query result into a string or a `ConcatenatedValue`. The latter type of result
349246
349259
  * is expected when label selector is created using `IInstanceLabelSelectClauseFactory.createSelectClause` with
@@ -349399,9 +349412,9 @@ function concatenate(props, selectors, checkSelector) {
349399
349412
 
349400
349413
  /***/ }),
349401
349414
 
349402
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
349415
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
349403
349416
  /*!***********************************************************************************************************************************************!*\
349404
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
349417
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
349405
349418
  \***********************************************************************************************************************************************/
349406
349419
  /***/ ((__unused_webpack_module, exports) => {
349407
349420
 
@@ -349429,9 +349442,9 @@ exports.NOOP_LOGGER = {
349429
349442
 
349430
349443
  /***/ }),
349431
349444
 
349432
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
349445
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
349433
349446
  /*!************************************************************************************************************************************************!*\
349434
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
349447
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
349435
349448
  \************************************************************************************************************************************************/
349436
349449
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349437
349450
 
@@ -349445,7 +349458,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
349445
349458
  exports.createCachingECClassHierarchyInspector = createCachingECClassHierarchyInspector;
349446
349459
  exports.getClass = getClass;
349447
349460
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349448
- const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349461
+ const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349449
349462
  /**
349450
349463
  * Creates a new `ECClassHierarchyInspector` that caches results of `derivesFrom` calls.
349451
349464
  * @public
@@ -349492,9 +349505,9 @@ async function getClass(schemaProvider, fullClassName) {
349492
349505
 
349493
349506
  /***/ }),
349494
349507
 
349495
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
349508
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
349496
349509
  /*!*********************************************************************************************************************************************!*\
349497
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
349510
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
349498
349511
  \*********************************************************************************************************************************************/
349499
349512
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349500
349513
 
@@ -349599,9 +349612,9 @@ function julianToDateTime(julianDate) {
349599
349612
 
349600
349613
  /***/ }),
349601
349614
 
349602
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
349615
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
349603
349616
  /*!**********************************************************************************************************************************************!*\
349604
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
349617
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
349605
349618
  \**********************************************************************************************************************************************/
349606
349619
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349607
349620
 
@@ -349765,9 +349778,9 @@ var TypedPrimitiveValue;
349765
349778
 
349766
349779
  /***/ }),
349767
349780
 
349768
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
349781
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
349769
349782
  /*!************************************************************************************************************************************************************************!*\
349770
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
349783
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
349771
349784
  \************************************************************************************************************************************************************************/
349772
349785
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349773
349786
 
@@ -349779,8 +349792,8 @@ var TypedPrimitiveValue;
349779
349792
  *--------------------------------------------------------------------------------------------*/
349780
349793
  Object.defineProperty(exports, "__esModule", ({ value: true }));
349781
349794
  exports.createRelationshipPathJoinClause = createRelationshipPathJoinClause;
349782
- const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349783
- const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349795
+ const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349796
+ const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349784
349797
  /**
349785
349798
  * Creates an ECSQL JOIN snippet for given relationships' path.
349786
349799
  *
@@ -349915,9 +349928,9 @@ function getClassSelectClause(ecClass, alias) {
349915
349928
 
349916
349929
  /***/ }),
349917
349930
 
349918
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
349931
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
349919
349932
  /*!*********************************************************************************************************************************************************************************!*\
349920
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
349933
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
349921
349934
  \*********************************************************************************************************************************************************************************/
349922
349935
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349923
349936
 
@@ -349937,8 +349950,8 @@ exports.createNullableSelector = createNullableSelector;
349937
349950
  exports.createConcatenatedValueJsonSelector = createConcatenatedValueJsonSelector;
349938
349951
  exports.createConcatenatedValueStringSelector = createConcatenatedValueStringSelector;
349939
349952
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349940
- const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349941
- const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349953
+ const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349954
+ const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349942
349955
  /** @public */
349943
349956
  // eslint-disable-next-line @typescript-eslint/no-redeclare
349944
349957
  var TypedValueSelectClauseProps;
@@ -350185,9 +350198,9 @@ function createPrimitiveValueStringSelector(value) {
350185
350198
 
350186
350199
  /***/ }),
350187
350200
 
350188
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
350201
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
350189
350202
  /*!************************************************************************************************************************************************************!*\
350190
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
350203
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
350191
350204
  \************************************************************************************************************************************************************/
350192
350205
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
350193
350206
 
@@ -350199,7 +350212,7 @@ function createPrimitiveValueStringSelector(value) {
350199
350212
  *--------------------------------------------------------------------------------------------*/
350200
350213
  Object.defineProperty(exports, "__esModule", ({ value: true }));
350201
350214
  exports.createRelationshipPathJoinClause = exports.createPrimitivePropertyValueSelectorProps = exports.createInstanceKeySelector = exports.createConcatenatedValueStringSelector = exports.createConcatenatedValueJsonSelector = exports.createNullableSelector = exports.createRawPrimitiveValueSelector = exports.createRawPropertyValueSelector = void 0;
350202
- var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
350215
+ var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
350203
350216
  Object.defineProperty(exports, "createRawPropertyValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector; } }));
350204
350217
  Object.defineProperty(exports, "createRawPrimitiveValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPrimitiveValueSelector; } }));
350205
350218
  Object.defineProperty(exports, "createNullableSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createNullableSelector; } }));
@@ -350207,7 +350220,7 @@ Object.defineProperty(exports, "createConcatenatedValueJsonSelector", ({ enumera
350207
350220
  Object.defineProperty(exports, "createConcatenatedValueStringSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createConcatenatedValueStringSelector; } }));
350208
350221
  Object.defineProperty(exports, "createInstanceKeySelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createInstanceKeySelector; } }));
350209
350222
  Object.defineProperty(exports, "createPrimitivePropertyValueSelectorProps", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createPrimitivePropertyValueSelectorProps; } }));
350210
- var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js");
350223
+ var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js");
350211
350224
  Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable: true, get: function () { return ECSqlJoinSnippets_js_1.createRelationshipPathJoinClause; } }));
350212
350225
 
350213
350226
 
@@ -350643,7 +350656,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
350643
350656
  exports.createHiliteSetProvider = createHiliteSetProvider;
350644
350657
  const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
350645
350658
  const rxjs_for_await_1 = __webpack_require__(/*! rxjs-for-await */ "../../common/temp/node_modules/.pnpm/rxjs-for-await@1.0.0_rxjs@7.8.2/node_modules/rxjs-for-await/dist/esm/index.js");
350646
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
350659
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
350647
350660
  const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+unified-selection@1.2.0/node_modules/@itwin/unified-selection/lib/cjs/unified-selection/Utils.js");
350648
350661
  const HILITE_SET_EMIT_FREQUENCY = 20;
350649
350662
  /**
@@ -350996,7 +351009,7 @@ async function* executeQuery(queryExecutor, query) {
350996
351009
  *--------------------------------------------------------------------------------------------*/
350997
351010
  Object.defineProperty(exports, "__esModule", ({ value: true }));
350998
351011
  exports.Selectables = exports.TRANSIENT_ELEMENT_CLASSNAME = exports.Selectable = void 0;
350999
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351012
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351000
351013
  /** @public */
351001
351014
  // eslint-disable-next-line @typescript-eslint/no-redeclare
351002
351015
  var Selectable;
@@ -351598,7 +351611,7 @@ exports.genericExecuteQuery = genericExecuteQuery;
351598
351611
  exports.releaseMainThreadOnItemsCount = releaseMainThreadOnItemsCount;
351599
351612
  exports.safeDispose = safeDispose;
351600
351613
  const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
351601
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351614
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351602
351615
  /**
351603
351616
  * Forms ECSql bindings from given ID's.
351604
351617
  * @internal
@@ -371818,7 +371831,7 @@ var loadLanguages = instance.loadLanguages;
371818
371831
  /***/ ((module) => {
371819
371832
 
371820
371833
  "use strict";
371821
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.0-dev.5","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","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"}}');
371834
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.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","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
371822
371835
 
371823
371836
  /***/ }),
371824
371837