@sniipwebmaster/payroll-service-client-grpcweb 25.10.264 → 25.10.276

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.
@@ -934,6 +934,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.listBusinesses =
934
934
  };
935
935
 
936
936
 
937
+ /**
938
+ * @const
939
+ * @type {!grpc.web.MethodDescriptor<
940
+ * !proto.payrollserviceapi.GetUserBusinessSummaryRequest,
941
+ * !proto.payrollserviceapi.GetUserBusinessSummaryResponse>}
942
+ */
943
+ const methodDescriptor_PayrollService_GetUserBusinessSummary = new grpc.web.MethodDescriptor(
944
+ '/payrollserviceapi.PayrollService/GetUserBusinessSummary',
945
+ grpc.web.MethodType.UNARY,
946
+ proto.payrollserviceapi.GetUserBusinessSummaryRequest,
947
+ proto.payrollserviceapi.GetUserBusinessSummaryResponse,
948
+ /**
949
+ * @param {!proto.payrollserviceapi.GetUserBusinessSummaryRequest} request
950
+ * @return {!Uint8Array}
951
+ */
952
+ function(request) {
953
+ return request.serializeBinary();
954
+ },
955
+ proto.payrollserviceapi.GetUserBusinessSummaryResponse.deserializeBinary
956
+ );
957
+
958
+
959
+ /**
960
+ * @param {!proto.payrollserviceapi.GetUserBusinessSummaryRequest} request The
961
+ * request proto
962
+ * @param {?Object<string, string>} metadata User defined
963
+ * call metadata
964
+ * @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.GetUserBusinessSummaryResponse)}
965
+ * callback The callback function(error, response)
966
+ * @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.GetUserBusinessSummaryResponse>|undefined}
967
+ * The XHR Node Readable Stream
968
+ */
969
+ proto.payrollserviceapi.PayrollServiceClient.prototype.getUserBusinessSummary =
970
+ function(request, metadata, callback) {
971
+ return this.client_.rpcCall(this.hostname_ +
972
+ '/payrollserviceapi.PayrollService/GetUserBusinessSummary',
973
+ request,
974
+ metadata || {},
975
+ methodDescriptor_PayrollService_GetUserBusinessSummary,
976
+ callback);
977
+ };
978
+
979
+
980
+ /**
981
+ * @param {!proto.payrollserviceapi.GetUserBusinessSummaryRequest} request The
982
+ * request proto
983
+ * @param {?Object<string, string>=} metadata User defined
984
+ * call metadata
985
+ * @return {!Promise<!proto.payrollserviceapi.GetUserBusinessSummaryResponse>}
986
+ * Promise that resolves to the response
987
+ */
988
+ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.getUserBusinessSummary =
989
+ function(request, metadata) {
990
+ return this.client_.unaryCall(this.hostname_ +
991
+ '/payrollserviceapi.PayrollService/GetUserBusinessSummary',
992
+ request,
993
+ metadata || {},
994
+ methodDescriptor_PayrollService_GetUserBusinessSummary);
995
+ };
996
+
997
+
937
998
  /**
938
999
  * @const
939
1000
  * @type {!grpc.web.MethodDescriptor<