@sniipwebmaster/config-service-client-grpcweb 26.3.2271 → 26.4.2297
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 +34 -1
- package/package.json +1 -1
|
@@ -1904,7 +1904,8 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
1904
1904
|
filteredspotoffersenabled: jspb.Message.getBooleanFieldWithDefault(msg, 45, false),
|
|
1905
1905
|
paymentmethodtypevaluetagMap: (f = msg.getPaymentmethodtypevaluetagMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
1906
1906
|
click2payenabled: jspb.Message.getBooleanFieldWithDefault(msg, 47, false),
|
|
1907
|
-
click2paybetauser: jspb.Message.getBooleanFieldWithDefault(msg, 48, false)
|
|
1907
|
+
click2paybetauser: jspb.Message.getBooleanFieldWithDefault(msg, 48, false),
|
|
1908
|
+
paymentmethodtypepaymentflowvaluetagMap: (f = msg.getPaymentmethodtypepaymentflowvaluetagMap()) ? f.toObject(includeInstance, undefined) : []
|
|
1908
1909
|
};
|
|
1909
1910
|
|
|
1910
1911
|
if (includeInstance) {
|
|
@@ -2137,6 +2138,12 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
2137
2138
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2138
2139
|
msg.setClick2paybetauser(value);
|
|
2139
2140
|
break;
|
|
2141
|
+
case 49:
|
|
2142
|
+
var value = msg.getPaymentmethodtypepaymentflowvaluetagMap();
|
|
2143
|
+
reader.readMessage(value, function(message, reader) {
|
|
2144
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
2145
|
+
});
|
|
2146
|
+
break;
|
|
2140
2147
|
default:
|
|
2141
2148
|
reader.skipField();
|
|
2142
2149
|
break;
|
|
@@ -2501,6 +2508,10 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
|
|
|
2501
2508
|
f
|
|
2502
2509
|
);
|
|
2503
2510
|
}
|
|
2511
|
+
f = message.getPaymentmethodtypepaymentflowvaluetagMap(true);
|
|
2512
|
+
if (f && f.getLength() > 0) {
|
|
2513
|
+
f.serializeBinary(49, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
2514
|
+
}
|
|
2504
2515
|
};
|
|
2505
2516
|
|
|
2506
2517
|
|
|
@@ -3448,6 +3459,28 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.setClick2paybetauser = function
|
|
|
3448
3459
|
};
|
|
3449
3460
|
|
|
3450
3461
|
|
|
3462
|
+
/**
|
|
3463
|
+
* map<string, string> paymentMethodTypePaymentFlowValueTag = 49;
|
|
3464
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
3465
|
+
* empty, instead returning `undefined`
|
|
3466
|
+
* @return {!jspb.Map<string,string>}
|
|
3467
|
+
*/
|
|
3468
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getPaymentmethodtypepaymentflowvaluetagMap = function(opt_noLazyCreate) {
|
|
3469
|
+
return /** @type {!jspb.Map<string,string>} */ (
|
|
3470
|
+
jspb.Message.getMapField(this, 49, opt_noLazyCreate,
|
|
3471
|
+
null));
|
|
3472
|
+
};
|
|
3473
|
+
|
|
3474
|
+
|
|
3475
|
+
/**
|
|
3476
|
+
* Clears values from the map. The map will be non-null.
|
|
3477
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
3478
|
+
*/
|
|
3479
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.clearPaymentmethodtypepaymentflowvaluetagMap = function() {
|
|
3480
|
+
this.getPaymentmethodtypepaymentflowvaluetagMap().clear();
|
|
3481
|
+
return this;};
|
|
3482
|
+
|
|
3483
|
+
|
|
3451
3484
|
|
|
3452
3485
|
|
|
3453
3486
|
|