From 952f0409a0488de82b977f72e860a234bd65699d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 19:28:38 +0000 Subject: [PATCH 1/2] Initial plan From 192c896fba9d2d0f2e65fb939eaabb2f79e3b135 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 19:32:00 +0000 Subject: [PATCH 2/2] Add uuid and @types/uuid as direct dependencies to fix build errors Co-authored-by: jayhill <116148+jayhill@users.noreply.github.com> --- serverless/package-lock.json | 23 ++++++++++++++++++++++- serverless/package.json | 2 ++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/serverless/package-lock.json b/serverless/package-lock.json index b7b4386..d0f2a93 100644 --- a/serverless/package-lock.json +++ b/serverless/package-lock.json @@ -4,7 +4,6 @@ "requires": true, "packages": { "": { - "name": "serverless", "dependencies": { "@aws-sdk/client-api-gateway": "^3.994.0", "@aws-sdk/client-cloudwatch": "^3.994.0", @@ -25,6 +24,7 @@ "mammoth": "^1.11.0", "pdf-parse": "^1.1.1", "tough-cookie": "^5.1.2", + "uuid": "^9.0.0", "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz" }, "devDependencies": { @@ -32,6 +32,7 @@ "@types/aws-lambda": "^8.10.147", "@types/jest": "^29.5.14", "@types/node": "^22.13.5", + "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^8.29.0", "@typescript-eslint/parser": "^8.29.0", "eslint": "^9.24.0", @@ -5403,6 +5404,13 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/yargs": { "version": "17.0.33", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", @@ -12974,6 +12982,19 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "license": "MIT" }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", diff --git a/serverless/package.json b/serverless/package.json index df62689..2a5d8b8 100644 --- a/serverless/package.json +++ b/serverless/package.json @@ -9,6 +9,7 @@ "@types/aws-lambda": "^8.10.147", "@types/jest": "^29.5.14", "@types/node": "^22.13.5", + "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^8.29.0", "@typescript-eslint/parser": "^8.29.0", "eslint": "^9.24.0", @@ -41,6 +42,7 @@ "mammoth": "^1.11.0", "pdf-parse": "^1.1.1", "tough-cookie": "^5.1.2", + "uuid": "^9.0.0", "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz" }, "scripts": {