protobuf-platform 1.2.363 → 1.2.365

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.2.363",
3
+ "version": "1.2.365",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -90,6 +90,7 @@ message PaymentSearchRequest {
90
90
  repeated string operation_reason_code = 16;
91
91
  repeated string operation_status_code = 17;
92
92
  repeated string withdrawal_status_code = 18;
93
+ optional int32 config_is_active = 19;
93
94
  }
94
95
  message ItemsBunchRequest {
95
96
  repeated int32 ids = 1;
@@ -2636,7 +2636,8 @@ proto.payment.PaymentSearchRequest.toObject = function(includeInstance, msg) {
2636
2636
  operationTypeList: (f = jspb.Message.getRepeatedField(msg, 15)) == null ? undefined : f,
2637
2637
  operationReasonCodeList: (f = jspb.Message.getRepeatedField(msg, 16)) == null ? undefined : f,
2638
2638
  operationStatusCodeList: (f = jspb.Message.getRepeatedField(msg, 17)) == null ? undefined : f,
2639
- withdrawalStatusCodeList: (f = jspb.Message.getRepeatedField(msg, 18)) == null ? undefined : f
2639
+ withdrawalStatusCodeList: (f = jspb.Message.getRepeatedField(msg, 18)) == null ? undefined : f,
2640
+ configIsActive: jspb.Message.getFieldWithDefault(msg, 19, 0)
2640
2641
  };
2641
2642
 
2642
2643
  if (includeInstance) {
@@ -2753,6 +2754,10 @@ proto.payment.PaymentSearchRequest.deserializeBinaryFromReader = function(msg, r
2753
2754
  var value = /** @type {string} */ (reader.readString());
2754
2755
  msg.addWithdrawalStatusCode(value);
2755
2756
  break;
2757
+ case 19:
2758
+ var value = /** @type {number} */ (reader.readInt32());
2759
+ msg.setConfigIsActive(value);
2760
+ break;
2756
2761
  default:
2757
2762
  reader.skipField();
2758
2763
  break;
@@ -2908,6 +2913,13 @@ proto.payment.PaymentSearchRequest.serializeBinaryToWriter = function(message, w
2908
2913
  f
2909
2914
  );
2910
2915
  }
2916
+ f = /** @type {number} */ (jspb.Message.getField(message, 19));
2917
+ if (f != null) {
2918
+ writer.writeInt32(
2919
+ 19,
2920
+ f
2921
+ );
2922
+ }
2911
2923
  };
2912
2924
 
2913
2925
 
@@ -3569,6 +3581,42 @@ proto.payment.PaymentSearchRequest.prototype.clearWithdrawalStatusCodeList = fun
3569
3581
  };
3570
3582
 
3571
3583
 
3584
+ /**
3585
+ * optional int32 config_is_active = 19;
3586
+ * @return {number}
3587
+ */
3588
+ proto.payment.PaymentSearchRequest.prototype.getConfigIsActive = function() {
3589
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 19, 0));
3590
+ };
3591
+
3592
+
3593
+ /**
3594
+ * @param {number} value
3595
+ * @return {!proto.payment.PaymentSearchRequest} returns this
3596
+ */
3597
+ proto.payment.PaymentSearchRequest.prototype.setConfigIsActive = function(value) {
3598
+ return jspb.Message.setField(this, 19, value);
3599
+ };
3600
+
3601
+
3602
+ /**
3603
+ * Clears the field making it undefined.
3604
+ * @return {!proto.payment.PaymentSearchRequest} returns this
3605
+ */
3606
+ proto.payment.PaymentSearchRequest.prototype.clearConfigIsActive = function() {
3607
+ return jspb.Message.setField(this, 19, undefined);
3608
+ };
3609
+
3610
+
3611
+ /**
3612
+ * Returns whether this field is set.
3613
+ * @return {boolean}
3614
+ */
3615
+ proto.payment.PaymentSearchRequest.prototype.hasConfigIsActive = function() {
3616
+ return jspb.Message.getField(this, 19) != null;
3617
+ };
3618
+
3619
+
3572
3620
 
