payloadcms-import-export-plugin
Version:
A comprehensive Payload CMS plugin that enables seamless import and export of collection data with support for CSV and JSON formats, featuring advanced field mapping, duplicate handling, and batch processing capabilities.
24 lines (23 loc) • 898 B
TypeScript
import type { Language } from '@payloadcms/translations';
import type { enTranslations } from './languages/en.js';
export type PluginLanguage = Language<{
'plugin-import-export': {
exportDocumentLabel: string;
importDocumentLabel: string;
exportOptions: string;
'field-depth-label': string;
'field-drafts-label': string;
'field-fields-label': string;
'field-format-label': string;
'field-limit-label': string;
'field-locale-label': string;
'field-name-label': string;
'field-selectionToUse-label': string;
'field-sort-label': string;
'selectionToUse-allDocuments': string;
'selectionToUse-currentFilters': string;
'selectionToUse-currentSelection': string;
totalDocumentsCount: string;
};
}>;
export type PluginDefaultTranslationsObject = typeof enTranslations;