protobuf-platform 1.2.553 → 1.2.555
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/package.json +1 -1
- package/payment/payment.proto +2 -0
- package/payment/payment_pb.js +97 -1
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -417,6 +417,8 @@ message AttemptDepositRequest {
|
|
|
417
417
|
optional string request_currency = 46;
|
|
418
418
|
optional string antifraud_session = 47;
|
|
419
419
|
optional int32 bonus_id = 48;
|
|
420
|
+
optional int32 window_width = 49;
|
|
421
|
+
optional int32 window_height = 50;
|
|
420
422
|
}
|
|
421
423
|
message GetDepositRequest {
|
|
422
424
|
int32 id = 1;
|
package/payment/payment_pb.js
CHANGED
|
@@ -15947,7 +15947,9 @@ proto.payment.AttemptDepositRequest.toObject = function(includeInstance, msg) {
|
|
|
15947
15947
|
cryptoWallet: jspb.Message.getFieldWithDefault(msg, 45, ""),
|
|
15948
15948
|
requestCurrency: jspb.Message.getFieldWithDefault(msg, 46, ""),
|
|
15949
15949
|
antifraudSession: jspb.Message.getFieldWithDefault(msg, 47, ""),
|
|
15950
|
-
bonusId: jspb.Message.getFieldWithDefault(msg, 48, 0)
|
|
15950
|
+
bonusId: jspb.Message.getFieldWithDefault(msg, 48, 0),
|
|
15951
|
+
windowWidth: jspb.Message.getFieldWithDefault(msg, 49, 0),
|
|
15952
|
+
windowHeight: jspb.Message.getFieldWithDefault(msg, 50, 0)
|
|
15951
15953
|
};
|
|
15952
15954
|
|
|
15953
15955
|
if (includeInstance) {
|
|
@@ -16176,6 +16178,14 @@ proto.payment.AttemptDepositRequest.deserializeBinaryFromReader = function(msg,
|
|
|
16176
16178
|
var value = /** @type {number} */ (reader.readInt32());
|
|
16177
16179
|
msg.setBonusId(value);
|
|
16178
16180
|
break;
|
|
16181
|
+
case 49:
|
|
16182
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
16183
|
+
msg.setWindowWidth(value);
|
|
16184
|
+
break;
|
|
16185
|
+
case 50:
|
|
16186
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
16187
|
+
msg.setWindowHeight(value);
|
|
16188
|
+
break;
|
|
16179
16189
|
default:
|
|
16180
16190
|
reader.skipField();
|
|
16181
16191
|
break;
|
|
@@ -16541,6 +16551,20 @@ proto.payment.AttemptDepositRequest.serializeBinaryToWriter = function(message,
|
|
|
16541
16551
|
f
|
|
16542
16552
|
);
|
|
16543
16553
|
}
|
|
16554
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 49));
|
|
16555
|
+
if (f != null) {
|
|
16556
|
+
writer.writeInt32(
|
|
16557
|
+
49,
|
|
16558
|
+
f
|
|
16559
|
+
);
|
|
16560
|
+
}
|
|
16561
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 50));
|
|
16562
|
+
if (f != null) {
|
|
16563
|
+
writer.writeInt32(
|
|
16564
|
+
50,
|
|
16565
|
+
f
|
|
16566
|
+
);
|
|
16567
|
+
}
|
|
16544
16568
|
};
|
|
16545
16569
|
|
|
16546
16570
|
|
|
@@ -18218,6 +18242,78 @@ proto.payment.AttemptDepositRequest.prototype.hasBonusId = function() {
|
|
|
18218
18242
|
};
|
|
18219
18243
|
|
|
18220
18244
|
|
|
18245
|
+
/**
|
|
18246
|
+
* optional int32 window_width = 49;
|
|
18247
|
+
* @return {number}
|
|
18248
|
+
*/
|
|
18249
|
+
proto.payment.AttemptDepositRequest.prototype.getWindowWidth = function() {
|
|
18250
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 49, 0));
|
|
18251
|
+
};
|
|
18252
|
+
|
|
18253
|
+
|
|
18254
|
+
/**
|
|
18255
|
+
* @param {number} value
|
|
18256
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
18257
|
+
*/
|
|
18258
|
+
proto.payment.AttemptDepositRequest.prototype.setWindowWidth = function(value) {
|
|
18259
|
+
return jspb.Message.setField(this, 49, value);
|
|
18260
|
+
};
|
|
18261
|
+
|
|
18262
|
+
|
|
18263
|
+
/**
|
|
18264
|
+
* Clears the field making it undefined.
|
|
18265
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
18266
|
+
*/
|
|
18267
|
+
proto.payment.AttemptDepositRequest.prototype.clearWindowWidth = function() {
|
|
18268
|
+
return jspb.Message.setField(this, 49, undefined);
|
|
18269
|
+
};
|
|
18270
|
+
|
|
18271
|
+
|
|
18272
|
+
/**
|
|
18273
|
+
* Returns whether this field is set.
|
|
18274
|
+
* @return {boolean}
|
|
18275
|
+
*/
|
|
18276
|
+
proto.payment.AttemptDepositRequest.prototype.hasWindowWidth = function() {
|
|
18277
|
+
return jspb.Message.getField(this, 49) != null;
|
|
18278
|
+
};
|
|
18279
|
+
|
|
18280
|
+
|
|
18281
|
+
/**
|
|
18282
|
+
* optional int32 window_height = 50;
|
|
18283
|
+
* @return {number}
|
|
18284
|
+
*/
|
|
18285
|
+
proto.payment.AttemptDepositRequest.prototype.getWindowHeight = function() {
|
|
18286
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 50, 0));
|
|
18287
|
+
};
|
|
18288
|
+
|
|
18289
|
+
|
|
18290
|
+
/**
|
|
18291
|
+
* @param {number} value
|
|
18292
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
18293
|
+
*/
|
|
18294
|
+
proto.payment.AttemptDepositRequest.prototype.setWindowHeight = function(value) {
|
|
18295
|
+
return jspb.Message.setField(this, 50, value);
|
|
18296
|
+
};
|
|
18297
|
+
|
|
18298
|
+
|
|
18299
|
+
/**
|
|
18300
|
+
* Clears the field making it undefined.
|
|
18301
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
18302
|
+
*/
|
|
18303
|
+
proto.payment.AttemptDepositRequest.prototype.clearWindowHeight = function() {
|
|
18304
|
+
return jspb.Message.setField(this, 50, undefined);
|
|
18305
|
+
};
|
|
18306
|
+
|
|
18307
|
+
|
|
18308
|
+
/**
|
|
18309
|
+
* Returns whether this field is set.
|
|
18310
|
+
* @return {boolean}
|
|
18311
|
+
*/
|
|
18312
|
+
proto.payment.AttemptDepositRequest.prototype.hasWindowHeight = function() {
|
|
18313
|
+
return jspb.Message.getField(this, 50) != null;
|
|
18314
|
+
};
|
|
18315
|
+
|
|
18316
|
+
|
|
18221
18317
|
|
|
18222
18318
|
|
|
18223
18319
|
|