core-3nweb-client-lib 0.43.19 → 0.43.20
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/build/api-defs/files.d.ts +3 -3
- package/build/core-ipc/fs.js +2 -2
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/xsp-fs/folder-node.js +3 -2
- package/build/protos/asmail.proto.js +46 -0
- package/build/protos/fs.proto.js +46 -0
- package/package.json +1 -1
- package/protos/fs.proto +2 -0
|
@@ -1363,11 +1363,11 @@ declare namespace web3n.files {
|
|
|
1363
1363
|
remoteVersion?: number;
|
|
1364
1364
|
|
|
1365
1365
|
/**
|
|
1366
|
-
* Flag indicating if remote version is
|
|
1367
|
-
* If remote is
|
|
1366
|
+
* Flag indicating if remote version is removed, i.e. has no current version.
|
|
1367
|
+
* If remote is removed, it has nothing inside, and with this implicit
|
|
1368
1368
|
* understanding there is no need to have other data fields populated here.
|
|
1369
1369
|
*/
|
|
1370
|
-
|
|
1370
|
+
isRemoteRemoved: boolean;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
1373
|
* Items present only in current version.
|
package/build/core-ipc/fs.js
CHANGED
|
@@ -2190,7 +2190,7 @@ function folderDiffToMsg(diff) {
|
|
|
2190
2190
|
remoteVersion: (0, protobuf_msg_1.toOptVal)(diff.remoteVersion),
|
|
2191
2191
|
currentVersion: diff.currentVersion,
|
|
2192
2192
|
isCurrentLocal: diff.isCurrentLocal,
|
|
2193
|
-
|
|
2193
|
+
isRemoteRemoved: diff.isRemoteRemoved,
|
|
2194
2194
|
inCurrent: (_a = diff.inCurrent) === null || _a === void 0 ? void 0 : _a.map(lsEntryToMsg),
|
|
2195
2195
|
inRemote: (_b = diff.inRemote) === null || _b === void 0 ? void 0 : _b.map(lsEntryToMsg),
|
|
2196
2196
|
nameOverlaps: diff.nameOverlaps,
|
|
@@ -2220,7 +2220,7 @@ function folderDiffFromMsg(msg) {
|
|
|
2220
2220
|
remoteVersion: (0, protobuf_msg_1.valOfOptInt)(msg.remoteVersion),
|
|
2221
2221
|
currentVersion: (0, protobuf_msg_1.fixInt)(msg.currentVersion),
|
|
2222
2222
|
isCurrentLocal: msg.isCurrentLocal,
|
|
2223
|
-
|
|
2223
|
+
isRemoteRemoved: msg.isRemoteRemoved,
|
|
2224
2224
|
inCurrent: ((msg.inCurrent && (msg.inCurrent.length > 0)) ? msg.inCurrent.map(lsEntryFromMsg) : undefined),
|
|
2225
2225
|
inRemote: ((msg.inRemote && (msg.inRemote.length > 0)) ? msg.inRemote.map(lsEntryFromMsg) : undefined),
|
|
2226
2226
|
nameOverlaps: ((msg.nameOverlaps && (msg.nameOverlaps.length > 0)) ? msg.nameOverlaps : undefined),
|