@eide/foir-cli 0.28.0 → 0.29.0
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/cli.js +3 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1632,10 +1632,11 @@ function createRecordsMethods(client) {
|
|
|
1632
1632
|
const resp = await client.bulkUpdateRecords(
|
|
1633
1633
|
create4(BulkUpdateRecordsRequestSchema, {
|
|
1634
1634
|
modelKey: params.modelKey,
|
|
1635
|
-
|
|
1635
|
+
where: params.where ? sanitizeData(params.where) : void 0,
|
|
1636
|
+
update: sanitizeData(params.update)
|
|
1636
1637
|
})
|
|
1637
1638
|
);
|
|
1638
|
-
return { count: resp.count };
|
|
1639
|
+
return { count: resp.count, ids: resp.ids };
|
|
1639
1640
|
},
|
|
1640
1641
|
// ── Versioning ────────────────────────────────────────────
|
|
1641
1642
|
async createVersion(parentId, data, changeDescription) {
|