@solidstarters/solid-core 1.2.121 → 1.2.122

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": "@solidstarters/solid-core",
3
- "version": "1.2.121",
3
+ "version": "1.2.122",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -270,7 +270,7 @@ export class ImportTransactionService extends CRUDService<ImportTransaction> {
270
270
  );
271
271
 
272
272
  // Update the import transaction status to 'completed'
273
- (errorLogIds.length > 0) ? importTransaction.status = ImportTransactionStatus.import_failed : importTransaction.status = ImportTransactionStatus.import_started; //FIXME: We can probably have import_partially_failed status to differentiate
273
+ (errorLogIds.length > 0) ? importTransaction.status = ImportTransactionStatus.import_failed : importTransaction.status = ImportTransactionStatus.import_succeeded; //FIXME: We can probably have import_partially_failed status to differentiate
274
274
  // Save the import transaction
275
275
  await this.repo.save(importTransaction);
276
276
  return {