import { Context } from './types'; export const makeContext = (externalId: string): Context => { return { trackingId: externalId, }; };