@itwin/core-i18n 3.6.0-dev.62 → 3.6.0-dev.66
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.
|
@@ -16131,6 +16131,8 @@ var DbResult;
|
|
|
16131
16131
|
DbResult[DbResult["BE_SQLITE_ERROR_CouldNotAcquireLocksOrCodes"] = 352321546] = "BE_SQLITE_ERROR_CouldNotAcquireLocksOrCodes";
|
|
16132
16132
|
/** Recommended that the schemas found in the database be upgraded */
|
|
16133
16133
|
DbResult[DbResult["BE_SQLITE_ERROR_SchemaUpgradeRecommended"] = 369098762] = "BE_SQLITE_ERROR_SchemaUpgradeRecommended";
|
|
16134
|
+
/** schema update require data transform */
|
|
16135
|
+
DbResult[DbResult["BE_SQLITE_ERROR_DataTransformRequired"] = 385875978] = "BE_SQLITE_ERROR_DataTransformRequired";
|
|
16134
16136
|
DbResult[DbResult["BE_SQLITE_LOCKED_SHAREDCACHE"] = 262] = "BE_SQLITE_LOCKED_SHAREDCACHE";
|
|
16135
16137
|
DbResult[DbResult["BE_SQLITE_BUSY_RECOVERY"] = 261] = "BE_SQLITE_BUSY_RECOVERY";
|
|
16136
16138
|
DbResult[DbResult["BE_SQLITE_CANTOPEN_NOTEMPDIR"] = 270] = "BE_SQLITE_CANTOPEN_NOTEMPDIR";
|
|
@@ -16651,6 +16653,7 @@ class BentleyError extends Error {
|
|
|
16651
16653
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_SHMMAP: return "BE_SQLITE_IOERR_SHMMAP";
|
|
16652
16654
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_SEEK: return "BE_SQLITE_IOERR_SEEK";
|
|
16653
16655
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_DELETE_NOENT: return "BE_SQLITE_IOERR_DELETE_NOENT";
|
|
16656
|
+
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_DataTransformRequired: return "Schema update require to transform data";
|
|
16654
16657
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_FileExists: return "File Exists";
|
|
16655
16658
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_AlreadyOpen: return "Already Open";
|
|
16656
16659
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_NoPropertyTable: return "No Property Table";
|
|
@@ -18584,6 +18587,12 @@ class TransientIdSequence {
|
|
|
18584
18587
|
getNext() {
|
|
18585
18588
|
return Id64.fromLocalAndBriefcaseIds(++this._localId, 0xffffff);
|
|
18586
18589
|
}
|
|
18590
|
+
/** Preview the transient Id64String that will be returned by the next call to [[getNext]].
|
|
18591
|
+
* This is primarily useful for tests.
|
|
18592
|
+
*/
|
|
18593
|
+
peekNext() {
|
|
18594
|
+
return Id64.fromLocalAndBriefcaseIds(this._localId + 1, 0xffffff);
|
|
18595
|
+
}
|
|
18587
18596
|
}
|
|
18588
18597
|
/**
|
|
18589
18598
|
* The Guid namespace provides facilities for working with GUID strings using the "8-4-4-4-12" pattern.
|