@sniipwebmaster/config-service-client-grpcweb-ts 26.4.2337 → 26.5.2363

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.
@@ -268,6 +268,12 @@ export class ConfigExtra extends jspb.Message {
268
268
  getAbacharacternormalisationsMap(): jspb.Map<string, string>;
269
269
  clearAbacharacternormalisationsMap(): ConfigExtra;
270
270
 
271
+ getPaytominagreementamount(): number;
272
+ setPaytominagreementamount(value: number): ConfigExtra;
273
+
274
+ getPaytomaxagreementamount(): number;
275
+ setPaytomaxagreementamount(value: number): ConfigExtra;
276
+
271
277
  serializeBinary(): Uint8Array;
272
278
  toObject(includeInstance?: boolean): ConfigExtra.AsObject;
273
279
  static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
@@ -329,6 +335,8 @@ export namespace ConfigExtra {
329
335
  paymentmethodtypepaymentflowvaluetagMap: Array<[string, string]>,
330
336
  abaallowedcharacters: string,
331
337
  abacharacternormalisationsMap: Array<[string, string]>,
338
+ paytominagreementamount: number,
339
+ paytomaxagreementamount: number,
332
340
  }
333
341
  }
334
342
 
@@ -490,6 +498,15 @@ export class BusinessRules extends jspb.Message {
490
498
  getPaytobankaccountsenabled(): boolean;
491
499
  setPaytobankaccountsenabled(value: boolean): BusinessRules;
492
500
 
501
+ getPaytopendingexpiryseconds(): number;
502
+ setPaytopendingexpiryseconds(value: number): BusinessRules;
503
+
504
+ getPaytominagreementamount(): number;
505
+ setPaytominagreementamount(value: number): BusinessRules;
506
+
507
+ getPaytomaxagreementamount(): number;
508
+ setPaytomaxagreementamount(value: number): BusinessRules;
509
+
493
510
  serializeBinary(): Uint8Array;
494
511
  toObject(includeInstance?: boolean): BusinessRules.AsObject;
495
512
  static toObject(includeInstance: boolean, msg: BusinessRules): BusinessRules.AsObject;
@@ -503,6 +520,9 @@ export namespace BusinessRules {
503
520
  abaallowedcharacters: string,
504
521
  abacharacternormalisationsMap: Array<[string, string]>,
505
522
  paytobankaccountsenabled: boolean,
523
+ paytopendingexpiryseconds: number,
524
+ paytominagreementamount: number,
525
+ paytomaxagreementamount: number,
506
526
  }
507
527
  }
508
528
 
@@ -1951,7 +1951,9 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
1951
1951
  click2paybetauser: jspb.Message.getBooleanFieldWithDefault(msg, 48, false),
1952
1952
  paymentmethodtypepaymentflowvaluetagMap: (f = msg.getPaymentmethodtypepaymentflowvaluetagMap()) ? f.toObject(includeInstance, undefined) : [],
1953
1953
  abaallowedcharacters: jspb.Message.getFieldWithDefault(msg, 50, ""),
1954
- abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : []
1954
+ abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : [],
1955
+ paytominagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 53, 0.0),
1956
+ paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 54, 0.0)
1955
1957
  };
1956
1958
 
1957
1959
  if (includeInstance) {
@@ -2200,6 +2202,14 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
2200
2202
  jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
2201
2203
  });
2202
2204
  break;
2205
+ case 53:
2206
+ var value = /** @type {number} */ (reader.readDouble());
2207
+ msg.setPaytominagreementamount(value);
2208
+ break;
2209
+ case 54:
2210
+ var value = /** @type {number} */ (reader.readDouble());
2211
+ msg.setPaytomaxagreementamount(value);
2212
+ break;
2203
2213
  default:
2204
2214
  reader.skipField();
2205
2215
  break;
@@ -2579,6 +2589,20 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
2579
2589
  if (f && f.getLength() > 0) {
2580
2590
  f.serializeBinary(51, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
2581
2591
  }
2592
+ f = message.getPaytominagreementamount();
2593
+ if (f !== 0.0) {
2594
+ writer.writeDouble(
2595
+ 53,
2596
+ f
2597
+ );
2598
+ }
2599
+ f = message.getPaytomaxagreementamount();
2600
+ if (f !== 0.0) {
2601
+ writer.writeDouble(
2602
+ 54,
2603
+ f
2604
+ );
2605
+ }
2582
2606
  };
2583
2607
 
2584
2608
 
@@ -3588,6 +3612,42 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.clearAbacharacternormalisations
3588
3612
  return this;};
3589
3613
 
3590
3614
 
3615
+ /**
3616
+ * optional double payToMinAgreementAmount = 53;
3617
+ * @return {number}
3618
+ */
3619
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytominagreementamount = function() {
3620
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 53, 0.0));
3621
+ };
3622
+
3623
+
3624
+ /**
3625
+ * @param {number} value
3626
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
3627
+ */
3628
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytominagreementamount = function(value) {
3629
+ return jspb.Message.setProto3FloatField(this, 53, value);
3630
+ };
3631
+
3632
+
3633
+ /**
3634
+ * optional double payToMaxAgreementAmount = 54;
3635
+ * @return {number}
3636
+ */
3637
+ proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytomaxagreementamount = function() {
3638
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 54, 0.0));
3639
+ };
3640
+
3641
+
3642
+ /**
3643
+ * @param {number} value
3644
+ * @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
3645
+ */
3646
+ proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytomaxagreementamount = function(value) {
3647
+ return jspb.Message.setProto3FloatField(this, 54, value);
3648
+ };
3649
+
3650
+
3591
3651
 
