@nkhang1902/strapi-plugin-export-import-clsx 1.1.0 → 1.1.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nkhang1902/strapi-plugin-export-import-clsx",
3
- "version": "1.1.0",
3
+ "version": "1.1.12",
4
4
  "description": "A powerful Strapi plugin for exporting and importing data with Excel support and advanced filtering",
5
5
  "main": "./strapi-server.js",
6
6
  "scripts": {
@@ -268,11 +268,11 @@ module.exports = ({ strapi }) => ({
268
268
  if (attr.type === 'component') {
269
269
  cleaned[key] = attr.repeatable
270
270
  ? (value || []).map((v, i) =>
271
- sanitizeComponent(v, attr.component, rowIndex, errors, `${fieldPath}[${i}]`)
271
+ this.sanitizeComponent(v, attr.component, rowIndex, errors, `${fieldPath}[${i}]`)
272
272
  )
273
- : sanitizeComponent(value, attr.component, rowIndex, errors, fieldPath);
273
+ : this.sanitizeComponent(value, attr.component, rowIndex, errors, fieldPath);
274
274
  } else {
275
- cleaned[key] = sanitizePrimitive(value, attr, rowIndex, errors, fieldPath);
275
+ cleaned[key] = this.sanitizePrimitive(value, attr, rowIndex, errors, fieldPath);
276
276
  }
277
277
  }
278
278
 
@@ -297,13 +297,13 @@ module.exports = ({ strapi }) => ({
297
297
 
298
298
  cleaned[key] = attr.repeatable
299
299
  ? value.map((v, i) =>
300
- sanitizeComponent(v, attr.component, rowIndex, errors, `${fieldPath}[${i}]`)
300
+ this.sanitizeComponent(v, attr.component, rowIndex, errors, `${fieldPath}[${i}]`)
301
301
  )
302
- : sanitizeComponent(value, attr.component, rowIndex, errors, fieldPath);
302
+ : this.sanitizeComponent(value, attr.component, rowIndex, errors, fieldPath);
303
303
  continue;
304
304
  }
305
305
 
306
- cleaned[key] = sanitizePrimitive(value, attr, rowIndex, errors, fieldPath);
306
+ cleaned[key] = this.sanitizePrimitive(value, attr, rowIndex, errors, fieldPath);
307
307
  }
308
308
 
309
309
  return cleaned;
@@ -406,7 +406,7 @@ module.exports = ({ strapi }) => ({
406
406
  data = await this.handleRelations(data, contentType, trx);
407
407
  data = await this.handleComponents(data, existing, contentType);
408
408
  const sanitizeErrors = [];
409
- data = sanitizeEntryBeforeWrite(data, contentType, '', sanitizeErrors);
409
+ data = this.sanitizeEntryBeforeWrite(data, contentType, '', sanitizeErrors);
410
410
 
411
411
  if (sanitizeErrors.length) {
412
412
  throw new Error(`Data validation failed:\n${sanitizeErrors.join('\n')}`);