@sniipwebmaster/realtime-message-client-grpcweb 22.14.398 → 22.14.414
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/dependancies/service_pb.js +27 -1
- package/package.json +1 -1
|
@@ -4758,7 +4758,7 @@ proto.realtimemessageapi.ImportItemSuccessEvent.prototype.toObject = function(op
|
|
|
4758
4758
|
*/
|
|
4759
4759
|
proto.realtimemessageapi.ImportItemSuccessEvent.toObject = function(includeInstance, msg) {
|
|
4760
4760
|
var f, obj = {
|
|
4761
|
-
|
|
4761
|
+
attachmentid: msg.getAttachmentid()
|
|
4762
4762
|
};
|
|
4763
4763
|
|
|
4764
4764
|
if (includeInstance) {
|
|
@@ -4795,6 +4795,10 @@ proto.realtimemessageapi.ImportItemSuccessEvent.deserializeBinaryFromReader = fu
|
|
|
4795
4795
|
}
|
|
4796
4796
|
var field = reader.getFieldNumber();
|
|
4797
4797
|
switch (field) {
|
|
4798
|
+
case 1:
|
|
4799
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4800
|
+
msg.setAttachmentid(value);
|
|
4801
|
+
break;
|
|
4798
4802
|
default:
|
|
4799
4803
|
reader.skipField();
|
|
4800
4804
|
break;
|
|
@@ -4833,6 +4837,13 @@ proto.realtimemessageapi.ImportItemSuccessEvent.prototype.serializeBinary = func
|
|
|
4833
4837
|
*/
|
|
4834
4838
|
proto.realtimemessageapi.ImportItemSuccessEvent.prototype.serializeBinaryToWriter = function (writer) {
|
|
4835
4839
|
var f = undefined;
|
|
4840
|
+
f = this.getAttachmentid();
|
|
4841
|
+
if (f !== 0) {
|
|
4842
|
+
writer.writeInt64(
|
|
4843
|
+
1,
|
|
4844
|
+
f
|
|
4845
|
+
);
|
|
4846
|
+
}
|
|
4836
4847
|
};
|
|
4837
4848
|
|
|
4838
4849
|
|
|
@@ -4845,6 +4856,21 @@ proto.realtimemessageapi.ImportItemSuccessEvent.prototype.cloneMessage = functio
|
|
|
4845
4856
|
};
|
|
4846
4857
|
|
|
4847
4858
|
|
|
4859
|
+
/**
|
|
4860
|
+
* optional int64 AttachmentId = 1;
|
|
4861
|
+
* @return {number}
|
|
4862
|
+
*/
|
|
4863
|
+
proto.realtimemessageapi.ImportItemSuccessEvent.prototype.getAttachmentid = function() {
|
|
4864
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
4865
|
+
};
|
|
4866
|
+
|
|
4867
|
+
|
|
4868
|
+
/** @param {number} value */
|
|
4869
|
+
proto.realtimemessageapi.ImportItemSuccessEvent.prototype.setAttachmentid = function(value) {
|
|
4870
|
+
jspb.Message.setField(this, 1, value);
|
|
4871
|
+
};
|
|
4872
|
+
|
|
4873
|
+
|
|
4848
4874
|
|
|
4849
4875
|
/**
|
|
4850
4876
|
* Generated by JsPbCodeGenerator.
|