We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9837e46 commit ba02c93Copy full SHA for ba02c93
packages/clients/src/api/function/v1beta1/marshalling.gen.ts
@@ -147,6 +147,7 @@ export const unmarshalFunction = (data: unknown) => {
147
}
148
149
return {
150
+ buildMessage: data.build_message,
151
cpuLimit: data.cpu_limit,
152
description: data.description,
153
domainName: data.domain_name,
packages/clients/src/api/function/v1beta1/types.gen.ts
@@ -216,6 +216,8 @@ export interface Function {
216
handler: string
217
/** Error message if the function is in "error" state. */
218
errorMessage?: string
219
+ /** Description of the current build step. */
220
+ buildMessage?: string
221
/** Privacy setting of the function. */
222
privacy: FunctionPrivacy
223
/** Description of the function. */
0 commit comments