core-3nweb-client-lib 0.44.0 → 0.44.2
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 +8 -8
- package/build/core/index.d.ts +1 -0
- package/build/core/index.js +3 -2
- package/build/core/storage/index.d.ts +1 -0
- package/build/core/storage/index.js +4 -1
- package/build/core/storage/synced/storage.d.ts +1 -0
- package/build/core/storage/synced/storage.js +4 -1
- package/build/core-ipc/fs.js +31 -9
- package/build/lib-client/asmail/recipient.js +4 -2
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/ws-utils.js +2 -7
- package/build/lib-client/xsp-fs/common.d.ts +2 -0
- package/build/lib-client/xsp-fs/common.js +2 -1
- package/build/lib-client/xsp-fs/folder-node.js +39 -25
- package/build/lib-client/xsp-fs/fs.js +1 -16
- package/build/lib-common/ipc/generic-ipc.js +33 -28
- package/build/lib-common/ipc/ws-ipc.d.ts +2 -0
- package/build/lib-common/ipc/ws-ipc.js +35 -8
- package/build/lib-common/map-of-sets.d.ts +1 -0
- package/build/lib-common/map-of-sets.js +3 -0
- package/build/protos/asmail.proto.js +149 -378
- package/build/protos/fs.proto.js +149 -378
- package/package.json +1 -1
- package/protos/fs.proto +5 -9
package/package.json
CHANGED
package/protos/fs.proto
CHANGED
|
@@ -510,27 +510,23 @@ message FolderDiff {
|
|
|
510
510
|
file.TimeStampsDiff mtime = 7;
|
|
511
511
|
repeated file.XAttrDiff xattrs = 8;
|
|
512
512
|
|
|
513
|
-
message
|
|
514
|
-
string
|
|
515
|
-
string
|
|
513
|
+
message ItemsByBranches {
|
|
514
|
+
repeated string in_local = 1;
|
|
515
|
+
repeated string in_remote = 2;
|
|
516
516
|
}
|
|
517
517
|
message Renamed {
|
|
518
518
|
string local = 1;
|
|
519
519
|
string remote = 2;
|
|
520
520
|
string renamed_in = 3;
|
|
521
521
|
}
|
|
522
|
-
message Added {
|
|
523
|
-
string name = 1;
|
|
524
|
-
string added_in = 2;
|
|
525
|
-
}
|
|
526
522
|
message Rekeyed {
|
|
527
523
|
string local = 1;
|
|
528
524
|
string remote = 2;
|
|
529
525
|
string rekeyed_in = 3;
|
|
530
526
|
}
|
|
531
|
-
|
|
527
|
+
ItemsByBranches removed = 11;
|
|
532
528
|
repeated Renamed renamed = 12;
|
|
533
|
-
|
|
529
|
+
ItemsByBranches added = 13;
|
|
534
530
|
repeated Rekeyed rekeyed = 14;
|
|
535
531
|
repeated string name_overlaps = 15;
|
|
536
532
|
}
|