@@ -6488,5 +6488,66 @@ proto.viam.app.v1.AppServicePromiseClient.prototype.getAppContent =
6488
6488
} ;
6489
6489
6490
6490
6491
+ /**
6492
+ * @const
6493
+ * @type {!grpc.web.MethodDescriptor<
6494
+ * !proto.viam.app.v1.GetAppBrandingRequest,
6495
+ * !proto.viam.app.v1.GetAppBrandingResponse>}
6496
+ */
6497
+ const methodDescriptor_AppService_GetAppBranding = new grpc . web . MethodDescriptor (
6498
+ '/viam.app.v1.AppService/GetAppBranding' ,
6499
+ grpc . web . MethodType . UNARY ,
6500
+ proto . viam . app . v1 . GetAppBrandingRequest ,
6501
+ proto . viam . app . v1 . GetAppBrandingResponse ,
6502
+ /**
6503
+ * @param {!proto.viam.app.v1.GetAppBrandingRequest } request
6504
+ * @return {!Uint8Array }
6505
+ */
6506
+ function ( request ) {
6507
+ return request . serializeBinary ( ) ;
6508
+ } ,
6509
+ proto . viam . app . v1 . GetAppBrandingResponse . deserializeBinary
6510
+ ) ;
6511
+
6512
+
6513
+ /**
6514
+ * @param {!proto.viam.app.v1.GetAppBrandingRequest } request The
6515
+ * request proto
6516
+ * @param {?Object<string, string> } metadata User defined
6517
+ * call metadata
6518
+ * @param {function(?grpc.web.RpcError, ?proto.viam.app.v1.GetAppBrandingResponse) }
6519
+ * callback The callback function(error, response)
6520
+ * @return {!grpc.web.ClientReadableStream<!proto.viam.app.v1.GetAppBrandingResponse>|undefined }
6521
+ * The XHR Node Readable Stream
6522
+ */
6523
+ proto . viam . app . v1 . AppServiceClient . prototype . getAppBranding =
6524
+ function ( request , metadata , callback ) {
6525
+ return this . client_ . rpcCall ( this . hostname_ +
6526
+ '/viam.app.v1.AppService/GetAppBranding' ,
6527
+ request ,
6528
+ metadata || { } ,
6529
+ methodDescriptor_AppService_GetAppBranding ,
6530
+ callback ) ;
6531
+ } ;
6532
+
6533
+
6534
+ /**
6535
+ * @param {!proto.viam.app.v1.GetAppBrandingRequest } request The
6536
+ * request proto
6537
+ * @param {?Object<string, string>= } metadata User defined
6538
+ * call metadata
6539
+ * @return {!Promise<!proto.viam.app.v1.GetAppBrandingResponse> }
6540
+ * Promise that resolves to the response
6541
+ */
6542
+ proto . viam . app . v1 . AppServicePromiseClient . prototype . getAppBranding =
6543
+ function ( request , metadata ) {
6544
+ return this . client_ . unaryCall ( this . hostname_ +
6545
+ '/viam.app.v1.AppService/GetAppBranding' ,
6546
+ request ,
6547
+ metadata || { } ,
6548
+ methodDescriptor_AppService_GetAppBranding ) ;
6549
+ } ;
6550
+
6551
+
6491
6552
module . exports = proto . viam . app . v1 ;
6492
6553
0 commit comments