core-3nweb-client-lib 0.44.3 → 0.44.5
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 -4
- package/build/core/storage/synced/storage.js +2 -2
- package/build/core-ipc/fs.js +11 -11
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/fs-utils/files.js +2 -3
- package/build/lib-client/xsp-fs/file-node.d.ts +1 -1
- package/build/lib-client/xsp-fs/file-node.js +5 -4
- package/build/lib-client/xsp-fs/file.d.ts +1 -0
- package/build/lib-client/xsp-fs/file.js +18 -0
- package/build/lib-client/xsp-fs/folder-node.d.ts +3 -2
- package/build/lib-client/xsp-fs/folder-node.js +48 -61
- package/build/lib-client/xsp-fs/fs.d.ts +2 -2
- package/build/lib-client/xsp-fs/fs.js +3 -3
- package/build/lib-client/xsp-fs/link-node.d.ts +1 -0
- package/build/lib-client/xsp-fs/link-node.js +3 -0
- package/build/lib-client/xsp-fs/node-in-fs.d.ts +1 -1
- package/build/lib-client/xsp-fs/node-in-fs.js +14 -12
- package/build/lib-common/exceptions/error.js +2 -1
- package/build/protos/asmail.proto.js +158 -158
- package/build/protos/fs.proto.js +158 -158
- package/package.json +1 -1
- package/protos/fs.proto +3 -4
package/package.json
CHANGED
package/protos/fs.proto
CHANGED
|
@@ -585,9 +585,8 @@ message AdoptRemoteFolderItemRequestBody {
|
|
|
585
585
|
Options opts = 3;
|
|
586
586
|
}
|
|
587
587
|
|
|
588
|
-
// --- WritableFSSyncAPI.
|
|
589
|
-
|
|
590
|
-
message MergeFolderCurrentAndRemoteVersionsRequestBody {
|
|
588
|
+
// --- WritableFSSyncAPI.absorbRemoteFolderChanges ---
|
|
589
|
+
message AbsorbRemoteFolderChangesRequestBody {
|
|
591
590
|
message Options {
|
|
592
591
|
common.UInt64Value local_version = 1;
|
|
593
592
|
common.StringValue postfix_for_name_overlaps = 2;
|
|
@@ -596,6 +595,6 @@ message MergeFolderCurrentAndRemoteVersionsRequestBody {
|
|
|
596
595
|
string path = 1;
|
|
597
596
|
Options opts = 2;
|
|
598
597
|
}
|
|
599
|
-
message
|
|
598
|
+
message AbsorbRemoteFolderChangesReplyBody {
|
|
600
599
|
common.UInt64Value new_version = 1;
|
|
601
600
|
}
|