protobuf-platform 1.0.255 → 1.0.256
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
CHANGED
@@ -30,7 +30,7 @@ message GlobalCasinoItem {
|
|
30
30
|
optional float redep_avg = 9;
|
31
31
|
optional int32 total_dep_count = 10;
|
32
32
|
optional float total_dep_sum = 11;
|
33
|
-
optional float
|
33
|
+
optional float total_dep_avg = 12;
|
34
34
|
optional float total_turnover = 13;
|
35
35
|
optional float total_ggr = 14;
|
36
36
|
optional float real_turnover = 15;
|
package/analytic/analytic_pb.js
CHANGED
@@ -911,7 +911,7 @@ proto.analytic.GlobalCasinoItem.toObject = function(includeInstance, msg) {
|
|
911
911
|
redepAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
|
912
912
|
totalDepCount: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
913
913
|
totalDepSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 11, 0.0),
|
914
|
-
|
914
|
+
totalDepAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
|
915
915
|
totalTurnover: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
|
916
916
|
totalGgr: jspb.Message.getFloatingPointFieldWithDefault(msg, 14, 0.0),
|
917
917
|
realTurnover: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
@@ -1003,7 +1003,7 @@ proto.analytic.GlobalCasinoItem.deserializeBinaryFromReader = function(msg, read
|
|
1003
1003
|
break;
|
1004
1004
|
case 12:
|
1005
1005
|
var value = /** @type {number} */ (reader.readFloat());
|
1006
|
-
msg.
|
1006
|
+
msg.setTotalDepAvg(value);
|
1007
1007
|
break;
|
1008
1008
|
case 13:
|
1009
1009
|
var value = /** @type {number} */ (reader.readFloat());
|
@@ -1599,10 +1599,10 @@ proto.analytic.GlobalCasinoItem.prototype.hasTotalDepSum = function() {
|
|
1599
1599
|
|
1600
1600
|
|
1601
1601
|
/**
|
1602
|
-
* optional float
|
1602
|
+
* optional float total_dep_avg = 12;
|
1603
1603
|
* @return {number}
|
1604
1604
|
*/
|
1605
|
-
proto.analytic.GlobalCasinoItem.prototype.
|
1605
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalDepAvg = function() {
|
1606
1606
|
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 12, 0.0));
|
1607
1607
|
};
|
1608
1608
|
|
@@ -1611,7 +1611,7 @@ proto.analytic.GlobalCasinoItem.prototype.getTotalDepAgv = function() {
|
|
1611
1611
|
* @param {number} value
|
1612
1612
|
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1613
1613
|
*/
|
1614
|
-
proto.analytic.GlobalCasinoItem.prototype.
|
1614
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalDepAvg = function(value) {
|
1615
1615
|
return jspb.Message.setField(this, 12, value);
|
1616
1616
|
};
|
1617
1617
|
|
@@ -1620,7 +1620,7 @@ proto.analytic.GlobalCasinoItem.prototype.setTotalDepAgv = function(value) {
|
|
1620
1620
|
* Clears the field making it undefined.
|
1621
1621
|
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1622
1622
|
*/
|
1623
|
-
proto.analytic.GlobalCasinoItem.prototype.
|
1623
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalDepAvg = function() {
|
1624
1624
|
return jspb.Message.setField(this, 12, undefined);
|
1625
1625
|
};
|
1626
1626
|
|
@@ -1629,7 +1629,7 @@ proto.analytic.GlobalCasinoItem.prototype.clearTotalDepAgv = function() {
|
|
1629
1629
|
* Returns whether this field is set.
|
1630
1630
|
* @return {boolean}
|
1631
1631
|
*/
|
1632
|
-
proto.analytic.GlobalCasinoItem.prototype.
|
1632
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalDepAvg = function() {
|
1633
1633
|
return jspb.Message.getField(this, 12) != null;
|
1634
1634
|
};
|
1635
1635
|
|