Skip to content

Commit ba02c93

Browse files
authored
feat(serverless): add build message (#608)
1 parent 9837e46 commit ba02c93

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/function/v1beta1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ export const unmarshalFunction = (data: unknown) => {
147147
}
148148

149149
return {
150+
buildMessage: data.build_message,
150151
cpuLimit: data.cpu_limit,
151152
description: data.description,
152153
domainName: data.domain_name,

packages/clients/src/api/function/v1beta1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@ export interface Function {
216216
handler: string
217217
/** Error message if the function is in "error" state. */
218218
errorMessage?: string
219+
/** Description of the current build step. */
220+
buildMessage?: string
219221
/** Privacy setting of the function. */
220222
privacy: FunctionPrivacy
221223
/** Description of the function. */

0 commit comments

Comments
 (0)