@sniipwebmaster/payroll-service-client-grpcweb 25.10.474 → 25.10.480
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/dependancies/service_pb.js +31 -1
- package/package.json +1 -1
|
@@ -7700,7 +7700,8 @@ proto.payrollserviceapi.ABAFileDetails.toObject = function(includeInstance, msg)
|
|
|
7700
7700
|
createdAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
7701
7701
|
processedAt: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
7702
7702
|
errorMessage: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
7703
|
-
batchName: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
7703
|
+
batchName: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
7704
|
+
totalAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 14, 0.0)
|
|
7704
7705
|
};
|
|
7705
7706
|
|
|
7706
7707
|
if (includeInstance) {
|
|
@@ -7789,6 +7790,10 @@ proto.payrollserviceapi.ABAFileDetails.deserializeBinaryFromReader = function(ms
|
|
|
7789
7790
|
var value = /** @type {string} */ (reader.readString());
|
|
7790
7791
|
msg.setBatchName(value);
|
|
7791
7792
|
break;
|
|
7793
|
+
case 14:
|
|
7794
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
7795
|
+
msg.setTotalAmount(value);
|
|
7796
|
+
break;
|
|
7792
7797
|
default:
|
|
7793
7798
|
reader.skipField();
|
|
7794
7799
|
break;
|
|
@@ -7909,6 +7914,13 @@ proto.payrollserviceapi.ABAFileDetails.serializeBinaryToWriter = function(messag
|
|
|
7909
7914
|
f
|
|
7910
7915
|
);
|
|
7911
7916
|
}
|
|
7917
|
+
f = message.getTotalAmount();
|
|
7918
|
+
if (f !== 0.0) {
|
|
7919
|
+
writer.writeDouble(
|
|
7920
|
+
14,
|
|
7921
|
+
f
|
|
7922
|
+
);
|
|
7923
|
+
}
|
|
7912
7924
|
};
|
|
7913
7925
|
|
|
7914
7926
|
|
|
@@ -8146,6 +8158,24 @@ proto.payrollserviceapi.ABAFileDetails.prototype.setBatchName = function(value)
|
|
|
8146
8158
|
};
|
|
8147
8159
|
|
|
8148
8160
|
|
|
8161
|
+
/**
|
|
8162
|
+
* optional double total_amount = 14;
|
|
8163
|
+
* @return {number}
|
|
8164
|
+
*/
|
|
8165
|
+
proto.payrollserviceapi.ABAFileDetails.prototype.getTotalAmount = function() {
|
|
8166
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 14, 0.0));
|
|
8167
|
+
};
|
|
8168
|
+
|
|
8169
|
+
|
|
8170
|
+
/**
|
|
8171
|
+
* @param {number} value
|
|
8172
|
+
* @return {!proto.payrollserviceapi.ABAFileDetails} returns this
|
|
8173
|
+
*/
|
|
8174
|
+
proto.payrollserviceapi.ABAFileDetails.prototype.setTotalAmount = function(value) {
|
|
8175
|
+
return jspb.Message.setProto3FloatField(this, 14, value);
|
|
8176
|
+
};
|
|
8177
|
+
|
|
8178
|
+
|
|
8149
8179
|
|
|
8150
8180
|
/**
|
|
8151
8181
|
* List of repeated fields within this message type.
|