@sniipwebmaster/email-import-service-client-grpcweb 22.3.2646 → 22.3.2663
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 +28 -1
- package/package.json +1 -1
|
@@ -4523,7 +4523,8 @@ proto.sniipemailimportapi.RequestSyncSuccess.toObject = function(includeInstance
|
|
|
4523
4523
|
billid: msg.getBillid(),
|
|
4524
4524
|
billername: msg.getBillername(),
|
|
4525
4525
|
numberofbillscreated: msg.getNumberofbillscreated(),
|
|
4526
|
-
tokenid: msg.getTokenid()
|
|
4526
|
+
tokenid: msg.getTokenid(),
|
|
4527
|
+
emailsyncrequestid: msg.getEmailsyncrequestid()
|
|
4527
4528
|
};
|
|
4528
4529
|
|
|
4529
4530
|
if (includeInstance) {
|
|
@@ -4576,6 +4577,10 @@ proto.sniipemailimportapi.RequestSyncSuccess.deserializeBinaryFromReader = funct
|
|
|
4576
4577
|
var value = /** @type {number} */ (reader.readInt64());
|
|
4577
4578
|
msg.setTokenid(value);
|
|
4578
4579
|
break;
|
|
4580
|
+
case 5:
|
|
4581
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4582
|
+
msg.setEmailsyncrequestid(value);
|
|
4583
|
+
break;
|
|
4579
4584
|
default:
|
|
4580
4585
|
reader.skipField();
|
|
4581
4586
|
break;
|
|
@@ -4642,6 +4647,13 @@ proto.sniipemailimportapi.RequestSyncSuccess.prototype.serializeBinaryToWriter =
|
|
|
4642
4647
|
f
|
|
4643
4648
|
);
|
|
4644
4649
|
}
|
|
4650
|
+
f = this.getEmailsyncrequestid();
|
|
4651
|
+
if (f !== 0) {
|
|
4652
|
+
writer.writeInt64(
|
|
4653
|
+
5,
|
|
4654
|
+
f
|
|
4655
|
+
);
|
|
4656
|
+
}
|
|
4645
4657
|
};
|
|
4646
4658
|
|
|
4647
4659
|
|
|
@@ -4714,6 +4726,21 @@ proto.sniipemailimportapi.RequestSyncSuccess.prototype.setTokenid = function(val
|
|
|
4714
4726
|
};
|
|
4715
4727
|
|
|
4716
4728
|
|
|
4729
|
+
/**
|
|
4730
|
+
* optional int64 emailSyncRequestId = 5;
|
|
4731
|
+
* @return {number}
|
|
4732
|
+
*/
|
|
4733
|
+
proto.sniipemailimportapi.RequestSyncSuccess.prototype.getEmailsyncrequestid = function() {
|
|
4734
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 5, 0));
|
|
4735
|
+
};
|
|
4736
|
+
|
|
4737
|
+
|
|
4738
|
+
/** @param {number} value */
|
|
4739
|
+
proto.sniipemailimportapi.RequestSyncSuccess.prototype.setEmailsyncrequestid = function(value) {
|
|
4740
|
+
jspb.Message.setField(this, 5, value);
|
|
4741
|
+
};
|
|
4742
|
+
|
|
4743
|
+
|
|
4717
4744
|
|
|
4718
4745
|
/**
|
|
4719
4746
|
* Generated by JsPbCodeGenerator.
|