@sniipwebmaster/transaction-service-client-grpcweb-ts 26.2.13892 → 26.2.13910
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.
|
@@ -1556,6 +1556,9 @@ export class LoyaltyTierInfo extends jspb.Message {
|
|
|
1556
1556
|
getLoyaltyoptionvaluetag(): string;
|
|
1557
1557
|
setLoyaltyoptionvaluetag(value: string): LoyaltyTierInfo;
|
|
1558
1558
|
|
|
1559
|
+
getLoyaltyoptionselectedgraphicurl(): string;
|
|
1560
|
+
setLoyaltyoptionselectedgraphicurl(value: string): LoyaltyTierInfo;
|
|
1561
|
+
|
|
1559
1562
|
serializeBinary(): Uint8Array;
|
|
1560
1563
|
toObject(includeInstance?: boolean): LoyaltyTierInfo.AsObject;
|
|
1561
1564
|
static toObject(includeInstance: boolean, msg: LoyaltyTierInfo): LoyaltyTierInfo.AsObject;
|
|
@@ -1581,6 +1584,7 @@ export namespace LoyaltyTierInfo {
|
|
|
1581
1584
|
loyaltyoptionearned: number,
|
|
1582
1585
|
loyaltyoptionspent: number,
|
|
1583
1586
|
loyaltyoptionvaluetag: string,
|
|
1587
|
+
loyaltyoptionselectedgraphicurl: string,
|
|
1584
1588
|
}
|
|
1585
1589
|
}
|
|
1586
1590
|
|
|
@@ -14499,7 +14499,8 @@ proto.sniiptransactionapi.LoyaltyTierInfo.toObject = function(includeInstance, m
|
|
|
14499
14499
|
loyaltyoptiondisabledgraphicurl: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
14500
14500
|
loyaltyoptionearned: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
14501
14501
|
loyaltyoptionspent: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
14502
|
-
loyaltyoptionvaluetag: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
14502
|
+
loyaltyoptionvaluetag: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
14503
|
+
loyaltyoptionselectedgraphicurl: jspb.Message.getFieldWithDefault(msg, 16, "")
|
|
14503
14504
|
};
|
|
14504
14505
|
|
|
14505
14506
|
if (includeInstance) {
|
|
@@ -14596,6 +14597,10 @@ proto.sniiptransactionapi.LoyaltyTierInfo.deserializeBinaryFromReader = function
|
|
|
14596
14597
|
var value = /** @type {string} */ (reader.readString());
|
|
14597
14598
|
msg.setLoyaltyoptionvaluetag(value);
|
|
14598
14599
|
break;
|
|
14600
|
+
case 16:
|
|
14601
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14602
|
+
msg.setLoyaltyoptionselectedgraphicurl(value);
|
|
14603
|
+
break;
|
|
14599
14604
|
default:
|
|
14600
14605
|
reader.skipField();
|
|
14601
14606
|
break;
|
|
@@ -14730,6 +14735,13 @@ proto.sniiptransactionapi.LoyaltyTierInfo.serializeBinaryToWriter = function(mes
|
|
|
14730
14735
|
f
|
|
14731
14736
|
);
|
|
14732
14737
|
}
|
|
14738
|
+
f = message.getLoyaltyoptionselectedgraphicurl();
|
|
14739
|
+
if (f.length > 0) {
|
|
14740
|
+
writer.writeString(
|
|
14741
|
+
16,
|
|
14742
|
+
f
|
|
14743
|
+
);
|
|
14744
|
+
}
|
|
14733
14745
|
};
|
|
14734
14746
|
|
|
14735
14747
|
|
|
@@ -15003,6 +15015,24 @@ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionvaluetag = f
|
|
|
15003
15015
|
};
|
|
15004
15016
|
|
|
15005
15017
|
|
|
15018
|
+
/**
|
|
15019
|
+
* optional string loyaltyOptionSelectedGraphicUrl = 16;
|
|
15020
|
+
* @return {string}
|
|
15021
|
+
*/
|
|
15022
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getLoyaltyoptionselectedgraphicurl = function() {
|
|
15023
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
15024
|
+
};
|
|
15025
|
+
|
|
15026
|
+
|
|
15027
|
+
/**
|
|
15028
|
+
* @param {string} value
|
|
15029
|
+
* @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
|
|
15030
|
+
*/
|
|
15031
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionselectedgraphicurl = function(value) {
|
|
15032
|
+
return jspb.Message.setProto3StringField(this, 16, value);
|
|
15033
|
+
};
|
|
15034
|
+
|
|
15035
|
+
|
|
15006
15036
|
|
|
15007
15037
|
|
|
15008
15038
|
|