@sniipwebmaster/config-service-client-grpcweb-ts 25.10.1998 → 25.11.2010
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.
|
@@ -244,6 +244,9 @@ export class ConfigExtra extends jspb.Message {
|
|
|
244
244
|
getPaytobankaccountsenabled(): boolean;
|
|
245
245
|
setPaytobankaccountsenabled(value: boolean): ConfigExtra;
|
|
246
246
|
|
|
247
|
+
getPointsboostenabled(): boolean;
|
|
248
|
+
setPointsboostenabled(value: boolean): ConfigExtra;
|
|
249
|
+
|
|
247
250
|
serializeBinary(): Uint8Array;
|
|
248
251
|
toObject(includeInstance?: boolean): ConfigExtra.AsObject;
|
|
249
252
|
static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
|
|
@@ -297,6 +300,7 @@ export namespace ConfigExtra {
|
|
|
297
300
|
allowwechat: boolean,
|
|
298
301
|
allowalipay: boolean,
|
|
299
302
|
paytobankaccountsenabled: boolean,
|
|
303
|
+
pointsboostenabled: boolean,
|
|
300
304
|
}
|
|
301
305
|
}
|
|
302
306
|
|
|
@@ -1390,7 +1390,8 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
1390
1390
|
allowalipayglobal: jspb.Message.getBooleanFieldWithDefault(msg, 40, false),
|
|
1391
1391
|
allowwechat: jspb.Message.getBooleanFieldWithDefault(msg, 41, false),
|
|
1392
1392
|
allowalipay: jspb.Message.getBooleanFieldWithDefault(msg, 42, false),
|
|
1393
|
-
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 43, false)
|
|
1393
|
+
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 43, false),
|
|
1394
|
+
pointsboostenabled: jspb.Message.getBooleanFieldWithDefault(msg, 44, false)
|
|
1394
1395
|
};
|
|
1395
1396
|
|
|
1396
1397
|
if (includeInstance) {
|
|
@@ -1601,6 +1602,10 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
1601
1602
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1602
1603
|
msg.setPaytobankaccountsenabled(value);
|
|
1603
1604
|
break;
|
|
1605
|
+
case 44:
|
|
1606
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1607
|
+
msg.setPointsboostenabled(value);
|
|
1608
|
+
break;
|
|
1604
1609
|
default:
|
|
1605
1610
|
reader.skipField();
|
|
1606
1611
|
break;
|
|
@@ -1933,6 +1938,13 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
|
|
|
1933
1938
|
f
|
|
1934
1939
|
);
|
|
1935
1940
|
}
|
|
1941
|
+
f = message.getPointsboostenabled();
|
|
1942
|
+
if (f) {
|
|
1943
|
+
writer.writeBool(
|
|
1944
|
+
44,
|
|
1945
|
+
f
|
|
1946
|
+
);
|
|
1947
|
+
}
|
|
1936
1948
|
};
|
|
1937
1949
|
|
|
1938
1950
|
|
|
@@ -2786,6 +2798,24 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytobankaccountsenabled = f
|
|
|
2786
2798
|
};
|
|
2787
2799
|
|
|
2788
2800
|
|
|
2801
|
+
/**
|
|
2802
|
+
* optional bool pointsBoostEnabled = 44;
|
|
2803
|
+
* @return {boolean}
|
|
2804
|
+
*/
|
|
2805
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getPointsboostenabled = function() {
|
|
2806
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 44, false));
|
|
2807
|
+
};
|
|
2808
|
+
|
|
2809
|
+
|
|
2810
|
+
/**
|
|
2811
|
+
* @param {boolean} value
|
|
2812
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
2813
|
+
*/
|
|
2814
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setPointsboostenabled = function(value) {
|
|
2815
|
+
return jspb.Message.setProto3BooleanField(this, 44, value);
|
|
2816
|
+
};
|
|
2817
|
+
|
|
2818
|
+
|
|
2789
2819
|
|
|
2790
2820
|
|
|
2791
2821
|
|