### Required Environment Variables for Resy API Client Source: https://github.com/bootleg224/resy-api/blob/main/README.md Lists the essential environment variables needed to configure the Resy API client, including credentials and optional Twilio settings for notifications. ```text RESY_EMAIL RESY_PASSWORD ``` ```text TO_NUMBER TWILIO_AUTH TWILIO_NUMBER TWILIO_SID ``` -------------------------------- ### Lowdb JSON Database Template for Venue Data Source: https://github.com/bootleg224/resy-api/blob/main/README.md Provides the structure for the `db.json` file used by the Resy API client to store venue information, including ID, notification status, time preferences, booking preference, party size, and allowed dates. ```json { "venues": [ { "name": "Cote", "id": 35676, "notified": false, "minTime": "17:00", "preferredTime": "19:30", "maxTime": "22:00", "shouldBook": true, "partySize": 2, "allowedDates": ["2022-06-07", "2022-06-08"] } ] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.