@sniipwebmaster/transaction-service-client-grpcweb-ts 26.3.14077 → 26.3.14097

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.
@@ -1559,6 +1559,12 @@ export class LoyaltyTierInfo extends jspb.Message {
1559
1559
  getLoyaltyoptionselectedgraphicurl(): string;
1560
1560
  setLoyaltyoptionselectedgraphicurl(value: string): LoyaltyTierInfo;
1561
1561
 
1562
+ getAdjustedformonthlylimit(): boolean;
1563
+ setAdjustedformonthlylimit(value: boolean): LoyaltyTierInfo;
1564
+
1565
+ getBoostermode(): string;
1566
+ setBoostermode(value: string): LoyaltyTierInfo;
1567
+
1562
1568
  serializeBinary(): Uint8Array;
1563
1569
  toObject(includeInstance?: boolean): LoyaltyTierInfo.AsObject;
1564
1570
  static toObject(includeInstance: boolean, msg: LoyaltyTierInfo): LoyaltyTierInfo.AsObject;
@@ -1585,6 +1591,8 @@ export namespace LoyaltyTierInfo {
1585
1591
  loyaltyoptionspent: number,
1586
1592
  loyaltyoptionvaluetag: string,
1587
1593
  loyaltyoptionselectedgraphicurl: string,
1594
+ adjustedformonthlylimit: boolean,
1595
+ boostermode: string,
1588
1596
  }
1589
1597
  }
1590
1598
 
@@ -2875,6 +2883,12 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
2875
2883
  getLoyaltyprogramverticallogourl(): string;
2876
2884
  setLoyaltyprogramverticallogourl(value: string): PaymentDetailsBulkResponse;
2877
2885
 
2886
+ getLoyaltyprogramearncardtitle(): string;
2887
+ setLoyaltyprogramearncardtitle(value: string): PaymentDetailsBulkResponse;
2888
+
2889
+ getLoyaltyprogramearncardbody(): string;
2890
+ setLoyaltyprogramearncardbody(value: string): PaymentDetailsBulkResponse;
2891
+
2878
2892
  serializeBinary(): Uint8Array;
2879
2893
  toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
2880
2894
  static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
@@ -2910,6 +2924,8 @@ export namespace PaymentDetailsBulkResponse {
2910
2924
  loyaltyprogramsmalllogourl: string,
2911
2925
  loyaltyprogramhorizontallogourl: string,
2912
2926
  loyaltyprogramverticallogourl: string,
2927
+ loyaltyprogramearncardtitle: string,
2928
+ loyaltyprogramearncardbody: string,
2913
2929
  }
2914
2930
  }
2915
2931
 
@@ -3117,6 +3133,12 @@ export class PaymentDetailsResponse extends jspb.Message {
3117
3133
  getLoyaltyprogramverticallogourl(): string;
3118
3134
  setLoyaltyprogramverticallogourl(value: string): PaymentDetailsResponse;
3119
3135
 
3136
+ getLoyaltyprogramearncardtitle(): string;
3137
+ setLoyaltyprogramearncardtitle(value: string): PaymentDetailsResponse;
3138
+
3139
+ getLoyaltyprogramearncardbody(): string;
3140
+ setLoyaltyprogramearncardbody(value: string): PaymentDetailsResponse;
3141
+
3120
3142
  serializeBinary(): Uint8Array;
3121
3143
  toObject(includeInstance?: boolean): PaymentDetailsResponse.AsObject;
3122
3144
  static toObject(includeInstance: boolean, msg: PaymentDetailsResponse): PaymentDetailsResponse.AsObject;
@@ -3162,6 +3184,8 @@ export namespace PaymentDetailsResponse {
3162
3184
  loyaltyprogramsmalllogourl: string,
3163
3185
  loyaltyprogramhorizontallogourl: string,
3164
3186
  loyaltyprogramverticallogourl: string,
3187
+ loyaltyprogramearncardtitle: string,
3188
+ loyaltyprogramearncardbody: string,
3165
3189
  }
3166
3190
 
3167
3191
  export enum ApplepaydetailsCase {
@@ -14566,7 +14566,9 @@ proto.sniiptransactionapi.LoyaltyTierInfo.toObject = function(includeInstance, m
14566
14566
  loyaltyoptionearned: jspb.Message.getFieldWithDefault(msg, 13, 0),
14567
14567
  loyaltyoptionspent: jspb.Message.getFieldWithDefault(msg, 14, 0),
14568
14568
  loyaltyoptionvaluetag: jspb.Message.getFieldWithDefault(msg, 15, ""),
14569
- loyaltyoptionselectedgraphicurl: jspb.Message.getFieldWithDefault(msg, 16, "")
14569
+ loyaltyoptionselectedgraphicurl: jspb.Message.getFieldWithDefault(msg, 16, ""),
14570
+ adjustedformonthlylimit: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
14571
+ boostermode: jspb.Message.getFieldWithDefault(msg, 18, "")
14570
14572
  };
14571
14573
 
14572
14574
  if (includeInstance) {
@@ -14667,6 +14669,14 @@ proto.sniiptransactionapi.LoyaltyTierInfo.deserializeBinaryFromReader = function
14667
14669
  var value = /** @type {string} */ (reader.readString());
14668
14670
  msg.setLoyaltyoptionselectedgraphicurl(value);
14669
14671
  break;
14672
+ case 17:
14673
+ var value = /** @type {boolean} */ (reader.readBool());
14674
+ msg.setAdjustedformonthlylimit(value);
14675
+ break;
14676
+ case 18:
14677
+ var value = /** @type {string} */ (reader.readString());
14678
+ msg.setBoostermode(value);
14679
+ break;
14670
14680
  default:
14671
14681
  reader.skipField();
14672
14682
  break;
@@ -14808,6 +14818,20 @@ proto.sniiptransactionapi.LoyaltyTierInfo.serializeBinaryToWriter = function(mes
14808
14818
  f
14809
14819
  );
14810
14820
  }
14821
+ f = message.getAdjustedformonthlylimit();
14822
+ if (f) {
14823
+ writer.writeBool(
14824
+ 17,
14825
+ f
14826
+ );
14827
+ }
14828
+ f = message.getBoostermode();
14829
+ if (f.length > 0) {
14830
+ writer.writeString(
14831
+ 18,
14832
+ f
14833
+ );
14834
+ }
14811
14835
  };
14812
14836
 
14813
14837
 
@@ -15099,6 +15123,42 @@ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionselectedgrap
15099
15123
  };
