@itwin/core-i18n 5.3.0-dev.2 → 5.3.0-dev.23
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 +21 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +136 -137
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +5 -6
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js.map +1 -1
- package/package.json +6 -6
|
@@ -15259,6 +15259,10 @@ var DbResult;
|
|
|
15259
15259
|
DbResult[DbResult["BE_SQLITE_ERROR_SchemaUpgradeRecommended"] = 369098762] = "BE_SQLITE_ERROR_SchemaUpgradeRecommended";
|
|
15260
15260
|
/** schema update require data transform */
|
|
15261
15261
|
DbResult[DbResult["BE_SQLITE_ERROR_DataTransformRequired"] = 385875978] = "BE_SQLITE_ERROR_DataTransformRequired";
|
|
15262
|
+
/** Db not open */
|
|
15263
|
+
DbResult[DbResult["BE_SQLITE_ERROR_NOTOPEN"] = 16777217] = "BE_SQLITE_ERROR_NOTOPEN";
|
|
15264
|
+
/** Error propagating changes during commit */
|
|
15265
|
+
DbResult[DbResult["BE_SQLITE_ERROR_PropagateChangesFailed"] = 33554433] = "BE_SQLITE_ERROR_PropagateChangesFailed";
|
|
15262
15266
|
DbResult[DbResult["BE_SQLITE_LOCKED_SHAREDCACHE"] = 262] = "BE_SQLITE_LOCKED_SHAREDCACHE";
|
|
15263
15267
|
DbResult[DbResult["BE_SQLITE_BUSY_RECOVERY"] = 261] = "BE_SQLITE_BUSY_RECOVERY";
|
|
15264
15268
|
DbResult[DbResult["BE_SQLITE_CANTOPEN_NOTEMPDIR"] = 270] = "BE_SQLITE_CANTOPEN_NOTEMPDIR";
|
|
@@ -17973,12 +17977,7 @@ var Guid;
|
|
|
17973
17977
|
Guid.isV4Guid = isV4Guid;
|
|
17974
17978
|
/** Create a new V4 Guid value */
|
|
17975
17979
|
function createValue() {
|
|
17976
|
-
|
|
17977
|
-
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
|
|
17978
|
-
const r = Math.random() * 16 | 0;
|
|
17979
|
-
const v = c === "x" ? r : (r & 0x3 | 0x8);
|
|
17980
|
-
return v.toString(16);
|
|
17981
|
-
});
|
|
17980
|
+
return crypto.randomUUID();
|
|
17982
17981
|
}
|
|
17983
17982
|
Guid.createValue = createValue;
|
|
17984
17983
|
/**
|