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
|
@@ -36691,25 +36691,25 @@ $root.fs = (function() {
|
|
|
36691
36691
|
return AdoptRemoteFolderItemRequestBody;
|
|
36692
36692
|
})();
|
|
36693
36693
|
|
|
36694
|
-
fs.
|
|
36694
|
+
fs.AbsorbRemoteFolderChangesRequestBody = (function() {
|
|
36695
36695
|
|
|
36696
36696
|
/**
|
|
36697
|
-
* Properties of
|
|
36697
|
+
* Properties of an AbsorbRemoteFolderChangesRequestBody.
|
|
36698
36698
|
* @memberof fs
|
|
36699
|
-
* @interface
|
|
36700
|
-
* @property {string|null} [path]
|
|
36701
|
-
* @property {fs.
|
|
36699
|
+
* @interface IAbsorbRemoteFolderChangesRequestBody
|
|
36700
|
+
* @property {string|null} [path] AbsorbRemoteFolderChangesRequestBody path
|
|
36701
|
+
* @property {fs.AbsorbRemoteFolderChangesRequestBody.IOptions|null} [opts] AbsorbRemoteFolderChangesRequestBody opts
|
|
36702
36702
|
*/
|
|
36703
36703
|
|
|
36704
36704
|
/**
|
|
36705
|
-
* Constructs a new
|
|
36705
|
+
* Constructs a new AbsorbRemoteFolderChangesRequestBody.
|
|
36706
36706
|
* @memberof fs
|
|
36707
|
-
* @classdesc Represents
|
|
36708
|
-
* @implements
|
|
36707
|
+
* @classdesc Represents an AbsorbRemoteFolderChangesRequestBody.
|
|
36708
|
+
* @implements IAbsorbRemoteFolderChangesRequestBody
|
|
36709
36709
|
* @constructor
|
|
36710
|
-
* @param {fs.
|
|
36710
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody=} [properties] Properties to set
|
|
36711
36711
|
*/
|
|
36712
|
-
function
|
|
36712
|
+
function AbsorbRemoteFolderChangesRequestBody(properties) {
|
|
36713
36713
|
if (properties)
|
|
36714
36714
|
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
|
36715
36715
|
if (properties[keys[i]] != null)
|
|
@@ -36717,80 +36717,80 @@ $root.fs = (function() {
|
|
|
36717
36717
|
}
|
|
36718
36718
|
|
|
36719
36719
|
/**
|
|
36720
|
-
*
|
|
36720
|
+
* AbsorbRemoteFolderChangesRequestBody path.
|
|
36721
36721
|
* @member {string} path
|
|
36722
|
-
* @memberof fs.
|
|
36722
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36723
36723
|
* @instance
|
|
36724
36724
|
*/
|
|
36725
|
-
|
|
36725
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.path = "";
|
|
36726
36726
|
|
|
36727
36727
|
/**
|
|
36728
|
-
*
|
|
36729
|
-
* @member {fs.
|
|
36730
|
-
* @memberof fs.
|
|
36728
|
+
* AbsorbRemoteFolderChangesRequestBody opts.
|
|
36729
|
+
* @member {fs.AbsorbRemoteFolderChangesRequestBody.IOptions|null|undefined} opts
|
|
36730
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36731
36731
|
* @instance
|
|
36732
36732
|
*/
|
|
36733
|
-
|
|
36733
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.opts = null;
|
|
36734
36734
|
|
|
36735
36735
|
/**
|
|
36736
|
-
* Creates a new
|
|
36736
|
+
* Creates a new AbsorbRemoteFolderChangesRequestBody instance using the specified properties.
|
|
36737
36737
|
* @function create
|
|
36738
|
-
* @memberof fs.
|
|
36738
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36739
36739
|
* @static
|
|
36740
|
-
* @param {fs.
|
|
36741
|
-
* @returns {fs.
|
|
36740
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody=} [properties] Properties to set
|
|
36741
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody instance
|
|
36742
36742
|
*/
|
|
36743
|
-
|
|
36744
|
-
return new
|
|
36743
|
+
AbsorbRemoteFolderChangesRequestBody.create = function create(properties) {
|
|
36744
|
+
return new AbsorbRemoteFolderChangesRequestBody(properties);
|
|
36745
36745
|
};
|
|
36746
36746
|
|
|
36747
36747
|
/**
|
|
36748
|
-
* Encodes the specified
|
|
36748
|
+
* Encodes the specified AbsorbRemoteFolderChangesRequestBody message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.verify|verify} messages.
|
|
36749
36749
|
* @function encode
|
|
36750
|
-
* @memberof fs.
|
|
36750
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36751
36751
|
* @static
|
|
36752
|
-
* @param {fs.
|
|
36752
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody message or plain object to encode
|
|
36753
36753
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
36754
36754
|
* @returns {$protobuf.Writer} Writer
|
|
36755
36755
|
*/
|
|
36756
|
-
|
|
36756
|
+
AbsorbRemoteFolderChangesRequestBody.encode = function encode(message, writer) {
|
|
36757
36757
|
if (!writer)
|
|
36758
36758
|
writer = $Writer.create();
|
|
36759
36759
|
if (message.path != null && Object.hasOwnProperty.call(message, "path"))
|
|
36760
36760
|
writer.uint32(/* id 1, wireType 2 =*/10).string(message.path);
|
|
36761
36761
|
if (message.opts != null && Object.hasOwnProperty.call(message, "opts"))
|
|
36762
|
-
$root.fs.
|
|
36762
|
+
$root.fs.AbsorbRemoteFolderChangesRequestBody.Options.encode(message.opts, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
|
|
36763
36763
|
return writer;
|
|
36764
36764
|
};
|
|
36765
36765
|
|
|
36766
36766
|
/**
|
|
36767
|
-
* Encodes the specified
|
|
36767
|
+
* Encodes the specified AbsorbRemoteFolderChangesRequestBody message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.verify|verify} messages.
|
|
36768
36768
|
* @function encodeDelimited
|
|
36769
|
-
* @memberof fs.
|
|
36769
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36770
36770
|
* @static
|
|
36771
|
-
* @param {fs.
|
|
36771
|
+
* @param {fs.IAbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody message or plain object to encode
|
|
36772
36772
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
36773
36773
|
* @returns {$protobuf.Writer} Writer
|
|
36774
36774
|
*/
|
|
36775
|
-
|
|
36775
|
+
AbsorbRemoteFolderChangesRequestBody.encodeDelimited = function encodeDelimited(message, writer) {
|
|
36776
36776
|
return this.encode(message, writer).ldelim();
|
|
36777
36777
|
};
|
|
36778
36778
|
|
|
36779
36779
|
/**
|
|
36780
|
-
* Decodes
|
|
36780
|
+
* Decodes an AbsorbRemoteFolderChangesRequestBody message from the specified reader or buffer.
|
|
36781
36781
|
* @function decode
|
|
36782
|
-
* @memberof fs.
|
|
36782
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36783
36783
|
* @static
|
|
36784
36784
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
36785
36785
|
* @param {number} [length] Message length if known beforehand
|
|
36786
|
-
* @returns {fs.
|
|
36786
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
36787
36787
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36788
36788
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36789
36789
|
*/
|
|
36790
|
-
|
|
36790
|
+
AbsorbRemoteFolderChangesRequestBody.decode = function decode(reader, length, error) {
|
|
36791
36791
|
if (!(reader instanceof $Reader))
|
|
36792
36792
|
reader = $Reader.create(reader);
|
|
36793
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
36793
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesRequestBody();
|
|
36794
36794
|
while (reader.pos < end) {
|
|
36795
36795
|
var tag = reader.uint32();
|
|
36796
36796
|
if (tag === error)
|
|
@@ -36801,7 +36801,7 @@ $root.fs = (function() {
|
|
|
36801
36801
|
break;
|
|
36802
36802
|
}
|
|
36803
36803
|
case 2: {
|
|
36804
|
-
message.opts = $root.fs.
|
|
36804
|
+
message.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.decode(reader, reader.uint32());
|
|
36805
36805
|
break;
|
|
36806
36806
|
}
|
|
36807
36807
|
default:
|
|
@@ -36813,37 +36813,37 @@ $root.fs = (function() {
|
|
|
36813
36813
|
};
|
|
36814
36814
|
|
|
36815
36815
|
/**
|
|
36816
|
-
* Decodes
|
|
36816
|
+
* Decodes an AbsorbRemoteFolderChangesRequestBody message from the specified reader or buffer, length delimited.
|
|
36817
36817
|
* @function decodeDelimited
|
|
36818
|
-
* @memberof fs.
|
|
36818
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36819
36819
|
* @static
|
|
36820
36820
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
36821
|
-
* @returns {fs.
|
|
36821
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
36822
36822
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36823
36823
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36824
36824
|
*/
|
|
36825
|
-
|
|
36825
|
+
AbsorbRemoteFolderChangesRequestBody.decodeDelimited = function decodeDelimited(reader) {
|
|
36826
36826
|
if (!(reader instanceof $Reader))
|
|
36827
36827
|
reader = new $Reader(reader);
|
|
36828
36828
|
return this.decode(reader, reader.uint32());
|
|
36829
36829
|
};
|
|
36830
36830
|
|
|
36831
36831
|
/**
|
|
36832
|
-
* Verifies
|
|
36832
|
+
* Verifies an AbsorbRemoteFolderChangesRequestBody message.
|
|
36833
36833
|
* @function verify
|
|
36834
|
-
* @memberof fs.
|
|
36834
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36835
36835
|
* @static
|
|
36836
36836
|
* @param {Object.<string,*>} message Plain object to verify
|
|
36837
36837
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
36838
36838
|
*/
|
|
36839
|
-
|
|
36839
|
+
AbsorbRemoteFolderChangesRequestBody.verify = function verify(message) {
|
|
36840
36840
|
if (typeof message !== "object" || message === null)
|
|
36841
36841
|
return "object expected";
|
|
36842
36842
|
if (message.path != null && message.hasOwnProperty("path"))
|
|
36843
36843
|
if (!$util.isString(message.path))
|
|
36844
36844
|
return "path: string expected";
|
|
36845
36845
|
if (message.opts != null && message.hasOwnProperty("opts")) {
|
|
36846
|
-
var error = $root.fs.
|
|
36846
|
+
var error = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.verify(message.opts);
|
|
36847
36847
|
if (error)
|
|
36848
36848
|
return "opts." + error;
|
|
36849
36849
|
}
|
|
@@ -36851,37 +36851,37 @@ $root.fs = (function() {
|
|
|
36851
36851
|
};
|
|
36852
36852
|
|
|
36853
36853
|
/**
|
|
36854
|
-
* Creates
|
|
36854
|
+
* Creates an AbsorbRemoteFolderChangesRequestBody message from a plain object. Also converts values to their respective internal types.
|
|
36855
36855
|
* @function fromObject
|
|
36856
|
-
* @memberof fs.
|
|
36856
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36857
36857
|
* @static
|
|
36858
36858
|
* @param {Object.<string,*>} object Plain object
|
|
36859
|
-
* @returns {fs.
|
|
36859
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody} AbsorbRemoteFolderChangesRequestBody
|
|
36860
36860
|
*/
|
|
36861
|
-
|
|
36862
|
-
if (object instanceof $root.fs.
|
|
36861
|
+
AbsorbRemoteFolderChangesRequestBody.fromObject = function fromObject(object) {
|
|
36862
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesRequestBody)
|
|
36863
36863
|
return object;
|
|
36864
|
-
var message = new $root.fs.
|
|
36864
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesRequestBody();
|
|
36865
36865
|
if (object.path != null)
|
|
36866
36866
|
message.path = String(object.path);
|
|
36867
36867
|
if (object.opts != null) {
|
|
36868
36868
|
if (typeof object.opts !== "object")
|
|
36869
|
-
throw TypeError(".fs.
|
|
36870
|
-
message.opts = $root.fs.
|
|
36869
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.opts: object expected");
|
|
36870
|
+
message.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.fromObject(object.opts);
|
|
36871
36871
|
}
|
|
36872
36872
|
return message;
|
|
36873
36873
|
};
|
|
36874
36874
|
|
|
36875
36875
|
/**
|
|
36876
|
-
* Creates a plain object from
|
|
36876
|
+
* Creates a plain object from an AbsorbRemoteFolderChangesRequestBody message. Also converts values to other types if specified.
|
|
36877
36877
|
* @function toObject
|
|
36878
|
-
* @memberof fs.
|
|
36878
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36879
36879
|
* @static
|
|
36880
|
-
* @param {fs.
|
|
36880
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody} message AbsorbRemoteFolderChangesRequestBody
|
|
36881
36881
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
36882
36882
|
* @returns {Object.<string,*>} Plain object
|
|
36883
36883
|
*/
|
|
36884
|
-
|
|
36884
|
+
AbsorbRemoteFolderChangesRequestBody.toObject = function toObject(message, options) {
|
|
36885
36885
|
if (!options)
|
|
36886
36886
|
options = {};
|
|
36887
36887
|
var object = {};
|
|
@@ -36892,41 +36892,41 @@ $root.fs = (function() {
|
|
|
36892
36892
|
if (message.path != null && message.hasOwnProperty("path"))
|
|
36893
36893
|
object.path = message.path;
|
|
36894
36894
|
if (message.opts != null && message.hasOwnProperty("opts"))
|
|
36895
|
-
object.opts = $root.fs.
|
|
36895
|
+
object.opts = $root.fs.AbsorbRemoteFolderChangesRequestBody.Options.toObject(message.opts, options);
|
|
36896
36896
|
return object;
|
|
36897
36897
|
};
|
|
36898
36898
|
|
|
36899
36899
|
/**
|
|
36900
|
-
* Converts this
|
|
36900
|
+
* Converts this AbsorbRemoteFolderChangesRequestBody to JSON.
|
|
36901
36901
|
* @function toJSON
|
|
36902
|
-
* @memberof fs.
|
|
36902
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36903
36903
|
* @instance
|
|
36904
36904
|
* @returns {Object.<string,*>} JSON object
|
|
36905
36905
|
*/
|
|
36906
|
-
|
|
36906
|
+
AbsorbRemoteFolderChangesRequestBody.prototype.toJSON = function toJSON() {
|
|
36907
36907
|
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
|
36908
36908
|
};
|
|
36909
36909
|
|
|
36910
36910
|
/**
|
|
36911
|
-
* Gets the default type url for
|
|
36911
|
+
* Gets the default type url for AbsorbRemoteFolderChangesRequestBody
|
|
36912
36912
|
* @function getTypeUrl
|
|
36913
|
-
* @memberof fs.
|
|
36913
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36914
36914
|
* @static
|
|
36915
36915
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
36916
36916
|
* @returns {string} The default type url
|
|
36917
36917
|
*/
|
|
36918
|
-
|
|
36918
|
+
AbsorbRemoteFolderChangesRequestBody.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
|
36919
36919
|
if (typeUrlPrefix === undefined) {
|
|
36920
36920
|
typeUrlPrefix = "type.googleapis.com";
|
|
36921
36921
|
}
|
|
36922
|
-
return typeUrlPrefix + "/fs.
|
|
36922
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesRequestBody";
|
|
36923
36923
|
};
|
|
36924
36924
|
|
|
36925
|
-
|
|
36925
|
+
AbsorbRemoteFolderChangesRequestBody.Options = (function() {
|
|
36926
36926
|
|
|
36927
36927
|
/**
|
|
36928
36928
|
* Properties of an Options.
|
|
36929
|
-
* @memberof fs.
|
|
36929
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36930
36930
|
* @interface IOptions
|
|
36931
36931
|
* @property {common.IUInt64Value|null} [localVersion] Options localVersion
|
|
36932
36932
|
* @property {common.IStringValue|null} [postfixForNameOverlaps] Options postfixForNameOverlaps
|
|
@@ -36935,11 +36935,11 @@ $root.fs = (function() {
|
|
|
36935
36935
|
|
|
36936
36936
|
/**
|
|
36937
36937
|
* Constructs a new Options.
|
|
36938
|
-
* @memberof fs.
|
|
36938
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody
|
|
36939
36939
|
* @classdesc Represents an Options.
|
|
36940
36940
|
* @implements IOptions
|
|
36941
36941
|
* @constructor
|
|
36942
|
-
* @param {fs.
|
|
36942
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions=} [properties] Properties to set
|
|
36943
36943
|
*/
|
|
36944
36944
|
function Options(properties) {
|
|
36945
36945
|
if (properties)
|
|
@@ -36951,7 +36951,7 @@ $root.fs = (function() {
|
|
|
36951
36951
|
/**
|
|
36952
36952
|
* Options localVersion.
|
|
36953
36953
|
* @member {common.IUInt64Value|null|undefined} localVersion
|
|
36954
|
-
* @memberof fs.
|
|
36954
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
36955
36955
|
* @instance
|
|
36956
36956
|
*/
|
|
36957
36957
|
Options.prototype.localVersion = null;
|
|
@@ -36959,7 +36959,7 @@ $root.fs = (function() {
|
|
|
36959
36959
|
/**
|
|
36960
36960
|
* Options postfixForNameOverlaps.
|
|
36961
36961
|
* @member {common.IStringValue|null|undefined} postfixForNameOverlaps
|
|
36962
|
-
* @memberof fs.
|
|
36962
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
36963
36963
|
* @instance
|
|
36964
36964
|
*/
|
|
36965
36965
|
Options.prototype.postfixForNameOverlaps = null;
|
|
@@ -36967,7 +36967,7 @@ $root.fs = (function() {
|
|
|
36967
36967
|
/**
|
|
36968
36968
|
* Options remoteVersion.
|
|
36969
36969
|
* @member {common.IUInt64Value|null|undefined} remoteVersion
|
|
36970
|
-
* @memberof fs.
|
|
36970
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
36971
36971
|
* @instance
|
|
36972
36972
|
*/
|
|
36973
36973
|
Options.prototype.remoteVersion = null;
|
|
@@ -36975,21 +36975,21 @@ $root.fs = (function() {
|
|
|
36975
36975
|
/**
|
|
36976
36976
|
* Creates a new Options instance using the specified properties.
|
|
36977
36977
|
* @function create
|
|
36978
|
-
* @memberof fs.
|
|
36978
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
36979
36979
|
* @static
|
|
36980
|
-
* @param {fs.
|
|
36981
|
-
* @returns {fs.
|
|
36980
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions=} [properties] Properties to set
|
|
36981
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options instance
|
|
36982
36982
|
*/
|
|
36983
36983
|
Options.create = function create(properties) {
|
|
36984
36984
|
return new Options(properties);
|
|
36985
36985
|
};
|
|
36986
36986
|
|
|
36987
36987
|
/**
|
|
36988
|
-
* Encodes the specified Options message. Does not implicitly {@link fs.
|
|
36988
|
+
* Encodes the specified Options message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.Options.verify|verify} messages.
|
|
36989
36989
|
* @function encode
|
|
36990
|
-
* @memberof fs.
|
|
36990
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
36991
36991
|
* @static
|
|
36992
|
-
* @param {fs.
|
|
36992
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions} message Options message or plain object to encode
|
|
36993
36993
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
36994
36994
|
* @returns {$protobuf.Writer} Writer
|
|
36995
36995
|
*/
|
|
@@ -37006,11 +37006,11 @@ $root.fs = (function() {
|
|
|
37006
37006
|
};
|
|
37007
37007
|
|
|
37008
37008
|
/**
|
|
37009
|
-
* Encodes the specified Options message, length delimited. Does not implicitly {@link fs.
|
|
37009
|
+
* Encodes the specified Options message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesRequestBody.Options.verify|verify} messages.
|
|
37010
37010
|
* @function encodeDelimited
|
|
37011
|
-
* @memberof fs.
|
|
37011
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37012
37012
|
* @static
|
|
37013
|
-
* @param {fs.
|
|
37013
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.IOptions} message Options message or plain object to encode
|
|
37014
37014
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
37015
37015
|
* @returns {$protobuf.Writer} Writer
|
|
37016
37016
|
*/
|
|
@@ -37021,18 +37021,18 @@ $root.fs = (function() {
|
|
|
37021
37021
|
/**
|
|
37022
37022
|
* Decodes an Options message from the specified reader or buffer.
|
|
37023
37023
|
* @function decode
|
|
37024
|
-
* @memberof fs.
|
|
37024
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37025
37025
|
* @static
|
|
37026
37026
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
37027
37027
|
* @param {number} [length] Message length if known beforehand
|
|
37028
|
-
* @returns {fs.
|
|
37028
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
37029
37029
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37030
37030
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37031
37031
|
*/
|
|
37032
37032
|
Options.decode = function decode(reader, length, error) {
|
|
37033
37033
|
if (!(reader instanceof $Reader))
|
|
37034
37034
|
reader = $Reader.create(reader);
|
|
37035
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
37035
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesRequestBody.Options();
|
|
37036
37036
|
while (reader.pos < end) {
|
|
37037
37037
|
var tag = reader.uint32();
|
|
37038
37038
|
if (tag === error)
|
|
@@ -37061,10 +37061,10 @@ $root.fs = (function() {
|
|
|
37061
37061
|
/**
|
|
37062
37062
|
* Decodes an Options message from the specified reader or buffer, length delimited.
|
|
37063
37063
|
* @function decodeDelimited
|
|
37064
|
-
* @memberof fs.
|
|
37064
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37065
37065
|
* @static
|
|
37066
37066
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
37067
|
-
* @returns {fs.
|
|
37067
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
37068
37068
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37069
37069
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37070
37070
|
*/
|
|
@@ -37077,7 +37077,7 @@ $root.fs = (function() {
|
|
|
37077
37077
|
/**
|
|
37078
37078
|
* Verifies an Options message.
|
|
37079
37079
|
* @function verify
|
|
37080
|
-
* @memberof fs.
|
|
37080
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37081
37081
|
* @static
|
|
37082
37082
|
* @param {Object.<string,*>} message Plain object to verify
|
|
37083
37083
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
@@ -37106,28 +37106,28 @@ $root.fs = (function() {
|
|
|
37106
37106
|
/**
|
|
37107
37107
|
* Creates an Options message from a plain object. Also converts values to their respective internal types.
|
|
37108
37108
|
* @function fromObject
|
|
37109
|
-
* @memberof fs.
|
|
37109
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37110
37110
|
* @static
|
|
37111
37111
|
* @param {Object.<string,*>} object Plain object
|
|
37112
|
-
* @returns {fs.
|
|
37112
|
+
* @returns {fs.AbsorbRemoteFolderChangesRequestBody.Options} Options
|
|
37113
37113
|
*/
|
|
37114
37114
|
Options.fromObject = function fromObject(object) {
|
|
37115
|
-
if (object instanceof $root.fs.
|
|
37115
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesRequestBody.Options)
|
|
37116
37116
|
return object;
|
|
37117
|
-
var message = new $root.fs.
|
|
37117
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesRequestBody.Options();
|
|
37118
37118
|
if (object.localVersion != null) {
|
|
37119
37119
|
if (typeof object.localVersion !== "object")
|
|
37120
|
-
throw TypeError(".fs.
|
|
37120
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.localVersion: object expected");
|
|
37121
37121
|
message.localVersion = $root.common.UInt64Value.fromObject(object.localVersion);
|
|
37122
37122
|
}
|
|
37123
37123
|
if (object.postfixForNameOverlaps != null) {
|
|
37124
37124
|
if (typeof object.postfixForNameOverlaps !== "object")
|
|
37125
|
-
throw TypeError(".fs.
|
|
37125
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.postfixForNameOverlaps: object expected");
|
|
37126
37126
|
message.postfixForNameOverlaps = $root.common.StringValue.fromObject(object.postfixForNameOverlaps);
|
|
37127
37127
|
}
|
|
37128
37128
|
if (object.remoteVersion != null) {
|
|
37129
37129
|
if (typeof object.remoteVersion !== "object")
|
|
37130
|
-
throw TypeError(".fs.
|
|
37130
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesRequestBody.Options.remoteVersion: object expected");
|
|
37131
37131
|
message.remoteVersion = $root.common.UInt64Value.fromObject(object.remoteVersion);
|
|
37132
37132
|
}
|
|
37133
37133
|
return message;
|
|
@@ -37136,9 +37136,9 @@ $root.fs = (function() {
|
|
|
37136
37136
|
/**
|
|
37137
37137
|
* Creates a plain object from an Options message. Also converts values to other types if specified.
|
|
37138
37138
|
* @function toObject
|
|
37139
|
-
* @memberof fs.
|
|
37139
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37140
37140
|
* @static
|
|
37141
|
-
* @param {fs.
|
|
37141
|
+
* @param {fs.AbsorbRemoteFolderChangesRequestBody.Options} message Options
|
|
37142
37142
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
37143
37143
|
* @returns {Object.<string,*>} Plain object
|
|
37144
37144
|
*/
|
|
@@ -37163,7 +37163,7 @@ $root.fs = (function() {
|
|
|
37163
37163
|
/**
|
|
37164
37164
|
* Converts this Options to JSON.
|
|
37165
37165
|
* @function toJSON
|
|
37166
|
-
* @memberof fs.
|
|
37166
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37167
37167
|
* @instance
|
|
37168
37168
|
* @returns {Object.<string,*>} JSON object
|
|
37169
37169
|
*/
|
|
@@ -37174,7 +37174,7 @@ $root.fs = (function() {
|
|
|
37174
37174
|
/**
|
|
37175
37175
|
* Gets the default type url for Options
|
|
37176
37176
|
* @function getTypeUrl
|
|
37177
|
-
* @memberof fs.
|
|
37177
|
+
* @memberof fs.AbsorbRemoteFolderChangesRequestBody.Options
|
|
37178
37178
|
* @static
|
|
37179
37179
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37180
37180
|
* @returns {string} The default type url
|
|
@@ -37183,33 +37183,33 @@ $root.fs = (function() {
|
|
|
37183
37183
|
if (typeUrlPrefix === undefined) {
|
|
37184
37184
|
typeUrlPrefix = "type.googleapis.com";
|
|
37185
37185
|
}
|
|
37186
|
-
return typeUrlPrefix + "/fs.
|
|
37186
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesRequestBody.Options";
|
|
37187
37187
|
};
|
|
37188
37188
|
|
|
37189
37189
|
return Options;
|
|
37190
37190
|
})();
|
|
37191
37191
|
|
|
37192
|
-
return
|
|
37192
|
+
return AbsorbRemoteFolderChangesRequestBody;
|
|
37193
37193
|
})();
|
|
37194
37194
|
|
|
37195
|
-
fs.
|
|
37195
|
+
fs.AbsorbRemoteFolderChangesReplyBody = (function() {
|
|
37196
37196
|
|
|
37197
37197
|
/**
|
|
37198
|
-
* Properties of
|
|
37198
|
+
* Properties of an AbsorbRemoteFolderChangesReplyBody.
|
|
37199
37199
|
* @memberof fs
|
|
37200
|
-
* @interface
|
|
37201
|
-
* @property {common.IUInt64Value|null} [newVersion]
|
|
37200
|
+
* @interface IAbsorbRemoteFolderChangesReplyBody
|
|
37201
|
+
* @property {common.IUInt64Value|null} [newVersion] AbsorbRemoteFolderChangesReplyBody newVersion
|
|
37202
37202
|
*/
|
|
37203
37203
|
|
|
37204
37204
|
/**
|
|
37205
|
-
* Constructs a new
|
|
37205
|
+
* Constructs a new AbsorbRemoteFolderChangesReplyBody.
|
|
37206
37206
|
* @memberof fs
|
|
37207
|
-
* @classdesc Represents
|
|
37208
|
-
* @implements
|
|
37207
|
+
* @classdesc Represents an AbsorbRemoteFolderChangesReplyBody.
|
|
37208
|
+
* @implements IAbsorbRemoteFolderChangesReplyBody
|
|
37209
37209
|
* @constructor
|
|
37210
|
-
* @param {fs.
|
|
37210
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody=} [properties] Properties to set
|
|
37211
37211
|
*/
|
|
37212
|
-
function
|
|
37212
|
+
function AbsorbRemoteFolderChangesReplyBody(properties) {
|
|
37213
37213
|
if (properties)
|
|
37214
37214
|
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
|
37215
37215
|
if (properties[keys[i]] != null)
|
|
@@ -37217,35 +37217,35 @@ $root.fs = (function() {
|
|
|
37217
37217
|
}
|
|
37218
37218
|
|
|
37219
37219
|
/**
|
|
37220
|
-
*
|
|
37220
|
+
* AbsorbRemoteFolderChangesReplyBody newVersion.
|
|
37221
37221
|
* @member {common.IUInt64Value|null|undefined} newVersion
|
|
37222
|
-
* @memberof fs.
|
|
37222
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37223
37223
|
* @instance
|
|
37224
37224
|
*/
|
|
37225
|
-
|
|
37225
|
+
AbsorbRemoteFolderChangesReplyBody.prototype.newVersion = null;
|
|
37226
37226
|
|
|
37227
37227
|
/**
|
|
37228
|
-
* Creates a new
|
|
37228
|
+
* Creates a new AbsorbRemoteFolderChangesReplyBody instance using the specified properties.
|
|
37229
37229
|
* @function create
|
|
37230
|
-
* @memberof fs.
|
|
37230
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37231
37231
|
* @static
|
|
37232
|
-
* @param {fs.
|
|
37233
|
-
* @returns {fs.
|
|
37232
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody=} [properties] Properties to set
|
|
37233
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody instance
|
|
37234
37234
|
*/
|
|
37235
|
-
|
|
37236
|
-
return new
|
|
37235
|
+
AbsorbRemoteFolderChangesReplyBody.create = function create(properties) {
|
|
37236
|
+
return new AbsorbRemoteFolderChangesReplyBody(properties);
|
|
37237
37237
|
};
|
|
37238
37238
|
|
|
37239
37239
|
/**
|
|
37240
|
-
* Encodes the specified
|
|
37240
|
+
* Encodes the specified AbsorbRemoteFolderChangesReplyBody message. Does not implicitly {@link fs.AbsorbRemoteFolderChangesReplyBody.verify|verify} messages.
|
|
37241
37241
|
* @function encode
|
|
37242
|
-
* @memberof fs.
|
|
37242
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37243
37243
|
* @static
|
|
37244
|
-
* @param {fs.
|
|
37244
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody message or plain object to encode
|
|
37245
37245
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
37246
37246
|
* @returns {$protobuf.Writer} Writer
|
|
37247
37247
|
*/
|
|
37248
|
-
|
|
37248
|
+
AbsorbRemoteFolderChangesReplyBody.encode = function encode(message, writer) {
|
|
37249
37249
|
if (!writer)
|
|
37250
37250
|
writer = $Writer.create();
|
|
37251
37251
|
if (message.newVersion != null && Object.hasOwnProperty.call(message, "newVersion"))
|
|
@@ -37254,33 +37254,33 @@ $root.fs = (function() {
|
|
|
37254
37254
|
};
|
|
37255
37255
|
|
|
37256
37256
|
/**
|
|
37257
|
-
* Encodes the specified
|
|
37257
|
+
* Encodes the specified AbsorbRemoteFolderChangesReplyBody message, length delimited. Does not implicitly {@link fs.AbsorbRemoteFolderChangesReplyBody.verify|verify} messages.
|
|
37258
37258
|
* @function encodeDelimited
|
|
37259
|
-
* @memberof fs.
|
|
37259
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37260
37260
|
* @static
|
|
37261
|
-
* @param {fs.
|
|
37261
|
+
* @param {fs.IAbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody message or plain object to encode
|
|
37262
37262
|
* @param {$protobuf.Writer} [writer] Writer to encode to
|
|
37263
37263
|
* @returns {$protobuf.Writer} Writer
|
|
37264
37264
|
*/
|
|
37265
|
-
|
|
37265
|
+
AbsorbRemoteFolderChangesReplyBody.encodeDelimited = function encodeDelimited(message, writer) {
|
|
37266
37266
|
return this.encode(message, writer).ldelim();
|
|
37267
37267
|
};
|
|
37268
37268
|
|
|
37269
37269
|
/**
|
|
37270
|
-
* Decodes
|
|
37270
|
+
* Decodes an AbsorbRemoteFolderChangesReplyBody message from the specified reader or buffer.
|
|
37271
37271
|
* @function decode
|
|
37272
|
-
* @memberof fs.
|
|
37272
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37273
37273
|
* @static
|
|
37274
37274
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
37275
37275
|
* @param {number} [length] Message length if known beforehand
|
|
37276
|
-
* @returns {fs.
|
|
37276
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
37277
37277
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37278
37278
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37279
37279
|
*/
|
|
37280
|
-
|
|
37280
|
+
AbsorbRemoteFolderChangesReplyBody.decode = function decode(reader, length, error) {
|
|
37281
37281
|
if (!(reader instanceof $Reader))
|
|
37282
37282
|
reader = $Reader.create(reader);
|
|
37283
|
-
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.
|
|
37283
|
+
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.fs.AbsorbRemoteFolderChangesReplyBody();
|
|
37284
37284
|
while (reader.pos < end) {
|
|
37285
37285
|
var tag = reader.uint32();
|
|
37286
37286
|
if (tag === error)
|
|
@@ -37299,30 +37299,30 @@ $root.fs = (function() {
|
|
|
37299
37299
|
};
|
|
37300
37300
|
|
|
37301
37301
|
/**
|
|
37302
|
-
* Decodes
|
|
37302
|
+
* Decodes an AbsorbRemoteFolderChangesReplyBody message from the specified reader or buffer, length delimited.
|
|
37303
37303
|
* @function decodeDelimited
|
|
37304
|
-
* @memberof fs.
|
|
37304
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37305
37305
|
* @static
|
|
37306
37306
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
|
37307
|
-
* @returns {fs.
|
|
37307
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
37308
37308
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37309
37309
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37310
37310
|
*/
|
|
37311
|
-
|
|
37311
|
+
AbsorbRemoteFolderChangesReplyBody.decodeDelimited = function decodeDelimited(reader) {
|
|
37312
37312
|
if (!(reader instanceof $Reader))
|
|
37313
37313
|
reader = new $Reader(reader);
|
|
37314
37314
|
return this.decode(reader, reader.uint32());
|
|
37315
37315
|
};
|
|
37316
37316
|
|
|
37317
37317
|
/**
|
|
37318
|
-
* Verifies
|
|
37318
|
+
* Verifies an AbsorbRemoteFolderChangesReplyBody message.
|
|
37319
37319
|
* @function verify
|
|
37320
|
-
* @memberof fs.
|
|
37320
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37321
37321
|
* @static
|
|
37322
37322
|
* @param {Object.<string,*>} message Plain object to verify
|
|
37323
37323
|
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
|
37324
37324
|
*/
|
|
37325
|
-
|
|
37325
|
+
AbsorbRemoteFolderChangesReplyBody.verify = function verify(message) {
|
|
37326
37326
|
if (typeof message !== "object" || message === null)
|
|
37327
37327
|
return "object expected";
|
|
37328
37328
|
if (message.newVersion != null && message.hasOwnProperty("newVersion")) {
|
|
@@ -37334,35 +37334,35 @@ $root.fs = (function() {
|
|
|
37334
37334
|
};
|
|
37335
37335
|
|
|
37336
37336
|
/**
|
|
37337
|
-
* Creates
|
|
37337
|
+
* Creates an AbsorbRemoteFolderChangesReplyBody message from a plain object. Also converts values to their respective internal types.
|
|
37338
37338
|
* @function fromObject
|
|
37339
|
-
* @memberof fs.
|
|
37339
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37340
37340
|
* @static
|
|
37341
37341
|
* @param {Object.<string,*>} object Plain object
|
|
37342
|
-
* @returns {fs.
|
|
37342
|
+
* @returns {fs.AbsorbRemoteFolderChangesReplyBody} AbsorbRemoteFolderChangesReplyBody
|
|
37343
37343
|
*/
|
|
37344
|
-
|
|
37345
|
-
if (object instanceof $root.fs.
|
|
37344
|
+
AbsorbRemoteFolderChangesReplyBody.fromObject = function fromObject(object) {
|
|
37345
|
+
if (object instanceof $root.fs.AbsorbRemoteFolderChangesReplyBody)
|
|
37346
37346
|
return object;
|
|
37347
|
-
var message = new $root.fs.
|
|
37347
|
+
var message = new $root.fs.AbsorbRemoteFolderChangesReplyBody();
|
|
37348
37348
|
if (object.newVersion != null) {
|
|
37349
37349
|
if (typeof object.newVersion !== "object")
|
|
37350
|
-
throw TypeError(".fs.
|
|
37350
|
+
throw TypeError(".fs.AbsorbRemoteFolderChangesReplyBody.newVersion: object expected");
|
|
37351
37351
|
message.newVersion = $root.common.UInt64Value.fromObject(object.newVersion);
|
|
37352
37352
|
}
|
|
37353
37353
|
return message;
|
|
37354
37354
|
};
|
|
37355
37355
|
|
|
37356
37356
|
/**
|
|
37357
|
-
* Creates a plain object from
|
|
37357
|
+
* Creates a plain object from an AbsorbRemoteFolderChangesReplyBody message. Also converts values to other types if specified.
|
|
37358
37358
|
* @function toObject
|
|
37359
|
-
* @memberof fs.
|
|
37359
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37360
37360
|
* @static
|
|
37361
|
-
* @param {fs.
|
|
37361
|
+
* @param {fs.AbsorbRemoteFolderChangesReplyBody} message AbsorbRemoteFolderChangesReplyBody
|
|
37362
37362
|
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
|
37363
37363
|
* @returns {Object.<string,*>} Plain object
|
|
37364
37364
|
*/
|
|
37365
|
-
|
|
37365
|
+
AbsorbRemoteFolderChangesReplyBody.toObject = function toObject(message, options) {
|
|
37366
37366
|
if (!options)
|
|
37367
37367
|
options = {};
|
|
37368
37368
|
var object = {};
|
|
@@ -37374,32 +37374,32 @@ $root.fs = (function() {
|
|
|
37374
37374
|
};
|
|
37375
37375
|
|
|
37376
37376
|
/**
|
|
37377
|
-
* Converts this
|
|
37377
|
+
* Converts this AbsorbRemoteFolderChangesReplyBody to JSON.
|
|
37378
37378
|
* @function toJSON
|
|
37379
|
-
* @memberof fs.
|
|
37379
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37380
37380
|
* @instance
|
|
37381
37381
|
* @returns {Object.<string,*>} JSON object
|
|
37382
37382
|
*/
|
|
37383
|
-
|
|
37383
|
+
AbsorbRemoteFolderChangesReplyBody.prototype.toJSON = function toJSON() {
|
|
37384
37384
|
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
|
37385
37385
|
};
|
|
37386
37386
|
|
|
37387
37387
|
/**
|
|
37388
|
-
* Gets the default type url for
|
|
37388
|
+
* Gets the default type url for AbsorbRemoteFolderChangesReplyBody
|
|
37389
37389
|
* @function getTypeUrl
|
|
37390
|
-
* @memberof fs.
|
|
37390
|
+
* @memberof fs.AbsorbRemoteFolderChangesReplyBody
|
|
37391
37391
|
* @static
|
|
37392
37392
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37393
37393
|
* @returns {string} The default type url
|
|
37394
37394
|
*/
|
|
37395
|
-
|
|
37395
|
+
AbsorbRemoteFolderChangesReplyBody.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
|
37396
37396
|
if (typeUrlPrefix === undefined) {
|
|
37397
37397
|
typeUrlPrefix = "type.googleapis.com";
|
|
37398
37398
|
}
|
|
37399
|
-
return typeUrlPrefix + "/fs.
|
|
37399
|
+
return typeUrlPrefix + "/fs.AbsorbRemoteFolderChangesReplyBody";
|
|
37400
37400
|
};
|
|
37401
37401
|
|
|
37402
|
-
return
|
|
37402
|
+
return AbsorbRemoteFolderChangesReplyBody;
|
|
37403
37403
|
})();
|
|
37404
37404
|
|
|
37405
37405
|
return fs;
|