@itwin/core-i18n 4.6.0-dev.1 → 4.6.0-dev.13
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 +16 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +164 -141
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +23 -0
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/package.json +6 -6
|
@@ -15907,10 +15907,12 @@ 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 */ "DbChangeStage": () => (/* binding */ DbChangeStage),
|
|
15910
15911
|
/* harmony export */ "DbConflictCause": () => (/* binding */ DbConflictCause),
|
|
15911
15912
|
/* harmony export */ "DbConflictResolution": () => (/* binding */ DbConflictResolution),
|
|
15912
15913
|
/* harmony export */ "DbOpcode": () => (/* binding */ DbOpcode),
|
|
15913
15914
|
/* harmony export */ "DbResult": () => (/* binding */ DbResult),
|
|
15915
|
+
/* harmony export */ "DbValueType": () => (/* binding */ DbValueType),
|
|
15914
15916
|
/* harmony export */ "OpenMode": () => (/* binding */ OpenMode)
|
|
15915
15917
|
/* harmony export */ });
|
|
15916
15918
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -15940,6 +15942,25 @@ var DbOpcode;
|
|
|
15940
15942
|
/** Some columns of an existing row were updated. */
|
|
15941
15943
|
DbOpcode[DbOpcode["Update"] = 23] = "Update";
|
|
15942
15944
|
})(DbOpcode || (DbOpcode = {}));
|
|
15945
|
+
/** Change value stage.
|
|
15946
|
+
* @internal
|
|
15947
|
+
*/
|
|
15948
|
+
var DbChangeStage;
|
|
15949
|
+
(function (DbChangeStage) {
|
|
15950
|
+
DbChangeStage[DbChangeStage["Old"] = 0] = "Old";
|
|
15951
|
+
DbChangeStage[DbChangeStage["New"] = 1] = "New";
|
|
15952
|
+
})(DbChangeStage || (DbChangeStage = {}));
|
|
15953
|
+
/** Change value type.
|
|
15954
|
+
* @internal
|
|
15955
|
+
*/
|
|
15956
|
+
var DbValueType;
|
|
15957
|
+
(function (DbValueType) {
|
|
15958
|
+
DbValueType[DbValueType["IntegerVal"] = 1] = "IntegerVal";
|
|
15959
|
+
DbValueType[DbValueType["FloatVal"] = 2] = "FloatVal";
|
|
15960
|
+
DbValueType[DbValueType["TextVal"] = 3] = "TextVal";
|
|
15961
|
+
DbValueType[DbValueType["BlobVal"] = 4] = "BlobVal";
|
|
15962
|
+
DbValueType[DbValueType["NullVal"] = 5] = "NullVal";
|
|
15963
|
+
})(DbValueType || (DbValueType = {}));
|
|
15943
15964
|
/** Cause of conflict when applying a changeset
|
|
15944
15965
|
* @internal
|
|
15945
15966
|
*/
|
|
@@ -22104,10 +22125,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22104
22125
|
/* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
22105
22126
|
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
22106
22127
|
/* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
22128
|
+
/* harmony export */ "DbChangeStage": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbChangeStage),
|
|
22107
22129
|
/* harmony export */ "DbConflictCause": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbConflictCause),
|
|
22108
22130
|
/* harmony export */ "DbConflictResolution": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbConflictResolution),
|
|
22109
22131
|
/* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
22110
22132
|
/* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
22133
|
+
/* harmony export */ "DbValueType": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbValueType),
|
|
22111
22134
|
/* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
22112
22135
|
/* harmony export */ "DisposableList": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
22113
22136
|
/* harmony export */ "DuplicatePolicy": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
|