@sniipwebmaster/payroll-service-client-grpcweb 25.7.35 → 25.7.53
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 +2102 -35
- package/package.json +1 -1
|
@@ -1363,5 +1363,66 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.getUserProfile =
|
|
|
1363
1363
|
};
|
|
1364
1364
|
|
|
1365
1365
|
|
|
1366
|
+
/**
|
|
1367
|
+
* @const
|
|
1368
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1369
|
+
* !proto.payrollserviceapi.GetAgentUserRelationshipsRequest,
|
|
1370
|
+
* !proto.payrollserviceapi.GetAgentUserRelationshipsResponse>}
|
|
1371
|
+
*/
|
|
1372
|
+
const methodDescriptor_PayrollService_GetAgentUserRelationships = new grpc.web.MethodDescriptor(
|
|
1373
|
+
'/payrollserviceapi.PayrollService/GetAgentUserRelationships',
|
|
1374
|
+
grpc.web.MethodType.UNARY,
|
|
1375
|
+
proto.payrollserviceapi.GetAgentUserRelationshipsRequest,
|
|
1376
|
+
proto.payrollserviceapi.GetAgentUserRelationshipsResponse,
|
|
1377
|
+
/**
|
|
1378
|
+
* @param {!proto.payrollserviceapi.GetAgentUserRelationshipsRequest} request
|
|
1379
|
+
* @return {!Uint8Array}
|
|
1380
|
+
*/
|
|
1381
|
+
function(request) {
|
|
1382
|
+
return request.serializeBinary();
|
|
1383
|
+
},
|
|
1384
|
+
proto.payrollserviceapi.GetAgentUserRelationshipsResponse.deserializeBinary
|
|
1385
|
+
);
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
/**
|
|
1389
|
+
* @param {!proto.payrollserviceapi.GetAgentUserRelationshipsRequest} request The
|
|
1390
|
+
* request proto
|
|
1391
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1392
|
+
* call metadata
|
|
1393
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.GetAgentUserRelationshipsResponse)}
|
|
1394
|
+
* callback The callback function(error, response)
|
|
1395
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.GetAgentUserRelationshipsResponse>|undefined}
|
|
1396
|
+
* The XHR Node Readable Stream
|
|
1397
|
+
*/
|
|
1398
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.getAgentUserRelationships =
|
|
1399
|
+
function(request, metadata, callback) {
|
|
1400
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1401
|
+
'/payrollserviceapi.PayrollService/GetAgentUserRelationships',
|
|
1402
|
+
request,
|
|
1403
|
+
metadata || {},
|
|
1404
|
+
methodDescriptor_PayrollService_GetAgentUserRelationships,
|
|
1405
|
+
callback);
|
|
1406
|
+
};
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* @param {!proto.payrollserviceapi.GetAgentUserRelationshipsRequest} request The
|
|
1411
|
+
* request proto
|
|
1412
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1413
|
+
* call metadata
|
|
1414
|
+
* @return {!Promise<!proto.payrollserviceapi.GetAgentUserRelationshipsResponse>}
|
|
1415
|
+
* Promise that resolves to the response
|
|
1416
|
+
*/
|
|
1417
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.getAgentUserRelationships =
|
|
1418
|
+
function(request, metadata) {
|
|
1419
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1420
|
+
'/payrollserviceapi.PayrollService/GetAgentUserRelationships',
|
|
1421
|
+
request,
|
|
1422
|
+
metadata || {},
|
|
1423
|
+
methodDescriptor_PayrollService_GetAgentUserRelationships);
|
|
1424
|
+
};
|
|
1425
|
+
|
|
1426
|
+
|
|
1366
1427
|
module.exports = proto.payrollserviceapi;
|
|
1367
1428
|
|