in src/libs/s3.ts [22:36]
export async function commitFileToS3_v2(
stage: string,
year: string,
month: string,
day: string,
file: string,
) {
const client = new S3Client({ region: 'eu-west-1' });
await commitFileToS3_v1(
client,
stage,
`fulfilment/${year}/${month}/${day}.csv`,
file,
);
}