@haus-tech/product-export-plugin 2.2.3 → 2.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -283,13 +283,13 @@ let ProductExportService = class ProductExportService {
283
283
  if (field.type === 'relation') {
284
284
  const entity = field.entity.name;
285
285
  customFields.add({
286
- name: `variant:${field.name}`,
286
+ name: `product:${field.name}`,
287
287
  type: entity.toLowerCase(),
288
288
  });
289
289
  return;
290
290
  }
291
291
  customFields.add({
292
- name: `variant:${field.name}`,
292
+ name: `product:${field.name}`,
293
293
  type: field.type,
294
294
  });
295
295
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haus-tech/product-export-plugin",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "A Vendure plugin for importing products from a CSV file",
5
5
  "author": "Haus Tech",
6
6
  "repository": {