// Capture the state provided by the client
var state = payload.state.toUpperCase(); // Convert to uppercase for standardization
// Calculate delivery time based on the US state
if (['NY', 'NJ', 'CT', 'PA'].includes(state)) {
payload.deadline = 'Delivery within up to 3 business days'; // Northeast Region
} else if (['CA', 'OR', 'WA', 'NV'].includes(state)) {
payload.deadline = 'Delivery within up to 4 business days'; // West Coast
} else if (['TX', 'OK', 'LA', 'AR'].includes(state)) {
payload.deadline = 'Delivery within up to 5 business days'; // South Central
} else if (['IL', 'IN', 'OH', 'MI'].includes(state)) {
payload.deadline = 'Delivery within up to 4 business days'; // Midwest
} else if (['FL', 'GA', 'SC', 'NC'].includes(state)) {
payload.deadline = 'Delivery within up to 5 business days'; // Southeast
} else {
payload.deadline = 'State not recognized. Please check the abbreviation and try again.'; // Error handling
}