@itwin/core-i18n 4.5.0-dev.23 → 4.5.0-dev.26
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 +6 -1
- package/lib/cjs/ITwinLocalization.js.map +1 -1
- package/lib/cjs/core-i18n.js.map +1 -1
- package/lib/cjs/test/ITwinLocalization.test.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +169 -142
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +27 -0
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/lib/esm/ITwinLocalization.js.map +1 -1
- package/lib/esm/core-i18n.js.map +1 -1
- package/lib/esm/test/ITwinLocalization.test.js.map +1 -1
- package/package.json +6 -6
|
@@ -15907,6 +15907,8 @@ class BeEventList {
|
|
|
15907
15907
|
"use strict";
|
|
15908
15908
|
__webpack_require__.r(__webpack_exports__);
|
|
15909
15909
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15910
|
+
/* harmony export */ "DbConflictCause": () => (/* binding */ DbConflictCause),
|
|
15911
|
+
/* harmony export */ "DbConflictResolution": () => (/* binding */ DbConflictResolution),
|
|
15910
15912
|
/* harmony export */ "DbOpcode": () => (/* binding */ DbOpcode),
|
|
15911
15913
|
/* harmony export */ "DbResult": () => (/* binding */ DbResult),
|
|
15912
15914
|
/* harmony export */ "OpenMode": () => (/* binding */ OpenMode)
|
|
@@ -15938,6 +15940,29 @@ var DbOpcode;
|
|
|
15938
15940
|
/** Some columns of an existing row were updated. */
|
|
15939
15941
|
DbOpcode[DbOpcode["Update"] = 23] = "Update";
|
|
15940
15942
|
})(DbOpcode || (DbOpcode = {}));
|
|
15943
|
+
/** Cause of conflict when applying a changeset
|
|
15944
|
+
* @internal
|
|
15945
|
+
*/
|
|
15946
|
+
var DbConflictCause;
|
|
15947
|
+
(function (DbConflictCause) {
|
|
15948
|
+
DbConflictCause[DbConflictCause["Data"] = 1] = "Data";
|
|
15949
|
+
DbConflictCause[DbConflictCause["NotFound"] = 2] = "NotFound";
|
|
15950
|
+
DbConflictCause[DbConflictCause["Conflict"] = 3] = "Conflict";
|
|
15951
|
+
DbConflictCause[DbConflictCause["Constraint"] = 4] = "Constraint";
|
|
15952
|
+
DbConflictCause[DbConflictCause["ForeignKey"] = 5] = "ForeignKey";
|
|
15953
|
+
})(DbConflictCause || (DbConflictCause = {}));
|
|
15954
|
+
/** Conflict resolution strategy
|
|
15955
|
+
* @internal
|
|
15956
|
+
*/
|
|
15957
|
+
var DbConflictResolution;
|
|
15958
|
+
(function (DbConflictResolution) {
|
|
15959
|
+
/** Skip incoming change */
|
|
15960
|
+
DbConflictResolution[DbConflictResolution["Skip"] = 0] = "Skip";
|
|
15961
|
+
/** Replace local row with incoming changed row */
|
|
15962
|
+
DbConflictResolution[DbConflictResolution["Replace"] = 1] = "Replace";
|
|
15963
|
+
/** Abort apply changeset */
|
|
15964
|
+
DbConflictResolution[DbConflictResolution["Abort"] = 2] = "Abort";
|
|
15965
|
+
})(DbConflictResolution || (DbConflictResolution = {}));
|
|
15941
15966
|
/** Values for return codes from BeSQLite functions. Consult SQLite documentation for further explanations.
|
|
15942
15967
|
* @public
|
|
15943
15968
|
*/
|
|
@@ -22072,6 +22097,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22072
22097
|
/* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
22073
22098
|
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
22074
22099
|
/* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
22100
|
+
/* harmony export */ "DbConflictCause": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbConflictCause),
|
|
22101
|
+
/* harmony export */ "DbConflictResolution": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbConflictResolution),
|
|
22075
22102
|
/* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
22076
22103
|
/* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
22077
22104
|
/* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|