Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const unmarshalFunction = (data: unknown) => {
}

return {
buildMessage: data.build_message,
cpuLimit: data.cpu_limit,
description: data.description,
domainName: data.domain_name,
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/function/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ export interface Function {
handler: string
/** Error message if the function is in "error" state. */
errorMessage?: string
/** Description of the current build step. */
buildMessage?: string
/** Privacy setting of the function. */
privacy: FunctionPrivacy
/** Description of the function. */
Expand Down