@sniipwebmaster/transaction-service-client-grpcweb-ts 25.11.13675 → 25.11.13706

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.
@@ -2805,6 +2805,9 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
2805
2805
  getLoyaltyprogramlogourl(): string;
2806
2806
  setLoyaltyprogramlogourl(value: string): PaymentDetailsBulkResponse;
2807
2807
 
2808
+ getLoyaltypointsadjustedformonthlylimit(): boolean;
2809
+ setLoyaltypointsadjustedformonthlylimit(value: boolean): PaymentDetailsBulkResponse;
2810
+
2808
2811
  serializeBinary(): Uint8Array;
2809
2812
  toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
2810
2813
  static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
@@ -2836,6 +2839,7 @@ export namespace PaymentDetailsBulkResponse {
2836
2839
  businessratesdisclaimermessage: string,
2837
2840
  loyaltyprogramcode: string,
2838
2841
  loyaltyprogramlogourl: string,
2842
+ loyaltypointsadjustedformonthlylimit: boolean,
2839
2843
  }
2840
2844
  }
2841
2845
 
@@ -3031,6 +3035,9 @@ export class PaymentDetailsResponse extends jspb.Message {
3031
3035
  getLoyaltyprogramlogourl(): string;
3032
3036
  setLoyaltyprogramlogourl(value: string): PaymentDetailsResponse;
3033
3037
 
3038
+ getLoyaltypointsadjustedformonthlylimit(): boolean;
3039
+ setLoyaltypointsadjustedformonthlylimit(value: boolean): PaymentDetailsResponse;
3040
+
3034
3041
  serializeBinary(): Uint8Array;
3035
3042
  toObject(includeInstance?: boolean): PaymentDetailsResponse.AsObject;
3036
3043
  static toObject(includeInstance: boolean, msg: PaymentDetailsResponse): PaymentDetailsResponse.AsObject;
@@ -3072,6 +3079,7 @@ export namespace PaymentDetailsResponse {
3072
3079
  surchargeincreaseamount: number,
3073
3080
  surchargeincreaserate: number,
3074
3081
  loyaltyprogramlogourl: string,
3082
+ loyaltypointsadjustedformonthlylimit: boolean,
3075
3083
  }
3076
3084
 
3077
3085
  export enum ApplepaydetailsCase {
@@ -23626,7 +23626,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
23626
23626
  feediscountmessage: jspb.Message.getFieldWithDefault(msg, 18, ""),
23627
23627
  businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 19, ""),
23628
23628
  loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, ""),
23629
- loyaltyprogramlogourl: jspb.Message.getFieldWithDefault(msg, 21, "")
23629
+ loyaltyprogramlogourl: jspb.Message.getFieldWithDefault(msg, 21, ""),
23630
+ loyaltypointsadjustedformonthlylimit: jspb.Message.getBooleanFieldWithDefault(msg, 22, false)
23630
23631
  };
23631
23632
 
23632
23633
  if (includeInstance) {
@@ -23751,6 +23752,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
23751
23752
  var value = /** @type {string} */ (reader.readString());
23752
23753
  msg.setLoyaltyprogramlogourl(value);
23753
23754
  break;
23755
+ case 22:
23756
+ var value = /** @type {boolean} */ (reader.readBool());
23757
+ msg.setLoyaltypointsadjustedformonthlylimit(value);
23758
+ break;
23754
23759
  default:
23755
23760
  reader.skipField();
23756
23761
  break;
@@ -23929,6 +23934,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
23929
23934
  f
23930
23935
  );
23931
23936
  }
23937
+ f = message.getLoyaltypointsadjustedformonthlylimit();
23938
+ if (f) {
23939
+ writer.writeBool(
23940
+ 22,
23941
+ f
23942
+ );
23943
+ }
23932
23944
  };
23933
23945
 
23934
23946
 
@@ -24368,6 +24380,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogram
24368
24380
  };
24369
24381
 
24370
24382
 
24383
+ /**
24384
+ * optional bool loyaltyPointsAdjustedForMonthlyLimit = 22;
24385
+ * @return {boolean}
24386
+ */
24387
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltypointsadjustedformonthlylimit = function() {
24388
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 22, false));
24389
+ };
24390
+
24391
+
24392
+ /**
24393
+ * @param {boolean} value
24394
+ * @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
24395
+ */
24396
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltypointsadjustedformonthlylimit = function(value) {
24397
+ return jspb.Message.setProto3BooleanField(this, 22, value);
24398
+ };
24399
+
24400
+
24371
24401
 
24372
24402
 
24373
24403
 
@@ -25027,7 +25057,8 @@ proto.sniiptransactionapi.PaymentDetailsResponse.toObject = function(includeInst
25027
25057
  loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 28, 0),
25028
25058
  surchargeincreaseamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 29, 0.0),
25029
25059
  surchargeincreaserate: jspb.Message.getFloatingPointFieldWithDefault(msg, 30, 0.0),
25030
- loyaltyprogramlogourl: jspb.Message.getFieldWithDefault(msg, 31, "")
25060
+ loyaltyprogramlogourl: jspb.Message.getFieldWithDefault(msg, 31, ""),
25061
+ loyaltypointsadjustedformonthlylimit: jspb.Message.getBooleanFieldWithDefault(msg, 32, false)
25031
25062
  };
25032
25063
 
25033
25064
  if (includeInstance) {
@@ -25191,6 +25222,10 @@ proto.sniiptransactionapi.PaymentDetailsResponse.deserializeBinaryFromReader = f
25191
25222
  var value = /** @type {string} */ (reader.readString());
25192
25223
  msg.setLoyaltyprogramlogourl(value);
25193
25224
  break;
25225
+ case 32:
25226
+ var value = /** @type {boolean} */ (reader.readBool());
25227
+ msg.setLoyaltypointsadjustedformonthlylimit(value);
25228
+ break;
25194
25229
  default:
25195
25230
  reader.skipField();
25196
25231
  break;
@@ -25440,6 +25475,13 @@ proto.sniiptransactionapi.PaymentDetailsResponse.serializeBinaryToWriter = funct
25440
25475
  f
25441
25476
  );
25442
25477
  }
25478
+ f = message.getLoyaltypointsadjustedformonthlylimit();
25479
+ if (f) {
25480
+ writer.writeBool(
25481
+ 32,
25482
+ f
25483
+ );
25484
+ }
25443
25485
  };
25444
25486
 
25445
25487
 
@@ -26058,6 +26100,24 @@ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramlogo
26058
26100
  };
26059
26101
 
26060
26102
 
26103
+ /**
26104
+ * optional bool loyaltyPointsAdjustedForMonthlyLimit = 32;
26105
+ * @return {boolean}
26106
+ */
26107
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getLoyaltypointsadjustedformonthlylimit = function() {
26108
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 32, false));
26109
+ };
26110
+
26111
+
26112
+ /**
26113
+ * @param {boolean} value
26114
+ * @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
26115
+ */
26116
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltypointsadjustedformonthlylimit = function(value) {
26117
+ return jspb.Message.setProto3BooleanField(this, 32, value);
26118
+ };
26119
+
26120
+
26061
26121
 
26062
26122
  /**
26063
26123
  * List of repeated fields within this message type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/transaction-service-client-grpcweb-ts",
3
- "version": "25.11.13675",
3
+ "version": "25.11.13706",
4
4
  "description": "transaction-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",