core-3nweb-client-lib 0.44.2 → 0.44.4
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 +20 -5
- 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 +5 -2
- package/build/core-ipc/file.d.ts +4 -0
- package/build/core-ipc/file.js +22 -1
- package/build/core-ipc/fs.js +13 -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 +5 -1
- 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 +2 -1
- package/build/lib-client/xsp-fs/file-node.js +8 -4
- 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.d.ts +3 -2
- package/build/lib-client/xsp-fs/folder-node.js +48 -61
- package/build/lib-client/xsp-fs/fs.d.ts +3 -2
- package/build/lib-client/xsp-fs/fs.js +5 -2
- 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/file.proto +4 -0
- package/protos/fs.proto +7 -4
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
|
|
@@ -581,9 +585,8 @@ message AdoptRemoteFolderItemRequestBody {
|
|
|
581
585
|
Options opts = 3;
|
|
582
586
|
}
|
|
583
587
|
|
|
584
|
-
// --- WritableFSSyncAPI.
|
|
585
|
-
|
|
586
|
-
message MergeFolderCurrentAndRemoteVersionsRequestBody {
|
|
588
|
+
// --- WritableFSSyncAPI.absorbRemoteFolderChanges ---
|
|
589
|
+
message AbsorbRemoteFolderChangesRequestBody {
|
|
587
590
|
message Options {
|
|
588
591
|
common.UInt64Value local_version = 1;
|
|
589
592
|
common.StringValue postfix_for_name_overlaps = 2;
|
|
@@ -592,6 +595,6 @@ message MergeFolderCurrentAndRemoteVersionsRequestBody {
|
|
|
592
595
|
string path = 1;
|
|
593
596
|
Options opts = 2;
|
|
594
597
|
}
|
|
595
|
-
message
|
|
598
|
+
message AbsorbRemoteFolderChangesReplyBody {
|
|
596
599
|
common.UInt64Value new_version = 1;
|
|
597
600
|
}
|