3592
3652
 
3593
3653
 
@@ -4763,7 +4823,10 @@ proto.sniipappappconfigapi.BusinessRules.toObject = function(includeInstance, ms
4763
4823
  var f, obj = {
4764
4824
  abaallowedcharacters: jspb.Message.getFieldWithDefault(msg, 1, ""),
4765
4825
  abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : [],
4766
- paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
4826
+ paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
4827
+ paytopendingexpiryseconds: jspb.Message.getFieldWithDefault(msg, 4, 0),
4828
+ paytominagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
4829
+ paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0)
4767
4830
  };
4768
4831
 
4769
4832
  if (includeInstance) {
@@ -4814,6 +4877,18 @@ proto.sniipappappconfigapi.BusinessRules.deserializeBinaryFromReader = function(
4814
4877
  var value = /** @type {boolean} */ (reader.readBool());
4815
4878
  msg.setPaytobankaccountsenabled(value);
4816
4879
  break;
4880
+ case 4:
4881
+ var value = /** @type {number} */ (reader.readInt32());
4882
+ msg.setPaytopendingexpiryseconds(value);
4883
+ break;
4884
+ case 5:
4885
+ var value = /** @type {number} */ (reader.readDouble());
4886
+ msg.setPaytominagreementamount(value);
4887
+ break;
4888
+ case 6:
4889
+ var value = /** @type {number} */ (reader.readDouble());
4890
+ msg.setPaytomaxagreementamount(value);
4891
+ break;
4817
4892
  default:
4818
4893
  reader.skipField();
4819
4894
  break;
@@ -4861,6 +4936,27 @@ proto.sniipappappconfigapi.BusinessRules.serializeBinaryToWriter = function(mess
4861
4936
  f
4862
4937
  );
4863
4938
  }
4939
+ f = message.getPaytopendingexpiryseconds();
4940
+ if (f !== 0) {
4941
+ writer.writeInt32(
4942
+ 4,
4943
+ f
4944
+ );
4945
+ }
4946
+ f = message.getPaytominagreementamount();
4947
+ if (f !== 0.0) {
4948
+ writer.writeDouble(
4949
+ 5,
4950
+ f
4951
+ );
4952
+ }
4953
+ f = message.getPaytomaxagreementamount();
4954
+ if (f !== 0.0) {
4955
+ writer.writeDouble(
4956
+ 6,
4957
+ f
4958
+ );
4959
+ }
4864
4960
  };
4865
4961
 
4866
4962
 
@@ -4922,6 +5018,60 @@ proto.sniipappappconfigapi.BusinessRules.prototype.setPaytobankaccountsenabled =
4922
5018
  };
4923
5019
 
4924
5020
 
5021
+ /**
5022
+ * optional int32 payToPendingExpirySeconds = 4;
5023
+ * @return {number}
5024
+ */
5025
+ proto.sniipappappconfigapi.BusinessRules.prototype.getPaytopendingexpiryseconds = function() {
5026
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
5027
+ };
5028
+
5029
+
5030
+ /**
5031
+ * @param {number} value
5032
+ * @return {!proto.sniipappappconfigapi.BusinessRules} returns this
5033
+ */
5034
+ proto.sniipappappconfigapi.BusinessRules.prototype.setPaytopendingexpiryseconds = function(value) {
5035
+ return jspb.Message.setProto3IntField(this, 4, value);
5036
+ };
5037
+
5038
+
5039
+ /**
5040
+ * optional double payToMinAgreementAmount = 5;
5041
+ * @return {number}
5042
+ */
5043
+ proto.sniipappappconfigapi.BusinessRules.prototype.getPaytominagreementamount = function() {
5044
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
5045
+ };
5046
+
5047
+
5048
+ /**
5049
+ * @param {number} value
5050
+ * @return {!proto.sniipappappconfigapi.BusinessRules} returns this
5051
+ */
5052
+ proto.sniipappappconfigapi.BusinessRules.prototype.setPaytominagreementamount = function(value) {
5053
+ return jspb.Message.setProto3FloatField(this, 5, value);
5054
+ };
5055
+
5056
+
5057
+ /**
5058
+ * optional double payToMaxAgreementAmount = 6;
5059
+ * @return {number}
5060
+ */
5061
+ proto.sniipappappconfigapi.BusinessRules.prototype.getPaytomaxagreementamount = function() {
5062
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
5063
+ };
5064
+
5065
+
5066
+ /**
5067
+ * @param {number} value
5068
+ * @return {!proto.sniipappappconfigapi.BusinessRules} returns this
5069
+ */
5070
+ proto.sniipappappconfigapi.BusinessRules.prototype.setPaytomaxagreementamount = function(value) {
5071
+ return jspb.Message.setProto3FloatField(this, 6, value);
5072
+ };
5073
+
5074
+
4925
5075
 
4926
5076
 
4927
5077
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/config-service-client-grpcweb-ts",
3
- "version": "26.4.2337",
3
+ "version": "26.5.2363",
4
4
  "description": "config-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",