diff --git a/package-lock.json b/package-lock.json index a7d6757..10332ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,6 +42,7 @@ "rxjs": "^7.8.1", "serverless": "4.17.0", "swagger-ui-express": "^5.0.0", + "tslib": "^2.8.1", "yup": "^1.7.1", "zod": "^4.1.12" }, diff --git a/package.json b/package.json index e11f8ab..c710348 100644 --- a/package.json +++ b/package.json @@ -59,6 +59,7 @@ "rxjs": "^7.8.1", "serverless": "4.17.0", "swagger-ui-express": "^5.0.0", + "tslib": "^2.8.1", "yup": "^1.7.1", "zod": "^4.1.12" }, diff --git a/serverless.yml b/serverless.yml index 35597d3..4f8def2 100644 --- a/serverless.yml +++ b/serverless.yml @@ -295,6 +295,7 @@ functions: - 'node_modules/.prisma/**' - 'node_modules/@aws-sdk/**' - 'node_modules/@smithy/**' + - 'node_modules/tslib/**' events: - httpApi: @@ -493,6 +494,7 @@ functions: - 'node_modules/.prisma/**' - 'node_modules/@aws-sdk/**' - 'node_modules/@smithy/**' + - 'node_modules/tslib/**' events: - httpApi: @@ -511,6 +513,7 @@ functions: - 'node_modules/.prisma/**' - 'node_modules/@aws-sdk/**' - 'node_modules/@smithy/**' + - 'node_modules/tslib/**' events: - httpApi: diff --git a/src/modules/minglaradmin/handlers/rejectHostApplication.ts b/src/modules/minglaradmin/handlers/rejectHostApplication.ts index 3e2e189..e72deda 100644 --- a/src/modules/minglaradmin/handlers/rejectHostApplication.ts +++ b/src/modules/minglaradmin/handlers/rejectHostApplication.ts @@ -55,7 +55,7 @@ export const handler = safeHandler(async ( }, body: JSON.stringify({ success: true, - message: 'Application accepted successfully', + message: 'Application rejected successfully', data: null, }), };