import type { Caching } from '../shared.js'; import type { ThreekitAxiosContext } from './HttpContext.js'; import { request } from './request.js'; export const getById = ( context: ThreekitAxiosContext, id: string, caching: Caching = {} ) => request(context, { url: id, params: { orgId: context.auth.orgId, ...caching } });