import { AxiosInstance } from 'axios'; import { IServiceTokenData, ServiceTokenDataKeyRes } from '../../types/models'; export const getServiceTokenData = async ({ apiRequest }: { apiRequest: AxiosInstance; }): Promise => { const { data } = await apiRequest.get('/api/v2/service-token'); return data; } export const getServiceTokenDataKey = async ({ apiRequest }: { apiRequest: AxiosInstance; }): Promise => { const { data } = await apiRequest.get("/api/v3/service-token/me/key"); return data }