UNPKG

contentful-import

Version:

this tool allows you to import JSON dump exported by contentful-export

29 lines (27 loc) 784 B
type RunContentfulImportParams = { spaceId: string; environmentId?: string; managementToken: string; contentFile?: string; content?: object; contentModelOnly?: boolean; skipContentModel?: boolean; skipLocales?: boolean; skipContentPublishing?: boolean; skipAssetUpdates?: boolean; skipContentUpdates?: boolean; uploadAssets?: boolean; assetsDirectory?: string; host?: string; proxy?: string; rawProxy?: string; rateLimit?: number; headers?: object; errorLogFile?: string; useVerboseRenderer?: boolean; timeout?: number; retryLimit?: number; config?: string; }; declare function runContentfulImport(params: RunContentfulImportParams): Promise<any>; export { runContentfulImport as default };