Getting Started
Basic Implementation
module.exports.init = async () => {
api.nexomaker.registerExportFormat({
id: 'my_plugin',
name: 'My Plugin Format',
transform: (item) => ({
item_id: item.id,
display_name: item.name,
item_type: item.type,
}),
});
};Data Model
Normalized Item Structure
API Reference
registerExportFormat(config)
Property
Type
Required
Description
Last updated