import { NotificationStatusRequest, NotificationStatusResponse } from "@shipengine/connect-order-source-api"; import { logger, NotImplementedError } from "@shipengine/connect-runtime"; const mapRequest = (request: any): any => { throw new NotImplementedError(); }; const callApi = async (request: any): Promise => { throw new NotImplementedError(); }; const mapResponse = (response: any): NotificationStatusResponse => { throw new NotImplementedError(); }; export const NotificationStatus = async (request: NotificationStatusRequest): Promise => { logger.info('This is a log that I can find using the `connect logs` command after publishing.') const thirdPartyRequest = mapRequest(request); const response = await callApi(thirdPartyRequest); const mappedResponse = mapResponse(response); return mappedResponse; }