@sniipwebmaster/payroll-service-client-grpcweb 25.10.588 → 25.10.600
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_grpc_web_pb.js +61 -0
- package/dependancies/service_pb.js +403 -108
- package/package.json +1 -1
|
@@ -812,6 +812,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.getABAFileRecords
|
|
|
812
812
|
};
|
|
813
813
|
|
|
814
814
|
|
|
815
|
+
/**
|
|
816
|
+
* @const
|
|
817
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
818
|
+
* !proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest,
|
|
819
|
+
* !proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse>}
|
|
820
|
+
*/
|
|
821
|
+
const methodDescriptor_PayrollService_MismatchRecordEmployeeDetails = new grpc.web.MethodDescriptor(
|
|
822
|
+
'/payrollserviceapi.PayrollService/MismatchRecordEmployeeDetails',
|
|
823
|
+
grpc.web.MethodType.UNARY,
|
|
824
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest,
|
|
825
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse,
|
|
826
|
+
/**
|
|
827
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} request
|
|
828
|
+
* @return {!Uint8Array}
|
|
829
|
+
*/
|
|
830
|
+
function(request) {
|
|
831
|
+
return request.serializeBinary();
|
|
832
|
+
},
|
|
833
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.deserializeBinary
|
|
834
|
+
);
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} request The
|
|
839
|
+
* request proto
|
|
840
|
+
* @param {?Object<string, string>} metadata User defined
|
|
841
|
+
* call metadata
|
|
842
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse)}
|
|
843
|
+
* callback The callback function(error, response)
|
|
844
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse>|undefined}
|
|
845
|
+
* The XHR Node Readable Stream
|
|
846
|
+
*/
|
|
847
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.mismatchRecordEmployeeDetails =
|
|
848
|
+
function(request, metadata, callback) {
|
|
849
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
850
|
+
'/payrollserviceapi.PayrollService/MismatchRecordEmployeeDetails',
|
|
851
|
+
request,
|
|
852
|
+
metadata || {},
|
|
853
|
+
methodDescriptor_PayrollService_MismatchRecordEmployeeDetails,
|
|
854
|
+
callback);
|
|
855
|
+
};
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} request The
|
|
860
|
+
* request proto
|
|
861
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
862
|
+
* call metadata
|
|
863
|
+
* @return {!Promise<!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse>}
|
|
864
|
+
* Promise that resolves to the response
|
|
865
|
+
*/
|
|
866
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.mismatchRecordEmployeeDetails =
|
|
867
|
+
function(request, metadata) {
|
|
868
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
869
|
+
'/payrollserviceapi.PayrollService/MismatchRecordEmployeeDetails',
|
|
870
|
+
request,
|
|
871
|
+
metadata || {},
|
|
872
|
+
methodDescriptor_PayrollService_MismatchRecordEmployeeDetails);
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
|
|
815
876
|
/**
|
|
816
877
|
* @const
|
|
817
878
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -85,6 +85,8 @@ goog.exportSymbol('proto.payrollserviceapi.MatchEmployeesInternalRequest', null,
|
|
|
85
85
|
goog.exportSymbol('proto.payrollserviceapi.MatchEmployeesRequest', null, global);
|
|
86
86
|
goog.exportSymbol('proto.payrollserviceapi.MatchEmployeesResponse', null, global);
|
|
87
87
|
goog.exportSymbol('proto.payrollserviceapi.MensSalary', null, global);
|
|
88
|
+
goog.exportSymbol('proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest', null, global);
|
|
89
|
+
goog.exportSymbol('proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse', null, global);
|
|
88
90
|
goog.exportSymbol('proto.payrollserviceapi.ResponseCode', null, global);
|
|
89
91
|
goog.exportSymbol('proto.payrollserviceapi.UpdateAbaFileRequest', null, global);
|
|
90
92
|
goog.exportSymbol('proto.payrollserviceapi.UpdateAbaFileResponse', null, global);
|
|
@@ -631,7 +633,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
631
633
|
* @constructor
|
|
632
634
|
*/
|
|
633
635
|
proto.payrollserviceapi.ABARecordDetail = function(opt_data) {
|
|
634
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
636
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
635
637
|
};
|
|
636
638
|
goog.inherits(proto.payrollserviceapi.ABARecordDetail, jspb.Message);
|
|
637
639
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -641,6 +643,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
641
643
|
*/
|
|
642
644
|
proto.payrollserviceapi.ABARecordDetail.displayName = 'proto.payrollserviceapi.ABARecordDetail';
|
|
643
645
|
}
|
|
646
|
+
/**
|
|
647
|
+
* Generated by JsPbCodeGenerator.
|
|
648
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
649
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
650
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
651
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
652
|
+
* valid.
|
|
653
|
+
* @extends {jspb.Message}
|
|
654
|
+
* @constructor
|
|
655
|
+
*/
|
|
656
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest = function(opt_data) {
|
|
657
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
658
|
+
};
|
|
659
|
+
goog.inherits(proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest, jspb.Message);
|
|
660
|
+
if (goog.DEBUG && !COMPILED) {
|
|
661
|
+
/**
|
|
662
|
+
* @public
|
|
663
|
+
* @override
|
|
664
|
+
*/
|
|
665
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.displayName = 'proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest';
|
|
666
|
+
}
|
|
667
|
+
/**
|
|
668
|
+
* Generated by JsPbCodeGenerator.
|
|
669
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
670
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
671
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
672
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
673
|
+
* valid.
|
|
674
|
+
* @extends {jspb.Message}
|
|
675
|
+
* @constructor
|
|
676
|
+
*/
|
|
677
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse = function(opt_data) {
|
|
678
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.repeatedFields_, null);
|
|
679
|
+
};
|
|
680
|
+
goog.inherits(proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse, jspb.Message);
|
|
681
|
+
if (goog.DEBUG && !COMPILED) {
|
|
682
|
+
/**
|
|
683
|
+
* @public
|
|
684
|
+
* @override
|
|
685
|
+
*/
|
|
686
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.displayName = 'proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse';
|
|
687
|
+
}
|
|
644
688
|
/**
|
|
645
689
|
* Generated by JsPbCodeGenerator.
|
|
646
690
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -8852,13 +8896,6 @@ proto.payrollserviceapi.ABAFileDetails.prototype.setTotalAmount = function(value
|
|
|
8852
8896
|
|
|
8853
8897
|
|
|
8854
8898
|
|
|
8855
|
-
/**
|
|
8856
|
-
* List of repeated fields within this message type.
|
|
8857
|
-
* @private {!Array<number>}
|
|
8858
|
-
* @const
|
|
8859
|
-
*/
|
|
8860
|
-
proto.payrollserviceapi.ABARecordDetail.repeatedFields_ = [17];
|
|
8861
|
-
|
|
8862
8899
|
|
|
8863
8900
|
|
|
8864
8901
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -8903,12 +8940,7 @@ proto.payrollserviceapi.ABARecordDetail.toObject = function(includeInstance, msg
|
|
|
8903
8940
|
employeeNumber: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
8904
8941
|
errorMessage: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
8905
8942
|
createdAt: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
8906
|
-
|
|
8907
|
-
calculatedAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
|
8908
|
-
salaryCalculationNote: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
8909
|
-
duplicateEmployeesList: jspb.Message.toObjectList(msg.getDuplicateEmployeesList(),
|
|
8910
|
-
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance),
|
|
8911
|
-
verificationstatus: jspb.Message.getFieldWithDefault(msg, 18, 0)
|
|
8943
|
+
verificationStatus: jspb.Message.getFieldWithDefault(msg, 18, 0)
|
|
8912
8944
|
};
|
|
8913
8945
|
|
|
8914
8946
|
if (includeInstance) {
|
|
@@ -8997,26 +9029,9 @@ proto.payrollserviceapi.ABARecordDetail.deserializeBinaryFromReader = function(m
|
|
|
8997
9029
|
var value = /** @type {string} */ (reader.readString());
|
|
8998
9030
|
msg.setCreatedAt(value);
|
|
8999
9031
|
break;
|
|
9000
|
-
case 14:
|
|
9001
|
-
var value = /** @type {number} */ (reader.readDouble());
|
|
9002
|
-
msg.setMonthlySalary(value);
|
|
9003
|
-
break;
|
|
9004
|
-
case 15:
|
|
9005
|
-
var value = /** @type {number} */ (reader.readDouble());
|
|
9006
|
-
msg.setCalculatedAmount(value);
|
|
9007
|
-
break;
|
|
9008
|
-
case 16:
|
|
9009
|
-
var value = /** @type {string} */ (reader.readString());
|
|
9010
|
-
msg.setSalaryCalculationNote(value);
|
|
9011
|
-
break;
|
|
9012
|
-
case 17:
|
|
9013
|
-
var value = new proto.payrollserviceapi.EmployeeSummary;
|
|
9014
|
-
reader.readMessage(value,proto.payrollserviceapi.EmployeeSummary.deserializeBinaryFromReader);
|
|
9015
|
-
msg.addDuplicateEmployees(value);
|
|
9016
|
-
break;
|
|
9017
9032
|
case 18:
|
|
9018
9033
|
var value = /** @type {!proto.payrollserviceapi.BankAccountStatus} */ (reader.readEnum());
|
|
9019
|
-
msg.
|
|
9034
|
+
msg.setVerificationStatus(value);
|
|
9020
9035
|
break;
|
|
9021
9036
|
default:
|
|
9022
9037
|
reader.skipField();
|
|
@@ -9138,36 +9153,7 @@ proto.payrollserviceapi.ABARecordDetail.serializeBinaryToWriter = function(messa
|
|
|
9138
9153
|
f
|
|
9139
9154
|
);
|
|
9140
9155
|
}
|
|
9141
|
-
f = message.
|
|
9142
|
-
if (f !== 0.0) {
|
|
9143
|
-
writer.writeDouble(
|
|
9144
|
-
14,
|
|
9145
|
-
f
|
|
9146
|
-
);
|
|
9147
|
-
}
|
|
9148
|
-
f = message.getCalculatedAmount();
|
|
9149
|
-
if (f !== 0.0) {
|
|
9150
|
-
writer.writeDouble(
|
|
9151
|
-
15,
|
|
9152
|
-
f
|
|
9153
|
-
);
|
|
9154
|
-
}
|
|
9155
|
-
f = message.getSalaryCalculationNote();
|
|
9156
|
-
if (f.length > 0) {
|
|
9157
|
-
writer.writeString(
|
|
9158
|
-
16,
|
|
9159
|
-
f
|
|
9160
|
-
);
|
|
9161
|
-
}
|
|
9162
|
-
f = message.getDuplicateEmployeesList();
|
|
9163
|
-
if (f.length > 0) {
|
|
9164
|
-
writer.writeRepeatedMessage(
|
|
9165
|
-
17,
|
|
9166
|
-
f,
|
|
9167
|
-
proto.payrollserviceapi.EmployeeSummary.serializeBinaryToWriter
|
|
9168
|
-
);
|
|
9169
|
-
}
|
|
9170
|
-
f = message.getVerificationstatus();
|
|
9156
|
+
f = message.getVerificationStatus();
|
|
9171
9157
|
if (f !== 0.0) {
|
|
9172
9158
|
writer.writeEnum(
|
|
9173
9159
|
18,
|
|
@@ -9412,112 +9398,421 @@ proto.payrollserviceapi.ABARecordDetail.prototype.setCreatedAt = function(value)
|
|
|
9412
9398
|
|
|
9413
9399
|
|
|
9414
9400
|
/**
|
|
9415
|
-
* optional
|
|
9401
|
+
* optional BankAccountStatus verification_status = 18;
|
|
9402
|
+
* @return {!proto.payrollserviceapi.BankAccountStatus}
|
|
9403
|
+
*/
|
|
9404
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.getVerificationStatus = function() {
|
|
9405
|
+
return /** @type {!proto.payrollserviceapi.BankAccountStatus} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
|
|
9406
|
+
};
|
|
9407
|
+
|
|
9408
|
+
|
|
9409
|
+
/**
|
|
9410
|
+
* @param {!proto.payrollserviceapi.BankAccountStatus} value
|
|
9411
|
+
* @return {!proto.payrollserviceapi.ABARecordDetail} returns this
|
|
9412
|
+
*/
|
|
9413
|
+
proto.payrollserviceapi.ABARecordDetail.prototype.setVerificationStatus = function(value) {
|
|
9414
|
+
return jspb.Message.setProto3EnumField(this, 18, value);
|
|
9415
|
+
};
|
|
9416
|
+
|
|
9417
|
+
|
|
9418
|
+
|
|
9419
|
+
|
|
9420
|
+
|
|
9421
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
9422
|
+
/**
|
|
9423
|
+
* Creates an object representation of this proto.
|
|
9424
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
9425
|
+
* Optional fields that are not set will be set to undefined.
|
|
9426
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
9427
|
+
* For the list of reserved names please see:
|
|
9428
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
9429
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
9430
|
+
* JSPB instance for transitional soy proto support:
|
|
9431
|
+
* http://goto/soy-param-migration
|
|
9432
|
+
* @return {!Object}
|
|
9433
|
+
*/
|
|
9434
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
9435
|
+
return proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.toObject(opt_includeInstance, this);
|
|
9436
|
+
};
|
|
9437
|
+
|
|
9438
|
+
|
|
9439
|
+
/**
|
|
9440
|
+
* Static version of the {@see toObject} method.
|
|
9441
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
9442
|
+
* the JSPB instance for transitional soy proto support:
|
|
9443
|
+
* http://goto/soy-param-migration
|
|
9444
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} msg The msg instance to transform.
|
|
9445
|
+
* @return {!Object}
|
|
9446
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
9447
|
+
*/
|
|
9448
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.toObject = function(includeInstance, msg) {
|
|
9449
|
+
var f, obj = {
|
|
9450
|
+
abaFileId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
9451
|
+
recordId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
9452
|
+
clientId: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
9453
|
+
};
|
|
9454
|
+
|
|
9455
|
+
if (includeInstance) {
|
|
9456
|
+
obj.$jspbMessageInstance = msg;
|
|
9457
|
+
}
|
|
9458
|
+
return obj;
|
|
9459
|
+
};
|
|
9460
|
+
}
|
|
9461
|
+
|
|
9462
|
+
|
|
9463
|
+
/**
|
|
9464
|
+
* Deserializes binary data (in protobuf wire format).
|
|
9465
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
9466
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest}
|
|
9467
|
+
*/
|
|
9468
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.deserializeBinary = function(bytes) {
|
|
9469
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
9470
|
+
var msg = new proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest;
|
|
9471
|
+
return proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.deserializeBinaryFromReader(msg, reader);
|
|
9472
|
+
};
|
|
9473
|
+
|
|
9474
|
+
|
|
9475
|
+
/**
|
|
9476
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
9477
|
+
* given reader into the given message object.
|
|
9478
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} msg The message object to deserialize into.
|
|
9479
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
9480
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest}
|
|
9481
|
+
*/
|
|
9482
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
9483
|
+
while (reader.nextField()) {
|
|
9484
|
+
if (reader.isEndGroup()) {
|
|
9485
|
+
break;
|
|
9486
|
+
}
|
|
9487
|
+
var field = reader.getFieldNumber();
|
|
9488
|
+
switch (field) {
|
|
9489
|
+
case 1:
|
|
9490
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
9491
|
+
msg.setAbaFileId(value);
|
|
9492
|
+
break;
|
|
9493
|
+
case 2:
|
|
9494
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
9495
|
+
msg.setRecordId(value);
|
|
9496
|
+
break;
|
|
9497
|
+
case 3:
|
|
9498
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
9499
|
+
msg.setClientId(value);
|
|
9500
|
+
break;
|
|
9501
|
+
default:
|
|
9502
|
+
reader.skipField();
|
|
9503
|
+
break;
|
|
9504
|
+
}
|
|
9505
|
+
}
|
|
9506
|
+
return msg;
|
|
9507
|
+
};
|
|
9508
|
+
|
|
9509
|
+
|
|
9510
|
+
/**
|
|
9511
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
9512
|
+
* @return {!Uint8Array}
|
|
9513
|
+
*/
|
|
9514
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.serializeBinary = function() {
|
|
9515
|
+
var writer = new jspb.BinaryWriter();
|
|
9516
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.serializeBinaryToWriter(this, writer);
|
|
9517
|
+
return writer.getResultBuffer();
|
|
9518
|
+
};
|
|
9519
|
+
|
|
9520
|
+
|
|
9521
|
+
/**
|
|
9522
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
9523
|
+
* format), writing to the given BinaryWriter.
|
|
9524
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} message
|
|
9525
|
+
* @param {!jspb.BinaryWriter} writer
|
|
9526
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
9527
|
+
*/
|
|
9528
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
9529
|
+
var f = undefined;
|
|
9530
|
+
f = message.getAbaFileId();
|
|
9531
|
+
if (f !== 0) {
|
|
9532
|
+
writer.writeInt64(
|
|
9533
|
+
1,
|
|
9534
|
+
f
|
|
9535
|
+
);
|
|
9536
|
+
}
|
|
9537
|
+
f = message.getRecordId();
|
|
9538
|
+
if (f !== 0) {
|
|
9539
|
+
writer.writeInt64(
|
|
9540
|
+
2,
|
|
9541
|
+
f
|
|
9542
|
+
);
|
|
9543
|
+
}
|
|
9544
|
+
f = message.getClientId();
|
|
9545
|
+
if (f !== 0) {
|
|
9546
|
+
writer.writeInt64(
|
|
9547
|
+
3,
|
|
9548
|
+
f
|
|
9549
|
+
);
|
|
9550
|
+
}
|
|
9551
|
+
};
|
|
9552
|
+
|
|
9553
|
+
|
|
9554
|
+
/**
|
|
9555
|
+
* optional int64 aba_file_id = 1;
|
|
9416
9556
|
* @return {number}
|
|
9417
9557
|
*/
|
|
9418
|
-
proto.payrollserviceapi.
|
|
9419
|
-
return /** @type {number} */ (jspb.Message.
|
|
9558
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.getAbaFileId = function() {
|
|
9559
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
9420
9560
|
};
|
|
9421
9561
|
|
|
9422
9562
|
|
|
9423
9563
|
/**
|
|
9424
9564
|
* @param {number} value
|
|
9425
|
-
* @return {!proto.payrollserviceapi.
|
|
9565
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} returns this
|
|
9426
9566
|
*/
|
|
9427
|
-
proto.payrollserviceapi.
|
|
9428
|
-
return jspb.Message.
|
|
9567
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.setAbaFileId = function(value) {
|
|
9568
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
9429
9569
|
};
|
|
9430
9570
|
|
|
9431
9571
|
|
|
9432
9572
|
/**
|
|
9433
|
-
* optional
|
|
9573
|
+
* optional int64 record_id = 2;
|
|
9434
9574
|
* @return {number}
|
|
9435
9575
|
*/
|
|
9436
|
-
proto.payrollserviceapi.
|
|
9437
|
-
return /** @type {number} */ (jspb.Message.
|
|
9576
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.getRecordId = function() {
|
|
9577
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
9438
9578
|
};
|
|
9439
9579
|
|
|
9440
9580
|
|
|
9441
9581
|
/**
|
|
9442
9582
|
* @param {number} value
|
|
9443
|
-
* @return {!proto.payrollserviceapi.
|
|
9583
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} returns this
|
|
9444
9584
|
*/
|
|
9445
|
-
proto.payrollserviceapi.
|
|
9446
|
-
return jspb.Message.
|
|
9585
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.setRecordId = function(value) {
|
|
9586
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
9447
9587
|
};
|
|
9448
9588
|
|
|
9449
9589
|
|
|
9450
9590
|
/**
|
|
9451
|
-
* optional
|
|
9452
|
-
* @return {
|
|
9591
|
+
* optional int64 client_id = 3;
|
|
9592
|
+
* @return {number}
|
|
9453
9593
|
*/
|
|
9454
|
-
proto.payrollserviceapi.
|
|
9455
|
-
return /** @type {
|
|
9594
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.getClientId = function() {
|
|
9595
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
9456
9596
|
};
|
|
9457
9597
|
|
|
9458
9598
|
|
|
9459
9599
|
/**
|
|
9460
|
-
* @param {
|
|
9461
|
-
* @return {!proto.payrollserviceapi.
|
|
9600
|
+
* @param {number} value
|
|
9601
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest} returns this
|
|
9462
9602
|
*/
|
|
9463
|
-
proto.payrollserviceapi.
|
|
9464
|
-
return jspb.Message.
|
|
9603
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsRequest.prototype.setClientId = function(value) {
|
|
9604
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
|
9465
9605
|
};
|
|
9466
9606
|
|
|
9467
9607
|
|
|
9608
|
+
|
|
9468
9609
|
/**
|
|
9469
|
-
* repeated
|
|
9470
|
-
* @
|
|
9610
|
+
* List of repeated fields within this message type.
|
|
9611
|
+
* @private {!Array<number>}
|
|
9612
|
+
* @const
|
|
9471
9613
|
*/
|
|
9472
|
-
proto.payrollserviceapi.
|
|
9473
|
-
|
|
9474
|
-
|
|
9614
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.repeatedFields_ = [2];
|
|
9615
|
+
|
|
9616
|
+
|
|
9617
|
+
|
|
9618
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
9619
|
+
/**
|
|
9620
|
+
* Creates an object representation of this proto.
|
|
9621
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
9622
|
+
* Optional fields that are not set will be set to undefined.
|
|
9623
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
9624
|
+
* For the list of reserved names please see:
|
|
9625
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
9626
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
9627
|
+
* JSPB instance for transitional soy proto support:
|
|
9628
|
+
* http://goto/soy-param-migration
|
|
9629
|
+
* @return {!Object}
|
|
9630
|
+
*/
|
|
9631
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
9632
|
+
return proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.toObject(opt_includeInstance, this);
|
|
9475
9633
|
};
|
|
9476
9634
|
|
|
9477
9635
|
|
|
9478
9636
|
/**
|
|
9479
|
-
* @
|
|
9480
|
-
* @
|
|
9637
|
+
* Static version of the {@see toObject} method.
|
|
9638
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
9639
|
+
* the JSPB instance for transitional soy proto support:
|
|
9640
|
+
* http://goto/soy-param-migration
|
|
9641
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} msg The msg instance to transform.
|
|
9642
|
+
* @return {!Object}
|
|
9643
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
9644
|
+
*/
|
|
9645
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.toObject = function(includeInstance, msg) {
|
|
9646
|
+
var f, obj = {
|
|
9647
|
+
responsecode: (f = msg.getResponsecode()) && proto.payrollserviceapi.ResponseCode.toObject(includeInstance, f),
|
|
9648
|
+
duplicateEmployeesList: jspb.Message.toObjectList(msg.getDuplicateEmployeesList(),
|
|
9649
|
+
proto.payrollserviceapi.EmployeeSummary.toObject, includeInstance)
|
|
9650
|
+
};
|
|
9651
|
+
|
|
9652
|
+
if (includeInstance) {
|
|
9653
|
+
obj.$jspbMessageInstance = msg;
|
|
9654
|
+
}
|
|
9655
|
+
return obj;
|
|
9656
|
+
};
|
|
9657
|
+
}
|
|
9658
|
+
|
|
9659
|
+
|
|
9660
|
+
/**
|
|
9661
|
+
* Deserializes binary data (in protobuf wire format).
|
|
9662
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
9663
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse}
|
|
9664
|
+
*/
|
|
9665
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.deserializeBinary = function(bytes) {
|
|
9666
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
9667
|
+
var msg = new proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse;
|
|
9668
|
+
return proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.deserializeBinaryFromReader(msg, reader);
|
|
9669
|
+
};
|
|
9670
|
+
|
|
9671
|
+
|
|
9672
|
+
/**
|
|
9673
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
9674
|
+
* given reader into the given message object.
|
|
9675
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} msg The message object to deserialize into.
|
|
9676
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
9677
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse}
|
|
9678
|
+
*/
|
|
9679
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
9680
|
+
while (reader.nextField()) {
|
|
9681
|
+
if (reader.isEndGroup()) {
|
|
9682
|
+
break;
|
|
9683
|
+
}
|
|
9684
|
+
var field = reader.getFieldNumber();
|
|
9685
|
+
switch (field) {
|
|
9686
|
+
case 1:
|
|
9687
|
+
var value = new proto.payrollserviceapi.ResponseCode;
|
|
9688
|
+
reader.readMessage(value,proto.payrollserviceapi.ResponseCode.deserializeBinaryFromReader);
|
|
9689
|
+
msg.setResponsecode(value);
|
|
9690
|
+
break;
|
|
9691
|
+
case 2:
|
|
9692
|
+
var value = new proto.payrollserviceapi.EmployeeSummary;
|
|
9693
|
+
reader.readMessage(value,proto.payrollserviceapi.EmployeeSummary.deserializeBinaryFromReader);
|
|
9694
|
+
msg.addDuplicateEmployees(value);
|
|
9695
|
+
break;
|
|
9696
|
+
default:
|
|
9697
|
+
reader.skipField();
|
|
9698
|
+
break;
|
|
9699
|
+
}
|
|
9700
|
+
}
|
|
9701
|
+
return msg;
|
|
9702
|
+
};
|
|
9703
|
+
|
|
9704
|
+
|
|
9705
|
+
/**
|
|
9706
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
9707
|
+
* @return {!Uint8Array}
|
|
9708
|
+
*/
|
|
9709
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.serializeBinary = function() {
|
|
9710
|
+
var writer = new jspb.BinaryWriter();
|
|
9711
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.serializeBinaryToWriter(this, writer);
|
|
9712
|
+
return writer.getResultBuffer();
|
|
9713
|
+
};
|
|
9714
|
+
|
|
9715
|
+
|
|
9716
|
+
/**
|
|
9717
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
9718
|
+
* format), writing to the given BinaryWriter.
|
|
9719
|
+
* @param {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} message
|
|
9720
|
+
* @param {!jspb.BinaryWriter} writer
|
|
9721
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
9722
|
+
*/
|
|
9723
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
9724
|
+
var f = undefined;
|
|
9725
|
+
f = message.getResponsecode();
|
|
9726
|
+
if (f != null) {
|
|
9727
|
+
writer.writeMessage(
|
|
9728
|
+
1,
|
|
9729
|
+
f,
|
|
9730
|
+
proto.payrollserviceapi.ResponseCode.serializeBinaryToWriter
|
|
9731
|
+
);
|
|
9732
|
+
}
|
|
9733
|
+
f = message.getDuplicateEmployeesList();
|
|
9734
|
+
if (f.length > 0) {
|
|
9735
|
+
writer.writeRepeatedMessage(
|
|
9736
|
+
2,
|
|
9737
|
+
f,
|
|
9738
|
+
proto.payrollserviceapi.EmployeeSummary.serializeBinaryToWriter
|
|
9739
|
+
);
|
|
9740
|
+
}
|
|
9741
|
+
};
|
|
9742
|
+
|
|
9743
|
+
|
|
9744
|
+
/**
|
|
9745
|
+
* optional ResponseCode responseCode = 1;
|
|
9746
|
+
* @return {?proto.payrollserviceapi.ResponseCode}
|
|
9747
|
+
*/
|
|
9748
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.getResponsecode = function() {
|
|
9749
|
+
return /** @type{?proto.payrollserviceapi.ResponseCode} */ (
|
|
9750
|
+
jspb.Message.getWrapperField(this, proto.payrollserviceapi.ResponseCode, 1));
|
|
9751
|
+
};
|
|
9752
|
+
|
|
9753
|
+
|
|
9754
|
+
/**
|
|
9755
|
+
* @param {?proto.payrollserviceapi.ResponseCode|undefined} value
|
|
9756
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} returns this
|
|
9481
9757
|
*/
|
|
9482
|
-
proto.payrollserviceapi.
|
|
9483
|
-
return jspb.Message.
|
|
9758
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.setResponsecode = function(value) {
|
|
9759
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
9484
9760
|
};
|
|
9485
9761
|
|
|
9486
9762
|
|
|
9487
9763
|
/**
|
|
9488
|
-
*
|
|
9489
|
-
* @
|
|
9490
|
-
* @return {!proto.payrollserviceapi.EmployeeSummary}
|
|
9764
|
+
* Clears the message field making it undefined.
|
|
9765
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} returns this
|
|
9491
9766
|
*/
|
|
9492
|
-
proto.payrollserviceapi.
|
|
9493
|
-
return
|
|
9767
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.clearResponsecode = function() {
|
|
9768
|
+
return this.setResponsecode(undefined);
|
|
9494
9769
|
};
|
|
9495
9770
|
|
|
9496
9771
|
|
|
9497
9772
|
/**
|
|
9498
|
-
*
|
|
9499
|
-
* @return {
|
|
9773
|
+
* Returns whether this field is set.
|
|
9774
|
+
* @return {boolean}
|
|
9500
9775
|
*/
|
|
9501
|
-
proto.payrollserviceapi.
|
|
9502
|
-
return
|
|
9776
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.hasResponsecode = function() {
|
|
9777
|
+
return jspb.Message.getField(this, 1) != null;
|
|
9503
9778
|
};
|
|
9504
9779
|
|
|
9505
9780
|
|
|
9506
9781
|
/**
|
|
9507
|
-
*
|
|
9508
|
-
* @return {!proto.payrollserviceapi.
|
|
9782
|
+
* repeated EmployeeSummary duplicate_employees = 2;
|
|
9783
|
+
* @return {!Array<!proto.payrollserviceapi.EmployeeSummary>}
|
|
9509
9784
|
*/
|
|
9510
|
-
proto.payrollserviceapi.
|
|
9511
|
-
return /** @type
|
|
9785
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.getDuplicateEmployeesList = function() {
|
|
9786
|
+
return /** @type{!Array<!proto.payrollserviceapi.EmployeeSummary>} */ (
|
|
9787
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payrollserviceapi.EmployeeSummary, 2));
|
|
9512
9788
|
};
|
|
9513
9789
|
|
|
9514
9790
|
|
|
9515
9791
|
/**
|
|
9516
|
-
* @param {!proto.payrollserviceapi.
|
|
9517
|
-
* @return {!proto.payrollserviceapi.
|
|
9792
|
+
* @param {!Array<!proto.payrollserviceapi.EmployeeSummary>} value
|
|
9793
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} returns this
|
|
9794
|
+
*/
|
|
9795
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.setDuplicateEmployeesList = function(value) {
|
|
9796
|
+
return jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
9797
|
+
};
|
|
9798
|
+
|
|
9799
|
+
|
|
9800
|
+
/**
|
|
9801
|
+
* @param {!proto.payrollserviceapi.EmployeeSummary=} opt_value
|
|
9802
|
+
* @param {number=} opt_index
|
|
9803
|
+
* @return {!proto.payrollserviceapi.EmployeeSummary}
|
|
9518
9804
|
*/
|
|
9519
|
-
proto.payrollserviceapi.
|
|
9520
|
-
return jspb.Message.
|
|
9805
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.addDuplicateEmployees = function(opt_value, opt_index) {
|
|
9806
|
+
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.payrollserviceapi.EmployeeSummary, opt_index);
|
|
9807
|
+
};
|
|
9808
|
+
|
|
9809
|
+
|
|
9810
|
+
/**
|
|
9811
|
+
* Clears the list making it empty but non-null.
|
|
9812
|
+
* @return {!proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse} returns this
|
|
9813
|
+
*/
|
|
9814
|
+
proto.payrollserviceapi.MismatchRecordEmployeeDetailsResponse.prototype.clearDuplicateEmployeesList = function() {
|
|
9815
|
+
return this.setDuplicateEmployeesList([]);
|
|
9521
9816
|
};
|
|
9522
9817
|
|
|
9523
9818
|
|