Implemented the User Wantlist endpoints #13

Merged
javier merged 4 commits from library/user-wantlist into main 2025-10-16 16:24:56 +00:00
3 changed files with 21 additions and 3 deletions
Showing only changes of commit 67c9ffa6f4 - Show all commits
@@ -83,4 +83,15 @@
- ``APIProtocol/editFieldsInstance(_:)`` - ``APIProtocol/editFieldsInstance(_:)``
- ``APIProtocol/editFieldsInstance(path:query:headers:)`` - ``APIProtocol/editFieldsInstance(path:query:headers:)``
- ``APIProtocol/getCollectionValue(_:)`` - ``APIProtocol/getCollectionValue(_:)``
- ``APIProtocol/getCollectionValue(path:headers:)`` - ``APIProtocol/getCollectionValue(path:headers:)``
### User Wantlist
- ``APIProtocol/getWantlist(_:)``
- ``APIProtocol/getWantlist(path:query:headers:)``
- ``APIProtocol/addToWantlist(_:)``
- ``APIProtocol/addToWantlist(path:query:headers:)``
- ``APIProtocol/updateInWantlist(_:)``
- ``APIProtocol/updateInWantlist(path:query:headers:)``
- ``APIProtocol/deleteFromWantlist(_:)``
- ``APIProtocol/deleteFromWantlist(path:headers:)``
@@ -53,4 +53,11 @@
- ``Client/deleteInstanceFromCollectionFolder(_:)`` - ``Client/deleteInstanceFromCollectionFolder(_:)``
- ``Client/getCustomFields(_:)`` - ``Client/getCustomFields(_:)``
- ``Client/editFieldsInstance(_:)`` - ``Client/editFieldsInstance(_:)``
- ``Client/getCollectionValue(_:)`` - ``Client/getCollectionValue(_:)``
### User Wantlist
- ``Client/getWantlist(_:)``
- ``Client/addToWantlist(_:)``
- ``Client/updateInWantlist(_:)``
- ``Client/deleteFromWantlist(_:)``
@@ -85,7 +85,7 @@ private extension StringFunctionsTests {
private extension Input { private extension Input {
/// A list of strings to match against a regular expression pattern in test cases. /// A list of strings to match against a regular expression pattern in test cases.
static let stringsToMatch: [String] = ["Some Pattern", "Some", "Some Other Pattern", "Pattern", .empty] static let stringsToMatch: [String] = [.Pattern.sample, "Some", "Some Other Pattern", "Pattern", .empty]
} }
private extension Output { private extension Output {