@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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -2
  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
- data: sanitizeData(params.data)
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eide/foir-cli",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "Universal platform CLI for Foir platform",
5
5
  "type": "module",
6
6
  "publishConfig": {