protobuf-platform 1.2.305 → 1.2.306
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 +4 -0
- package/payment/payment_pb.js +196 -4
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -317,6 +317,7 @@ message DepositResponse {
|
|
|
317
317
|
optional string created = 10;
|
|
318
318
|
optional string payment_redirect_url = 11;
|
|
319
319
|
optional string country = 12;
|
|
320
|
+
optional string processing_type = 13;
|
|
320
321
|
}
|
|
321
322
|
message DepositItem {
|
|
322
323
|
int32 id = 1;
|
|
@@ -331,6 +332,7 @@ message DepositItem {
|
|
|
331
332
|
optional string created = 10;
|
|
332
333
|
optional string payment_redirect_url = 11;
|
|
333
334
|
optional string country = 12;
|
|
335
|
+
optional string processing_type = 13;
|
|
334
336
|
}
|
|
335
337
|
message DepositItemsResponse {
|
|
336
338
|
repeated DepositItem items = 1;
|
|
@@ -390,6 +392,7 @@ message WithdrawalResponse {
|
|
|
390
392
|
optional string destination_type = 11;
|
|
391
393
|
optional string external_ref = 12;
|
|
392
394
|
optional string country = 13;
|
|
395
|
+
optional string processing_type = 14;
|
|
393
396
|
}
|
|
394
397
|
message WithdrawalItem {
|
|
395
398
|
int32 id = 1;
|
|
@@ -405,6 +408,7 @@ message WithdrawalItem {
|
|
|
405
408
|
optional string destination_type = 11;
|
|
406
409
|
optional string external_ref = 12;
|
|
407
410
|
optional string country = 13;
|
|
411
|
+
optional string processing_type = 14;
|
|
408
412
|
}
|
|
409
413
|
message WithdrawalItemsResponse {
|
|
410
414
|
repeated WithdrawalItem items = 1;
|
package/payment/payment_pb.js
CHANGED
|
@@ -12724,7 +12724,8 @@ proto.payment.DepositResponse.toObject = function(includeInstance, msg) {
|
|
|
12724
12724
|
paymentProviderImage: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
12725
12725
|
created: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
12726
12726
|
paymentRedirectUrl: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
12727
|
-
country: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
12727
|
+
country: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
12728
|
+
processingType: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
12728
12729
|
};
|
|
12729
12730
|
|
|
12730
12731
|
if (includeInstance) {
|
|
@@ -12809,6 +12810,10 @@ proto.payment.DepositResponse.deserializeBinaryFromReader = function(msg, reader
|
|
|
12809
12810
|
var value = /** @type {string} */ (reader.readString());
|
|
12810
12811
|
msg.setCountry(value);
|
|
12811
12812
|
break;
|
|
12813
|
+
case 13:
|
|
12814
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12815
|
+
msg.setProcessingType(value);
|
|
12816
|
+
break;
|
|
12812
12817
|
default:
|
|
12813
12818
|
reader.skipField();
|
|
12814
12819
|
break;
|
|
@@ -12922,6 +12927,13 @@ proto.payment.DepositResponse.serializeBinaryToWriter = function(message, writer
|
|
|
12922
12927
|
f
|
|
12923
12928
|
);
|
|
12924
12929
|
}
|
|
12930
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
12931
|
+
if (f != null) {
|
|
12932
|
+
writer.writeString(
|
|
12933
|
+
13,
|
|
12934
|
+
f
|
|
12935
|
+
);
|
|
12936
|
+
}
|
|
12925
12937
|
};
|
|
12926
12938
|
|
|
12927
12939
|
|
|
@@ -13339,6 +13351,42 @@ proto.payment.DepositResponse.prototype.hasCountry = function() {
|
|
|
13339
13351
|
};
|
|
13340
13352
|
|
|
13341
13353
|
|
|
13354
|
+
/**
|
|
13355
|
+
* optional string processing_type = 13;
|
|
13356
|
+
* @return {string}
|
|
13357
|
+
*/
|
|
13358
|
+
proto.payment.DepositResponse.prototype.getProcessingType = function() {
|
|
13359
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
13360
|
+
};
|
|
13361
|
+
|
|
13362
|
+
|
|
13363
|
+
/**
|
|
13364
|
+
* @param {string} value
|
|
13365
|
+
* @return {!proto.payment.DepositResponse} returns this
|
|
13366
|
+
*/
|
|
13367
|
+
proto.payment.DepositResponse.prototype.setProcessingType = function(value) {
|
|
13368
|
+
return jspb.Message.setField(this, 13, value);
|
|
13369
|
+
};
|
|
13370
|
+
|
|
13371
|
+
|
|
13372
|
+
/**
|
|
13373
|
+
* Clears the field making it undefined.
|
|
13374
|
+
* @return {!proto.payment.DepositResponse} returns this
|
|
13375
|
+
*/
|
|
13376
|
+
proto.payment.DepositResponse.prototype.clearProcessingType = function() {
|
|
13377
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
13378
|
+
};
|
|
13379
|
+
|
|
13380
|
+
|
|
13381
|
+
/**
|
|
13382
|
+
* Returns whether this field is set.
|
|
13383
|
+
* @return {boolean}
|
|
13384
|
+
*/
|
|
13385
|
+
proto.payment.DepositResponse.prototype.hasProcessingType = function() {
|
|
13386
|
+
return jspb.Message.getField(this, 13) != null;
|
|
13387
|
+
};
|
|
13388
|
+
|
|
13389
|
+
|
|
13342
13390
|
|
|
13343
13391
|
|
|
13344
13392
|
|
|
@@ -13382,7 +13430,8 @@ proto.payment.DepositItem.toObject = function(includeInstance, msg) {
|
|
|
13382
13430
|
paymentProviderImage: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
13383
13431
|
created: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
13384
13432
|
paymentRedirectUrl: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
13385
|
-
country: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
13433
|
+
country: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
13434
|
+
processingType: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
13386
13435
|
};
|
|
13387
13436
|
|
|
13388
13437
|
if (includeInstance) {
|
|
@@ -13467,6 +13516,10 @@ proto.payment.DepositItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
13467
13516
|
var value = /** @type {string} */ (reader.readString());
|
|
13468
13517
|
msg.setCountry(value);
|
|
13469
13518
|
break;
|
|
13519
|
+
case 13:
|
|
13520
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13521
|
+
msg.setProcessingType(value);
|
|
13522
|
+
break;
|
|
13470
13523
|
default:
|
|
13471
13524
|
reader.skipField();
|
|
13472
13525
|
break;
|
|
@@ -13580,6 +13633,13 @@ proto.payment.DepositItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
13580
13633
|
f
|
|
13581
13634
|
);
|
|
13582
13635
|
}
|
|
13636
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
13637
|
+
if (f != null) {
|
|
13638
|
+
writer.writeString(
|
|
13639
|
+
13,
|
|
13640
|
+
f
|
|
13641
|
+
);
|
|
13642
|
+
}
|
|
13583
13643
|
};
|
|
13584
13644
|
|
|
13585
13645
|
|
|
@@ -13889,6 +13949,42 @@ proto.payment.DepositItem.prototype.hasCountry = function() {
|
|
|
13889
13949
|
};
|
|
13890
13950
|
|
|
13891
13951
|
|
|
13952
|
+
/**
|
|
13953
|
+
* optional string processing_type = 13;
|
|
13954
|
+
* @return {string}
|
|
13955
|
+
*/
|
|
13956
|
+
proto.payment.DepositItem.prototype.getProcessingType = function() {
|
|
13957
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
13958
|
+
};
|
|
13959
|
+
|
|
13960
|
+
|
|
13961
|
+
/**
|
|
13962
|
+
* @param {string} value
|
|
13963
|
+
* @return {!proto.payment.DepositItem} returns this
|
|
13964
|
+
*/
|
|
13965
|
+
proto.payment.DepositItem.prototype.setProcessingType = function(value) {
|
|
13966
|
+
return jspb.Message.setField(this, 13, value);
|
|
13967
|
+
};
|
|
13968
|
+
|
|
13969
|
+
|
|
13970
|
+
/**
|
|
13971
|
+
* Clears the field making it undefined.
|
|
13972
|
+
* @return {!proto.payment.DepositItem} returns this
|
|
13973
|
+
*/
|
|
13974
|
+
proto.payment.DepositItem.prototype.clearProcessingType = function() {
|
|
13975
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
13976
|
+
};
|
|
13977
|
+
|
|
13978
|
+
|
|
13979
|
+
/**
|
|
13980
|
+
* Returns whether this field is set.
|
|
13981
|
+
* @return {boolean}
|
|
13982
|
+
*/
|
|
13983
|
+
proto.payment.DepositItem.prototype.hasProcessingType = function() {
|
|
13984
|
+
return jspb.Message.getField(this, 13) != null;
|
|
13985
|
+
};
|
|
13986
|
+
|
|
13987
|
+
|
|
13892
13988
|
|
|
13893
13989
|
/**
|
|
13894
13990
|
* List of repeated fields within this message type.
|
|
@@ -15875,7 +15971,8 @@ proto.payment.WithdrawalResponse.toObject = function(includeInstance, msg) {
|
|
|
15875
15971
|
destination: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
15876
15972
|
destinationType: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
15877
15973
|
externalRef: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
15878
|
-
country: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
15974
|
+
country: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
15975
|
+
processingType: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
15879
15976
|
};
|
|
15880
15977
|
|
|
15881
15978
|
if (includeInstance) {
|
|
@@ -15964,6 +16061,10 @@ proto.payment.WithdrawalResponse.deserializeBinaryFromReader = function(msg, rea
|
|
|
15964
16061
|
var value = /** @type {string} */ (reader.readString());
|
|
15965
16062
|
msg.setCountry(value);
|
|
15966
16063
|
break;
|
|
16064
|
+
case 14:
|
|
16065
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16066
|
+
msg.setProcessingType(value);
|
|
16067
|
+
break;
|
|
15967
16068
|
default:
|
|
15968
16069
|
reader.skipField();
|
|
15969
16070
|
break;
|
|
@@ -16084,6 +16185,13 @@ proto.payment.WithdrawalResponse.serializeBinaryToWriter = function(message, wri
|
|
|
16084
16185
|
f
|
|
16085
16186
|
);
|
|
16086
16187
|
}
|
|
16188
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
16189
|
+
if (f != null) {
|
|
16190
|
+
writer.writeString(
|
|
16191
|
+
14,
|
|
16192
|
+
f
|
|
16193
|
+
);
|
|
16194
|
+
}
|
|
16087
16195
|
};
|
|
16088
16196
|
|
|
16089
16197
|
|
|
@@ -16537,6 +16645,42 @@ proto.payment.WithdrawalResponse.prototype.hasCountry = function() {
|
|
|
16537
16645
|
};
|
|
16538
16646
|
|
|
16539
16647
|
|
|
16648
|
+
/**
|
|
16649
|
+
* optional string processing_type = 14;
|
|
16650
|
+
* @return {string}
|
|
16651
|
+
*/
|
|
16652
|
+
proto.payment.WithdrawalResponse.prototype.getProcessingType = function() {
|
|
16653
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
16654
|
+
};
|
|
16655
|
+
|
|
16656
|
+
|
|
16657
|
+
/**
|
|
16658
|
+
* @param {string} value
|
|
16659
|
+
* @return {!proto.payment.WithdrawalResponse} returns this
|
|
16660
|
+
*/
|
|
16661
|
+
proto.payment.WithdrawalResponse.prototype.setProcessingType = function(value) {
|
|
16662
|
+
return jspb.Message.setField(this, 14, value);
|
|
16663
|
+
};
|
|
16664
|
+
|
|
16665
|
+
|
|
16666
|
+
/**
|
|
16667
|
+
* Clears the field making it undefined.
|
|
16668
|
+
* @return {!proto.payment.WithdrawalResponse} returns this
|
|
16669
|
+
*/
|
|
16670
|
+
proto.payment.WithdrawalResponse.prototype.clearProcessingType = function() {
|
|
16671
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
16672
|
+
};
|
|
16673
|
+
|
|
16674
|
+
|
|
16675
|
+
/**
|
|
16676
|
+
* Returns whether this field is set.
|
|
16677
|
+
* @return {boolean}
|
|
16678
|
+
*/
|
|
16679
|
+
proto.payment.WithdrawalResponse.prototype.hasProcessingType = function() {
|
|
16680
|
+
return jspb.Message.getField(this, 14) != null;
|
|
16681
|
+
};
|
|
16682
|
+
|
|
16683
|
+
|
|
16540
16684
|
|
|
16541
16685
|
|
|
16542
16686
|
|
|
@@ -16581,7 +16725,8 @@ proto.payment.WithdrawalItem.toObject = function(includeInstance, msg) {
|
|
|
16581
16725
|
destination: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
16582
16726
|
destinationType: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
16583
16727
|
externalRef: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
16584
|
-
country: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
16728
|
+
country: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
16729
|
+
processingType: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
16585
16730
|
};
|
|
16586
16731
|
|
|
16587
16732
|
if (includeInstance) {
|
|
@@ -16670,6 +16815,10 @@ proto.payment.WithdrawalItem.deserializeBinaryFromReader = function(msg, reader)
|
|
|
16670
16815
|
var value = /** @type {string} */ (reader.readString());
|
|
16671
16816
|
msg.setCountry(value);
|
|
16672
16817
|
break;
|
|
16818
|
+
case 14:
|
|
16819
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16820
|
+
msg.setProcessingType(value);
|
|
16821
|
+
break;
|
|
16673
16822
|
default:
|
|
16674
16823
|
reader.skipField();
|
|
16675
16824
|
break;
|
|
@@ -16790,6 +16939,13 @@ proto.payment.WithdrawalItem.serializeBinaryToWriter = function(message, writer)
|
|
|
16790
16939
|
f
|
|
16791
16940
|
);
|
|
16792
16941
|
}
|
|
16942
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
16943
|
+
if (f != null) {
|
|
16944
|
+
writer.writeString(
|
|
16945
|
+
14,
|
|
16946
|
+
f
|
|
16947
|
+
);
|
|
16948
|
+
}
|
|
16793
16949
|
};
|
|
16794
16950
|
|
|
16795
16951
|
|
|
@@ -17153,6 +17309,42 @@ proto.payment.WithdrawalItem.prototype.hasCountry = function() {
|
|
|
17153
17309
|
};
|
|
17154
17310
|
|
|
17155
17311
|
|
|
17312
|
+
/**
|
|
17313
|
+
* optional string processing_type = 14;
|
|
17314
|
+
* @return {string}
|
|
17315
|
+
*/
|
|
17316
|
+
proto.payment.WithdrawalItem.prototype.getProcessingType = function() {
|
|
17317
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
17318
|
+
};
|
|
17319
|
+
|
|
17320
|
+
|
|
17321
|
+
/**
|
|
17322
|
+
* @param {string} value
|
|
17323
|
+
* @return {!proto.payment.WithdrawalItem} returns this
|
|
17324
|
+
*/
|
|
17325
|
+
proto.payment.WithdrawalItem.prototype.setProcessingType = function(value) {
|
|
17326
|
+
return jspb.Message.setField(this, 14, value);
|
|
17327
|
+
};
|
|
17328
|
+
|
|
17329
|
+
|
|
17330
|
+
/**
|
|
17331
|
+
* Clears the field making it undefined.
|
|
17332
|
+
* @return {!proto.payment.WithdrawalItem} returns this
|
|
17333
|
+
*/
|
|
17334
|
+
proto.payment.WithdrawalItem.prototype.clearProcessingType = function() {
|
|
17335
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
17336
|
+
};
|
|
17337
|
+
|
|
17338
|
+
|
|
17339
|
+
/**
|
|
17340
|
+
* Returns whether this field is set.
|
|
17341
|
+
* @return {boolean}
|
|
17342
|
+
*/
|
|
17343
|
+
proto.payment.WithdrawalItem.prototype.hasProcessingType = function() {
|
|
17344
|
+
return jspb.Message.getField(this, 14) != null;
|
|
17345
|
+
};
|
|
17346
|
+
|
|
17347
|
+
|
|
17156
17348
|
|
|
17157
17349
|
/**
|
|
17158
17350
|
* List of repeated fields within this message type.
|