Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MODINVSTOR-1250 floating collections #1072

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
* Provides `instance-storage-bulk 1.0`
* Provides `instance-date-types 1.0`
* Provides `instance-storage 10.2`
* Provides `locations 3.1`
* Requires `holdings-storage 6.1`

### Features
* Add floating collection flag in location schema ([MODINVSTOR-1250](https://issues.folio.org/browse/MODINVSTOR-1250))
* Implement domain event production for location create/update/delete ([MODINVSTOR-1181](https://issues.folio.org/browse/MODINVSTOR-1181))
* Implement domain event production for library create/update/delete ([MODINVSTOR-1216](https://issues.folio.org/browse/MODINVSTOR-1216))
* Implement domain event production for campus create/update/delete ([MODINVSTOR-1217](https://issues.folio.org/browse/MODINVSTOR-1217))
Expand Down
2 changes: 1 addition & 1 deletion descriptors/ModuleDescriptor-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@
},
{
"id": "locations",
"version": "3.0",
"version": "3.1",
"handlers": [
{
"methods": ["GET"],
Expand Down
2 changes: 1 addition & 1 deletion ramls/location.raml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#%RAML 1.0
title: Location API
version: v3.0
version: v3.1
protocols: [ HTTP, HTTPS ]
baseUri: http://github.com/org/folio/mod-inventory-storage

Expand Down
4 changes: 4 additions & 0 deletions ramls/locations/location.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
}
}
},
"isFloatingCollection": {
"description": "Items checked in/out from this location can be checked in/out to other locations with the same flag.",
"type": "boolean"
},
"servicePoints": {
"type": "array",
"description": "List of dereferenced service points",
Expand Down
Loading