@sniipwebmaster/payroll-service-client-grpcweb 25.10.252 → 25.10.264
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 +183 -0
- package/dependancies/service_pb.js +1067 -707
- package/package.json +1 -1
|
@@ -263,6 +263,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.importABAFile =
|
|
|
263
263
|
};
|
|
264
264
|
|
|
265
265
|
|
|
266
|
+
/**
|
|
267
|
+
* @const
|
|
268
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
269
|
+
* !proto.payrollserviceapi.ImportABAFileInternalRequest,
|
|
270
|
+
* !proto.payrollserviceapi.ImportABAFileResponse>}
|
|
271
|
+
*/
|
|
272
|
+
const methodDescriptor_PayrollService_ImportABAFileInternal = new grpc.web.MethodDescriptor(
|
|
273
|
+
'/payrollserviceapi.PayrollService/ImportABAFileInternal',
|
|
274
|
+
grpc.web.MethodType.UNARY,
|
|
275
|
+
proto.payrollserviceapi.ImportABAFileInternalRequest,
|
|
276
|
+
proto.payrollserviceapi.ImportABAFileResponse,
|
|
277
|
+
/**
|
|
278
|
+
* @param {!proto.payrollserviceapi.ImportABAFileInternalRequest} request
|
|
279
|
+
* @return {!Uint8Array}
|
|
280
|
+
*/
|
|
281
|
+
function(request) {
|
|
282
|
+
return request.serializeBinary();
|
|
283
|
+
},
|
|
284
|
+
proto.payrollserviceapi.ImportABAFileResponse.deserializeBinary
|
|
285
|
+
);
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* @param {!proto.payrollserviceapi.ImportABAFileInternalRequest} request The
|
|
290
|
+
* request proto
|
|
291
|
+
* @param {?Object<string, string>} metadata User defined
|
|
292
|
+
* call metadata
|
|
293
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.ImportABAFileResponse)}
|
|
294
|
+
* callback The callback function(error, response)
|
|
295
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.ImportABAFileResponse>|undefined}
|
|
296
|
+
* The XHR Node Readable Stream
|
|
297
|
+
*/
|
|
298
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.importABAFileInternal =
|
|
299
|
+
function(request, metadata, callback) {
|
|
300
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
301
|
+
'/payrollserviceapi.PayrollService/ImportABAFileInternal',
|
|
302
|
+
request,
|
|
303
|
+
metadata || {},
|
|
304
|
+
methodDescriptor_PayrollService_ImportABAFileInternal,
|
|
305
|
+
callback);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* @param {!proto.payrollserviceapi.ImportABAFileInternalRequest} request The
|
|
311
|
+
* request proto
|
|
312
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
313
|
+
* call metadata
|
|
314
|
+
* @return {!Promise<!proto.payrollserviceapi.ImportABAFileResponse>}
|
|
315
|
+
* Promise that resolves to the response
|
|
316
|
+
*/
|
|
317
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.importABAFileInternal =
|
|
318
|
+
function(request, metadata) {
|
|
319
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
320
|
+
'/payrollserviceapi.PayrollService/ImportABAFileInternal',
|
|
321
|
+
request,
|
|
322
|
+
metadata || {},
|
|
323
|
+
methodDescriptor_PayrollService_ImportABAFileInternal);
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
|
|
266
327
|
/**
|
|
267
328
|
* @const
|
|
268
329
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -324,6 +385,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.matchEmployees =
|
|
|
324
385
|
};
|
|
325
386
|
|
|
326
387
|
|
|
388
|
+
/**
|
|
389
|
+
* @const
|
|
390
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
391
|
+
* !proto.payrollserviceapi.MatchEmployeesInternalRequest,
|
|
392
|
+
* !proto.payrollserviceapi.MatchEmployeesResponse>}
|
|
393
|
+
*/
|
|
394
|
+
const methodDescriptor_PayrollService_MatchEmployeesInternal = new grpc.web.MethodDescriptor(
|
|
395
|
+
'/payrollserviceapi.PayrollService/MatchEmployeesInternal',
|
|
396
|
+
grpc.web.MethodType.UNARY,
|
|
397
|
+
proto.payrollserviceapi.MatchEmployeesInternalRequest,
|
|
398
|
+
proto.payrollserviceapi.MatchEmployeesResponse,
|
|
399
|
+
/**
|
|
400
|
+
* @param {!proto.payrollserviceapi.MatchEmployeesInternalRequest} request
|
|
401
|
+
* @return {!Uint8Array}
|
|
402
|
+
*/
|
|
403
|
+
function(request) {
|
|
404
|
+
return request.serializeBinary();
|
|
405
|
+
},
|
|
406
|
+
proto.payrollserviceapi.MatchEmployeesResponse.deserializeBinary
|
|
407
|
+
);
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* @param {!proto.payrollserviceapi.MatchEmployeesInternalRequest} request The
|
|
412
|
+
* request proto
|
|
413
|
+
* @param {?Object<string, string>} metadata User defined
|
|
414
|
+
* call metadata
|
|
415
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.MatchEmployeesResponse)}
|
|
416
|
+
* callback The callback function(error, response)
|
|
417
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.MatchEmployeesResponse>|undefined}
|
|
418
|
+
* The XHR Node Readable Stream
|
|
419
|
+
*/
|
|
420
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.matchEmployeesInternal =
|
|
421
|
+
function(request, metadata, callback) {
|
|
422
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
423
|
+
'/payrollserviceapi.PayrollService/MatchEmployeesInternal',
|
|
424
|
+
request,
|
|
425
|
+
metadata || {},
|
|
426
|
+
methodDescriptor_PayrollService_MatchEmployeesInternal,
|
|
427
|
+
callback);
|
|
428
|
+
};
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @param {!proto.payrollserviceapi.MatchEmployeesInternalRequest} request The
|
|
433
|
+
* request proto
|
|
434
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
435
|
+
* call metadata
|
|
436
|
+
* @return {!Promise<!proto.payrollserviceapi.MatchEmployeesResponse>}
|
|
437
|
+
* Promise that resolves to the response
|
|
438
|
+
*/
|
|
439
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.matchEmployeesInternal =
|
|
440
|
+
function(request, metadata) {
|
|
441
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
442
|
+
'/payrollserviceapi.PayrollService/MatchEmployeesInternal',
|
|
443
|
+
request,
|
|
444
|
+
metadata || {},
|
|
445
|
+
methodDescriptor_PayrollService_MatchEmployeesInternal);
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
|
|
327
449
|
/**
|
|
328
450
|
* @const
|
|
329
451
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -446,6 +568,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.executePayroll =
|
|
|
446
568
|
};
|
|
447
569
|
|
|
448
570
|
|
|
571
|
+
/**
|
|
572
|
+
* @const
|
|
573
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
574
|
+
* !proto.payrollserviceapi.ExecutePayrollInternalRequest,
|
|
575
|
+
* !proto.payrollserviceapi.ExecutePayrollResponse>}
|
|
576
|
+
*/
|
|
577
|
+
const methodDescriptor_PayrollService_ExecutePayrollInternal = new grpc.web.MethodDescriptor(
|
|
578
|
+
'/payrollserviceapi.PayrollService/ExecutePayrollInternal',
|
|
579
|
+
grpc.web.MethodType.UNARY,
|
|
580
|
+
proto.payrollserviceapi.ExecutePayrollInternalRequest,
|
|
581
|
+
proto.payrollserviceapi.ExecutePayrollResponse,
|
|
582
|
+
/**
|
|
583
|
+
* @param {!proto.payrollserviceapi.ExecutePayrollInternalRequest} request
|
|
584
|
+
* @return {!Uint8Array}
|
|
585
|
+
*/
|
|
586
|
+
function(request) {
|
|
587
|
+
return request.serializeBinary();
|
|
588
|
+
},
|
|
589
|
+
proto.payrollserviceapi.ExecutePayrollResponse.deserializeBinary
|
|
590
|
+
);
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* @param {!proto.payrollserviceapi.ExecutePayrollInternalRequest} request The
|
|
595
|
+
* request proto
|
|
596
|
+
* @param {?Object<string, string>} metadata User defined
|
|
597
|
+
* call metadata
|
|
598
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.ExecutePayrollResponse)}
|
|
599
|
+
* callback The callback function(error, response)
|
|
600
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.ExecutePayrollResponse>|undefined}
|
|
601
|
+
* The XHR Node Readable Stream
|
|
602
|
+
*/
|
|
603
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.executePayrollInternal =
|
|
604
|
+
function(request, metadata, callback) {
|
|
605
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
606
|
+
'/payrollserviceapi.PayrollService/ExecutePayrollInternal',
|
|
607
|
+
request,
|
|
608
|
+
metadata || {},
|
|
609
|
+
methodDescriptor_PayrollService_ExecutePayrollInternal,
|
|
610
|
+
callback);
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* @param {!proto.payrollserviceapi.ExecutePayrollInternalRequest} request The
|
|
616
|
+
* request proto
|
|
617
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
618
|
+
* call metadata
|
|
619
|
+
* @return {!Promise<!proto.payrollserviceapi.ExecutePayrollResponse>}
|
|
620
|
+
* Promise that resolves to the response
|
|
621
|
+
*/
|
|
622
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.executePayrollInternal =
|
|
623
|
+
function(request, metadata) {
|
|
624
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
625
|
+
'/payrollserviceapi.PayrollService/ExecutePayrollInternal',
|
|
626
|
+
request,
|
|
627
|
+
metadata || {},
|
|
628
|
+
methodDescriptor_PayrollService_ExecutePayrollInternal);
|
|
629
|
+
};
|
|
630
|
+
|
|
631
|
+
|
|
449
632
|
/**
|
|
450
633
|
* @const
|
|
451
634
|
* @type {!grpc.web.MethodDescriptor<
|