@sniipwebmaster/transaction-service-client-grpcweb 26.6.14934 → 26.6.14945
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/dependancies/service_pb.js +31 -1
- package/package.json +1 -1
|
@@ -37845,7 +37845,8 @@ proto.sniiptransactionapi.TransactionDetails.toObject = function(includeInstance
|
|
|
37845
37845
|
loyaltyprogramid: jspb.Message.getFieldWithDefault(msg, 84, 0),
|
|
37846
37846
|
loyaltyprogramname: jspb.Message.getFieldWithDefault(msg, 85, ""),
|
|
37847
37847
|
earnedloyaltypoints: jspb.Message.getFieldWithDefault(msg, 86, 0),
|
|
37848
|
-
loyaltypointslabel: jspb.Message.getFieldWithDefault(msg, 87, "")
|
|
37848
|
+
loyaltypointslabel: jspb.Message.getFieldWithDefault(msg, 87, ""),
|
|
37849
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 88, "")
|
|
37849
37850
|
};
|
|
37850
37851
|
|
|
37851
37852
|
if (includeInstance) {
|
|
@@ -38224,6 +38225,10 @@ proto.sniiptransactionapi.TransactionDetails.deserializeBinaryFromReader = funct
|
|
|
38224
38225
|
var value = /** @type {string} */ (reader.readString());
|
|
38225
38226
|
msg.setLoyaltypointslabel(value);
|
|
38226
38227
|
break;
|
|
38228
|
+
case 88:
|
|
38229
|
+
var value = /** @type {string} */ (reader.readString());
|
|
38230
|
+
msg.setLoyaltyprogramcode(value);
|
|
38231
|
+
break;
|
|
38227
38232
|
default:
|
|
38228
38233
|
reader.skipField();
|
|
38229
38234
|
break;
|
|
@@ -38850,6 +38855,13 @@ proto.sniiptransactionapi.TransactionDetails.serializeBinaryToWriter = function(
|
|
|
38850
38855
|
f
|
|
38851
38856
|
);
|
|
38852
38857
|
}
|
|
38858
|
+
f = message.getLoyaltyprogramcode();
|
|
38859
|
+
if (f.length > 0) {
|
|
38860
|
+
writer.writeString(
|
|
38861
|
+
88,
|
|
38862
|
+
f
|
|
38863
|
+
);
|
|
38864
|
+
}
|
|
38853
38865
|
};
|
|
38854
38866
|
|
|
38855
38867
|
|
|
@@ -40422,6 +40434,24 @@ proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltypointslabel = f
|
|
|
40422
40434
|
};
|
|
40423
40435
|
|
|
40424
40436
|
|
|
40437
|
+
/**
|
|
40438
|
+
* optional string loyaltyProgramCode = 88;
|
|
40439
|
+
* @return {string}
|
|
40440
|
+
*/
|
|
40441
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getLoyaltyprogramcode = function() {
|
|
40442
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 88, ""));
|
|
40443
|
+
};
|
|
40444
|
+
|
|
40445
|
+
|
|
40446
|
+
/**
|
|
40447
|
+
* @param {string} value
|
|
40448
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
40449
|
+
*/
|
|
40450
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltyprogramcode = function(value) {
|
|
40451
|
+
return jspb.Message.setProto3StringField(this, 88, value);
|
|
40452
|
+
};
|
|
40453
|
+
|
|
40454
|
+
|
|
40425
40455
|
|
|
40426
40456
|
|
|
40427
40457
|
|