@sniipwebmaster/transaction-service-client-grpcweb-ts 26.2.13877 → 26.2.13892
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.
|
@@ -1547,6 +1547,15 @@ export class LoyaltyTierInfo extends jspb.Message {
|
|
|
1547
1547
|
getLoyaltyoptiondisabledgraphicurl(): string;
|
|
1548
1548
|
setLoyaltyoptiondisabledgraphicurl(value: string): LoyaltyTierInfo;
|
|
1549
1549
|
|
|
1550
|
+
getLoyaltyoptionearned(): number;
|
|
1551
|
+
setLoyaltyoptionearned(value: number): LoyaltyTierInfo;
|
|
1552
|
+
|
|
1553
|
+
getLoyaltyoptionspent(): number;
|
|
1554
|
+
setLoyaltyoptionspent(value: number): LoyaltyTierInfo;
|
|
1555
|
+
|
|
1556
|
+
getLoyaltyoptionvaluetag(): string;
|
|
1557
|
+
setLoyaltyoptionvaluetag(value: string): LoyaltyTierInfo;
|
|
1558
|
+
|
|
1550
1559
|
serializeBinary(): Uint8Array;
|
|
1551
1560
|
toObject(includeInstance?: boolean): LoyaltyTierInfo.AsObject;
|
|
1552
1561
|
static toObject(includeInstance: boolean, msg: LoyaltyTierInfo): LoyaltyTierInfo.AsObject;
|
|
@@ -1569,6 +1578,9 @@ export namespace LoyaltyTierInfo {
|
|
|
1569
1578
|
loyaltyoptionname: string,
|
|
1570
1579
|
loyaltyoptionenabledgraphicurl: string,
|
|
1571
1580
|
loyaltyoptiondisabledgraphicurl: string,
|
|
1581
|
+
loyaltyoptionearned: number,
|
|
1582
|
+
loyaltyoptionspent: number,
|
|
1583
|
+
loyaltyoptionvaluetag: string,
|
|
1572
1584
|
}
|
|
1573
1585
|
}
|
|
1574
1586
|
|
|
@@ -14496,7 +14496,10 @@ proto.sniiptransactionapi.LoyaltyTierInfo.toObject = function(includeInstance, m
|
|
|
14496
14496
|
loyaltyoptioncode: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
14497
14497
|
loyaltyoptionname: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
14498
14498
|
loyaltyoptionenabledgraphicurl: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
14499
|
-
loyaltyoptiondisabledgraphicurl: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
14499
|
+
loyaltyoptiondisabledgraphicurl: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
14500
|
+
loyaltyoptionearned: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
14501
|
+
loyaltyoptionspent: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
14502
|
+
loyaltyoptionvaluetag: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
14500
14503
|
};
|
|
14501
14504
|
|
|
14502
14505
|
if (includeInstance) {
|
|
@@ -14581,6 +14584,18 @@ proto.sniiptransactionapi.LoyaltyTierInfo.deserializeBinaryFromReader = function
|
|
|
14581
14584
|
var value = /** @type {string} */ (reader.readString());
|
|
14582
14585
|
msg.setLoyaltyoptiondisabledgraphicurl(value);
|
|
14583
14586
|
break;
|
|
14587
|
+
case 13:
|
|
14588
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
14589
|
+
msg.setLoyaltyoptionearned(value);
|
|
14590
|
+
break;
|
|
14591
|
+
case 14:
|
|
14592
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
14593
|
+
msg.setLoyaltyoptionspent(value);
|
|
14594
|
+
break;
|
|
14595
|
+
case 15:
|
|
14596
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14597
|
+
msg.setLoyaltyoptionvaluetag(value);
|
|
14598
|
+
break;
|
|
14584
14599
|
default:
|
|
14585
14600
|
reader.skipField();
|
|
14586
14601
|
break;
|
|
@@ -14694,6 +14709,27 @@ proto.sniiptransactionapi.LoyaltyTierInfo.serializeBinaryToWriter = function(mes
|
|
|
14694
14709
|
f
|
|
14695
14710
|
);
|
|
14696
14711
|
}
|
|
14712
|
+
f = message.getLoyaltyoptionearned();
|
|
14713
|
+
if (f !== 0) {
|
|
14714
|
+
writer.writeInt32(
|
|
14715
|
+
13,
|
|
14716
|
+
f
|
|
14717
|
+
);
|
|
14718
|
+
}
|
|
14719
|
+
f = message.getLoyaltyoptionspent();
|
|
14720
|
+
if (f !== 0) {
|
|
14721
|
+
writer.writeInt32(
|
|
14722
|
+
14,
|
|
14723
|
+
f
|
|
14724
|
+
);
|
|
14725
|
+
}
|
|
14726
|
+
f = message.getLoyaltyoptionvaluetag();
|
|
14727
|
+
if (f.length > 0) {
|
|
14728
|
+
writer.writeString(
|
|
14729
|
+
15,
|
|
14730
|
+
f
|
|
14731
|
+
);
|
|
14732
|
+
}
|
|
14697
14733
|
};
|
|
14698
14734
|
|
|
14699
14735
|
|
|
@@ -14913,6 +14949,60 @@ proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptiondisabledgrap
|
|
|
14913
14949
|
};
|
|
14914
14950
|
|
|
14915
14951
|
|
|
14952
|
+
/**
|
|
14953
|
+
* optional int32 loyaltyOptionEarned = 13;
|
|
14954
|
+
* @return {number}
|
|
14955
|
+
*/
|
|
14956
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getLoyaltyoptionearned = function() {
|
|
14957
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
14958
|
+
};
|
|
14959
|
+
|
|
14960
|
+
|
|
14961
|
+
/**
|
|
14962
|
+
* @param {number} value
|
|
14963
|
+
* @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
|
|
14964
|
+
*/
|
|
14965
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionearned = function(value) {
|
|
14966
|
+
return jspb.Message.setProto3IntField(this, 13, value);
|
|
14967
|
+
};
|
|
14968
|
+
|
|
14969
|
+
|
|
14970
|
+
/**
|
|
14971
|
+
* optional int32 loyaltyOptionSpent = 14;
|
|
14972
|
+
* @return {number}
|
|
14973
|
+
*/
|
|
14974
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getLoyaltyoptionspent = function() {
|
|
14975
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 14, 0));
|
|
14976
|
+
};
|
|
14977
|
+
|
|
14978
|
+
|
|
14979
|
+
/**
|
|
14980
|
+
* @param {number} value
|
|
14981
|
+
* @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
|
|
14982
|
+
*/
|
|
14983
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionspent = function(value) {
|
|
14984
|
+
return jspb.Message.setProto3IntField(this, 14, value);
|
|
14985
|
+
};
|
|
14986
|
+
|
|
14987
|
+
|
|
14988
|
+
/**
|
|
14989
|
+
* optional string loyaltyOptionValueTag = 15;
|
|
14990
|
+
* @return {string}
|
|
14991
|
+
*/
|
|
14992
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.getLoyaltyoptionvaluetag = function() {
|
|
14993
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
14994
|
+
};
|
|
14995
|
+
|
|
14996
|
+
|
|
14997
|
+
/**
|
|
14998
|
+
* @param {string} value
|
|
14999
|
+
* @return {!proto.sniiptransactionapi.LoyaltyTierInfo} returns this
|
|
15000
|
+
*/
|
|
15001
|
+
proto.sniiptransactionapi.LoyaltyTierInfo.prototype.setLoyaltyoptionvaluetag = function(value) {
|
|
15002
|
+
return jspb.Message.setProto3StringField(this, 15, value);
|
|
15003
|
+
};
|
|
15004
|
+
|
|
15005
|
+
|
|
14916
15006
|
|
|
14917
15007
|
|
|
14918
15008
|
|