autosync_backend2 1.1.62 → 1.1.63

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -154219,7 +154219,8 @@ var CrmVehicleLogic;
154219
154219
  CrmVehicleLogic.create = async (body, user2) => {
154220
154220
  const vehicle = await CrmVehicleLogic.findOrCreate(body);
154221
154221
  await db_default.update(crmVehicleTable).set({
154222
- companyId: user2.companyId
154222
+ companyId: user2.companyId,
154223
+ deletedAt: null
154223
154224
  });
154224
154225
  return vehicle;
154225
154226
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autosync_backend2",
3
- "version": "1.1.62",
3
+ "version": "1.1.63",
4
4
  "module": "src/index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",