diff --git a/imports/packager.ts b/imports/packager.ts index 4a7cba9b..c13be501 100644 --- a/imports/packager.ts +++ b/imports/packager.ts @@ -1090,8 +1090,8 @@ export class Packager> { }) { const deep = this.client; if (!deep.isId(packageId)) throw new Error('!packageId'); - await deep.insert(inserting.map(i => ({ ...i, containerId: packageId }))); console.log(inserting); + await deep.insert(inserting.map(i => ({ ...i, containerId: packageId }))); for (let u of updating) { if (u.value) await deep.value(u.id, u.value); else await deep.update(u.id, { from_id: u.from_id, to_id: u.to_id }) diff --git a/package.json b/package.json index 760014f0..121b13ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@deep-foundation/deeplinks", - "version": "0.0.599", + "version": "0.0.600", "license": "Unlicense", "type": "module", "main": "import.js",