@itwin/core-extension 3.5.0-dev.18 → 3.5.0-dev.20

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/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Change Log - @itwin/core-extension
2
2
 
3
- This log was last generated on Thu, 13 Oct 2022 20:24:47 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 17 Oct 2022 20:06:51 GMT and should not be manually modified.
4
+
5
+ ## 3.4.1
6
+ Mon, 17 Oct 2022 20:06:51 GMT
7
+
8
+ _Version update only_
4
9
 
5
10
  ## 3.4.0
6
11
  Thu, 13 Oct 2022 20:24:47 GMT
package/index.d.ts CHANGED
@@ -339,6 +339,17 @@ export {
339
339
  Npc,
340
340
  PlanarClipMaskMode,
341
341
  PlanarClipMaskPriority,
342
+ QParams2d,
343
+ QParams3d,
344
+ QPoint2d,
345
+ QPoint2dBuffer,
346
+ QPoint2dBufferBuilder,
347
+ QPoint2dList,
348
+ QPoint3d,
349
+ QPoint3dBuffer,
350
+ QPoint3dBufferBuilder,
351
+ QPoint3dList,
352
+ Quantization,
342
353
  QueryRowFormat,
343
354
  Rank,
344
355
  RenderMode,
@@ -519,6 +530,8 @@ export type {
519
530
  PositionalVectorTransformProps,
520
531
  ProjectionMethod,
521
532
  ProjectionProps,
533
+ QPoint2dBuffer,
534
+ QPoint3dBuffer,
522
535
  QueryLimit,
523
536
  QueryOptions,
524
537
  QueryQuota,
package/index.js CHANGED
@@ -228,6 +228,17 @@ export const {
228
228
  Npc,
229
229
  PlanarClipMaskMode,
230
230
  PlanarClipMaskPriority,
231
+ QParams2d,
232
+ QParams3d,
233
+ QPoint2d,
234
+ QPoint2dBuffer,
235
+ QPoint2dBufferBuilder,
236
+ QPoint2dList,
237
+ QPoint3d,
238
+ QPoint3dBuffer,
239
+ QPoint3dBufferBuilder,
240
+ QPoint3dList,
241
+ Quantization,
231
242
  QueryRowFormat,
232
243
  Rank,
233
244
  RenderMode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-extension",
3
- "version": "3.5.0-dev.18",
3
+ "version": "3.5.0-dev.20",
4
4
  "description": "iTwin.js Extension API",
5
5
  "typings": "index.d.ts",
6
6
  "license": "MIT",
@@ -20,12 +20,12 @@
20
20
  "url": "http://www.bentley.com"
21
21
  },
22
22
  "dependencies": {
23
- "@itwin/core-frontend": "3.5.0-dev.18",
24
- "@itwin/core-common": "3.5.0-dev.18"
23
+ "@itwin/core-frontend": "3.5.0-dev.20",
24
+ "@itwin/core-common": "3.5.0-dev.20"
25
25
  },
26
26
  "devDependencies": {
27
- "@itwin/build-tools": "3.5.0-dev.18",
28
- "@itwin/eslint-plugin": "3.5.0-dev.18",
27
+ "@itwin/build-tools": "3.5.0-dev.20",
28
+ "@itwin/eslint-plugin": "3.5.0-dev.20",
29
29
  "eslint": "^7.11.0",
30
30
  "rimraf": "^3.0.2"
31
31
  },
@@ -44,7 +44,8 @@
44
44
  "docs": "",
45
45
  "lint": "",
46
46
  "test": "",
47
- "generate": "node ./codeGen/generate-exports.js '[\"@itwin/core-frontend\",\"core/frontend\"] [\"@itwin/core-common\",\"core/common\"]'"
47
+ "extract-api": "npm run -s generate",
48
+ "generate": "node ./codeGen/generate-exports.js"
48
49
  },
49
50
  "readme": "# @itwin/core-extension\r\n\r\nCopyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.\r\n\r\n## Description\r\n\r\nThe **@itwin/core-extension** package defines all of the types and apis that can be used by an extension.\r\n\r\n## Documentation\r\n\r\nSee the [iTwin.js](https://www.itwinjs.org) documentation for more information.\r\n"
50
51
  }