core-3nweb-client-lib 0.44.1 → 0.44.3
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 +21 -9
- package/build/core/id-manager/key-storage.d.ts +1 -0
- package/build/core/id-manager/key-storage.js +18 -3
- package/build/core/storage/synced/remote-events.d.ts +3 -0
- package/build/core/storage/synced/remote-events.js +24 -1
- package/build/core/storage/synced/storage.d.ts +1 -0
- package/build/core/storage/synced/storage.js +3 -0
- package/build/core-ipc/file.d.ts +4 -0
- package/build/core-ipc/file.js +22 -1
- package/build/core-ipc/fs.js +33 -9
- package/build/lib-client/fs-utils/files.js +4 -0
- package/build/lib-client/xsp-fs/common.d.ts +1 -0
- package/build/lib-client/xsp-fs/common.js +1 -0
- package/build/lib-client/xsp-fs/file-node.d.ts +1 -0
- package/build/lib-client/xsp-fs/file-node.js +3 -0
- package/build/lib-client/xsp-fs/file.d.ts +1 -0
- package/build/lib-client/xsp-fs/file.js +3 -0
- package/build/lib-client/xsp-fs/folder-node.js +39 -25
- package/build/lib-client/xsp-fs/fs.d.ts +1 -0
- package/build/lib-client/xsp-fs/fs.js +4 -16
- package/build/protos/asmail.proto.js +149 -378
- package/build/protos/fs.proto.js +149 -378
- package/package.json +1 -1
- package/protos/file.proto +4 -0
- package/protos/fs.proto +9 -9
package/package.json
CHANGED
package/protos/file.proto
CHANGED
|
@@ -268,6 +268,10 @@ message ArchiveCurrentRequestBody {
|
|
|
268
268
|
|
|
269
269
|
// ==== ReadonlyFileSyncAPI referable object ====
|
|
270
270
|
|
|
271
|
+
// --- ReadonlyFileSyncAPI.whenConnected ---
|
|
272
|
+
// Request body is empty
|
|
273
|
+
// Reply body is empty
|
|
274
|
+
|
|
271
275
|
// --- ReadonlyFileSyncAPI.status ---
|
|
272
276
|
// Request body is common.BooleanValue
|
|
273
277
|
// Reply body is SyncStatusMsg
|
package/protos/fs.proto
CHANGED
|
@@ -216,6 +216,10 @@ message CollectionEvent {
|
|
|
216
216
|
|
|
217
217
|
// ==== ReadonlyFSVersionedAPI referable object ====
|
|
218
218
|
|
|
219
|
+
// --- ReadonlyFSVersionedAPI.whenConnected ---
|
|
220
|
+
// Request body is empty
|
|
221
|
+
// Reply body is empty
|
|
222
|
+
|
|
219
223
|
// --- ReadonlyFSVersionedAPI.stat ---
|
|
220
224
|
// Request body is PathAndFlagsRequestBody
|
|
221
225
|
// Reply body is file.StatsMsg
|
|
@@ -510,27 +514,23 @@ message FolderDiff {
|
|
|
510
514
|
file.TimeStampsDiff mtime = 7;
|
|
511
515
|
repeated file.XAttrDiff xattrs = 8;
|
|
512
516
|
|
|
513
|
-
message
|
|
514
|
-
string
|
|
515
|
-
string
|
|
517
|
+
message ItemsByBranches {
|
|
518
|
+
repeated string in_local = 1;
|
|
519
|
+
repeated string in_remote = 2;
|
|
516
520
|
}
|
|
517
521
|
message Renamed {
|
|
518
522
|
string local = 1;
|
|
519
523
|
string remote = 2;
|
|
520
524
|
string renamed_in = 3;
|
|
521
525
|
}
|
|
522
|
-
message Added {
|
|
523
|
-
string name = 1;
|
|
524
|
-
string added_in = 2;
|
|
525
|
-
}
|
|
526
526
|
message Rekeyed {
|
|
527
527
|
string local = 1;
|
|
528
528
|
string remote = 2;
|
|
529
529
|
string rekeyed_in = 3;
|
|
530
530
|
}
|
|
531
|
-
|
|
531
|
+
ItemsByBranches removed = 11;
|
|
532
532
|
repeated Renamed renamed = 12;
|
|
533
|
-
|
|
533
|
+
ItemsByBranches added = 13;
|
|
534
534
|
repeated Rekeyed rekeyed = 14;
|
|
535
535
|
repeated string name_overlaps = 15;
|
|
536
536
|
}
|