import { TDSite } from '../../types.js'; /** * Maps TD sites to workflow API endpoints * Pattern: /\Aapi(-(?:staging|development))?(-[a-z0-9]+)?\.(connect\.)?((?:eu01|ap02|ap03)\.)?treasuredata\.(com|co\.jp)\z/i * Transform: https://api#{$1}-workflow#{$2}.#{$3}#{$4}treasuredata.#{$5} */ export declare const WORKFLOW_ENDPOINTS: Record; /** * Get workflow API endpoint for a given site */ export declare function getWorkflowEndpoint(site: TDSite): string; /** * Transform a base API endpoint to workflow endpoint * This handles custom staging/development endpoints with suffixes */ export declare function transformToWorkflowEndpoint(apiEndpoint: string): string; //# sourceMappingURL=endpoints.d.ts.map