@@ -449,5 +449,66 @@ proto.viam.component.gripper.v1.GripperServicePromiseClient.prototype.getGeometr
449
449
} ;
450
450
451
451
452
+ /**
453
+ * @const
454
+ * @type {!grpc.web.MethodDescriptor<
455
+ * !proto.viam.common.v1.GetKinematicsRequest,
456
+ * !proto.viam.common.v1.GetKinematicsResponse>}
457
+ */
458
+ const methodDescriptor_GripperService_GetKinematics = new grpc . web . MethodDescriptor (
459
+ '/viam.component.gripper.v1.GripperService/GetKinematics' ,
460
+ grpc . web . MethodType . UNARY ,
461
+ common_v1_common_pb . GetKinematicsRequest ,
462
+ common_v1_common_pb . GetKinematicsResponse ,
463
+ /**
464
+ * @param {!proto.viam.common.v1.GetKinematicsRequest } request
465
+ * @return {!Uint8Array }
466
+ */
467
+ function ( request ) {
468
+ return request . serializeBinary ( ) ;
469
+ } ,
470
+ common_v1_common_pb . GetKinematicsResponse . deserializeBinary
471
+ ) ;
472
+
473
+
474
+ /**
475
+ * @param {!proto.viam.common.v1.GetKinematicsRequest } request The
476
+ * request proto
477
+ * @param {?Object<string, string> } metadata User defined
478
+ * call metadata
479
+ * @param {function(?grpc.web.RpcError, ?proto.viam.common.v1.GetKinematicsResponse) }
480
+ * callback The callback function(error, response)
481
+ * @return {!grpc.web.ClientReadableStream<!proto.viam.common.v1.GetKinematicsResponse>|undefined }
482
+ * The XHR Node Readable Stream
483
+ */
484
+ proto . viam . component . gripper . v1 . GripperServiceClient . prototype . getKinematics =
485
+ function ( request , metadata , callback ) {
486
+ return this . client_ . rpcCall ( this . hostname_ +
487
+ '/viam.component.gripper.v1.GripperService/GetKinematics' ,
488
+ request ,
489
+ metadata || { } ,
490
+ methodDescriptor_GripperService_GetKinematics ,
491
+ callback ) ;
492
+ } ;
493
+
494
+
495
+ /**
496
+ * @param {!proto.viam.common.v1.GetKinematicsRequest } request The
497
+ * request proto
498
+ * @param {?Object<string, string>= } metadata User defined
499
+ * call metadata
500
+ * @return {!Promise<!proto.viam.common.v1.GetKinematicsResponse> }
501
+ * Promise that resolves to the response
502
+ */
503
+ proto . viam . component . gripper . v1 . GripperServicePromiseClient . prototype . getKinematics =
504
+ function ( request , metadata ) {
505
+ return this . client_ . unaryCall ( this . hostname_ +
506
+ '/viam.component.gripper.v1.GripperService/GetKinematics' ,
507
+ request ,
508
+ metadata || { } ,
509
+ methodDescriptor_GripperService_GetKinematics ) ;
510
+ } ;
511
+
512
+
452
513
module . exports = proto . viam . component . gripper . v1 ;
453
514
0 commit comments