From 5983a5f6cde118b30e931b012747545abb7fdc29 Mon Sep 17 00:00:00 2001 From: Felix Hofmann Date: Fri, 4 Nov 2022 19:01:09 +0100 Subject: [PATCH] fix: missing export for isArchived() --- lib/contentful-management.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contentful-management.ts b/lib/contentful-management.ts index 23aa921af4..a34be74b67 100644 --- a/lib/contentful-management.ts +++ b/lib/contentful-management.ts @@ -16,7 +16,7 @@ import * as editorInterfaceDefaults from './constants/editor-interface-defaults' export type { ClientAPI } from './create-contentful-api' export { asIterator } from './plain/as-iterator' -export { isDraft, isPublished, isUpdated } from './plain/checks' +export * from './plain/checks' export type { PlainClientAPI, AlphaPlainClientAPI } from './plain/common-types' export { createClient } export { RestAdapter } from './adapters/REST/rest-adapter'