USER
User:
Example of response object model :
{
"task": "edit-content",
"folderName": "src/controllers",
"fileName": "bookingController.js",
"baseName": "testModels/hotelmgt",
"prompt": {
"task_id": "task_id",
"task_name": "Create Handle Recurring Bookings Api",
"description": "Generate a Node.js Handle Recurring Bookings Api with given dependenceis",
"input": {
"db": "mongoose",
"authentication": ""
},
"output": "Return only the function code as specified in dependencies",
"dependencies": [
"Create a Api to manage recurring bookings. Export: exports.createRecurringBooking = async () => {...}",
"Accept data from user: startDate, endDate, frequency (e.g., weekly, monthly), roomId.",
"Validate required fields: Ensure startDate, endDate, frequency, and roomId are provided.",
"Use a scheduling library (e.g., node-cron) to generate recurring booking dates based on the frequency.",
"Check availability for each recurring date using the checkAvailability function.",
"Create bookings for each recurring date and link them to the same user or service.",
"Respond to user with a success message containing the booking details for each occurrence.",
"Handle errors like conflicting bookings, invalid parameters, or database issues."
],
"status": "pending",
"isImport": false,
"readSupportFile": {
"read": false,
"folder": "",
"file": "",
"fileData": ""
},
"referencedTasks": [
{
"ref_id": "_todoID_0014",
"usecase": "Follow this Booking schema model fields to create required response.",
"file": "src/models/models.json"
}
],
}
}
User: These are training datas for dependencies generation. :-
"Database initialization",
"Set up cors congif these methods POST, GET and origin is '*' ",
"Create server port number as 4000",
"use express and express bodyparser",
"User helemt and rate limitter for security",
"import the router from this folder ./src/router/authRoutes.js with endpoint of /auth ",
"import Database module form ./config/db.js file as DB, ",
"Create error handelling middleware for routers",
"Measure all security features are implemented",
"Create a Api to manage recurring bookings. Export: exports.createRecurringBooking = async () => {...}",
"Validate required fields: Ensure startDate, endDate, frequency, and roomId are provided.",
"Use a scheduling library (e.g., node-cron) to generate recurring booking dates based on the frequency.",
"Check availability for each recurring date using the checkAvailability function.",
"Create bookings for each recurring date and link them to the same user or service.",
"Respond to user with a success message containing the booking details for each occurrence.",
"Handle errors like conflicting bookings, invalid parameters, or database issues.",
"Create a Api to manage recurring bookings. Export: exports.createRecurringBooking = async () => {...}",
"Validate required fields: Ensure startDate, endDate, frequency, and roomId are provided.",
"Use a scheduling library (e.g., node-cron) to generate recurring booking dates based on the frequency.",
"Check availability for each recurring date using the checkAvailability function.",
"Create bookings for each recurring date and link them to the same user or service.",
"Respond to user with a success message containing the booking details for each occurrence.",
"Handle errors like conflicting bookings, invalid parameters, or database issues.",
"Create a Api to add a user to the waitlist for a fully booked date. Export: exports.addToWaitlist = async () => {...}",
"Accept data from user body: userId, checkInDate, checkOutDate, hotelIds.",
"Validate required fields: Ensure userId, checkInDate, checkOutDate, and hotelIds are provided.",
"If the requested date is fully booked, add the user to the waitlist for that date.",
"Store waitlist data with date, hotelIds, userId, and priority level.",
"When a booking is canceled, notify users on the waitlist and offer the available slot.",
"Respond to user with a success message confirming the user has been added to the waitlist.",
],
User:
Create a function to generate random id in alphabets as log as user input and export the functions its self.
task: 'edit-content'
fileName : 'constants.js'
folderName :' src/utils'
baseName: 'testModels/hotelmgt'
Please generate a json object in the given model.
Assistant:ASSISTANT
Here's the JSON object following the example response model you provided:
```json
{
"task": "edit-content",
"folderName": "src/utils",
"fileName": "constants.js",
"baseName": "testModels/hotelmgt",
"prompt": {
"task_id": "task_id",
"task_name": "Create Function to Generate Random ID",
"description": "Generate a function in JavaScript to create a random ID with specified length and export it.",
"input": {
"id_length": "number"
},
"output": "Return the function code to generate random IDs with the specified length.",
"dependencies": [
"Create a function to generate a random ID consisting of alphabets.",
"The function should accept a parameter specifying the length of the ID.",
"Export the function as exports.generateRandomId = (length) => {...}.",
"Ensure the function can handle edge cases for invalid lengths (e.g., negative numbers, zero)."
],
"status": "pending",
"isImport": false,
"readSupportFile": {
"read": false,
"folder": "",
"file": "",
"fileData": ""
},
"referencedTasks": []
}
}
```