15100
15124
 
15101
15125
 
15126
+ /**
15127
+ * optional bool adjustedForMonthlyLimit = 17;
15128
+ * @return {boolean}
15129
+ */
15130
+ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getAdjustedformonthlylimit = function() {
15131
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 17, false));
15132
+ };
15133
+
15134
+
15135
+ /**
15136
+ * @param {boolean} value
15137
+ * @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
15138
+ */
15139
+ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setAdjustedformonthlylimit = function(value) {
15140
+ return jspb.Message.setProto3BooleanField(this, 17, value);
15141
+ };
15142
+
15143
+
15144
+ /**
15145
+ * optional string boosterMode = 18;
15146
+ * @return {string}
15147
+ */
15148
+ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getBoostermode = function() {
15149
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
15150
+ };
15151
+
15152
+
15153
+ /**
15154
+ * @param {string} value
15155
+ * @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
15156
+ */
15157
+ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setBoostermode = function(value) {
15158
+ return jspb.Message.setProto3StringField(this, 18, value);
15159
+ };
15160
+
15161
+
15102
15162
 
15103
15163
 
15104
15164
 
@@ -24170,7 +24230,9 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
24170
24230
  loyaltypointsadjustedformonthlylimit: jspb.Message.getBooleanFieldWithDefault(msg, 22, false),
24171
24231
  loyaltyprogramsmalllogourl: jspb.Message.getFieldWithDefault(msg, 23, ""),
24172
24232
  loyaltyprogramhorizontallogourl: jspb.Message.getFieldWithDefault(msg, 24, ""),
24173
- loyaltyprogramverticallogourl: jspb.Message.getFieldWithDefault(msg, 25, "")
24233
+ loyaltyprogramverticallogourl: jspb.Message.getFieldWithDefault(msg, 25, ""),
24234
+ loyaltyprogramearncardtitle: jspb.Message.getFieldWithDefault(msg, 26, ""),
24235
+ loyaltyprogramearncardbody: jspb.Message.getFieldWithDefault(msg, 27, "")
24174
24236
  };
24175
24237
 
24176
24238
  if (includeInstance) {
@@ -24311,6 +24373,14 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
24311
24373
  var value = /** @type {string} */ (reader.readString());
24312
24374
  msg.setLoyaltyprogramverticallogourl(value);
24313
24375
  break;
24376
+ case 26:
24377
+ var value = /** @type {string} */ (reader.readString());
24378
+ msg.setLoyaltyprogramearncardtitle(value);
24379
+ break;
24380
+ case 27:
24381
+ var value = /** @type {string} */ (reader.readString());
24382
+ msg.setLoyaltyprogramearncardbody(value);
24383
+ break;
24314
24384
  default:
24315
24385
  reader.skipField();
24316
24386
  break;
@@ -24517,6 +24587,20 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
24517
24587
  f
24518
24588
  );
24519
24589
  }
24590
+ f = message.getLoyaltyprogramearncardtitle();
24591
+ if (f.length > 0) {
24592
+ writer.writeString(
24593
+ 26,
24594
+ f
24595
+ );
24596
+ }
24597
+ f = message.getLoyaltyprogramearncardbody();
24598
+ if (f.length > 0) {
24599
+ writer.writeString(
24600
+ 27,
24601
+ f
24602
+ );
24603
+ }
24520
24604
  };
24521
24605
 
24522
24606
 
@@ -25028,6 +25112,42 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogram
25028
25112
  };
25029
25113
 
