contentful-management
Version:
Client for Contentful's Content Management API
14 lines (11 loc) • 391 B
JavaScript
import { get as get$1 } from './raw.js';
const get = (http, params) => {
return get$1(http, `/spaces/${params.spaceId}/preview_api_keys/${params.previewApiKeyId}`);
};
const getMany = (http, params) => {
return get$1(http, `/spaces/${params.spaceId}/preview_api_keys`, {
params: params.query,
});
};
export { get, getMany };
//# sourceMappingURL=preview-api-key.js.map