13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
import type { IVersion } from '@/Interface';
|
|
import { INSTANCE_ID_HEADER } from '@/constants';
|
|
import { get } from '@/utils/apiUtils';
|
|
|
|
export async function getNextVersions(
|
|
endpoint: string,
|
|
version: string,
|
|
instanceId: string,
|
|
): Promise<IVersion[]> {
|
|
const headers = { [INSTANCE_ID_HEADER as string]: instanceId };
|
|
return await get(endpoint, version, {}, headers);
|
|
}
|