@itwin/ecschema-rpcinterface-tests 5.7.0-dev.5 → 5.7.0-dev.7

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.
@@ -157678,7 +157678,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157678
157678
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]meter2" },
157679
157679
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]m-sta2" },
157680
157680
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]meter4" },
157681
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]meter4" },
157681
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]millimeter3" },
157682
157682
  ],
157683
157683
  },
157684
157684
  {
@@ -157692,7 +157692,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157692
157692
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
157693
157693
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
157694
157694
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4-labeled" },
157695
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
157695
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
157696
157696
  ],
157697
157697
  },
157698
157698
  {
@@ -157706,7 +157706,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157706
157706
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
157707
157707
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
157708
157708
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
157709
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
157709
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
157710
157710
  ],
157711
157711
  },
157712
157712
  {
@@ -157720,7 +157720,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157720
157720
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]f-survey-2" },
157721
157721
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-survey-sta2" },
157722
157722
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
157723
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-4" },
157723
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-2" },
157724
157724
  ],
157725
157725
  },
157726
157726
  ];
@@ -157740,6 +157740,20 @@ const DEFAULT_FORMATPROPS = [
157740
157740
  type: "Decimal",
157741
157741
  },
157742
157742
  },
157743
+ {
157744
+ key: "[units:length]millimeter3",
157745
+ description: "millimeters (labeled) 3 decimal places",
157746
+ format: {
157747
+ composite: {
157748
+ includeZero: true,
157749
+ spacer: "",
157750
+ units: [{ label: "mm", name: "Units.MM" }],
157751
+ },
157752
+ formatTraits: ["keepSingleZero", "showUnitLabel"],
157753
+ precision: 3,
157754
+ type: "Decimal",
157755
+ },
157756
+ },
157743
157757
  {
157744
157758
  key: "[units:length]meter2",
157745
157759
  description: "meters (labeled) 2 decimal places",
@@ -304517,12 +304531,12 @@ class BaseFormat {
304517
304531
  loadFormatProperties(formatProps) {
304518
304532
  this._type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(formatProps.type, this.name);
304519
304533
  if (formatProps.precision !== undefined) {
304520
- if (!Number.isInteger(formatProps.precision)) // mut be an integer
304534
+ if (!Number.isInteger(formatProps.precision))
304521
304535
  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.`);
304522
304536
  this._precision = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parsePrecision)(formatProps.precision, this._type, this.name);
304523
304537
  }
304524
304538
  if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Scientific) {
304525
- if (undefined === formatProps.scientificType) // if format type is scientific and scientific type is undefined, throw
304539
+ if (undefined === formatProps.scientificType)
304526
304540
  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.`);
304527
304541
  this._scientificType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseScientificType)(formatProps.scientificType, this.name);
304528
304542
  }
@@ -304530,7 +304544,7 @@ class BaseFormat {
304530
304544
  if (undefined === formatProps.ratioType)
304531
304545
  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.`);
304532
304546
  this._ratioType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseRatioType)(formatProps.ratioType, this.name);
304533
- if (undefined !== formatProps.ratioSeparator) {
304547
+ if (undefined !== formatProps.ratioSeparator) { // optional; default is 0.0
304534
304548
  if (typeof (formatProps.ratioSeparator) !== "string")
304535
304549
  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'.`);
304536
304550
  if (formatProps.ratioSeparator.length !== 1)
@@ -304547,25 +304561,24 @@ class BaseFormat {
304547
304561
  this._ratioFormatType = _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.RatioFormatType.Decimal; // Apply default
304548
304562
  }
304549
304563
  }
304550
- if (undefined !== formatProps.roundFactor) { // optional; default is 0.0
304564
+ if (undefined !== formatProps.roundFactor) {
304551
304565
  if (typeof (formatProps.roundFactor) !== "number")
304552
304566
  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'.`);
304553
304567
  if (formatProps.roundFactor !== this.roundFactor) // if roundFactor isn't default value of 0.0, reassign roundFactor variable
304554
304568
  this._roundFactor = formatProps.roundFactor;
304555
304569
  }
304556
- if (undefined !== formatProps.minWidth) { // optional
304557
- if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0) // must be a positive int
304570
+ if (undefined !== formatProps.minWidth) {
304571
+ if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0)
304558
304572
  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.`);
304559
304573
  this._minWidth = formatProps.minWidth;
304560
304574
  }
304561
304575
  if (_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Station === this.type) {
304562
304576
  if (undefined === formatProps.stationOffsetSize)
304563
304577
  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.`);
304564
- if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0) // must be a positive int > 0
304578
+ if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0)
304565
304579
  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.`);
304566
304580
  this._stationOffsetSize = formatProps.stationOffsetSize;
304567
304581
  if (undefined !== formatProps.stationBaseFactor) {
304568
- // optional - must be a positive integer
304569
304582
  if (!Number.isInteger(formatProps.stationBaseFactor) || formatProps.stationBaseFactor <= 0)
304570
304583
  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.`);
304571
304584
  this._stationBaseFactor = formatProps.stationBaseFactor;
