protobuf-platform 1.2.397 → 1.2.399
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/bonus/bonus.proto +2 -0
- package/bonus/bonus_pb.js +98 -2
- package/package.json +1 -1
- package/payment/payment.proto +10 -0
- package/payment/payment_grpc_pb.js +33 -0
- package/payment/payment_pb.js +469 -0
- package/promocode/promocode.proto +160 -1
- package/promocode/promocode_grpc_pb.js +189 -0
- package/promocode/promocode_pb.js +6333 -93
- package/user/user.proto +16 -0
- package/user/user_grpc_pb.js +22 -0
- package/user/user_pb.js +710 -0
package/user/user.proto
CHANGED
|
@@ -17,6 +17,7 @@ service User {
|
|
|
17
17
|
rpc checkWithdrawalEligibility(CheckWithdrawalEligibilityRequest) returns (CheckWithdrawalEligibilityResponse);
|
|
18
18
|
rpc getUserWalletBalances(GetUserWalletBalancesRequest) returns (UserWalletBalancesResponse);
|
|
19
19
|
rpc getUserCachedData(UserDataRequest) returns (UserDataResponse);
|
|
20
|
+
rpc getUserDepositProfile(UserDataRequest) returns (UserDepositProfileResponse);
|
|
20
21
|
rpc getPumpKingsMyTokenWidgetLaunchData(GetPumpKingsMyTokenWidgetLaunchDataRequest) returns (GetPumpKingsMyTokenWidgetLaunchDataResponse);
|
|
21
22
|
rpc getUserAffiliateAttribution(UserAffiliateAttributionRequest) returns (UserAffiliateAttributionResponse);
|
|
22
23
|
rpc batchGetAffiliateAttribution(BatchGetAffiliateAttributionRequest) returns (BatchGetAffiliateAttributionResponse);
|
|
@@ -434,6 +435,21 @@ message UserDataResponse {
|
|
|
434
435
|
optional string antifraud_status = 44;
|
|
435
436
|
optional string antifraud_reason = 45;
|
|
436
437
|
}
|
|
438
|
+
message UserDepositProfileResponse {
|
|
439
|
+
int32 id = 1;
|
|
440
|
+
string public_id = 2;
|
|
441
|
+
optional string email = 3;
|
|
442
|
+
optional string phone = 4;
|
|
443
|
+
optional string country = 5;
|
|
444
|
+
optional string city = 6;
|
|
445
|
+
optional string first_name = 7;
|
|
446
|
+
optional string last_name = 8;
|
|
447
|
+
optional string birthday = 9;
|
|
448
|
+
optional string locale = 10;
|
|
449
|
+
optional string postal_code = 11;
|
|
450
|
+
optional string address_line1 = 12;
|
|
451
|
+
optional string state = 13;
|
|
452
|
+
}
|
|
437
453
|
message GetPumpKingsMyTokenWidgetLaunchDataRequest {
|
|
438
454
|
string user_public_id = 1;
|
|
439
455
|
}
|
package/user/user_grpc_pb.js
CHANGED
|
@@ -1214,6 +1214,17 @@ function deserialize_user_UserDataResponse(buffer_arg) {
|
|
|
1214
1214
|
return user_pb.UserDataResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1215
1215
|
}
|
|
1216
1216
|
|
|
1217
|
+
function serialize_user_UserDepositProfileResponse(arg) {
|
|
1218
|
+
if (!(arg instanceof user_pb.UserDepositProfileResponse)) {
|
|
1219
|
+
throw new Error('Expected argument of type user.UserDepositProfileResponse');
|
|
1220
|
+
}
|
|
1221
|
+
return Buffer.from(arg.serializeBinary());
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
function deserialize_user_UserDepositProfileResponse(buffer_arg) {
|
|
1225
|
+
return user_pb.UserDepositProfileResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1217
1228
|
function serialize_user_UserGameIdsFilterRequest(arg) {
|
|
1218
1229
|
if (!(arg instanceof user_pb.UserGameIdsFilterRequest)) {
|
|
1219
1230
|
throw new Error('Expected argument of type user.UserGameIdsFilterRequest');
|
|
@@ -1602,6 +1613,17 @@ signUp: {
|
|
|
1602
1613
|
responseSerialize: serialize_user_UserDataResponse,
|
|
1603
1614
|
responseDeserialize: deserialize_user_UserDataResponse,
|
|
1604
1615
|
},
|
|
1616
|
+
getUserDepositProfile: {
|
|
1617
|
+
path: '/user.User/getUserDepositProfile',
|
|
1618
|
+
requestStream: false,
|
|
1619
|
+
responseStream: false,
|
|
1620
|
+
requestType: user_pb.UserDataRequest,
|
|
1621
|
+
responseType: user_pb.UserDepositProfileResponse,
|
|
1622
|
+
requestSerialize: serialize_user_UserDataRequest,
|
|
1623
|
+
requestDeserialize: deserialize_user_UserDataRequest,
|
|
1624
|
+
responseSerialize: serialize_user_UserDepositProfileResponse,
|
|
1625
|
+
responseDeserialize: deserialize_user_UserDepositProfileResponse,
|
|
1626
|
+
},
|
|
1605
1627
|
getPumpKingsMyTokenWidgetLaunchData: {
|
|
1606
1628
|
path: '/user.User/getPumpKingsMyTokenWidgetLaunchData',
|
|
1607
1629
|
requestStream: false,
|