protobuf-platform 1.2.386 → 1.2.390
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/game/game.proto +7 -0
- package/game/game_grpc_pb.js +22 -0
- package/game/game_pb.js +322 -0
- package/package.json +1 -1
- package/payment/payment.proto +4 -0
- package/payment/payment_pb.js +193 -1
package/game/game.proto
CHANGED
|
@@ -92,6 +92,7 @@ service Game {
|
|
|
92
92
|
rpc getGameScopesByIds(ScopeRequest) returns (ScopeResponse);
|
|
93
93
|
rpc getCounterScopes(ScopeRequest) returns (ScopeResponse);
|
|
94
94
|
rpc getProvidersByIds(ProvidersIds) returns (ProviderPoorItemsResponse);
|
|
95
|
+
rpc getProvidersBySlugs(ProvidersSlugs) returns (ProviderItemsResponse);
|
|
95
96
|
//Wager lists
|
|
96
97
|
rpc readSingleWagerList(GetWagerListRequest) returns (WagerListResponse);
|
|
97
98
|
rpc createSingleWagerList(WagerListRequest) returns (WagerListResponse);
|
|
@@ -798,6 +799,12 @@ message TournamentGamesRequest {
|
|
|
798
799
|
message ProvidersIds {
|
|
799
800
|
repeated int32 ids = 1;
|
|
800
801
|
}
|
|
802
|
+
message ProvidersSlugs {
|
|
803
|
+
repeated string slugs = 1;
|
|
804
|
+
optional string geo = 2;
|
|
805
|
+
optional bool admin_side = 3;
|
|
806
|
+
optional bool with_games_count = 4;
|
|
807
|
+
}
|
|
801
808
|
message ProviderPoorItemsResponse {
|
|
802
809
|
repeated ProviderItem items = 1;
|
|
803
810
|
}
|
package/game/game_grpc_pb.js
CHANGED
|
@@ -851,6 +851,17 @@ function deserialize_game_ProvidersIds(buffer_arg) {
|
|
|
851
851
|
return game_pb.ProvidersIds.deserializeBinary(new Uint8Array(buffer_arg));
|
|
852
852
|
}
|
|
853
853
|
|
|
854
|
+
function serialize_game_ProvidersSlugs(arg) {
|
|
855
|
+
if (!(arg instanceof game_pb.ProvidersSlugs)) {
|
|
856
|
+
throw new Error('Expected argument of type game.ProvidersSlugs');
|
|
857
|
+
}
|
|
858
|
+
return Buffer.from(arg.serializeBinary());
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
function deserialize_game_ProvidersSlugs(buffer_arg) {
|
|
862
|
+
return game_pb.ProvidersSlugs.deserializeBinary(new Uint8Array(buffer_arg));
|
|
863
|
+
}
|
|
864
|
+
|
|
854
865
|
function serialize_game_SEOInstanceRequest(arg) {
|
|
855
866
|
if (!(arg instanceof game_pb.SEOInstanceRequest)) {
|
|
856
867
|
throw new Error('Expected argument of type game.SEOInstanceRequest');
|
|
@@ -2063,6 +2074,17 @@ getGamesByUuids: {
|
|
|
2063
2074
|
responseSerialize: serialize_game_ProviderPoorItemsResponse,
|
|
2064
2075
|
responseDeserialize: deserialize_game_ProviderPoorItemsResponse,
|
|
2065
2076
|
},
|
|
2077
|
+
getProvidersBySlugs: {
|
|
2078
|
+
path: '/game.Game/getProvidersBySlugs',
|
|
2079
|
+
requestStream: false,
|
|
2080
|
+
responseStream: false,
|
|
2081
|
+
requestType: game_pb.ProvidersSlugs,
|
|
2082
|
+
responseType: game_pb.ProviderItemsResponse,
|
|
2083
|
+
requestSerialize: serialize_game_ProvidersSlugs,
|
|
2084
|
+
requestDeserialize: deserialize_game_ProvidersSlugs,
|
|
2085
|
+
responseSerialize: serialize_game_ProviderItemsResponse,
|
|
2086
|
+
responseDeserialize: deserialize_game_ProviderItemsResponse,
|
|
2087
|
+
},
|
|
2066
2088
|
// Wager lists
|
|
2067
2089
|
readSingleWagerList: {
|
|
2068
2090
|
path: '/game.Game/readSingleWagerList',
|
package/game/game_pb.js
CHANGED
|
@@ -127,6 +127,7 @@ goog.exportSymbol('proto.game.ProviderResponse', null, global);
|
|
|
127
127
|
goog.exportSymbol('proto.game.ProviderSearchRequest', null, global);
|
|
128
128
|
goog.exportSymbol('proto.game.ProviderStatusResponse', null, global);
|
|
129
129
|
goog.exportSymbol('proto.game.ProvidersIds', null, global);
|
|
130
|
+
goog.exportSymbol('proto.game.ProvidersSlugs', null, global);
|
|
130
131
|
goog.exportSymbol('proto.game.SEOAttribute', null, global);
|
|
131
132
|
goog.exportSymbol('proto.game.SEOInstanceRelation', null, global);
|
|
132
133
|
goog.exportSymbol('proto.game.SEOInstanceRequest', null, global);
|
|
@@ -2485,6 +2486,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
2485
2486
|
*/
|
|
2486
2487
|
proto.game.ProvidersIds.displayName = 'proto.game.ProvidersIds';
|
|
2487
2488
|
}
|
|
2489
|
+
/**
|
|
2490
|
+
* Generated by JsPbCodeGenerator.
|
|
2491
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2492
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2493
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2494
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2495
|
+
* valid.
|
|
2496
|
+
* @extends {jspb.Message}
|
|
2497
|
+
* @constructor
|
|
2498
|
+
*/
|
|
2499
|
+
proto.game.ProvidersSlugs = function(opt_data) {
|
|
2500
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.game.ProvidersSlugs.repeatedFields_, null);
|
|
2501
|
+
};
|
|
2502
|
+
goog.inherits(proto.game.ProvidersSlugs, jspb.Message);
|
|
2503
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2504
|
+
/**
|
|
2505
|
+
* @public
|
|
2506
|
+
* @override
|
|
2507
|
+
*/
|
|
2508
|
+
proto.game.ProvidersSlugs.displayName = 'proto.game.ProvidersSlugs';
|
|
2509
|
+
}
|
|
2488
2510
|
/**
|
|
2489
2511
|
* Generated by JsPbCodeGenerator.
|
|
2490
2512
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -33831,6 +33853,306 @@ proto.game.ProvidersIds.prototype.clearIdsList = function() {
|
|
|
33831
33853
|
|
|
33832
33854
|
|
|
33833
33855
|
|
|
33856
|
+
/**
|
|
33857
|
+
* List of repeated fields within this message type.
|
|
33858
|
+
* @private {!Array<number>}
|
|
33859
|
+
* @const
|
|
33860
|
+
*/
|
|
33861
|
+
proto.game.ProvidersSlugs.repeatedFields_ = [1];
|
|
33862
|
+
|
|
33863
|
+
|
|
33864
|
+
|
|
33865
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
33866
|
+
/**
|
|
33867
|
+
* Creates an object representation of this proto.
|
|
33868
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
33869
|
+
* Optional fields that are not set will be set to undefined.
|
|
33870
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
33871
|
+
* For the list of reserved names please see:
|
|
33872
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
33873
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
33874
|
+
* JSPB instance for transitional soy proto support:
|
|
33875
|
+
* http://goto/soy-param-migration
|
|
33876
|
+
* @return {!Object}
|
|
33877
|
+
*/
|
|
33878
|
+
proto.game.ProvidersSlugs.prototype.toObject = function(opt_includeInstance) {
|
|
33879
|
+
return proto.game.ProvidersSlugs.toObject(opt_includeInstance, this);
|
|
33880
|
+
};
|
|
33881
|
+
|
|
33882
|
+
|
|
33883
|
+
/**
|
|
33884
|
+
* Static version of the {@see toObject} method.
|
|
33885
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
33886
|
+
* the JSPB instance for transitional soy proto support:
|
|
33887
|
+
* http://goto/soy-param-migration
|
|
33888
|
+
* @param {!proto.game.ProvidersSlugs} msg The msg instance to transform.
|
|
33889
|
+
* @return {!Object}
|
|
33890
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
33891
|
+
*/
|
|
33892
|
+
proto.game.ProvidersSlugs.toObject = function(includeInstance, msg) {
|
|
33893
|
+
var f, obj = {
|
|
33894
|
+
slugsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
33895
|
+
geo: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
33896
|
+
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
33897
|
+
withGamesCount: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
33898
|
+
};
|
|
33899
|
+
|
|
33900
|
+
if (includeInstance) {
|
|
33901
|
+
obj.$jspbMessageInstance = msg;
|
|
33902
|
+
}
|
|
33903
|
+
return obj;
|
|
33904
|
+
};
|
|
33905
|
+
}
|
|
33906
|
+
|
|
33907
|
+
|
|
33908
|
+
/**
|
|
33909
|
+
* Deserializes binary data (in protobuf wire format).
|
|
33910
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
33911
|
+
* @return {!proto.game.ProvidersSlugs}
|
|
33912
|
+
*/
|
|
33913
|
+
proto.game.ProvidersSlugs.deserializeBinary = function(bytes) {
|
|
33914
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
33915
|
+
var msg = new proto.game.ProvidersSlugs;
|
|
33916
|
+
return proto.game.ProvidersSlugs.deserializeBinaryFromReader(msg, reader);
|
|
33917
|
+
};
|
|
33918
|
+
|
|
33919
|
+
|
|
33920
|
+
/**
|
|
33921
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
33922
|
+
* given reader into the given message object.
|
|
33923
|
+
* @param {!proto.game.ProvidersSlugs} msg The message object to deserialize into.
|
|
33924
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
33925
|
+
* @return {!proto.game.ProvidersSlugs}
|
|
33926
|
+
*/
|
|
33927
|
+
proto.game.ProvidersSlugs.deserializeBinaryFromReader = function(msg, reader) {
|
|
33928
|
+
while (reader.nextField()) {
|
|
33929
|
+
if (reader.isEndGroup()) {
|
|
33930
|
+
break;
|
|
33931
|
+
}
|
|
33932
|
+
var field = reader.getFieldNumber();
|
|
33933
|
+
switch (field) {
|
|
33934
|
+
case 1:
|
|
33935
|
+
var value = /** @type {string} */ (reader.readString());
|
|
33936
|
+
msg.addSlugs(value);
|
|
33937
|
+
break;
|
|
33938
|
+
case 2:
|
|
33939
|
+
var value = /** @type {string} */ (reader.readString());
|
|
33940
|
+
msg.setGeo(value);
|
|
33941
|
+
break;
|
|
33942
|
+
case 3:
|
|
33943
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
33944
|
+
msg.setAdminSide(value);
|
|
33945
|
+
break;
|
|
33946
|
+
case 4:
|
|
33947
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
33948
|
+
msg.setWithGamesCount(value);
|
|
33949
|
+
break;
|
|
33950
|
+
default:
|
|
33951
|
+
reader.skipField();
|
|
33952
|
+
break;
|
|
33953
|
+
}
|
|
33954
|
+
}
|
|
33955
|
+
return msg;
|
|
33956
|
+
};
|
|
33957
|
+
|
|
33958
|
+
|
|
33959
|
+
/**
|
|
33960
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
33961
|
+
* @return {!Uint8Array}
|
|
33962
|
+
*/
|
|
33963
|
+
proto.game.ProvidersSlugs.prototype.serializeBinary = function() {
|
|
33964
|
+
var writer = new jspb.BinaryWriter();
|
|
33965
|
+
proto.game.ProvidersSlugs.serializeBinaryToWriter(this, writer);
|
|
33966
|
+
return writer.getResultBuffer();
|
|
33967
|
+
};
|
|
33968
|
+
|
|
33969
|
+
|
|
33970
|
+
/**
|
|
33971
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
33972
|
+
* format), writing to the given BinaryWriter.
|
|
33973
|
+
* @param {!proto.game.ProvidersSlugs} message
|
|
33974
|
+
* @param {!jspb.BinaryWriter} writer
|
|
33975
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
33976
|
+
*/
|
|
33977
|
+
proto.game.ProvidersSlugs.serializeBinaryToWriter = function(message, writer) {
|
|
33978
|
+
var f = undefined;
|
|
33979
|
+
f = message.getSlugsList();
|
|
33980
|
+
if (f.length > 0) {
|
|
33981
|
+
writer.writeRepeatedString(
|
|
33982
|
+
1,
|
|
33983
|
+
f
|
|
33984
|
+
);
|
|
33985
|
+
}
|
|
33986
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
33987
|
+
if (f != null) {
|
|
33988
|
+
writer.writeString(
|
|
33989
|
+
2,
|
|
33990
|
+
f
|
|
33991
|
+
);
|
|
33992
|
+
}
|
|
33993
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
33994
|
+
if (f != null) {
|
|
33995
|
+
writer.writeBool(
|
|
33996
|
+
3,
|
|
33997
|
+
f
|
|
33998
|
+
);
|
|
33999
|
+
}
|
|
34000
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 4));
|
|
34001
|
+
if (f != null) {
|
|
34002
|
+
writer.writeBool(
|
|
34003
|
+
4,
|
|
34004
|
+
f
|
|
34005
|
+
);
|
|
34006
|
+
}
|
|
34007
|
+
};
|
|
34008
|
+
|
|
34009
|
+
|
|
34010
|
+
/**
|
|
34011
|
+
* repeated string slugs = 1;
|
|
34012
|
+
* @return {!Array<string>}
|
|
34013
|
+
*/
|
|
34014
|
+
proto.game.ProvidersSlugs.prototype.getSlugsList = function() {
|
|
34015
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
|
|
34016
|
+
};
|
|
34017
|
+
|
|
34018
|
+
|
|
34019
|
+
/**
|
|
34020
|
+
* @param {!Array<string>} value
|
|
34021
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34022
|
+
*/
|
|
34023
|
+
proto.game.ProvidersSlugs.prototype.setSlugsList = function(value) {
|
|
34024
|
+
return jspb.Message.setField(this, 1, value || []);
|
|
34025
|
+
};
|
|
34026
|
+
|
|
34027
|
+
|
|
34028
|
+
/**
|
|
34029
|
+
* @param {string} value
|
|
34030
|
+
* @param {number=} opt_index
|
|
34031
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34032
|
+
*/
|
|
34033
|
+
proto.game.ProvidersSlugs.prototype.addSlugs = function(value, opt_index) {
|
|
34034
|
+
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
|
|
34035
|
+
};
|
|
34036
|
+
|
|
34037
|
+
|
|
34038
|
+
/**
|
|
34039
|
+
* Clears the list making it empty but non-null.
|
|
34040
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34041
|
+
*/
|
|
34042
|
+
proto.game.ProvidersSlugs.prototype.clearSlugsList = function() {
|
|
34043
|
+
return this.setSlugsList([]);
|
|
34044
|
+
};
|
|
34045
|
+
|
|
34046
|
+
|
|
34047
|
+
/**
|
|
34048
|
+
* optional string geo = 2;
|
|
34049
|
+
* @return {string}
|
|
34050
|
+
*/
|
|
34051
|
+
proto.game.ProvidersSlugs.prototype.getGeo = function() {
|
|
34052
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
34053
|
+
};
|
|
34054
|
+
|
|
34055
|
+
|
|
34056
|
+
/**
|
|
34057
|
+
* @param {string} value
|
|
34058
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34059
|
+
*/
|
|
34060
|
+
proto.game.ProvidersSlugs.prototype.setGeo = function(value) {
|
|
34061
|
+
return jspb.Message.setField(this, 2, value);
|
|
34062
|
+
};
|
|
34063
|
+
|
|
34064
|
+
|
|
34065
|
+
/**
|
|
34066
|
+
* Clears the field making it undefined.
|
|
34067
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34068
|
+
*/
|
|
34069
|
+
proto.game.ProvidersSlugs.prototype.clearGeo = function() {
|
|
34070
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
34071
|
+
};
|
|
34072
|
+
|
|
34073
|
+
|
|
34074
|
+
/**
|
|
34075
|
+
* Returns whether this field is set.
|
|
34076
|
+
* @return {boolean}
|
|
34077
|
+
*/
|
|
34078
|
+
proto.game.ProvidersSlugs.prototype.hasGeo = function() {
|
|
34079
|
+
return jspb.Message.getField(this, 2) != null;
|
|
34080
|
+
};
|
|
34081
|
+
|
|
34082
|
+
|
|
34083
|
+
/**
|
|
34084
|
+
* optional bool admin_side = 3;
|
|
34085
|
+
* @return {boolean}
|
|
34086
|
+
*/
|
|
34087
|
+
proto.game.ProvidersSlugs.prototype.getAdminSide = function() {
|
|
34088
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
34089
|
+
};
|
|
34090
|
+
|
|
34091
|
+
|
|
34092
|
+
/**
|
|
34093
|
+
* @param {boolean} value
|
|
34094
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34095
|
+
*/
|
|
34096
|
+
proto.game.ProvidersSlugs.prototype.setAdminSide = function(value) {
|
|
34097
|
+
return jspb.Message.setField(this, 3, value);
|
|
34098
|
+
};
|
|
34099
|
+
|
|
34100
|
+
|
|
34101
|
+
/**
|
|
34102
|
+
* Clears the field making it undefined.
|
|
34103
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34104
|
+
*/
|
|
34105
|
+
proto.game.ProvidersSlugs.prototype.clearAdminSide = function() {
|
|
34106
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
34107
|
+
};
|
|
34108
|
+
|
|
34109
|
+
|
|
34110
|
+
/**
|
|
34111
|
+
* Returns whether this field is set.
|
|
34112
|
+
* @return {boolean}
|
|
34113
|
+
*/
|
|
34114
|
+
proto.game.ProvidersSlugs.prototype.hasAdminSide = function() {
|
|
34115
|
+
return jspb.Message.getField(this, 3) != null;
|
|
34116
|
+
};
|
|
34117
|
+
|
|
34118
|
+
|
|
34119
|
+
/**
|
|
34120
|
+
* optional bool with_games_count = 4;
|
|
34121
|
+
* @return {boolean}
|
|
34122
|
+
*/
|
|
34123
|
+
proto.game.ProvidersSlugs.prototype.getWithGamesCount = function() {
|
|
34124
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
34125
|
+
};
|
|
34126
|
+
|
|
34127
|
+
|
|
34128
|
+
/**
|
|
34129
|
+
* @param {boolean} value
|
|
34130
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34131
|
+
*/
|
|
34132
|
+
proto.game.ProvidersSlugs.prototype.setWithGamesCount = function(value) {
|
|
34133
|
+
return jspb.Message.setField(this, 4, value);
|
|
34134
|
+
};
|
|
34135
|
+
|
|
34136
|
+
|
|
34137
|
+
/**
|
|
34138
|
+
* Clears the field making it undefined.
|
|
34139
|
+
* @return {!proto.game.ProvidersSlugs} returns this
|
|
34140
|
+
*/
|
|
34141
|
+
proto.game.ProvidersSlugs.prototype.clearWithGamesCount = function() {
|
|
34142
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
34143
|
+
};
|
|
34144
|
+
|
|
34145
|
+
|
|
34146
|
+
/**
|
|
34147
|
+
* Returns whether this field is set.
|
|
34148
|
+
* @return {boolean}
|
|
34149
|
+
*/
|
|
34150
|
+
proto.game.ProvidersSlugs.prototype.hasWithGamesCount = function() {
|
|
34151
|
+
return jspb.Message.getField(this, 4) != null;
|
|
34152
|
+
};
|
|
34153
|
+
|
|
34154
|
+
|
|
34155
|
+
|
|
33834
34156
|
/**
|
|
33835
34157
|
* List of repeated fields within this message type.
|
|
33836
34158
|
* @private {!Array<number>}
|
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -576,6 +576,10 @@ message UserPaymentMethodItem {
|
|
|
576
576
|
optional bool sdk_enabled = 12;
|
|
577
577
|
optional string processing_type = 13;
|
|
578
578
|
optional string currency_type = 14;
|
|
579
|
+
optional string crypto_asset = 15;
|
|
580
|
+
optional string crypto_network = 16;
|
|
581
|
+
optional string provider_payment_id = 17;
|
|
582
|
+
optional string flow_type = 18;
|
|
579
583
|
}
|
|
580
584
|
message UserPaymentMethodsResponse {
|
|
581
585
|
repeated UserPaymentMethodItem items = 1;
|
package/payment/payment_pb.js
CHANGED
|
@@ -24015,7 +24015,11 @@ proto.payment.UserPaymentMethodItem.toObject = function(includeInstance, msg) {
|
|
|
24015
24015
|
sdkProvider: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
24016
24016
|
sdkEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
|
24017
24017
|
processingType: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
24018
|
-
currencyType: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
24018
|
+
currencyType: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
24019
|
+
cryptoAsset: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
24020
|
+
cryptoNetwork: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
24021
|
+
providerPaymentId: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
24022
|
+
flowType: jspb.Message.getFieldWithDefault(msg, 18, "")
|
|
24019
24023
|
};
|
|
24020
24024
|
|
|
24021
24025
|
if (includeInstance) {
|
|
@@ -24108,6 +24112,22 @@ proto.payment.UserPaymentMethodItem.deserializeBinaryFromReader = function(msg,
|
|
|
24108
24112
|
var value = /** @type {string} */ (reader.readString());
|
|
24109
24113
|
msg.setCurrencyType(value);
|
|
24110
24114
|
break;
|
|
24115
|
+
case 15:
|
|
24116
|
+
var value = /** @type {string} */ (reader.readString());
|
|
24117
|
+
msg.setCryptoAsset(value);
|
|
24118
|
+
break;
|
|
24119
|
+
case 16:
|
|
24120
|
+
var value = /** @type {string} */ (reader.readString());
|
|
24121
|
+
msg.setCryptoNetwork(value);
|
|
24122
|
+
break;
|
|
24123
|
+
case 17:
|
|
24124
|
+
var value = /** @type {string} */ (reader.readString());
|
|
24125
|
+
msg.setProviderPaymentId(value);
|
|
24126
|
+
break;
|
|
24127
|
+
case 18:
|
|
24128
|
+
var value = /** @type {string} */ (reader.readString());
|
|
24129
|
+
msg.setFlowType(value);
|
|
24130
|
+
break;
|
|
24111
24131
|
default:
|
|
24112
24132
|
reader.skipField();
|
|
24113
24133
|
break;
|
|
@@ -24235,6 +24255,34 @@ proto.payment.UserPaymentMethodItem.serializeBinaryToWriter = function(message,
|
|
|
24235
24255
|
f
|
|
24236
24256
|
);
|
|
24237
24257
|
}
|
|
24258
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
24259
|
+
if (f != null) {
|
|
24260
|
+
writer.writeString(
|
|
24261
|
+
15,
|
|
24262
|
+
f
|
|
24263
|
+
);
|
|
24264
|
+
}
|
|
24265
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 16));
|
|
24266
|
+
if (f != null) {
|
|
24267
|
+
writer.writeString(
|
|
24268
|
+
16,
|
|
24269
|
+
f
|
|
24270
|
+
);
|
|
24271
|
+
}
|
|
24272
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 17));
|
|
24273
|
+
if (f != null) {
|
|
24274
|
+
writer.writeString(
|
|
24275
|
+
17,
|
|
24276
|
+
f
|
|
24277
|
+
);
|
|
24278
|
+
}
|
|
24279
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 18));
|
|
24280
|
+
if (f != null) {
|
|
24281
|
+
writer.writeString(
|
|
24282
|
+
18,
|
|
24283
|
+
f
|
|
24284
|
+
);
|
|
24285
|
+
}
|
|
24238
24286
|
};
|
|
24239
24287
|
|
|
24240
24288
|
|
|
@@ -24616,6 +24664,150 @@ proto.payment.UserPaymentMethodItem.prototype.hasCurrencyType = function() {
|
|
|
24616
24664
|
};
|
|
24617
24665
|
|
|
24618
24666
|
|
|
24667
|
+
/**
|
|
24668
|
+
* optional string crypto_asset = 15;
|
|
24669
|
+
* @return {string}
|
|
24670
|
+
*/
|
|
24671
|
+
proto.payment.UserPaymentMethodItem.prototype.getCryptoAsset = function() {
|
|
24672
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
24673
|
+
};
|
|
24674
|
+
|
|
24675
|
+
|
|
24676
|
+
/**
|
|
24677
|
+
* @param {string} value
|
|
24678
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24679
|
+
*/
|
|
24680
|
+
proto.payment.UserPaymentMethodItem.prototype.setCryptoAsset = function(value) {
|
|
24681
|
+
return jspb.Message.setField(this, 15, value);
|
|
24682
|
+
};
|
|
24683
|
+
|
|
24684
|
+
|
|
24685
|
+
/**
|
|
24686
|
+
* Clears the field making it undefined.
|
|
24687
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24688
|
+
*/
|
|
24689
|
+
proto.payment.UserPaymentMethodItem.prototype.clearCryptoAsset = function() {
|
|
24690
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
24691
|
+
};
|
|
24692
|
+
|
|
24693
|
+
|
|
24694
|
+
/**
|
|
24695
|
+
* Returns whether this field is set.
|
|
24696
|
+
* @return {boolean}
|
|
24697
|
+
*/
|
|
24698
|
+
proto.payment.UserPaymentMethodItem.prototype.hasCryptoAsset = function() {
|
|
24699
|
+
return jspb.Message.getField(this, 15) != null;
|
|
24700
|
+
};
|
|
24701
|
+
|
|
24702
|
+
|
|
24703
|
+
/**
|
|
24704
|
+
* optional string crypto_network = 16;
|
|
24705
|
+
* @return {string}
|
|
24706
|
+
*/
|
|
24707
|
+
proto.payment.UserPaymentMethodItem.prototype.getCryptoNetwork = function() {
|
|
24708
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
24709
|
+
};
|
|
24710
|
+
|
|
24711
|
+
|
|
24712
|
+
/**
|
|
24713
|
+
* @param {string} value
|
|
24714
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24715
|
+
*/
|
|
24716
|
+
proto.payment.UserPaymentMethodItem.prototype.setCryptoNetwork = function(value) {
|
|
24717
|
+
return jspb.Message.setField(this, 16, value);
|
|
24718
|
+
};
|
|
24719
|
+
|
|
24720
|
+
|
|
24721
|
+
/**
|
|
24722
|
+
* Clears the field making it undefined.
|
|
24723
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24724
|
+
*/
|
|
24725
|
+
proto.payment.UserPaymentMethodItem.prototype.clearCryptoNetwork = function() {
|
|
24726
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
24727
|
+
};
|
|
24728
|
+
|
|
24729
|
+
|
|
24730
|
+
/**
|
|
24731
|
+
* Returns whether this field is set.
|
|
24732
|
+
* @return {boolean}
|
|
24733
|
+
*/
|
|
24734
|
+
proto.payment.UserPaymentMethodItem.prototype.hasCryptoNetwork = function() {
|
|
24735
|
+
return jspb.Message.getField(this, 16) != null;
|
|
24736
|
+
};
|
|
24737
|
+
|
|
24738
|
+
|
|
24739
|
+
/**
|
|
24740
|
+
* optional string provider_payment_id = 17;
|
|
24741
|
+
* @return {string}
|
|
24742
|
+
*/
|
|
24743
|
+
proto.payment.UserPaymentMethodItem.prototype.getProviderPaymentId = function() {
|
|
24744
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
24745
|
+
};
|
|
24746
|
+
|
|
24747
|
+
|
|
24748
|
+
/**
|
|
24749
|
+
* @param {string} value
|
|
24750
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24751
|
+
*/
|
|
24752
|
+
proto.payment.UserPaymentMethodItem.prototype.setProviderPaymentId = function(value) {
|
|
24753
|
+
return jspb.Message.setField(this, 17, value);
|
|
24754
|
+
};
|
|
24755
|
+
|
|
24756
|
+
|
|
24757
|
+
/**
|
|
24758
|
+
* Clears the field making it undefined.
|
|
24759
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24760
|
+
*/
|
|
24761
|
+
proto.payment.UserPaymentMethodItem.prototype.clearProviderPaymentId = function() {
|
|
24762
|
+
return jspb.Message.setField(this, 17, undefined);
|
|
24763
|
+
};
|
|
24764
|
+
|
|
24765
|
+
|
|
24766
|
+
/**
|
|
24767
|
+
* Returns whether this field is set.
|
|
24768
|
+
* @return {boolean}
|
|
24769
|
+
*/
|
|
24770
|
+
proto.payment.UserPaymentMethodItem.prototype.hasProviderPaymentId = function() {
|
|
24771
|
+
return jspb.Message.getField(this, 17) != null;
|
|
24772
|
+
};
|
|
24773
|
+
|
|
24774
|
+
|
|
24775
|
+
/**
|
|
24776
|
+
* optional string flow_type = 18;
|
|
24777
|
+
* @return {string}
|
|
24778
|
+
*/
|
|
24779
|
+
proto.payment.UserPaymentMethodItem.prototype.getFlowType = function() {
|
|
24780
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
|
|
24781
|
+
};
|
|
24782
|
+
|
|
24783
|
+
|
|
24784
|
+
/**
|
|
24785
|
+
* @param {string} value
|
|
24786
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24787
|
+
*/
|
|
24788
|
+
proto.payment.UserPaymentMethodItem.prototype.setFlowType = function(value) {
|
|
24789
|
+
return jspb.Message.setField(this, 18, value);
|
|
24790
|
+
};
|
|
24791
|
+
|
|
24792
|
+
|
|
24793
|
+
/**
|
|
24794
|
+
* Clears the field making it undefined.
|
|
24795
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
24796
|
+
*/
|
|
24797
|
+
proto.payment.UserPaymentMethodItem.prototype.clearFlowType = function() {
|
|
24798
|
+
return jspb.Message.setField(this, 18, undefined);
|
|
24799
|
+
};
|
|
24800
|
+
|
|
24801
|
+
|
|
24802
|
+
/**
|
|
24803
|
+
* Returns whether this field is set.
|
|
24804
|
+
* @return {boolean}
|
|
24805
|
+
*/
|
|
24806
|
+
proto.payment.UserPaymentMethodItem.prototype.hasFlowType = function() {
|
|
24807
|
+
return jspb.Message.getField(this, 18) != null;
|
|
24808
|
+
};
|
|
24809
|
+
|
|
24810
|
+
|
|
24619
24811
|
|
|
24620
24812
|
/**
|
|
24621
24813
|
* List of repeated fields within this message type.
|