@sniipwebmaster/config-service-client-grpcweb 22.16.1464 → 22.19.1490
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 +59 -1
- package/package.json +1 -1
|
@@ -931,7 +931,9 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
931
931
|
spotofferenabled: msg.getSpotofferenabled(),
|
|
932
932
|
bulkpaymentsenabled: msg.getBulkpaymentsenabled(),
|
|
933
933
|
googlepayscheduledpaymentenabled: msg.getGooglepayscheduledpaymentenabled(),
|
|
934
|
-
loyaltyprogramsenabled: msg.getLoyaltyprogramsenabled()
|
|
934
|
+
loyaltyprogramsenabled: msg.getLoyaltyprogramsenabled(),
|
|
935
|
+
applepayamexenabled: msg.getApplepayamexenabled(),
|
|
936
|
+
googlepayamexenabled: msg.getGooglepayamexenabled()
|
|
935
937
|
};
|
|
936
938
|
|
|
937
939
|
if (includeInstance) {
|
|
@@ -1083,6 +1085,14 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
1083
1085
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1084
1086
|
msg.setLoyaltyprogramsenabled(value);
|
|
1085
1087
|
break;
|
|
1088
|
+
case 29:
|
|
1089
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1090
|
+
msg.setApplepayamexenabled(value);
|
|
1091
|
+
break;
|
|
1092
|
+
case 30:
|
|
1093
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1094
|
+
msg.setGooglepayamexenabled(value);
|
|
1095
|
+
break;
|
|
1086
1096
|
default:
|
|
1087
1097
|
reader.skipField();
|
|
1088
1098
|
break;
|
|
@@ -1318,6 +1328,20 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.serializeBinaryToWriter = funct
|
|
|
1318
1328
|
f
|
|
1319
1329
|
);
|
|
1320
1330
|
}
|
|
1331
|
+
f = this.getApplepayamexenabled();
|
|
1332
|
+
if (f) {
|
|
1333
|
+
writer.writeBool(
|
|
1334
|
+
29,
|
|
1335
|
+
f
|
|
1336
|
+
);
|
|
1337
|
+
}
|
|
1338
|
+
f = this.getGooglepayamexenabled();
|
|
1339
|
+
if (f) {
|
|
1340
|
+
writer.writeBool(
|
|
1341
|
+
30,
|
|
1342
|
+
f
|
|
1343
|
+
);
|
|
1344
|
+
}
|
|
1321
1345
|
};
|
|
1322
1346
|
|
|
1323
1347
|
|
|
@@ -1819,6 +1843,40 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setLoyaltyprogramsenabled = fun
|
|
|
1819
1843
|
};
|
|
1820
1844
|
|
|
1821
1845
|
|
|
1846
|
+
/**
|
|
1847
|
+
* optional bool applePayAmexEnabled = 29;
|
|
1848
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
1849
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
1850
|
+
* @return {boolean}
|
|
1851
|
+
*/
|
|
1852
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getApplepayamexenabled = function() {
|
|
1853
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 29, false));
|
|
1854
|
+
};
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
/** @param {boolean} value */
|
|
1858
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setApplepayamexenabled = function(value) {
|
|
1859
|
+
jspb.Message.setField(this, 29, value);
|
|
1860
|
+
};
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
|
+
/**
|
|
1864
|
+
* optional bool googlePayAmexEnabled = 30;
|
|
1865
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
1866
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
1867
|
+
* @return {boolean}
|
|
1868
|
+
*/
|
|
1869
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getGooglepayamexenabled = function() {
|
|
1870
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 30, false));
|
|
1871
|
+
};
|
|
1872
|
+
|
|
1873
|
+
|
|
1874
|
+
/** @param {boolean} value */
|
|
1875
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setGooglepayamexenabled = function(value) {
|
|
1876
|
+
jspb.Message.setField(this, 30, value);
|
|
1877
|
+
};
|
|
1878
|
+
|
|
1879
|
+
|
|
1822
1880
|
|
|
1823
1881
|
/**
|
|
1824
1882
|
* Generated by JsPbCodeGenerator.
|