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.
- package/dist/index.js +2 -1
- 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
|
};
|