protobuf-platform 1.1.72 → 1.1.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.1.72",
3
+ "version": "1.1.73",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -38,7 +38,7 @@ message PongResponse { string pong = 1; }
38
38
  message File { bytes media = 1; optional string file_name = 2; optional string file_type = 3; }
39
39
  message GetFileRequest { string file_name = 1; string instance_type = 2; }
40
40
 
41
- message PaginationRequest { int32 limit = 1; int32 offset = 2; optional PaymentSearchRequest c = 3; }
41
+ message PaginationRequest { int32 limit = 1; int32 offset = 2; optional PaymentSearchRequest payment_search_params = 3; }
42
42
  message PaymentSearchRequest {
43
43
  optional int32 deposit_id = 1;
44
44
  optional int32 withdrawal_id = 2;
@@ -1497,7 +1497,7 @@ proto.payment.PaginationRequest.toObject = function(includeInstance, msg) {
1497
1497
  var f, obj = {
1498
1498
  limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
1499
1499
  offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
1500
- c: (f = msg.getC()) && proto.payment.PaymentSearchRequest.toObject(includeInstance, f)
1500
+ paymentSearchParams: (f = msg.getPaymentSearchParams()) && proto.payment.PaymentSearchRequest.toObject(includeInstance, f)
1501
1501
  };
1502
1502
 
1503
1503
  if (includeInstance) {
@@ -1545,7 +1545,7 @@ proto.payment.PaginationRequest.deserializeBinaryFromReader = function(msg, read
1545
1545
  case 3:
1546
1546
  var value = new proto.payment.PaymentSearchRequest;
1547
1547
  reader.readMessage(value,proto.payment.PaymentSearchRequest.deserializeBinaryFromReader);
1548
- msg.setC(value);
1548
+ msg.setPaymentSearchParams(value);
1549
1549
  break;
1550
1550
  default:
1551
1551
  reader.skipField();
@@ -1590,7 +1590,7 @@ proto.payment.PaginationRequest.serializeBinaryToWriter = function(message, writ
1590
1590
  f
1591
1591
  );
1592
1592
  }
1593
- f = message.getC();
1593
+ f = message.getPaymentSearchParams();
1594
1594
  if (f != null) {
1595
1595
  writer.writeMessage(
1596
1596
  3,
@@ -1638,10 +1638,10 @@ proto.payment.PaginationRequest.prototype.setOffset = function(value) {
1638
1638
 
1639
1639
 
1640
1640
  /**
1641
- * optional PaymentSearchRequest c = 3;
1641
+ * optional PaymentSearchRequest payment_search_params = 3;
1642
1642
  * @return {?proto.payment.PaymentSearchRequest}
1643
1643
  */
1644
- proto.payment.PaginationRequest.prototype.getC = function() {
1644
+ proto.payment.PaginationRequest.prototype.getPaymentSearchParams = function() {
1645
1645
  return /** @type{?proto.payment.PaymentSearchRequest} */ (
1646
1646
  jspb.Message.getWrapperField(this, proto.payment.PaymentSearchRequest, 3));
1647
1647
  };
@@ -1651,7 +1651,7 @@ proto.payment.PaginationRequest.prototype.getC = function() {
1651
1651
  * @param {?proto.payment.PaymentSearchRequest|undefined} value
1652
1652
  * @return {!proto.payment.PaginationRequest} returns this
1653
1653
  */
1654
- proto.payment.PaginationRequest.prototype.setC = function(value) {
1654
+ proto.payment.PaginationRequest.prototype.setPaymentSearchParams = function(value) {
1655
1655
  return jspb.Message.setWrapperField(this, 3, value);
1656
1656
  };
1657
1657
 
@@ -1660,8 +1660,8 @@ proto.payment.PaginationRequest.prototype.setC = function(value) {
1660
1660
  * Clears the message field making it undefined.
1661
1661
  * @return {!proto.payment.PaginationRequest} returns this
1662
1662
  */
1663
- proto.payment.PaginationRequest.prototype.clearC = function() {
1664
- return this.setC(undefined);
1663
+ proto.payment.PaginationRequest.prototype.clearPaymentSearchParams = function() {
1664
+ return this.setPaymentSearchParams(undefined);
1665
1665
  };
1666
1666
 
1667
1667
 
@@ -1669,7 +1669,7 @@ proto.payment.PaginationRequest.prototype.clearC = function() {
1669
1669
  * Returns whether this field is set.
1670
1670
  * @return {boolean}
1671
1671
  */
1672
- proto.payment.PaginationRequest.prototype.hasC = function() {
1672
+ proto.payment.PaginationRequest.prototype.hasPaymentSearchParams = function() {
1673
1673
  return jspb.Message.getField(this, 3) != null;
1674
1674
  };
1675
1675