protobuf-platform 1.2.507 → 1.2.508
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 +4 -0
- package/bonus/bonus_pb.js +97 -1
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
|
@@ -406,6 +406,10 @@ message GrantDynamicUserBonusRequest {
|
|
|
406
406
|
string currency = 5;
|
|
407
407
|
// Decimal string in account currency.
|
|
408
408
|
string amount = 6;
|
|
409
|
+
// Non-negative decimal integer string in minor units; authoritative when supplied with currency_scale.
|
|
410
|
+
optional string reward_amount_minor = 7;
|
|
411
|
+
// Decimal scale for currency; must be supplied together with reward_amount_minor.
|
|
412
|
+
optional int32 currency_scale = 8;
|
|
409
413
|
}
|
|
410
414
|
message GrantDynamicUserBonusResponse {
|
|
411
415
|
int32 user_bonus_id = 1;
|
package/bonus/bonus_pb.js
CHANGED
|
@@ -17184,7 +17184,9 @@ proto.bonus.GrantDynamicUserBonusRequest.toObject = function(includeInstance, ms
|
|
|
17184
17184
|
grantSource: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
17185
17185
|
grantId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
17186
17186
|
currency: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
17187
|
-
amount: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
17187
|
+
amount: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
17188
|
+
rewardAmountMinor: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
17189
|
+
currencyScale: jspb.Message.getFieldWithDefault(msg, 8, 0)
|
|
17188
17190
|
};
|
|
17189
17191
|
|
|
17190
17192
|
if (includeInstance) {
|
|
@@ -17245,6 +17247,14 @@ proto.bonus.GrantDynamicUserBonusRequest.deserializeBinaryFromReader = function(
|
|
|
17245
17247
|
var value = /** @type {string} */ (reader.readString());
|
|
17246
17248
|
msg.setAmount(value);
|
|
17247
17249
|
break;
|
|
17250
|
+
case 7:
|
|
17251
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17252
|
+
msg.setRewardAmountMinor(value);
|
|
17253
|
+
break;
|
|
17254
|
+
case 8:
|
|
17255
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
17256
|
+
msg.setCurrencyScale(value);
|
|
17257
|
+
break;
|
|
17248
17258
|
default:
|
|
17249
17259
|
reader.skipField();
|
|
17250
17260
|
break;
|
|
@@ -17316,6 +17326,20 @@ proto.bonus.GrantDynamicUserBonusRequest.serializeBinaryToWriter = function(mess
|
|
|
17316
17326
|
f
|
|
17317
17327
|
);
|
|
17318
17328
|
}
|
|
17329
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
17330
|
+
if (f != null) {
|
|
17331
|
+
writer.writeString(
|
|
17332
|
+
7,
|
|
17333
|
+
f
|
|
17334
|
+
);
|
|
17335
|
+
}
|
|
17336
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 8));
|
|
17337
|
+
if (f != null) {
|
|
17338
|
+
writer.writeInt32(
|
|
17339
|
+
8,
|
|
17340
|
+
f
|
|
17341
|
+
);
|
|
17342
|
+
}
|
|
17319
17343
|
};
|
|
17320
17344
|
|
|
17321
17345
|
|
|
@@ -17427,6 +17451,78 @@ proto.bonus.GrantDynamicUserBonusRequest.prototype.setAmount = function(value) {
|
|
|
17427
17451
|
};
|
|
17428
17452
|
|
|
17429
17453
|
|
|
17454
|
+
/**
|
|
17455
|
+
* optional string reward_amount_minor = 7;
|
|
17456
|
+
* @return {string}
|
|
17457
|
+
*/
|
|
17458
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.getRewardAmountMinor = function() {
|
|
17459
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
17460
|
+
};
|
|
17461
|
+
|
|
17462
|
+
|
|
17463
|
+
/**
|
|
17464
|
+
* @param {string} value
|
|
17465
|
+
* @return {!proto.bonus.GrantDynamicUserBonusRequest} returns this
|
|
17466
|
+
*/
|
|
17467
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.setRewardAmountMinor = function(value) {
|
|
17468
|
+
return jspb.Message.setField(this, 7, value);
|
|
17469
|
+
};
|
|
17470
|
+
|
|
17471
|
+
|
|
17472
|
+
/**
|
|
17473
|
+
* Clears the field making it undefined.
|
|
17474
|
+
* @return {!proto.bonus.GrantDynamicUserBonusRequest} returns this
|
|
17475
|
+
*/
|
|
17476
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.clearRewardAmountMinor = function() {
|
|
17477
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
17478
|
+
};
|
|
17479
|
+
|
|
17480
|
+
|
|
17481
|
+
/**
|
|
17482
|
+
* Returns whether this field is set.
|
|
17483
|
+
* @return {boolean}
|
|
17484
|
+
*/
|
|
17485
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.hasRewardAmountMinor = function() {
|
|
17486
|
+
return jspb.Message.getField(this, 7) != null;
|
|
17487
|
+
};
|
|
17488
|
+
|
|
17489
|
+
|
|
17490
|
+
/**
|
|
17491
|
+
* optional int32 currency_scale = 8;
|
|
17492
|
+
* @return {number}
|
|
17493
|
+
*/
|
|
17494
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.getCurrencyScale = function() {
|
|
17495
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
17496
|
+
};
|
|
17497
|
+
|
|
17498
|
+
|
|
17499
|
+
/**
|
|
17500
|
+
* @param {number} value
|
|
17501
|
+
* @return {!proto.bonus.GrantDynamicUserBonusRequest} returns this
|
|
17502
|
+
*/
|
|
17503
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.setCurrencyScale = function(value) {
|
|
17504
|
+
return jspb.Message.setField(this, 8, value);
|
|
17505
|
+
};
|
|
17506
|
+
|
|
17507
|
+
|
|
17508
|
+
/**
|
|
17509
|
+
* Clears the field making it undefined.
|
|
17510
|
+
* @return {!proto.bonus.GrantDynamicUserBonusRequest} returns this
|
|
17511
|
+
*/
|
|
17512
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.clearCurrencyScale = function() {
|
|
17513
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
17514
|
+
};
|
|
17515
|
+
|
|
17516
|
+
|
|
17517
|
+
/**
|
|
17518
|
+
* Returns whether this field is set.
|
|
17519
|
+
* @return {boolean}
|
|
17520
|
+
*/
|
|
17521
|
+
proto.bonus.GrantDynamicUserBonusRequest.prototype.hasCurrencyScale = function() {
|
|
17522
|
+
return jspb.Message.getField(this, 8) != null;
|
|
17523
|
+
};
|
|
17524
|
+
|
|
17525
|
+
|
|
17430
17526
|
|
|
17431
17527
|
|
|
17432
17528
|
|