Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-10-11 11:44:41 +00:00
parent c436880097
commit 05b5bc00dc
4 changed files with 12 additions and 6 deletions

View File

@@ -53,7 +53,9 @@ export interface CallResponse {
}
export interface DeleteRequest {
// The name of the function
name?: string;
// Optional project name
project?: string;
}
@@ -92,10 +94,11 @@ export interface Func {
}
export interface ListRequest {
// optional
// optional project name
project?: string;
}
export interface ListResponse {
// List of functions deployed
functions?: Func[];
}