@itwin/core-backend 5.10.0-dev.13 → 5.10.0-dev.15
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 +13 -1
- package/lib/cjs/IModelDb.d.ts +1 -1
- package/lib/cjs/IModelDb.js +1 -1
- package/lib/cjs/IModelDb.js.map +1 -1
- package/lib/esm/IModelDb.d.ts +1 -1
- package/lib/esm/IModelDb.js +1 -1
- package/lib/esm/IModelDb.js.map +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @itwin/core-backend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 19 May 2026 19:47:05 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.9.4
|
|
6
|
+
Tue, 19 May 2026 19:45:27 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 5.9.3
|
|
11
|
+
Fri, 15 May 2026 11:25:54 GMT
|
|
12
|
+
|
|
13
|
+
### Updates
|
|
14
|
+
|
|
15
|
+
- Added a deprecated bulk element delete api to IModelDb until EditTxns are more widely used by applications.
|
|
4
16
|
|
|
5
17
|
## 5.9.2
|
|
6
18
|
Fri, 08 May 2026 20:36:41 GMT
|
package/lib/cjs/IModelDb.d.ts
CHANGED
|
@@ -1383,7 +1383,7 @@ export declare namespace IModelDb {
|
|
|
1383
1383
|
* @param deleteOptions Options for the delete operation.
|
|
1384
1384
|
* @returns A result object containing information about the deletion operation success and the element ids that failed to delete (if any).
|
|
1385
1385
|
* @throws [[ITwinError]] if any of the supplied ids are not well-formed/valid [[Id64String]]s.
|
|
1386
|
-
* @deprecated Use EditTxn.deleteElements instead, within an explicit EditTxn scope (or via withEditTxn). See EditTxn documentation for migration help.
|
|
1386
|
+
* @deprecated in 5.1.9 - will not be removed until after 2026-08-15. Use EditTxn.deleteElements instead, within an explicit EditTxn scope (or via withEditTxn). See EditTxn documentation for migration help.
|
|
1387
1387
|
* @beta
|
|
1388
1388
|
*/
|
|
1389
1389
|
deleteElements(ids: Id64Array, deleteOptions?: BulkDeleteElementsArgs): BulkDeleteElementsResult;
|
package/lib/cjs/IModelDb.js
CHANGED
|
@@ -2379,7 +2379,7 @@ function processSchemaWriteStatus(status) {
|
|
|
2379
2379
|
* @param deleteOptions Options for the delete operation.
|
|
2380
2380
|
* @returns A result object containing information about the deletion operation success and the element ids that failed to delete (if any).
|
|
2381
2381
|
* @throws [[ITwinError]] if any of the supplied ids are not well-formed/valid [[Id64String]]s.
|
|
2382
|
-
* @deprecated Use EditTxn.deleteElements instead, within an explicit EditTxn scope (or via withEditTxn). See EditTxn documentation for migration help.
|
|
2382
|
+
* @deprecated in 5.1.9 - will not be removed until after 2026-08-15. Use EditTxn.deleteElements instead, within an explicit EditTxn scope (or via withEditTxn). See EditTxn documentation for migration help.
|
|
2383
2383
|
* @beta
|
|
2384
2384
|
*/
|
|
2385
2385
|
deleteElements(ids, deleteOptions) {
|