Make codefiles visible downstream

This commit is contained in:
Siddharth Ganesan
2025-07-07 13:31:05 -07:00
parent cb393c1638
commit 2b3989edd2
3 changed files with 6 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ interface AWSLambdaResponse extends ToolResponse {
memorySize: number
environment: Record<string, string>
tags: Record<string, string>
codeFiles: Record<string, string>
handler: string
}
}
@@ -302,5 +304,7 @@ export const AWSLambdaBlock: BlockConfig<AWSLambdaResponse> = {
memorySize: 'number',
environment: 'json',
tags: 'json',
codeFiles: 'json',
handler: 'string',
},
}

View File

@@ -115,6 +115,7 @@ export const awsLambdaDeployTool: ToolConfig<AWSLambdaDeployInput, AWSLambdaDepl
description: 'Tags for the function',
default: {},
},
},
request: {

View File

@@ -56,6 +56,7 @@ export const awsLambdaFetchTool: ToolConfig<AWSLambdaFetchParams, AWSLambdaFetch
required: true,
description: 'Name of the Lambda function to fetch',
},
},
request: {