import { useGeneralDataStore } from '@/stores/generalDataStore'; import { Header } from '@/types/enums'; import type { AuthorizeRequestHeaders } from '@/types/models'; import type { DomainDetails } from '@/types/models/hostingDataModels'; import { generateCorrelationId } from '@/utils/helpers'; import httpService from '@/utils/services/httpService'; const URL = `${hostinger_reach_reach_data.rest_base_url}hostinger-reach/v1`; export const hostingRepo = { getDomainDetails: (headers?: AuthorizeRequestHeaders) => { const { nonce } = useGeneralDataStore(); const config = { headers: { [Header.CORRELATION_ID]: headers?.[Header.CORRELATION_ID] || generateCorrelationId(), [Header.WP_NONCE]: nonce } }; return httpService.get(`${URL}/hosting/domain-details`, config); } };