contentful-management
Version:
Client for Contentful's Content Management API
11 lines (8 loc) • 339 B
JavaScript
import { get } from './raw.mjs';
const getBaseUrl = (params) => `/spaces/${params.spaceId}/environments/${params.environmentId}/workflows_changelog`;
const getMany = (http, params, headers) => get(http, getBaseUrl(params), {
headers,
params: params.query,
});
export { getMany };
//# sourceMappingURL=workflows-changelog.mjs.map