@sniipwebmaster/config-service-client-grpcweb-ts 25.7.1983 → 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.
|
@@ -241,6 +241,12 @@ export class ConfigExtra extends jspb.Message {
|
|
|
241
241
|
getAllowalipay(): boolean;
|
|
242
242
|
setAllowalipay(value: boolean): ConfigExtra;
|
|
243
243
|
|
|
244
|
+
getPaytobankaccountsenabled(): boolean;
|
|
245
|
+
setPaytobankaccountsenabled(value: boolean): ConfigExtra;
|
|
246
|
+
|
|
247
|
+
getPointsboostenabled(): boolean;
|
|
248
|
+
setPointsboostenabled(value: boolean): ConfigExtra;
|
|
249
|
+
|
|
244
250
|
serializeBinary(): Uint8Array;
|
|
245
251
|
toObject(includeInstance?: boolean): ConfigExtra.AsObject;
|
|
246
252
|
static toObject(includeInstance: boolean, msg: ConfigExtra): ConfigExtra.AsObject;
|
|
@@ -293,6 +299,8 @@ export namespace ConfigExtra {
|
|
|
293
299
|
allowalipayglobal: boolean,
|
|
294
300
|
allowwechat: boolean,
|
|
295
301
|
allowalipay: boolean,
|
|
302
|
+
paytobankaccountsenabled: boolean,
|
|
303
|
+
pointsboostenabled: boolean,
|
|
296
304
|
}
|
|
297
305
|
}
|
|
298
306
|
|
|
@@ -1389,7 +1389,9 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
1389
1389
|
allowwechatglobal: jspb.Message.getBooleanFieldWithDefault(msg, 39, false),
|
|
1390
1390
|
allowalipayglobal: jspb.Message.getBooleanFieldWithDefault(msg, 40, false),
|
|
1391
1391
|
allowwechat: jspb.Message.getBooleanFieldWithDefault(msg, 41, false),
|
|
1392
|
-
allowalipay: jspb.Message.getBooleanFieldWithDefault(msg, 42, false)
|
|
1392
|
+
allowalipay: jspb.Message.getBooleanFieldWithDefault(msg, 42, false),
|
|
1393
|
+
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 43, false),
|
|
1394
|
+
pointsboostenabled: jspb.Message.getBooleanFieldWithDefault(msg, 44, false)
|
|
1393
1395
|
};
|
|
1394
1396
|
|
|
1395
1397
|
if (includeInstance) {
|
|
@@ -1596,6 +1598,14 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
1596
1598
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1597
1599
|
msg.setAllowalipay(value);
|
|
1598
1600
|
break;
|
|
1601
|
+
case 43:
|
|
1602
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1603
|
+
msg.setPaytobankaccountsenabled(value);
|
|
1604
|
+
break;
|
|
1605
|
+
case 44:
|
|
1606
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1607
|
+
msg.setPointsboostenabled(value);
|
|
1608
|
+
break;
|
|
1599
1609
|
default:
|
|
1600
1610
|
reader.skipField();
|
|
1601
1611
|
break;
|
|
@@ -1921,6 +1931,20 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
|
|
|
1921
1931
|
f
|
|
1922
1932
|
);
|
|
1923
1933
|
}
|
|
1934
|
+
f = message.getPaytobankaccountsenabled();
|
|
1935
|
+
if (f) {
|
|
1936
|
+
writer.writeBool(
|
|
1937
|
+
43,
|
|
1938
|
+
f
|
|
1939
|
+
);
|
|
1940
|
+
}
|
|
1941
|
+
f = message.getPointsboostenabled();
|
|
1942
|
+
if (f) {
|
|
1943
|
+
writer.writeBool(
|
|
1944
|
+
44,
|
|
1945
|
+
f
|
|
1946
|
+
);
|
|
1947
|
+
}
|
|
1924
1948
|
};
|
|
1925
1949
|
|
|
1926
1950
|
|
|
@@ -2756,6 +2780,42 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setAllowalipay = function(value
|
|
|
2756
2780
|
};
|
|
2757
2781
|
|
|
2758
2782
|
|
|
2783
|
+
/**
|
|
2784
|
+
* optional bool payToBankAccountsEnabled = 43;
|
|
2785
|
+
* @return {boolean}
|
|
2786
|
+
*/
|
|
2787
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytobankaccountsenabled = function() {
|
|
2788
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 43, false));
|
|
2789
|
+
};
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
/**
|
|
2793
|
+
* @param {boolean} value
|
|
2794
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
2795
|
+
*/
|
|
2796
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytobankaccountsenabled = function(value) {
|
|
2797
|
+
return jspb.Message.setProto3BooleanField(this, 43, value);
|
|
2798
|
+
};
|
|
2799
|
+
|
|
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
|
+
|
|
2759
2819
|
|
|
2760
2820
|
|
|
2761
2821
|
|