export async function homedeliveryQuery()

in src/homedelivery/query.ts [93:99]


export async function homedeliveryQuery(input: Input) {
	const deliveryDate = getDeliveryDate(input);
	const config = await fetchConfig();
	console.log('Config fetched succesfully.');
	console.log('Input: ', input);
	return queryZuora(deliveryDate, config);
}