3573
3621
  /**
3574
3622
  * List of repeated fields within this message type.
package/user/user.proto CHANGED
@@ -210,6 +210,7 @@ message LoggedInResponse {
210
210
  optional string two_fa_status = 13;
211
211
  optional string two_fa_temp_token = 14;
212
212
  optional string two_fa_qr_data_url = 15;
213
+ optional int32 preset_id = 16;
213
214
  }
214
215
  message LoginRequest {
215
216
  optional string email = 1;
package/user/user_pb.js CHANGED
@@ -6886,7 +6886,8 @@ proto.user.LoggedInResponse.toObject = function(includeInstance, msg) {
6886
6886
  nickname: jspb.Message.getFieldWithDefault(msg, 12, ""),
6887
6887
  twoFaStatus: jspb.Message.getFieldWithDefault(msg, 13, ""),
6888
6888
  twoFaTempToken: jspb.Message.getFieldWithDefault(msg, 14, ""),
6889
- twoFaQrDataUrl: jspb.Message.getFieldWithDefault(msg, 15, "")
6889
+ twoFaQrDataUrl: jspb.Message.getFieldWithDefault(msg, 15, ""),
6890
+ presetId: jspb.Message.getFieldWithDefault(msg, 16, 0)
6890
6891
  };
6891
6892
 
6892
6893
  if (includeInstance) {
@@ -6983,6 +6984,10 @@ proto.user.LoggedInResponse.deserializeBinaryFromReader = function(msg, reader)
6983
6984
  var value = /** @type {string} */ (reader.readString());
6984
6985
  msg.setTwoFaQrDataUrl(value);
6985
6986
  break;
6987
+ case 16:
6988
+ var value = /** @type {number} */ (reader.readInt32());
6989
+ msg.setPresetId(value);
6990
+ break;
6986
6991
  default:
6987
6992
  reader.skipField();
6988
6993
  break;
@@ -7117,6 +7122,13 @@ proto.user.LoggedInResponse.serializeBinaryToWriter = function(message, writer)
7117
7122
  f
7118
7123
  );
7119
7124
  }
7125
+ f = /** @type {number} */ (jspb.Message.getField(message, 16));
7126
+ if (f != null) {
7127
+ writer.writeInt32(
7128
+ 16,
7129
+ f
7130
+ );
7131
+ }
7120
7132
  };
7121
7133
 
7122
7134
 
@@ -7606,6 +7618,42 @@ proto.user.LoggedInResponse.prototype.hasTwoFaQrDataUrl = function() {
7606
7618
  };
7607
7619
 
7608
7620
 
7621
+ /**
7622
+ * optional int32 preset_id = 16;
7623
+ * @return {number}
7624
+ */
7625
+ proto.user.LoggedInResponse.prototype.getPresetId = function() {
7626
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 16, 0));
7627
+ };
7628
+
7629
+
7630
+ /**
7631
+ * @param {number} value
7632
+ * @return {!proto.user.LoggedInResponse} returns this
7633
+ */
7634
+ proto.user.LoggedInResponse.prototype.setPresetId = function(value) {
7635
+ return jspb.Message.setField(this, 16, value);
7636
+ };
7637
+
7638
+
7639
+ /**
7640
+ * Clears the field making it undefined.
7641
+ * @return {!proto.user.LoggedInResponse} returns this
7642
+ */
7643
+ proto.user.LoggedInResponse.prototype.clearPresetId = function() {
7644
+ return jspb.Message.setField(this, 16, undefined);
7645
+ };
7646
+
7647
+
7648
+ /**
7649
+ * Returns whether this field is set.
7650
+ * @return {boolean}
7651
+ */
7652
+ proto.user.LoggedInResponse.prototype.hasPresetId = function() {
7653
+ return jspb.Message.getField(this, 16) != null;
7654
+ };
7655
+
7656
+
7609
7657
 
7610
7658
 
7611
7659