@sniipwebmaster/payroll-service-client-grpcweb 25.10.576 → 25.10.588
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
|
@@ -8907,7 +8907,8 @@ proto.payrollserviceapi.ABARecordDetail.toObject = function(includeInstance, msg
|
|
|
8907
8907
|
calculatedAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
|
8908
8908
|
salaryCalculationNote: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
8909
8909
|
duplicateEmployeesList: jspb.Message.toObjectList(msg.getDuplicateEmployeesList(),
|
|
8910
|
-
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance)
|
|
8910
|
+
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance),
|
|
8911
|
+
verificationstatus: jspb.Message.getFieldWithDefault(msg, 18, 0)
|
|
8911
8912
|
};
|
|
8912
8913
|
|
|
8913
8914
|
if (includeInstance) {
|
|
@@ -9013,6 +9014,10 @@ proto.payrollserviceapi.ABARecordDetail.deserializeBinaryFromReader = function(m
|
|
|
9013
9014
|
reader.readMessage(value,proto.payrollserviceapi.EmployeeSummary.deserializeBinaryFromReader);
|
|
9014
9015
|
msg.addDuplicateEmployees(value);
|
|
9015
9016
|
break;
|
|
9017
|
+
case 18:
|
|
9018
|
+
var value = /** @type {!proto.payrollserviceapi.BankAccountStatus} */ (reader.readEnum());
|
|
9019
|
+
msg.setVerificationstatus(value);
|
|
9020
|
+
break;
|
|
9016
9021
|
default:
|
|
9017
9022
|
reader.skipField();
|
|
9018
9023
|
break;
|
|
@@ -9162,6 +9167,13 @@ proto.payrollserviceapi.ABARecordDetail.serializeBinaryToWriter = function(messa
|
|
|
9162
9167
|
proto.payrollserviceapi.EmployeeSummary.serializeBinaryToWriter
|
|
9163
9168
|
);
|
|
9164
9169
|
}
|
|
9170
|
+
f = message.getVerificationstatus();
|
|
9171
|
+
if (f !== 0.0) {
|
|
9172
|
+
writer.writeEnum(
|
|
9173
|
+
18,
|
|
9174
|
+
f
|
|
9175
|
+
);
|
|
9176
|
+
}
|
|
9165
9177
|
};
|
|
9166
9178
|
|
|
9167
9179
|
|
|
@@ -9491,6 +9503,24 @@ proto.payrollserviceapi.ABARecordDetail.prototype.clearDuplicateEmployeesList =
|
|
|
9491
9503
|
};
|
|
9492
9504
|
|
|
9493
9505
|
|
|
9506
|
+
/**
|
|
9507
|
+
* optional BankAccountStatus verificationStatus = 18;
|
|
9508
|
+
* @return {!proto.payrollserviceapi.BankAccountStatus}
|
|
9509
|
+
*/
|
|
9510
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.getVerificationstatus = function() {
|
|
9511
|
+
return /** @type {!proto.payrollserviceapi.BankAccountStatus} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
|
|
9512
|
+
};
|
|
9513
|
+
|
|
9514
|
+
|
|
9515
|
+
/**
|
|
9516
|
+
* @param {!proto.payrollserviceapi.BankAccountStatus} value
|
|
9517
|
+
* @return {!proto.payrollserviceapi.ABARecordDetail} returns this
|
|
9518
|
+
*/
|
|
9519
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.setVerificationstatus = function(value) {
|
|
9520
|
+
return jspb.Message.setProto3EnumField(this, 18, value);
|
|
9521
|
+
};
|
|
9522
|
+
|
|
9523
|
+
|
|
9494
9524
|
|
|
9495
9525
|
|
|
9496
9526
|
|