protobuf-platform 1.0.260 → 1.0.261
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/analytic/analytic.proto +2 -2
- package/analytic/analytic_pb.js +10 -10
- package/package.json +1 -1
package/analytic/analytic.proto
CHANGED
@@ -73,10 +73,10 @@ message DepositItem {
|
|
73
73
|
string date = 1;
|
74
74
|
optional int32 total_ftd_count = 2;
|
75
75
|
optional float total_ftd_sum = 3;
|
76
|
-
optional
|
76
|
+
optional float total_ftd_avg = 4;
|
77
77
|
optional int32 total_redep_count = 5;
|
78
78
|
optional float total_redep_sum = 6;
|
79
|
-
optional
|
79
|
+
optional float total_redep_avg = 7;
|
80
80
|
optional int32 total_dep_count = 8;
|
81
81
|
optional float total_dep_sum = 9;
|
82
82
|
optional float total_dep_avg = 10;
|
package/analytic/analytic_pb.js
CHANGED
@@ -3203,10 +3203,10 @@ proto.analytic.DepositItem.toObject = function(includeInstance, msg) {
|
|
3203
3203
|
date: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
3204
3204
|
totalFtdCount: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
3205
3205
|
totalFtdSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 3, 0.0),
|
3206
|
-
totalFtdAvg: jspb.Message.
|
3206
|
+
totalFtdAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
3207
3207
|
totalRedepCount: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
3208
3208
|
totalRedepSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
3209
|
-
totalRedepAvg: jspb.Message.
|
3209
|
+
totalRedepAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
3210
3210
|
totalDepCount: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
3211
3211
|
totalDepSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
|
3212
3212
|
totalDepAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 10, 0.0),
|
@@ -3264,7 +3264,7 @@ proto.analytic.DepositItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
3264
3264
|
msg.setTotalFtdSum(value);
|
3265
3265
|
break;
|
3266
3266
|
case 4:
|
3267
|
-
var value = /** @type {number} */ (reader.
|
3267
|
+
var value = /** @type {number} */ (reader.readFloat());
|
3268
3268
|
msg.setTotalFtdAvg(value);
|
3269
3269
|
break;
|
3270
3270
|
case 5:
|
@@ -3276,7 +3276,7 @@ proto.analytic.DepositItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
3276
3276
|
msg.setTotalRedepSum(value);
|
3277
3277
|
break;
|
3278
3278
|
case 7:
|
3279
|
-
var value = /** @type {number} */ (reader.
|
3279
|
+
var value = /** @type {number} */ (reader.readFloat());
|
3280
3280
|
msg.setTotalRedepAvg(value);
|
3281
3281
|
break;
|
3282
3282
|
case 8:
|
@@ -3363,7 +3363,7 @@ proto.analytic.DepositItem.serializeBinaryToWriter = function(message, writer) {
|
|
3363
3363
|
}
|
3364
3364
|
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
3365
3365
|
if (f != null) {
|
3366
|
-
writer.
|
3366
|
+
writer.writeFloat(
|
3367
3367
|
4,
|
3368
3368
|
f
|
3369
3369
|
);
|
@@ -3384,7 +3384,7 @@ proto.analytic.DepositItem.serializeBinaryToWriter = function(message, writer) {
|
|
3384
3384
|
}
|
3385
3385
|
f = /** @type {number} */ (jspb.Message.getField(message, 7));
|
3386
3386
|
if (f != null) {
|
3387
|
-
writer.
|
3387
|
+
writer.writeFloat(
|
3388
3388
|
7,
|
3389
3389
|
f
|
3390
3390
|
);
|
@@ -3539,11 +3539,11 @@ proto.analytic.DepositItem.prototype.hasTotalFtdSum = function() {
|
|
3539
3539
|
|
3540
3540
|
|
3541
3541
|
/**
|
3542
|
-
* optional
|
3542
|
+
* optional float total_ftd_avg = 4;
|
3543
3543
|
* @return {number}
|
3544
3544
|
*/
|
3545
3545
|
proto.analytic.DepositItem.prototype.getTotalFtdAvg = function() {
|
3546
|
-
return /** @type {number} */ (jspb.Message.
|
3546
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 4, 0.0));
|
3547
3547
|
};
|
3548
3548
|
|
3549
3549
|
|
@@ -3647,11 +3647,11 @@ proto.analytic.DepositItem.prototype.hasTotalRedepSum = function() {
|
|
3647
3647
|
|
3648
3648
|
|
3649
3649
|
/**
|
3650
|
-
* optional
|
3650
|
+
* optional float total_redep_avg = 7;
|
3651
3651
|
* @return {number}
|
3652
3652
|
*/
|
3653
3653
|
proto.analytic.DepositItem.prototype.getTotalRedepAvg = function() {
|
3654
|
-
return /** @type {number} */ (jspb.Message.
|
3654
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 7, 0.0));
|
3655
3655
|
};
|
3656
3656
|
|
3657
3657
|
|