Skip to content

Commit 09b8712

Browse files
Merge branch 'main' of github.com:michaellee1019/api into ml/supported-hardware-metadata
2 parents d515990 + 33b13b4 commit 09b8712

File tree

13 files changed

+2057
-1049
lines changed

13 files changed

+2057
-1049
lines changed

app/v1/app.pb.go

Lines changed: 1158 additions & 1043 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
@@ -6122,5 +6122,66 @@ proto.viam.app.v1.AppServicePromiseClient.prototype.createKeyFromExistingKeyAuth
61226122
};
61236123

61246124

6125+
/**
6126+
* @const
6127+
* @type {!grpc.web.MethodDescriptor<
6128+
* !proto.viam.app.v1.GetAppContentRequest,
6129+
* !proto.viam.app.v1.GetAppContentResponse>}
6130+
*/
6131+
const methodDescriptor_AppService_GetAppContent = new grpc.web.MethodDescriptor(
6132+
'/viam.app.v1.AppService/GetAppContent',
6133+
grpc.web.MethodType.UNARY,
6134+
proto.viam.app.v1.GetAppContentRequest,
6135+
proto.viam.app.v1.GetAppContentResponse,
6136+
/**
6137+
* @param {!proto.viam.app.v1.GetAppContentRequest} request
6138+
* @return {!Uint8Array}
6139+
*/
6140+
function(request) {
6141+
return request.serializeBinary();
6142+
},
6143+
proto.viam.app.v1.GetAppContentResponse.deserializeBinary
6144+
);
6145+
6146+
6147+
/**
6148+
* @param {!proto.viam.app.v1.GetAppContentRequest} request The
6149+
* request proto
6150+
* @param {?Object<string, string>} metadata User defined
6151+
* call metadata
6152+
* @param {function(?grpc.web.RpcError, ?proto.viam.app.v1.GetAppContentResponse)}
6153+
* callback The callback function(error, response)
6154+
* @return {!grpc.web.ClientReadableStream<!proto.viam.app.v1.GetAppContentResponse>|undefined}
6155+
* The XHR Node Readable Stream
6156+
*/
6157+
proto.viam.app.v1.AppServiceClient.prototype.getAppContent =
6158+
function(request, metadata, callback) {
6159+
return this.client_.rpcCall(this.hostname_ +
6160+
'/viam.app.v1.AppService/GetAppContent',
6161+
request,
6162+
metadata || {},
6163+
methodDescriptor_AppService_GetAppContent,
6164+
callback);
6165+
};
6166+
6167+
6168+
/**
6169+
* @param {!proto.viam.app.v1.GetAppContentRequest} request The
6170+
* request proto
6171+
* @param {?Object<string, string>=} metadata User defined
6172+
* call metadata
6173+
* @return {!Promise<!proto.viam.app.v1.GetAppContentResponse>}
6174+
* Promise that resolves to the response
6175+
*/
6176+
proto.viam.app.v1.AppServicePromiseClient.prototype.getAppContent =
6177+
function(request, metadata) {
6178+
return this.client_.unaryCall(this.hostname_ +
6179+
'/viam.app.v1.AppService/GetAppContent',
6180+
request,
6181+
metadata || {},
6182+
methodDescriptor_AppService_GetAppContent);
6183+
};
6184+
6185+
61256186
module.exports = proto.viam.app.v1;
61266187

gen/js/app/v1/app_pb.d.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5928,6 +5928,50 @@ export namespace CreateKeyFromExistingKeyAuthorizationsResponse {
59285928
}
59295929
}
59305930

5931+
export class GetAppContentRequest extends jspb.Message {
5932+
getPublicNamespace(): string;
5933+
setPublicNamespace(value: string): void;
5934+
5935+
getName(): string;
5936+
setName(value: string): void;
5937+
5938+
serializeBinary(): Uint8Array;
5939+
toObject(includeInstance?: boolean): GetAppContentRequest.AsObject;
5940+
static toObject(includeInstance: boolean, msg: GetAppContentRequest): GetAppContentRequest.AsObject;
5941+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
5942+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
5943+
static serializeBinaryToWriter(message: GetAppContentRequest, writer: jspb.BinaryWriter): void;
5944+
static deserializeBinary(bytes: Uint8Array): GetAppContentRequest;
5945+
static deserializeBinaryFromReader(message: GetAppContentRequest, reader: jspb.BinaryReader): GetAppContentRequest;
5946+
}
5947+
5948+
export namespace GetAppContentRequest {
5949+
export type AsObject = {
5950+
publicNamespace: string,
5951+
name: string,
5952+
}
5953+
}
5954+
5955+
export class GetAppContentResponse extends jspb.Message {
5956+
getUrl(): string;
5957+
setUrl(value: string): void;
5958+
5959+
serializeBinary(): Uint8Array;
5960+
toObject(includeInstance?: boolean): GetAppContentResponse.AsObject;
5961+
static toObject(includeInstance: boolean, msg: GetAppContentResponse): GetAppContentResponse.AsObject;
5962+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
5963+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
5964+
static serializeBinaryToWriter(message: GetAppContentResponse, writer: jspb.BinaryWriter): void;
5965+
static deserializeBinary(bytes: Uint8Array): GetAppContentResponse;
5966+
static deserializeBinaryFromReader(message: GetAppContentResponse, reader: jspb.BinaryReader): GetAppContentResponse;
5967+
}
5968+
5969+
export namespace GetAppContentResponse {
5970+
export type AsObject = {
5971+
url: string,
5972+
}
5973+
}
5974+
59315975
export class OrganizationSetLogoRequest extends jspb.Message {
59325976
getOrgId(): string;
59335977
setOrgId(value: string): void;

0 commit comments

Comments
 (0)