@sniipwebmaster/transaction-service-client-grpcweb 26.6.14906 → 26.6.14934
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 +121 -1
- package/package.json +1 -1
|
@@ -37841,7 +37841,11 @@ proto.sniiptransactionapi.TransactionDetails.toObject = function(includeInstance
|
|
|
37841
37841
|
billertimezone: jspb.Message.getFieldWithDefault(msg, 80, ""),
|
|
37842
37842
|
billertimezoneabbr: jspb.Message.getFieldWithDefault(msg, 81, ""),
|
|
37843
37843
|
loyaltymembershipid: jspb.Message.getFieldWithDefault(msg, 82, 0),
|
|
37844
|
-
deliverybatchtype: jspb.Message.getFieldWithDefault(msg, 83, 0)
|
|
37844
|
+
deliverybatchtype: jspb.Message.getFieldWithDefault(msg, 83, 0),
|
|
37845
|
+
loyaltyprogramid: jspb.Message.getFieldWithDefault(msg, 84, 0),
|
|
37846
|
+
loyaltyprogramname: jspb.Message.getFieldWithDefault(msg, 85, ""),
|
|
37847
|
+
earnedloyaltypoints: jspb.Message.getFieldWithDefault(msg, 86, 0),
|
|
37848
|
+
loyaltypointslabel: jspb.Message.getFieldWithDefault(msg, 87, "")
|
|
37845
37849
|
};
|
|
37846
37850
|
|
|
37847
37851
|
if (includeInstance) {
|
|
@@ -38204,6 +38208,22 @@ proto.sniiptransactionapi.TransactionDetails.deserializeBinaryFromReader = funct
|
|
|
38204
38208
|
var value = /** @type {!proto.sniiptransactionapi.DeliveryBatchType} */ (reader.readEnum());
|
|
38205
38209
|
msg.setDeliverybatchtype(value);
|
|
38206
38210
|
break;
|
|
38211
|
+
case 84:
|
|
38212
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
38213
|
+
msg.setLoyaltyprogramid(value);
|
|
38214
|
+
break;
|
|
38215
|
+
case 85:
|
|
38216
|
+
var value = /** @type {string} */ (reader.readString());
|
|
38217
|
+
msg.setLoyaltyprogramname(value);
|
|
38218
|
+
break;
|
|
38219
|
+
case 86:
|
|
38220
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
38221
|
+
msg.setEarnedloyaltypoints(value);
|
|
38222
|
+
break;
|
|
38223
|
+
case 87:
|
|
38224
|
+
var value = /** @type {string} */ (reader.readString());
|
|
38225
|
+
msg.setLoyaltypointslabel(value);
|
|
38226
|
+
break;
|
|
38207
38227
|
default:
|
|
38208
38228
|
reader.skipField();
|
|
38209
38229
|
break;
|
|
@@ -38802,6 +38822,34 @@ proto.sniiptransactionapi.TransactionDetails.serializeBinaryToWriter = function(
|
|
|
38802
38822
|
f
|
|
38803
38823
|
);
|
|
38804
38824
|
}
|
|
38825
|
+
f = message.getLoyaltyprogramid();
|
|
38826
|
+
if (f !== 0) {
|
|
38827
|
+
writer.writeInt64(
|
|
38828
|
+
84,
|
|
38829
|
+
f
|
|
38830
|
+
);
|
|
38831
|
+
}
|
|
38832
|
+
f = message.getLoyaltyprogramname();
|
|
38833
|
+
if (f.length > 0) {
|
|
38834
|
+
writer.writeString(
|
|
38835
|
+
85,
|
|
38836
|
+
f
|
|
38837
|
+
);
|
|
38838
|
+
}
|
|
38839
|
+
f = message.getEarnedloyaltypoints();
|
|
38840
|
+
if (f !== 0) {
|
|
38841
|
+
writer.writeInt32(
|
|
38842
|
+
86,
|
|
38843
|
+
f
|
|
38844
|
+
);
|
|
38845
|
+
}
|
|
38846
|
+
f = message.getLoyaltypointslabel();
|
|
38847
|
+
if (f.length > 0) {
|
|
38848
|
+
writer.writeString(
|
|
38849
|
+
87,
|
|
38850
|
+
f
|
|
38851
|
+
);
|
|
38852
|
+
}
|
|
38805
38853
|
};
|
|
38806
38854
|
|
|
38807
38855
|
|
|
@@ -40302,6 +40350,78 @@ proto.sniiptransactionapi.TransactionDetails.prototype.setDeliverybatchtype = fu
|
|
|
40302
40350
|
};
|
|
40303
40351
|
|
|
40304
40352
|
|
|
40353
|
+
/**
|
|
40354
|
+
* optional int64 loyaltyProgramId = 84;
|
|
40355
|
+
* @return {number}
|
|
40356
|
+
*/
|
|
40357
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getLoyaltyprogramid = function() {
|
|
40358
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 84, 0));
|
|
40359
|
+
};
|
|
40360
|
+
|
|
40361
|
+
|
|
40362
|
+
/**
|
|
40363
|
+
* @param {number} value
|
|
40364
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
40365
|
+
*/
|
|
40366
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltyprogramid = function(value) {
|
|
40367
|
+
return jspb.Message.setProto3IntField(this, 84, value);
|
|
40368
|
+
};
|
|
40369
|
+
|
|
40370
|
+
|
|
40371
|
+
/**
|
|
40372
|
+
* optional string loyaltyProgramName = 85;
|
|
40373
|
+
* @return {string}
|
|
40374
|
+
*/
|
|
40375
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getLoyaltyprogramname = function() {
|
|
40376
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 85, ""));
|
|
40377
|
+
};
|
|
40378
|
+
|
|
40379
|
+
|
|
40380
|
+
/**
|
|
40381
|
+
* @param {string} value
|
|
40382
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
40383
|
+
*/
|
|
40384
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltyprogramname = function(value) {
|
|
40385
|
+
return jspb.Message.setProto3StringField(this, 85, value);
|
|
40386
|
+
};
|
|
40387
|
+
|
|
40388
|
+
|
|
40389
|
+
/**
|
|
40390
|
+
* optional int32 earnedLoyaltyPoints = 86;
|
|
40391
|
+
* @return {number}
|
|
40392
|
+
*/
|
|
40393
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getEarnedloyaltypoints = function() {
|
|
40394
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 86, 0));
|
|
40395
|
+
};
|
|
40396
|
+
|
|
40397
|
+
|
|
40398
|
+
/**
|
|
40399
|
+
* @param {number} value
|
|
40400
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
40401
|
+
*/
|
|
40402
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setEarnedloyaltypoints = function(value) {
|
|
40403
|
+
return jspb.Message.setProto3IntField(this, 86, value);
|
|
40404
|
+
};
|
|
40405
|
+
|
|
40406
|
+
|
|
40407
|
+
/**
|
|
40408
|
+
* optional string loyaltyPointsLabel = 87;
|
|
40409
|
+
* @return {string}
|
|
40410
|
+
*/
|
|
40411
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getLoyaltypointslabel = function() {
|
|
40412
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 87, ""));
|
|
40413
|
+
};
|
|
40414
|
+
|
|
40415
|
+
|
|
40416
|
+
/**
|
|
40417
|
+
* @param {string} value
|
|
40418
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
40419
|
+
*/
|
|
40420
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltypointslabel = function(value) {
|
|
40421
|
+
return jspb.Message.setProto3StringField(this, 87, value);
|
|
40422
|
+
};
|
|
40423
|
+
|
|
40424
|
+
|
|
40305
40425
|
|
|
40306
40426
|
|
|
40307
40427
|
|