25030
25114
 
25115
+ /**
25116
+ * optional string loyaltyProgramEarnCardTitle = 26;
25117
+ * @return {string}
25118
+ */
25119
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltyprogramearncardtitle = function() {
25120
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
25121
+ };
25122
+
25123
+
25124
+ /**
25125
+ * @param {string} value
25126
+ * @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
25127
+ */
25128
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogramearncardtitle = function(value) {
25129
+ return jspb.Message.setProto3StringField(this, 26, value);
25130
+ };
25131
+
25132
+
25133
+ /**
25134
+ * optional string loyaltyProgramEarnCardBody = 27;
25135
+ * @return {string}
25136
+ */
25137
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltyprogramearncardbody = function() {
25138
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
25139
+ };
25140
+
25141
+
25142
+ /**
25143
+ * @param {string} value
25144
+ * @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
25145
+ */
25146
+ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogramearncardbody = function(value) {
25147
+ return jspb.Message.setProto3StringField(this, 27, value);
25148
+ };
25149
+
25150
+
25031
25151
 
25032
25152
 
25033
25153
 
@@ -25691,7 +25811,9 @@ proto.sniiptransactionapi.PaymentDetailsResponse.toObject = function(includeInst
25691
25811
  loyaltypointsadjustedformonthlylimit: jspb.Message.getBooleanFieldWithDefault(msg, 32, false),
25692
25812
  loyaltyprogramsmalllogourl: jspb.Message.getFieldWithDefault(msg, 33, ""),
25693
25813
  loyaltyprogramhorizontallogourl: jspb.Message.getFieldWithDefault(msg, 34, ""),
25694
- loyaltyprogramverticallogourl: jspb.Message.getFieldWithDefault(msg, 35, "")
25814
+ loyaltyprogramverticallogourl: jspb.Message.getFieldWithDefault(msg, 35, ""),
25815
+ loyaltyprogramearncardtitle: jspb.Message.getFieldWithDefault(msg, 36, ""),
25816
+ loyaltyprogramearncardbody: jspb.Message.getFieldWithDefault(msg, 37, "")
25695
25817
  };
25696
25818
 
25697
25819
  if (includeInstance) {
@@ -25871,6 +25993,14 @@ proto.sniiptransactionapi.PaymentDetailsResponse.deserializeBinaryFromReader = f
25871
25993
  var value = /** @type {string} */ (reader.readString());
25872
25994
  msg.setLoyaltyprogramverticallogourl(value);
25873
25995
  break;
25996
+ case 36:
25997
+ var value = /** @type {string} */ (reader.readString());
25998
+ msg.setLoyaltyprogramearncardtitle(value);
25999
+ break;
26000
+ case 37:
26001
+ var value = /** @type {string} */ (reader.readString());
26002
+ msg.setLoyaltyprogramearncardbody(value);
26003
+ break;
25874
26004
  default:
25875
26005
  reader.skipField();
25876
26006
  break;
@@ -26148,6 +26278,20 @@ proto.sniiptransactionapi.PaymentDetailsResponse.serializeBinaryToWriter = funct
26148
26278
  f
26149
26279
  );
26150
26280
  }
26281
+ f = message.getLoyaltyprogramearncardtitle();
26282
+ if (f.length > 0) {
26283
+ writer.writeString(
26284
+ 36,
26285
+ f
26286
+ );
26287
+ }
26288
+ f = message.getLoyaltyprogramearncardbody();
26289
+ if (f.length > 0) {
26290
+ writer.writeString(
26291
+ 37,
26292
+ f
26293
+ );
26294
+ }
26151
26295
  };
26152
26296
 
26153
26297
 
@@ -26838,6 +26982,42 @@ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramvert
26838
26982
  };
26839
26983
 
26840
26984
 
26985
+ /**
26986
+ * optional string loyaltyProgramEarnCardTitle = 36;
26987
+ * @return {string}
26988
+ */
26989
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getLoyaltyprogramearncardtitle = function() {
26990
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 36, ""));
26991
+ };
26992
+
26993
+
26994
+ /**
26995
+ * @param {string} value
26996
+ * @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
26997
+ */
26998
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramearncardtitle = function(value) {
26999
+ return jspb.Message.setProto3StringField(this, 36, value);
27000
+ };
27001
+
27002
+
27003
+ /**
27004
+ * optional string loyaltyProgramEarnCardBody = 37;
27005
+ * @return {string}
27006
+ */
27007
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getLoyaltyprogramearncardbody = function() {
27008
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 37, ""));
27009
+ };
27010
+
27011
+
27012
+ /**
27013
+ * @param {string} value
27014
+ * @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
27015
+ */
27016
+ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramearncardbody = function(value) {
27017
+ return jspb.Message.setProto3StringField(this, 37, value);
27018
+ };
27019
+
27020
+
26841
27021
 
26842
27022
  /**
26843
27023
  * 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": "26.3.14077",
3
+ "version": "26.3.14097",
4
4
  "description": "transaction-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",