Skip to content

Commit 9337e84

Browse files
[APP-8646] Define Protos for Viam-Apps for machine filtering by fragmentIDs and basic white labeling the machine picker (#715)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f59d615 commit 9337e84

File tree

9 files changed

+3901
-1922
lines changed

9 files changed

+3901
-1922
lines changed

app/v1/app.pb.go

Lines changed: 2297 additions & 1918 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/v1/app.pb.gw.go

Lines changed: 77 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/v1/app_grpc.pb.go

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/js/app/v1/app_grpc_web_pb.js

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6488,5 +6488,66 @@ proto.viam.app.v1.AppServicePromiseClient.prototype.getAppContent =
64886488
};
64896489

64906490

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+
64916552
module.exports = proto.viam.app.v1;
64926553

0 commit comments

Comments
 (0)