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/build/protos/fs.proto.js
CHANGED
|
@@ -15738,25 +15738,25 @@ $root.fs = (function() {
|
|
|
15738
15738
|
return AdoptRemoteFolderItemRequestBody;
|
|
15739
15739
|
})();
|
|
15740
15740
|
|
|
15741
|
-
fs.
|
|
15741
|
+
fs.AbsorbRemoteFolderChangesRequestBody = (function() {
|
|
15742
15742
|
|
|
15743
15743
|
/**
|
|
15744
|
-
* Properties of
|
|
15744
|
+
* Properties of an AbsorbRemoteFolderChangesRequestBody.
|
|
15745
15745
|
* @memberof fs
|
|
15746
|
-
* @interface
|
|
15747
|
-
* @property {string|null} [path]
|
|
15748
|
-
* @property {fs.
|
|
15746
|
+
* @interface IAbsorbRemoteFolderChangesRequestBody
|
|
15747
|
+
* @property {string|null} [path] AbsorbRemoteFolderChangesRequestBody path
|
|
15748
|
+
* @property {fs.AbsorbRemoteFolderChangesRequestBody.IOptions|null} [opts] AbsorbRemoteFolderChangesRequestBody opts
|
|
15749
15749
|
*/
|
|
15750
15750
|
|
|
15751
15751
|
/**
|
|
15752
|
-
* Constructs a new
|
|
15752
|
+
* Constructs a new AbsorbRemoteFolderChangesRequestBody.
|
|
15753
15753
|
* @memberof fs
|
|
15754
|
-
* @classdesc Represents
|
|
15755
|
-
* @implements
|
|
15754
|
+
* @classdesc Represents an AbsorbRemoteFolderChangesRequestBody.
|
|
15755
|
+
* @implements IAbsorbRemoteFolderChangesRequestBody
|
|
15756
15756
|
* @constructor
|
|
15757
|
-
* @param {fs.
|
|
15757
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody=} [properties] Properties to set
|
|
15758
15758
|
*/
|
|
15759
|
-
function
|
|
15759
|
+
function AbsorbRemoteFolderChangesRequestBody(properties) {
|
|
15760
15760
|
if (properties)
|
|
15761
15761
|
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
|
15762
15762
|
if (properties[keys[i]] != null)
|
|
@@ -15764,80 +15764,80 @@ $root.fs = (function() {
|
|
|
15764
15764
|
}
|
|
15765
15765
|
|
|
15766
15766
|
/**
|
|
15767
|
-
*
|
|
15767
|
+
* AbsorbRemoteFolderChangesRequestBody path.
|
|
15768
15768
|
* @member {string} path
|
|
15769
|
-
* @memberof fs.
|
|
15769
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15770
15770
|
* @instance
|
|
15771
15771
|
*/
|
|
15772
|
-
|
|
15772
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.path = "";
|
|
15773
15773
|
|
|
15774
15774
|
/**
|
|
15775
|
-
*
|
|
15776
|
-
* @member {fs.
|
|
15777
|
-
* @memberof fs.
|
|
15775
|
+
* AbsorbRemoteFolderChangesRequestBody opts.
|
|
15776
|
+
* @member {fs.AbsorbRemoteFolderChangesRequestBody.IOptions|null|undefined} opts
|
|
15777
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15778
15778
|
* @instance
|
|
15779
15779
|
*/
|
|
15780
|
-
|
|
15780
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.opts = null;
|
|
15781
15781
|
|
|
15782
15782
|
/**
|
|
15783
|
-
* Creates a new
|
|
15783
|
+
* Creates a new AbsorbRemoteFolderChangesRequestBody instance using the specified properties.
|
|
15784
15784
|
* @function create
|
|
15785
|
-
* @memberof fs.
|
|
15785
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15786
15786
|
* @static
|
|
15787
|
-
* @param {fs.
|
|
15788
|
-
* @returns {fs.
|
|
15787
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody=} [properties] Properties to set
|
|
15788
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody instance
|
|
15789
15789
|
*/
|
|
15790
|
-
|
|
15791
|
-
return new
|
|
15790
|
+
AbsorbRemoteFolderChangesRequestBody.create = function create(properties) {
|
|
15791
|
+
return new AbsorbRemoteFolderChangesRequestBody(properties);
|
|
15792
15792
|
};
|
|
15793
15793
|
|
|
15794
15794
|
/**
|
|
15795
|
-
* Encodes the specified
|
|
15795
|
+
* Encodes the specified AbsorbRemoteFolderChangesRequestBody message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.verify|verify} messages.
|
|
15796
15796
|
* @function encode
|
|
15797
|
-
* @memberof fs.
|
|
15797
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15798
15798
|
* @static
|
|
15799
|
-
* @param {fs.
|
|
15799
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody message or plain object to encode
|
|
15800
15800
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
15801
15801
|
* @returns {$protobuf.Writer} Writer
|
|
15802
15802
|
*/
|
|
15803
|
-
|
|
15803
|
+
AbsorbRemoteFolderChangesRequestBody.encode = function encode(message, writer) {
|
|
15804
15804
|
if (!writer)
|
|
15805
15805
|
writer = $Writer.create();
|
|
15806
15806
|
if (message.path != null && Object.hasOwnProperty.call(message, "path"))
|
|
15807
15807
|
writer.uint32(/* id 1, wireType 2 =*/10).string(message.path);
|
|
15808
15808
|
if (message.opts != null && Object.hasOwnProperty.call(message, "opts"))
|
|
15809
|
-
$root.fs.
|
|
15809
|
+
$root.fs.AbsorbRemoteFolderChangesRequestBody.Options.encode(message.opts, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
|
|
15810
15810
|
return writer;
|
|
15811
15811
|
};
|
|
15812
15812
|
|
|
15813
15813
|
/**
|
|
15814
|
-
* Encodes the specified
|
|
15814
|
+
* Encodes the specified AbsorbRemoteFolderChangesRequestBody message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.verify|verify} messages.
|
|
15815
15815
|
* @function encodeDelimited
|
|
15816
|
-
* @memberof fs.
|
|
15816
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15817
15817
|
* @static
|
|
15818
|
-
* @param {fs.
|
|
15818
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody message or plain object to encode
|
|
15819
15819
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
15820
15820
|
* @returns {$protobuf.Writer} Writer
|
|
15821
15821
|
*/
|
|
15822
|
-
|
|
15822
|
+
AbsorbRemoteFolderChangesRequestBody.encodeDelimited = function encodeDelimited(message, writer) {
|
|
15823
15823
|
return this.encode(message, writer).ldelim();
|
|
15824
15824
|
};
|
|
15825
15825
|
|
|
15826
15826
|
/**
|
|
15827
|
-
* Decodes
|
|
15827
|
+
* Decodes an AbsorbRemoteFolderChangesRequestBody message from the specified reader or buffer.
|
|
15828
15828
|
* @function decode
|
|
15829
|
-
* @memberof fs.
|
|
15829
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15830
15830
|
* @static
|
|
15831
15831
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
15832
15832
|
* @param {number} [length] Message length if known beforehand
|
|
15833
|
-
* @returns {fs.
|
|
15833
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
15834
15834
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
15835
15835
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
15836
15836
|
*/
|
|
15837
|
-
|
|
15837
|
+
AbsorbRemoteFolderChangesRequestBody.decode = function decode(reader, length, error) {
|
|
15838
15838
|
if (!(reader instanceof $Reader))
|
|
15839
15839
|
reader = $Reader.create(reader);
|
|
15840
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
15840
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesRequestBody();
|
|
15841
15841
|
while (reader.pos < end) {
|
|
15842
15842
|
var tag = reader.uint32();
|
|
15843
15843
|
if (tag === error)
|
|
@@ -15848,7 +15848,7 @@ $root.fs = (function() {
|
|
|
15848
15848
|
break;
|
|
15849
15849
|
}
|
|
15850
15850
|
case 2: {
|
|
15851
|
-
message.opts = $root.fs.
|
|
15851
|
+
message.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.decode(reader, reader.uint32());
|
|
15852
15852
|
break;
|
|
15853
15853
|
}
|
|
15854
15854
|
default:
|
|
@@ -15860,37 +15860,37 @@ $root.fs = (function() {
|
|
|
15860
15860
|
};
|
|
15861
15861
|
|
|
15862
15862
|
/**
|
|
15863
|
-
* Decodes
|
|
15863
|
+
* Decodes an AbsorbRemoteFolderChangesRequestBody message from the specified reader or buffer, length delimited.
|
|
15864
15864
|
* @function decodeDelimited
|
|
15865
|
-
* @memberof fs.
|
|
15865
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15866
15866
|
* @static
|
|
15867
15867
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
15868
|
-
* @returns {fs.
|
|
15868
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
15869
15869
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
15870
15870
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
15871
15871
|
*/
|
|
15872
|
-
|
|
15872
|
+
AbsorbRemoteFolderChangesRequestBody.decodeDelimited = function decodeDelimited(reader) {
|
|
15873
15873
|
if (!(reader instanceof $Reader))
|
|
15874
15874
|
reader = new $Reader(reader);
|
|
15875
15875
|
return this.decode(reader, reader.uint32());
|
|
15876
15876
|
};
|
|
15877
15877
|
|
|
15878
15878
|
/**
|
|
15879
|
-
* Verifies
|
|
15879
|
+
* Verifies an AbsorbRemoteFolderChangesRequestBody message.
|
|
15880
15880
|
* @function verify
|
|
15881
|
-
* @memberof fs.
|
|
15881
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15882
15882
|
* @static
|
|
15883
15883
|
* @param {Object.<string,*>} message Plain object to verify
|
|
15884
15884
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
15885
15885
|
*/
|
|
15886
|
-
|
|
15886
|
+
AbsorbRemoteFolderChangesRequestBody.verify = function verify(message) {
|
|
15887
15887
|
if (typeof message !== "object" || message === null)
|
|
15888
15888
|
return "object expected";
|
|
15889
15889
|
if (message.path != null && message.hasOwnProperty("path"))
|
|
15890
15890
|
if (!$util.isString(message.path))
|
|
15891
15891
|
return "path: string expected";
|
|
15892
15892
|
if (message.opts != null && message.hasOwnProperty("opts")) {
|
|
15893
|
-
var error = $root.fs.
|
|
15893
|
+
var error = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.verify(message.opts);
|
|
15894
15894
|
if (error)
|
|
15895
15895
|
return "opts." + error;
|
|
15896
15896
|
}
|
|
@@ -15898,37 +15898,37 @@ $root.fs = (function() {
|
|
|
15898
15898
|
};
|
|
15899
15899
|
|
|
15900
15900
|
/**
|
|
15901
|
-
* Creates
|
|
15901
|
+
* Creates an AbsorbRemoteFolderChangesRequestBody message from a plain object. Also converts values to their respective internal types.
|
|
15902
15902
|
* @function fromObject
|
|
15903
|
-
* @memberof fs.
|
|
15903
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15904
15904
|
* @static
|
|
15905
15905
|
* @param {Object.<string,*>} object Plain object
|
|
15906
|
-
* @returns {fs.
|
|
15906
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
15907
15907
|
*/
|
|
15908
|
-
|
|
15909
|
-
if (object instanceof $root.fs.
|
|
15908
|
+
AbsorbRemoteFolderChangesRequestBody.fromObject = function fromObject(object) {
|
|
15909
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesRequestBody)
|
|
15910
15910
|
return object;
|
|
15911
|
-
var message = new $root.fs.
|
|
15911
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesRequestBody();
|
|
15912
15912
|
if (object.path != null)
|
|
15913
15913
|
message.path = String(object.path);
|
|
15914
15914
|
if (object.opts != null) {
|
|
15915
15915
|
if (typeof object.opts !== "object")
|
|
15916
|
-
throw TypeError(".fs.
|
|
15917
|
-
message.opts = $root.fs.
|
|
15916
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.opts: object expected");
|
|
15917
|
+
message.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.fromObject(object.opts);
|
|
15918
15918
|
}
|
|
15919
15919
|
return message;
|
|
15920
15920
|
};
|
|
15921
15921
|
|
|
15922
15922
|
/**
|
|
15923
|
-
* Creates a plain object from
|
|
15923
|
+
* Creates a plain object from an AbsorbRemoteFolderChangesRequestBody message. Also converts values to other types if specified.
|
|
15924
15924
|
* @function toObject
|
|
15925
|
-
* @memberof fs.
|
|
15925
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15926
15926
|
* @static
|
|
15927
|
-
* @param {fs.
|
|
15927
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody
|
|
15928
15928
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
15929
15929
|
* @returns {Object.<string,*>} Plain object
|
|
15930
15930
|
*/
|
|
15931
|
-
|
|
15931
|
+
AbsorbRemoteFolderChangesRequestBody.toObject = function toObject(message, options) {
|
|
15932
15932
|
if (!options)
|
|
15933
15933
|
options = {};
|
|
15934
15934
|
var object = {};
|
|
@@ -15939,41 +15939,41 @@ $root.fs = (function() {
|
|
|
15939
15939
|
if (message.path != null && message.hasOwnProperty("path"))
|
|
15940
15940
|
object.path = message.path;
|
|
15941
15941
|
if (message.opts != null && message.hasOwnProperty("opts"))
|
|
15942
|
-
object.opts = $root.fs.
|
|
15942
|
+
object.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.toObject(message.opts, options);
|
|
15943
15943
|
return object;
|
|
15944
15944
|
};
|
|
15945
15945
|
|
|
15946
15946
|
/**
|
|
15947
|
-
* Converts this
|
|
15947
|
+
* Converts this AbsorbRemoteFolderChangesRequestBody to JSON.
|
|
15948
15948
|
* @function toJSON
|
|
15949
|
-
* @memberof fs.
|
|
15949
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15950
15950
|
* @instance
|
|
15951
15951
|
* @returns {Object.<string,*>} JSON object
|
|
15952
15952
|
*/
|
|
15953
|
-
|
|
15953
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.toJSON = function toJSON() {
|
|
15954
15954
|
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
|
15955
15955
|
};
|
|
15956
15956
|
|
|
15957
15957
|
/**
|
|
15958
|
-
* Gets the default type url for
|
|
15958
|
+
* Gets the default type url for AbsorbRemoteFolderChangesRequestBody
|
|
15959
15959
|
* @function getTypeUrl
|
|
15960
|
-
* @memberof fs.
|
|
15960
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15961
15961
|
* @static
|
|
15962
15962
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
15963
15963
|
* @returns {string} The default type url
|
|
15964
15964
|
*/
|
|
15965
|
-
|
|
15965
|
+
AbsorbRemoteFolderChangesRequestBody.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
|
15966
15966
|
if (typeUrlPrefix === undefined) {
|
|
15967
15967
|
typeUrlPrefix = "type.googleapis.com";
|
|
15968
15968
|
}
|
|
15969
|
-
return typeUrlPrefix + "/fs.
|
|
15969
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesRequestBody";
|
|
15970
15970
|
};
|
|
15971
15971
|
|
|
15972
|
-
|
|
15972
|
+
AbsorbRemoteFolderChangesRequestBody.Options = (function() {
|
|
15973
15973
|
|
|
15974
15974
|
/**
|
|
15975
15975
|
* Properties of an Options.
|
|
15976
|
-
* @memberof fs.
|
|
15976
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15977
15977
|
* @interface IOptions
|
|
15978
15978
|
* @property {common.IUInt64Value|null} [localVersion] Options localVersion
|
|
15979
15979
|
* @property {common.IStringValue|null} [postfixForNameOverlaps] Options postfixForNameOverlaps
|
|
@@ -15982,11 +15982,11 @@ $root.fs = (function() {
|
|
|
15982
15982
|
|
|
15983
15983
|
/**
|
|
15984
15984
|
* Constructs a new Options.
|
|
15985
|
-
* @memberof fs.
|
|
15985
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
15986
15986
|
* @classdesc Represents an Options.
|
|
15987
15987
|
* @implements IOptions
|
|
15988
15988
|
* @constructor
|
|
15989
|
-
* @param {fs.
|
|
15989
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions=} [properties] Properties to set
|
|
15990
15990
|
*/
|
|
15991
15991
|
function Options(properties) {
|
|
15992
15992
|
if (properties)
|
|
@@ -15998,7 +15998,7 @@ $root.fs = (function() {
|
|
|
15998
15998
|
/**
|
|
15999
15999
|
* Options localVersion.
|
|
16000
16000
|
* @member {common.IUInt64Value|null|undefined} localVersion
|
|
16001
|
-
* @memberof fs.
|
|
16001
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16002
16002
|
* @instance
|
|
16003
16003
|
*/
|
|
16004
16004
|
Options.prototype.localVersion = null;
|
|
@@ -16006,7 +16006,7 @@ $root.fs = (function() {
|
|
|
16006
16006
|
/**
|
|
16007
16007
|
* Options postfixForNameOverlaps.
|
|
16008
16008
|
* @member {common.IStringValue|null|undefined} postfixForNameOverlaps
|
|
16009
|
-
* @memberof fs.
|
|
16009
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16010
16010
|
* @instance
|
|
16011
16011
|
*/
|
|
16012
16012
|
Options.prototype.postfixForNameOverlaps = null;
|
|
@@ -16014,7 +16014,7 @@ $root.fs = (function() {
|
|
|
16014
16014
|
/**
|
|
16015
16015
|
* Options remoteVersion.
|
|
16016
16016
|
* @member {common.IUInt64Value|null|undefined} remoteVersion
|
|
16017
|
-
* @memberof fs.
|
|
16017
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16018
16018
|
* @instance
|
|
16019
16019
|
*/
|
|
16020
16020
|
Options.prototype.remoteVersion = null;
|
|
@@ -16022,21 +16022,21 @@ $root.fs = (function() {
|
|
|
16022
16022
|
/**
|
|
16023
16023
|
* Creates a new Options instance using the specified properties.
|
|
16024
16024
|
* @function create
|
|
16025
|
-
* @memberof fs.
|
|
16025
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16026
16026
|
* @static
|
|
16027
|
-
* @param {fs.
|
|
16028
|
-
* @returns {fs.
|
|
16027
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions=} [properties] Properties to set
|
|
16028
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options instance
|
|
16029
16029
|
*/
|
|
16030
16030
|
Options.create = function create(properties) {
|
|
16031
16031
|
return new Options(properties);
|
|
16032
16032
|
};
|
|
16033
16033
|
|
|
16034
16034
|
/**
|
|
16035
|
-
* Encodes the specified Options message. Does not implicitly {@link fs.
|
|
16035
|
+
* Encodes the specified Options message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.Options.verify|verify} messages.
|
|
16036
16036
|
* @function encode
|
|
16037
|
-
* @memberof fs.
|
|
16037
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16038
16038
|
* @static
|
|
16039
|
-
* @param {fs.
|
|
16039
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions} message Options message or plain object to encode
|
|
16040
16040
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
16041
16041
|
* @returns {$protobuf.Writer} Writer
|
|
16042
16042
|
*/
|
|
@@ -16053,11 +16053,11 @@ $root.fs = (function() {
|
|
|
16053
16053
|
};
|
|
16054
16054
|
|
|
16055
16055
|
/**
|
|
16056
|
-
* Encodes the specified Options message, length delimited. Does not implicitly {@link fs.
|
|
16056
|
+
* Encodes the specified Options message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.Options.verify|verify} messages.
|
|
16057
16057
|
* @function encodeDelimited
|
|
16058
|
-
* @memberof fs.
|
|
16058
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16059
16059
|
* @static
|
|
16060
|
-
* @param {fs.
|
|
16060
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions} message Options message or plain object to encode
|
|
16061
16061
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
16062
16062
|
* @returns {$protobuf.Writer} Writer
|
|
16063
16063
|
*/
|
|
@@ -16068,18 +16068,18 @@ $root.fs = (function() {
|
|
|
16068
16068
|
/**
|
|
16069
16069
|
* Decodes an Options message from the specified reader or buffer.
|
|
16070
16070
|
* @function decode
|
|
16071
|
-
* @memberof fs.
|
|
16071
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16072
16072
|
* @static
|
|
16073
16073
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
16074
16074
|
* @param {number} [length] Message length if known beforehand
|
|
16075
|
-
* @returns {fs.
|
|
16075
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
16076
16076
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16077
16077
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16078
16078
|
*/
|
|
16079
16079
|
Options.decode = function decode(reader, length, error) {
|
|
16080
16080
|
if (!(reader instanceof $Reader))
|
|
16081
16081
|
reader = $Reader.create(reader);
|
|
16082
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
16082
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesRequestBody.Options();
|
|
16083
16083
|
while (reader.pos < end) {
|
|
16084
16084
|
var tag = reader.uint32();
|
|
16085
16085
|
if (tag === error)
|
|
@@ -16108,10 +16108,10 @@ $root.fs = (function() {
|
|
|
16108
16108
|
/**
|
|
16109
16109
|
* Decodes an Options message from the specified reader or buffer, length delimited.
|
|
16110
16110
|
* @function decodeDelimited
|
|
16111
|
-
* @memberof fs.
|
|
16111
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16112
16112
|
* @static
|
|
16113
16113
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
16114
|
-
* @returns {fs.
|
|
16114
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
16115
16115
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16116
16116
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16117
16117
|
*/
|
|
@@ -16124,7 +16124,7 @@ $root.fs = (function() {
|
|
|
16124
16124
|
/**
|
|
16125
16125
|
* Verifies an Options message.
|
|
16126
16126
|
* @function verify
|
|
16127
|
-
* @memberof fs.
|
|
16127
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16128
16128
|
* @static
|
|
16129
16129
|
* @param {Object.<string,*>} message Plain object to verify
|
|
16130
16130
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
@@ -16153,28 +16153,28 @@ $root.fs = (function() {
|
|
|
16153
16153
|
/**
|
|
16154
16154
|
* Creates an Options message from a plain object. Also converts values to their respective internal types.
|
|
16155
16155
|
* @function fromObject
|
|
16156
|
-
* @memberof fs.
|
|
16156
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16157
16157
|
* @static
|
|
16158
16158
|
* @param {Object.<string,*>} object Plain object
|
|
16159
|
-
* @returns {fs.
|
|
16159
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
16160
16160
|
*/
|
|
16161
16161
|
Options.fromObject = function fromObject(object) {
|
|
16162
|
-
if (object instanceof $root.fs.
|
|
16162
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesRequestBody.Options)
|
|
16163
16163
|
return object;
|
|
16164
|
-
var message = new $root.fs.
|
|
16164
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesRequestBody.Options();
|
|
16165
16165
|
if (object.localVersion != null) {
|
|
16166
16166
|
if (typeof object.localVersion !== "object")
|
|
16167
|
-
throw TypeError(".fs.
|
|
16167
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.localVersion: object expected");
|
|
16168
16168
|
message.localVersion = $root.common.UInt64Value.fromObject(object.localVersion);
|
|
16169
16169
|
}
|
|
16170
16170
|
if (object.postfixForNameOverlaps != null) {
|
|
16171
16171
|
if (typeof object.postfixForNameOverlaps !== "object")
|
|
16172
|
-
throw TypeError(".fs.
|
|
16172
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.postfixForNameOverlaps: object expected");
|
|
16173
16173
|
message.postfixForNameOverlaps = $root.common.StringValue.fromObject(object.postfixForNameOverlaps);
|
|
16174
16174
|
}
|
|
16175
16175
|
if (object.remoteVersion != null) {
|
|
16176
16176
|
if (typeof object.remoteVersion !== "object")
|
|
16177
|
-
throw TypeError(".fs.
|
|
16177
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.remoteVersion: object expected");
|
|
16178
16178
|
message.remoteVersion = $root.common.UInt64Value.fromObject(object.remoteVersion);
|
|
16179
16179
|
}
|
|
16180
16180
|
return message;
|
|
@@ -16183,9 +16183,9 @@ $root.fs = (function() {
|
|
|
16183
16183
|
/**
|
|
16184
16184
|
* Creates a plain object from an Options message. Also converts values to other types if specified.
|
|
16185
16185
|
* @function toObject
|
|
16186
|
-
* @memberof fs.
|
|
16186
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16187
16187
|
* @static
|
|
16188
|
-
* @param {fs.
|
|
16188
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.Options} message Options
|
|
16189
16189
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
16190
16190
|
* @returns {Object.<string,*>} Plain object
|
|
16191
16191
|
*/
|
|
@@ -16210,7 +16210,7 @@ $root.fs = (function() {
|
|
|
16210
16210
|
/**
|
|
16211
16211
|
* Converts this Options to JSON.
|
|
16212
16212
|
* @function toJSON
|
|
16213
|
-
* @memberof fs.
|
|
16213
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16214
16214
|
* @instance
|
|
16215
16215
|
* @returns {Object.<string,*>} JSON object
|
|
16216
16216
|
*/
|
|
@@ -16221,7 +16221,7 @@ $root.fs = (function() {
|
|
|
16221
16221
|
/**
|
|
16222
16222
|
* Gets the default type url for Options
|
|
16223
16223
|
* @function getTypeUrl
|
|
16224
|
-
* @memberof fs.
|
|
16224
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
16225
16225
|
* @static
|
|
16226
16226
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
16227
16227
|
* @returns {string} The default type url
|
|
@@ -16230,33 +16230,33 @@ $root.fs = (function() {
|
|
|
16230
16230
|
if (typeUrlPrefix === undefined) {
|
|
16231
16231
|
typeUrlPrefix = "type.googleapis.com";
|
|
16232
16232
|
}
|
|
16233
|
-
return typeUrlPrefix + "/fs.
|
|
16233
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesRequestBody.Options";
|
|
16234
16234
|
};
|
|
16235
16235
|
|
|
16236
16236
|
return Options;
|
|
16237
16237
|
})();
|
|
16238
16238
|
|
|
16239
|
-
return
|
|
16239
|
+
return AbsorbRemoteFolderChangesRequestBody;
|
|
16240
16240
|
})();
|
|
16241
16241
|
|
|
16242
|
-
fs.
|
|
16242
|
+
fs.AbsorbRemoteFolderChangesReplyBody = (function() {
|
|
16243
16243
|
|
|
16244
16244
|
/**
|
|
16245
|
-
* Properties of
|
|
16245
|
+
* Properties of an AbsorbRemoteFolderChangesReplyBody.
|
|
16246
16246
|
* @memberof fs
|
|
16247
|
-
* @interface
|
|
16248
|
-
* @property {common.IUInt64Value|null} [newVersion]
|
|
16247
|
+
* @interface IAbsorbRemoteFolderChangesReplyBody
|
|
16248
|
+
* @property {common.IUInt64Value|null} [newVersion] AbsorbRemoteFolderChangesReplyBody newVersion
|
|
16249
16249
|
*/
|
|
16250
16250
|
|
|
16251
16251
|
/**
|
|
16252
|
-
* Constructs a new
|
|
16252
|
+
* Constructs a new AbsorbRemoteFolderChangesReplyBody.
|
|
16253
16253
|
* @memberof fs
|
|
16254
|
-
* @classdesc Represents
|
|
16255
|
-
* @implements
|
|
16254
|
+
* @classdesc Represents an AbsorbRemoteFolderChangesReplyBody.
|
|
16255
|
+
* @implements IAbsorbRemoteFolderChangesReplyBody
|
|
16256
16256
|
* @constructor
|
|
16257
|
-
* @param {fs.
|
|
16257
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody=} [properties] Properties to set
|
|
16258
16258
|
*/
|
|
16259
|
-
function
|
|
16259
|
+
function AbsorbRemoteFolderChangesReplyBody(properties) {
|
|
16260
16260
|
if (properties)
|
|
16261
16261
|
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
|
16262
16262
|
if (properties[keys[i]] != null)
|
|
@@ -16264,35 +16264,35 @@ $root.fs = (function() {
|
|
|
16264
16264
|
}
|
|
16265
16265
|
|
|
16266
16266
|
/**
|
|
16267
|
-
*
|
|
16267
|
+
* AbsorbRemoteFolderChangesReplyBody newVersion.
|
|
16268
16268
|
* @member {common.IUInt64Value|null|undefined} newVersion
|
|
16269
|
-
* @memberof fs.
|
|
16269
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16270
16270
|
* @instance
|
|
16271
16271
|
*/
|
|
16272
|
-
|
|
16272
|
+
AbsorbRemoteFolderChangesReplyBody.prototype.newVersion = null;
|
|
16273
16273
|
|
|
16274
16274
|
/**
|
|
16275
|
-
* Creates a new
|
|
16275
|
+
* Creates a new AbsorbRemoteFolderChangesReplyBody instance using the specified properties.
|
|
16276
16276
|
* @function create
|
|
16277
|
-
* @memberof fs.
|
|
16277
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16278
16278
|
* @static
|
|
16279
|
-
* @param {fs.
|
|
16280
|
-
* @returns {fs.
|
|
16279
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody=} [properties] Properties to set
|
|
16280
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody instance
|
|
16281
16281
|
*/
|
|
16282
|
-
|
|
16283
|
-
return new
|
|
16282
|
+
AbsorbRemoteFolderChangesReplyBody.create = function create(properties) {
|
|
16283
|
+
return new AbsorbRemoteFolderChangesReplyBody(properties);
|
|
16284
16284
|
};
|
|
16285
16285
|
|
|
16286
16286
|
/**
|
|
16287
|
-
* Encodes the specified
|
|
16287
|
+
* Encodes the specified AbsorbRemoteFolderChangesReplyBody message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesReplyBody.verify|verify} messages.
|
|
16288
16288
|
* @function encode
|
|
16289
|
-
* @memberof fs.
|
|
16289
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16290
16290
|
* @static
|
|
16291
|
-
* @param {fs.
|
|
16291
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody message or plain object to encode
|
|
16292
16292
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
16293
16293
|
* @returns {$protobuf.Writer} Writer
|
|
16294
16294
|
*/
|
|
16295
|
-
|
|
16295
|
+
AbsorbRemoteFolderChangesReplyBody.encode = function encode(message, writer) {
|
|
16296
16296
|
if (!writer)
|
|
16297
16297
|
writer = $Writer.create();
|
|
16298
16298
|
if (message.newVersion != null && Object.hasOwnProperty.call(message, "newVersion"))
|
|
@@ -16301,33 +16301,33 @@ $root.fs = (function() {
|
|
|
16301
16301
|
};
|
|
16302
16302
|
|
|
16303
16303
|
/**
|
|
16304
|
-
* Encodes the specified
|
|
16304
|
+
* Encodes the specified AbsorbRemoteFolderChangesReplyBody message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesReplyBody.verify|verify} messages.
|
|
16305
16305
|
* @function encodeDelimited
|
|
16306
|
-
* @memberof fs.
|
|
16306
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16307
16307
|
* @static
|
|
16308
|
-
* @param {fs.
|
|
16308
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody message or plain object to encode
|
|
16309
16309
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
16310
16310
|
* @returns {$protobuf.Writer} Writer
|
|
16311
16311
|
*/
|
|
16312
|
-
|
|
16312
|
+
AbsorbRemoteFolderChangesReplyBody.encodeDelimited = function encodeDelimited(message, writer) {
|
|
16313
16313
|
return this.encode(message, writer).ldelim();
|
|
16314
16314
|
};
|
|
16315
16315
|
|
|
16316
16316
|
/**
|
|
16317
|
-
* Decodes
|
|
16317
|
+
* Decodes an AbsorbRemoteFolderChangesReplyBody message from the specified reader or buffer.
|
|
16318
16318
|
* @function decode
|
|
16319
|
-
* @memberof fs.
|
|
16319
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16320
16320
|
* @static
|
|
16321
16321
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
16322
16322
|
* @param {number} [length] Message length if known beforehand
|
|
16323
|
-
* @returns {fs.
|
|
16323
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
16324
16324
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16325
16325
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16326
16326
|
*/
|
|
16327
|
-
|
|
16327
|
+
AbsorbRemoteFolderChangesReplyBody.decode = function decode(reader, length, error) {
|
|
16328
16328
|
if (!(reader instanceof $Reader))
|
|
16329
16329
|
reader = $Reader.create(reader);
|
|
16330
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
16330
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesReplyBody();
|
|
16331
16331
|
while (reader.pos < end) {
|
|
16332
16332
|
var tag = reader.uint32();
|
|
16333
16333
|
if (tag === error)
|
|
@@ -16346,30 +16346,30 @@ $root.fs = (function() {
|
|
|
16346
16346
|
};
|
|
16347
16347
|
|
|
16348
16348
|
/**
|
|
16349
|
-
* Decodes
|
|
16349
|
+
* Decodes an AbsorbRemoteFolderChangesReplyBody message from the specified reader or buffer, length delimited.
|
|
16350
16350
|
* @function decodeDelimited
|
|
16351
|
-
* @memberof fs.
|
|
16351
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16352
16352
|
* @static
|
|
16353
16353
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
16354
|
-
* @returns {fs.
|
|
16354
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
16355
16355
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16356
16356
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16357
16357
|
*/
|
|
16358
|
-
|
|
16358
|
+
AbsorbRemoteFolderChangesReplyBody.decodeDelimited = function decodeDelimited(reader) {
|
|
16359
16359
|
if (!(reader instanceof $Reader))
|
|
16360
16360
|
reader = new $Reader(reader);
|
|
16361
16361
|
return this.decode(reader, reader.uint32());
|
|
16362
16362
|
};
|
|
16363
16363
|
|
|
16364
16364
|
/**
|
|
16365
|
-
* Verifies
|
|
16365
|
+
* Verifies an AbsorbRemoteFolderChangesReplyBody message.
|
|
16366
16366
|
* @function verify
|
|
16367
|
-
* @memberof fs.
|
|
16367
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16368
16368
|
* @static
|
|
16369
16369
|
* @param {Object.<string,*>} message Plain object to verify
|
|
16370
16370
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
16371
16371
|
*/
|
|
16372
|
-
|
|
16372
|
+
AbsorbRemoteFolderChangesReplyBody.verify = function verify(message) {
|
|
16373
16373
|
if (typeof message !== "object" || message === null)
|
|
16374
16374
|
return "object expected";
|
|
16375
16375
|
if (message.newVersion != null && message.hasOwnProperty("newVersion")) {
|
|
@@ -16381,35 +16381,35 @@ $root.fs = (function() {
|
|
|
16381
16381
|
};
|
|
16382
16382
|
|
|
16383
16383
|
/**
|
|
16384
|
-
* Creates
|
|
16384
|
+
* Creates an AbsorbRemoteFolderChangesReplyBody message from a plain object. Also converts values to their respective internal types.
|
|
16385
16385
|
* @function fromObject
|
|
16386
|
-
* @memberof fs.
|
|
16386
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16387
16387
|
* @static
|
|
16388
16388
|
* @param {Object.<string,*>} object Plain object
|
|
16389
|
-
* @returns {fs.
|
|
16389
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
16390
16390
|
*/
|
|
16391
|
-
|
|
16392
|
-
if (object instanceof $root.fs.
|
|
16391
|
+
AbsorbRemoteFolderChangesReplyBody.fromObject = function fromObject(object) {
|
|
16392
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesReplyBody)
|
|
16393
16393
|
return object;
|
|
16394
|
-
var message = new $root.fs.
|
|
16394
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesReplyBody();
|
|
16395
16395
|
if (object.newVersion != null) {
|
|
16396
16396
|
if (typeof object.newVersion !== "object")
|
|
16397
|
-
throw TypeError(".fs.
|
|
16397
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesReplyBody.newVersion: object expected");
|
|
16398
16398
|
message.newVersion = $root.common.UInt64Value.fromObject(object.newVersion);
|
|
16399
16399
|
}
|
|
16400
16400
|
return message;
|
|
16401
16401
|
};
|
|
16402
16402
|
|
|
16403
16403
|
/**
|
|
16404
|
-
* Creates a plain object from
|
|
16404
|
+
* Creates a plain object from an AbsorbRemoteFolderChangesReplyBody message. Also converts values to other types if specified.
|
|
16405
16405
|
* @function toObject
|
|
16406
|
-
* @memberof fs.
|
|
16406
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16407
16407
|
* @static
|
|
16408
|
-
* @param {fs.
|
|
16408
|
+
* @param {fs.AbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody
|
|
16409
16409
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
16410
16410
|
* @returns {Object.<string,*>} Plain object
|
|
16411
16411
|
*/
|
|
16412
|
-
|
|
16412
|
+
AbsorbRemoteFolderChangesReplyBody.toObject = function toObject(message, options) {
|
|
16413
16413
|
if (!options)
|
|
16414
16414
|
options = {};
|
|
16415
16415
|
var object = {};
|
|
@@ -16421,32 +16421,32 @@ $root.fs = (function() {
|
|
|
16421
16421
|
};
|
|
16422
16422
|
|
|
16423
16423
|
/**
|
|
16424
|
-
* Converts this
|
|
16424
|
+
* Converts this AbsorbRemoteFolderChangesReplyBody to JSON.
|
|
16425
16425
|
* @function toJSON
|
|
16426
|
-
* @memberof fs.
|
|
16426
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16427
16427
|
* @instance
|
|
16428
16428
|
* @returns {Object.<string,*>} JSON object
|
|
16429
16429
|
*/
|
|
16430
|
-
|
|
16430
|
+
AbsorbRemoteFolderChangesReplyBody.prototype.toJSON = function toJSON() {
|
|
16431
16431
|
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
|
16432
16432
|
};
|
|
16433
16433
|
|
|
16434
16434
|
/**
|
|
16435
|
-
* Gets the default type url for
|
|
16435
|
+
* Gets the default type url for AbsorbRemoteFolderChangesReplyBody
|
|
16436
16436
|
* @function getTypeUrl
|
|
16437
|
-
* @memberof fs.
|
|
16437
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
16438
16438
|
* @static
|
|
16439
16439
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
16440
16440
|
* @returns {string} The default type url
|
|
16441
16441
|
*/
|
|
16442
|
-
|
|
16442
|
+
AbsorbRemoteFolderChangesReplyBody.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
|
16443
16443
|
if (typeUrlPrefix === undefined) {
|
|
16444
16444
|
typeUrlPrefix = "type.googleapis.com";
|
|
16445
16445
|
}
|
|
16446
|
-
return typeUrlPrefix + "/fs.
|
|
16446
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesReplyBody";
|
|
16447
16447
|
};
|
|
16448
16448
|
|
|
16449
|
-
return
|
|
16449
|
+
return AbsorbRemoteFolderChangesReplyBody;
|
|
16450
16450
|
})();
|
|
16451
16451
|
|
|
16452
16452
|
return fs;
|