diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f7a8e..e45f00b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change history for ui-checkin -## 9.3.0 IN PROGRESS +## 10.0.0 IN PROGRESS + +* *BREAKING* Migrate from `circulation/check-in-by-barcode` to `circulation-bff/loans/check-in-by-barcode`. Refs UICHKIN-437. ## [9.2.1] (https://github.com/folio-org/ui-checkin/tree/v9.2.1) (2024-11-13) [Full Changelog](https://github.com/folio-org/ui-checkin/compare/v9.2.0...v9.2.1) diff --git a/package.json b/package.json index 5907134..c609c24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@folio/checkin", - "version": "9.3.0", + "version": "10.0.0", "description": "Item Check-in", "repository": "folio-org/ui-checkin", "publishConfig": { @@ -28,7 +28,8 @@ "inventory": "10.0 11.0 12.0 13.0 14.0", "loan-policy-storage": "1.0 2.0", "users": "15.0 16.0", - "feesfines": "17.0 18.0 19.0" + "feesfines": "17.0 18.0 19.0", + "circulation-bff-loans": "1.0" }, "permissionSets": [ { @@ -49,7 +50,7 @@ "accounts.collection.get", "accounts.item.get", "lost-item-fees-policies.collection.get", - "circulation.check-in-by-barcode.post", + "circulation-bff.loans.check-in-by-barcode.execute", "circulation.requests.collection.get", "feefineactions.collection.get", "configuration.entries.collection.get", diff --git a/src/Scan.js b/src/Scan.js index 96a9b4c..5af980e 100644 --- a/src/Scan.js +++ b/src/Scan.js @@ -173,7 +173,7 @@ class Scan extends React.Component { }, checkIn: { type: 'okapi', - path: 'circulation/check-in-by-barcode', + path: 'circulation-bff/loans/check-in-by-barcode', fetch: false, throwErrors: false, },