UNPKG

contentful-management

Version:
11 lines 379 B
import * as raw from './raw'; export const get = (http, params, headers) => { return raw.get(http, `/organizations/${params.organizationId}/semantic/vectorization-status`, { headers }); }; export const update = (http, params, data, headers) => { return raw.post(http, `/organizations/${params.organizationId}/semantic/vectorization-status`, data, { headers }); };