@@ -, +, @@ libraries endpoints --- api/v1/swagger/definitions/library.yaml | 10 ++++++++++ api/v1/swagger/paths/libraries.yaml | 4 ++++ 2 files changed, 14 insertions(+) --- a/api/v1/swagger/definitions/library.yaml +++ a/api/v1/swagger/definitions/library.yaml @@ -115,6 +115,16 @@ properties: needs_override: type: boolean description: If the library needs an override to act as pickup location for a hold + cash_registers: + type: + - array + - "null" + description: The library's defined cash registers (x-koha-embed) + desks: + type: + - array + - "null" + description: The library's defined desks (x-koha-embed) additionalProperties: false required: - library_id --- a/api/v1/swagger/paths/libraries.yaml +++ a/api/v1/swagger/paths/libraries.yaml @@ -102,6 +102,8 @@ items: type: string enum: + - cash_registers + - desks - smtp_server collectionFormat: csv produces: @@ -194,6 +196,8 @@ items: type: string enum: + - cash_registers + - desks - smtp_server collectionFormat: csv produces: --