@@ -304574,19 +304587,19 @@ class BaseFormat {
304574
304587
  if (undefined !== formatProps.showSignOption) { // optional; default is "onlyNegative"
304575
304588
  this._showSignOption = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseShowSignOption)(formatProps.showSignOption, this.name);
304576
304589
  }
304577
- if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) { // FormatTraits is optional
304578
- if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string") // must be either an array of strings or a string
304590
+ if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) {
304591
+ if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string")
304579
304592
  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[]'.`);
304580
- this.parseFormatTraits(formatProps.formatTraits); // check that all of the options for formatTraits are valid. If now, throw
304593
+ this.parseFormatTraits(formatProps.formatTraits);
304581
304594
  }
304582
- if (undefined !== formatProps.decimalSeparator) { // optional
304583
- if (typeof (formatProps.decimalSeparator) !== "string") // not a string or not a one character string
304595
+ if (undefined !== formatProps.decimalSeparator) {
304596
+ if (typeof (formatProps.decimalSeparator) !== "string")
304584
304597
  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'.`);
304585
304598
  if (formatProps.decimalSeparator.length > 1)
304586
304599
  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.`);
304587
304600
  this._decimalSeparator = formatProps.decimalSeparator;
304588
304601
  }
304589
- if (undefined !== formatProps.thousandSeparator) { // optional
304602
+ if (undefined !== formatProps.thousandSeparator) {
304590
304603
  if (typeof (formatProps.thousandSeparator) !== "string")
304591
304604
  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'.`);
304592
304605
  if (formatProps.thousandSeparator.length > 1)
@@ -304612,7 +304625,7 @@ class BaseFormat {
304612
304625
  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'.`);
304613
304626
  this._azimuthBase = formatProps.azimuthBase;
304614
304627
  }
304615
- if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false
304628
+ if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false, azimuth values are clockwise from base
304616
304629
  if (typeof (formatProps.azimuthCounterClockwise) !== "boolean")
304617
304630
  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'.`);
304618
304631
  this._azimuthCounterClockwise = formatProps.azimuthCounterClockwise;
@@ -304713,25 +304726,25 @@ class Format extends BaseFormat {
304713
304726
  fromFullyResolvedJSON(jsonObj) {
304714
304727
  this.loadFormatProperties(jsonObj);
304715
304728
  this._customProps = jsonObj.custom;
304716
- if (undefined !== jsonObj.composite) { // optional
304729
+ if (undefined !== jsonObj.composite) {
304717
304730
  this._units = new Array();
304718
304731
  if (jsonObj.composite.includeZero !== undefined) {
304719
- if (typeof (jsonObj.composite.includeZero) !== "boolean") // includeZero must be a boolean IF it is defined
304732
+ if (typeof (jsonObj.composite.includeZero) !== "boolean")
304720
304733
  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'.`);
304721
304734
  this._includeZero = jsonObj.composite.includeZero;
304722
304735
  }
304723
- if (jsonObj.composite.spacer !== undefined) { // spacer must be a string IF it is defined
304736
+ if (jsonObj.composite.spacer !== undefined) {
304724
304737
  if (typeof (jsonObj.composite.spacer) !== "string")
304725
304738
  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'.`);
304726
304739
  if (jsonObj.composite.spacer.length > 1)
304727
304740
  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.`);
304728
304741
  this._spacer = jsonObj.composite.spacer;
304729
304742
  }
304730
- if (jsonObj.composite.units !== undefined) { // if composite is defined, it must be an array with 1-4 units
304731
- if (!Array.isArray(jsonObj.composite.units)) { // must be an array
304743
+ if (jsonObj.composite.units !== undefined) { // If composite is defined, it must be an array with 1-4 units
304744
+ if (!Array.isArray(jsonObj.composite.units)) {
304732
304745
  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'`);
304733
304746
  }
304734
- if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
304747
+ if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) {
304735
304748
  const isDuplicateAllowed = this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Ratio;
304736
304749
  const seenUnits = new Set();
304737
304750
  this._units = [];
@@ -305001,7 +305014,7 @@ var FormatTraits;
305001
305014
  /** Indicates that if an exponent value is positive to not include a `+`. By default a sign, `+` or `-`, is always shown. Not yet supported */
305002
305015
  FormatTraits[FormatTraits["ExponentOnlyNegative"] = 512] = "ExponentOnlyNegative";
305003
305016
  })(FormatTraits || (FormatTraits = {}));
305004
- /** Precision for Fractional formatted value types. Range from Whole (1/1) through 1/256.
305017
+ /** Precision for Fractional formatted value types. Values must be powers of 2, ranging from Whole (1/1) through 1/256.
305005
305018
  * @beta */
305006
305019
  var FractionalPrecision;
305007
305020
  (function (FractionalPrecision) {
@@ -321266,7 +321279,7 @@ var loadLanguages = instance.loadLanguages;
321266
321279
  /***/ ((module) => {
321267
321280
 
321268
321281
  "use strict";
321269
- 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"}}');
321282
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.0-dev.7","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"}}');
321270
321283
 
321271
321284
  /***/ })
321272
321285