├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .spi.yml ├── .swift-version ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Extensions │ ├── CLLocationCoordinate2D+Extensions.swift │ ├── JSONDecoder+Extensions.swift │ ├── UNPhoto+Extensions.swift │ ├── URLComponents+Extensions.swift │ └── URLRequest+Extensions.swift ├── Managers │ ├── QueryManager.swift │ ├── UNAPI.swift │ └── UNClient.swift ├── Model Entities │ ├── Authorization.swift │ ├── ResponseStatusCode.swift │ ├── SearchType.swift │ ├── UNBadge.swift │ ├── UNBasicPhoto.swift │ ├── UNCameraDetails.swift │ ├── UNCategory.swift │ ├── UNCategoryAPILocations.swift │ ├── UNCollection.swift │ ├── UNCollectionAPILocations.swift │ ├── UNContentSafetyFilter.swift │ ├── UNCredentials.swift │ ├── UNError.swift │ ├── UNFullPhoto.swift │ ├── UNLocation.swift │ ├── UNModifyPhotoInCollectionResponse.swift │ ├── UNOrder.swift │ ├── UNPageInfo.swift │ ├── UNPaginatedResult.swift │ ├── UNPhoto.swift │ ├── UNPhotoAPILocations.swift │ ├── UNPhotoColorScheme.swift │ ├── UNPhotoImageURLs.swift │ ├── UNPhotoOrientation.swift │ ├── UNPhotoSearchResult.swift │ ├── UNPhotoStatistics.swift │ ├── UNProfileImageLinks.swift │ ├── UNSearchResult.swift │ ├── UNSocialProfiles.swift │ ├── UNSort.swift │ ├── UNStatistics.swift │ ├── UNTag.swift │ ├── UNTopic.swift │ ├── UNTopicAPILocations.swift │ ├── UNTopicSort.swift │ ├── UNURLWrapper.swift │ ├── UNUnsplashMonthlyStats.swift │ ├── UNUnsplashTotalStats.swift │ ├── UNUser.swift │ ├── UNUserAPILocations.swift │ ├── UNUserInterests.swift │ ├── UNUserProfileLinks.swift │ ├── UNUserPublicProfile.swift │ └── UNUserStatistics.swift ├── Parameters │ ├── AuthorizationAttemptParameters.swift │ ├── AuthorizationTokenParameters.swift │ ├── Parameters.swift │ ├── UNAddPhotoToCollectionParameters.swift │ ├── UNCollectionListParameters.swift │ ├── UNCollectionPhotosParameters.swift │ ├── UNCollectionSearchParameters.swift │ ├── UNNewCollectionParameters.swift │ ├── UNPhotoListParameters.swift │ ├── UNPhotoSearchParameters.swift │ ├── UNRandomPhotoParameters.swift │ ├── UNStatisticsParameters.swift │ ├── UNTopicListParameters.swift │ ├── UNTopicPhotosParameters.swift │ ├── UNUpdateCollectionParameters.swift │ ├── UNUpdatePhotoInfoParameters.swift │ ├── UNUserCollectionsParameters.swift │ ├── UNUserLikesParameters.swift │ ├── UNUserPhotosParameters.swift │ ├── UNUserPublicProfileParameters.swift │ └── UNUserSearchParameters.swift ├── Schema │ ├── Endpoint.swift │ ├── HTTPMethod.swift │ ├── Host.swift │ ├── RequestHeader.swift │ ├── ResponseHeader.swift │ └── UserAuthorizationScope.swift └── UnsplashFramework.docc │ └── UnsplashFramework.md ├── Tests ├── Extensions Tests │ ├── CLLocationCoordinates2DTests.swift │ ├── UNPhotoExtensionTests.swift │ └── URLRequestExtensionsTests.swift ├── Helpers │ └── DemoData.swift ├── JSON Mock responses │ ├── AddRemovePhotoInCollection.json │ ├── Authorization.json │ ├── Badge.json │ ├── CLLocationCoordinates2D.json │ ├── CameraDetails.json │ ├── CollectionA.json │ ├── CollectionB.json │ ├── CollectionList.json │ ├── Location.json │ ├── LocationWithNulls.json │ ├── MonthlyStats.json │ ├── PhotoA.json │ ├── PhotoB.json │ ├── PhotoStatistics.json │ ├── PhotosInCollection.json │ ├── PhotosOfTopic.json │ ├── ProfileImageLinks.json │ ├── RandomPhotosByCollectionIDs.json │ ├── RandomPhotosByQuery.json │ ├── RelatedCollections.json │ ├── Social.json │ ├── SocialWithNulls.json │ ├── StandardPhotoList.json │ ├── StandardSearchCollectionResult.json │ ├── StandardSearchPhotoResult.json │ ├── StandardSearchUserResult.json │ ├── StandardTopicList.json │ ├── Topic.json │ ├── TotalStats.json │ ├── TrackPhotoDownload.json │ ├── URLWrapper.json │ ├── URLWrapperEmpty.json │ ├── UserCollections.json │ ├── UserInterests.json │ ├── UserLikes.json │ ├── UserPhotos.json │ ├── UserProfileLinks.json │ ├── UserPublicProfileResponse.json │ ├── UserPublicProfileWithNulls.json │ └── UserStatistics.json ├── JSONParsingTests.swift ├── Manager Tests │ ├── UNAPITests.swift │ └── UNClientTests.swift ├── Mocking Classes │ ├── MockQueryManager.swift │ ├── MockURLProtocol.swift │ ├── MockURLResponse.swift │ ├── MockURLSession.swift │ └── UNAPITester.swift ├── Model Entities Tests │ ├── UNBadgeTests.swift │ ├── UNCameraDetailsTests.swift │ ├── UNCategoryAPILocationsTests.swift │ ├── UNCategoryTests.swift │ ├── UNCollectionAPILocationsTests.swift │ ├── UNCollectionTests.swift │ ├── UNErrorReasonTests.swift │ ├── UNFullPhotoTests.swift │ ├── UNLocationTests.swift │ ├── UNPageInfoTests.swift │ ├── UNPhotoAPILocationsTests.swift │ ├── UNPhotoImageURLsTests.swift │ ├── UNPhotoStatisticsTests.swift │ ├── UNPhotoTests.swift │ ├── UNProfileImageLinksTests.swift │ ├── UNSocialProfilesTests.swift │ ├── UNUnsplashMonthlyStatsTests.swift │ ├── UNUnsplashTotalStatsTests.swift │ ├── UNUserAPILocationsTests.swift │ ├── UNUserInterestsTests.swift │ ├── UNUserProfileLinksTests.swift │ ├── UNUserPublicProfileTests.swift │ ├── UNUserStatisticsTests.swift │ ├── UNUserTests.swift │ └── URLWrapperTests.swift ├── Parameters Tests │ ├── AuthorizationAttemptParametersTests.swift │ ├── AuthorizationTokenParametersTests.swift │ ├── UNCollectionListParametersTests.swift │ ├── UNCollectionPhotosParametersTests.swift │ ├── UNCollectionSearchParametersTests.swift │ ├── UNModifyPhotoToCollectionParametersTests.swift │ ├── UNNewCollectionParametersTests.swift │ ├── UNPhotoListParametersTests.swift │ ├── UNPhotoSearchParametersTests.swift │ ├── UNStatisticsParametersTests.swift │ ├── UNTopicListParametersTests.swift │ ├── UNUpdateCollectionParametersTests.swift │ ├── UNUpdatePhotoInfoParametersTests.swift │ ├── UNUserCollectionsParametersTests.swift │ ├── UNUserLikesParametersTests.swift │ └── UNUserSearchParametersTests.swift └── Schema Tests │ └── ResponseHeaderTests.swift ├── UnsplashFrameworkLogo-Dark.png └── UnsplashFrameworkLogo-Light.png /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Extensions/CLLocationCoordinate2D+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Extensions/CLLocationCoordinate2D+Extensions.swift -------------------------------------------------------------------------------- /Sources/Extensions/JSONDecoder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Extensions/JSONDecoder+Extensions.swift -------------------------------------------------------------------------------- /Sources/Extensions/UNPhoto+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Extensions/UNPhoto+Extensions.swift -------------------------------------------------------------------------------- /Sources/Extensions/URLComponents+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Extensions/URLComponents+Extensions.swift -------------------------------------------------------------------------------- /Sources/Extensions/URLRequest+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Extensions/URLRequest+Extensions.swift -------------------------------------------------------------------------------- /Sources/Managers/QueryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Managers/QueryManager.swift -------------------------------------------------------------------------------- /Sources/Managers/UNAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Managers/UNAPI.swift -------------------------------------------------------------------------------- /Sources/Managers/UNClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Managers/UNClient.swift -------------------------------------------------------------------------------- /Sources/Model Entities/Authorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/Authorization.swift -------------------------------------------------------------------------------- /Sources/Model Entities/ResponseStatusCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/ResponseStatusCode.swift -------------------------------------------------------------------------------- /Sources/Model Entities/SearchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/SearchType.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNBadge.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNBasicPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNBasicPhoto.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCameraDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCameraDetails.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCategory.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCategoryAPILocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCategoryAPILocations.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCollection.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCollectionAPILocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCollectionAPILocations.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNContentSafetyFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNContentSafetyFilter.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNCredentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNCredentials.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNError.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNFullPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNFullPhoto.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNLocation.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNModifyPhotoInCollectionResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNModifyPhotoInCollectionResponse.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNOrder.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPageInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPageInfo.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPaginatedResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPaginatedResult.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhoto.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoAPILocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoAPILocations.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoColorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoColorScheme.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoImageURLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoImageURLs.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoOrientation.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoSearchResult.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNPhotoStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNPhotoStatistics.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNProfileImageLinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNProfileImageLinks.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNSearchResult.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNSocialProfiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNSocialProfiles.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNSort.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNStatistics.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNTag.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNTopic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNTopic.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNTopicAPILocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNTopicAPILocations.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNTopicSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNTopicSort.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNURLWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNURLWrapper.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUnsplashMonthlyStats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUnsplashMonthlyStats.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUnsplashTotalStats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUnsplashTotalStats.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUser.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUserAPILocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUserAPILocations.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUserInterests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUserInterests.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUserProfileLinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUserProfileLinks.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUserPublicProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUserPublicProfile.swift -------------------------------------------------------------------------------- /Sources/Model Entities/UNUserStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Model Entities/UNUserStatistics.swift -------------------------------------------------------------------------------- /Sources/Parameters/AuthorizationAttemptParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/AuthorizationAttemptParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/AuthorizationTokenParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/AuthorizationTokenParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/Parameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/Parameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNAddPhotoToCollectionParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNAddPhotoToCollectionParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNCollectionListParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNCollectionListParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNCollectionPhotosParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNCollectionPhotosParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNCollectionSearchParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNCollectionSearchParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNNewCollectionParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNNewCollectionParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNPhotoListParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNPhotoListParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNPhotoSearchParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNPhotoSearchParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNRandomPhotoParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNRandomPhotoParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNStatisticsParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNStatisticsParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNTopicListParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNTopicListParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNTopicPhotosParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNTopicPhotosParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUpdateCollectionParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUpdateCollectionParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUpdatePhotoInfoParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUpdatePhotoInfoParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUserCollectionsParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUserCollectionsParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUserLikesParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUserLikesParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUserPhotosParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUserPhotosParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUserPublicProfileParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUserPublicProfileParameters.swift -------------------------------------------------------------------------------- /Sources/Parameters/UNUserSearchParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Parameters/UNUserSearchParameters.swift -------------------------------------------------------------------------------- /Sources/Schema/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/Endpoint.swift -------------------------------------------------------------------------------- /Sources/Schema/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/HTTPMethod.swift -------------------------------------------------------------------------------- /Sources/Schema/Host.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/Host.swift -------------------------------------------------------------------------------- /Sources/Schema/RequestHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/RequestHeader.swift -------------------------------------------------------------------------------- /Sources/Schema/ResponseHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/ResponseHeader.swift -------------------------------------------------------------------------------- /Sources/Schema/UserAuthorizationScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/Schema/UserAuthorizationScope.swift -------------------------------------------------------------------------------- /Sources/UnsplashFramework.docc/UnsplashFramework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Sources/UnsplashFramework.docc/UnsplashFramework.md -------------------------------------------------------------------------------- /Tests/Extensions Tests/CLLocationCoordinates2DTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Extensions Tests/CLLocationCoordinates2DTests.swift -------------------------------------------------------------------------------- /Tests/Extensions Tests/UNPhotoExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Extensions Tests/UNPhotoExtensionTests.swift -------------------------------------------------------------------------------- /Tests/Extensions Tests/URLRequestExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Extensions Tests/URLRequestExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/Helpers/DemoData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Helpers/DemoData.swift -------------------------------------------------------------------------------- /Tests/JSON Mock responses/AddRemovePhotoInCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/AddRemovePhotoInCollection.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/Authorization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/Authorization.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/Badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/Badge.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/CLLocationCoordinates2D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/CLLocationCoordinates2D.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/CameraDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/CameraDetails.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/CollectionA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/CollectionA.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/CollectionB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/CollectionB.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/CollectionList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/CollectionList.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/Location.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/LocationWithNulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/LocationWithNulls.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/MonthlyStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/MonthlyStats.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/PhotoA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/PhotoA.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/PhotoB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/PhotoB.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/PhotoStatistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/PhotoStatistics.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/PhotosInCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/PhotosInCollection.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/PhotosOfTopic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/PhotosOfTopic.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/ProfileImageLinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/ProfileImageLinks.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/RandomPhotosByCollectionIDs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/RandomPhotosByCollectionIDs.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/RandomPhotosByQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/RandomPhotosByQuery.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/RelatedCollections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/RelatedCollections.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/Social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/Social.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/SocialWithNulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/SocialWithNulls.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/StandardPhotoList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/StandardPhotoList.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/StandardSearchCollectionResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/StandardSearchCollectionResult.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/StandardSearchPhotoResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/StandardSearchPhotoResult.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/StandardSearchUserResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/StandardSearchUserResult.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/StandardTopicList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/StandardTopicList.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/Topic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/Topic.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/TotalStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/TotalStats.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/TrackPhotoDownload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/TrackPhotoDownload.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/URLWrapper.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://image.unsplash.com/example" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/JSON Mock responses/URLWrapperEmpty.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserCollections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserCollections.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserInterests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserInterests.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserLikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserLikes.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserPhotos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserPhotos.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserProfileLinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserProfileLinks.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserPublicProfileResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserPublicProfileResponse.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserPublicProfileWithNulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserPublicProfileWithNulls.json -------------------------------------------------------------------------------- /Tests/JSON Mock responses/UserStatistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSON Mock responses/UserStatistics.json -------------------------------------------------------------------------------- /Tests/JSONParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/JSONParsingTests.swift -------------------------------------------------------------------------------- /Tests/Manager Tests/UNAPITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Manager Tests/UNAPITests.swift -------------------------------------------------------------------------------- /Tests/Manager Tests/UNClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Manager Tests/UNClientTests.swift -------------------------------------------------------------------------------- /Tests/Mocking Classes/MockQueryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Mocking Classes/MockQueryManager.swift -------------------------------------------------------------------------------- /Tests/Mocking Classes/MockURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Mocking Classes/MockURLProtocol.swift -------------------------------------------------------------------------------- /Tests/Mocking Classes/MockURLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Mocking Classes/MockURLResponse.swift -------------------------------------------------------------------------------- /Tests/Mocking Classes/MockURLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Mocking Classes/MockURLSession.swift -------------------------------------------------------------------------------- /Tests/Mocking Classes/UNAPITester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Mocking Classes/UNAPITester.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNBadgeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNBadgeTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNCameraDetailsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNCameraDetailsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNCategoryAPILocationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNCategoryAPILocationsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNCategoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNCategoryTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNCollectionAPILocationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNCollectionAPILocationsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNCollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNCollectionTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNErrorReasonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNErrorReasonTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNFullPhotoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNFullPhotoTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNLocationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNLocationTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNPageInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNPageInfoTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNPhotoAPILocationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNPhotoAPILocationsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNPhotoImageURLsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNPhotoImageURLsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNPhotoStatisticsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNPhotoStatisticsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNPhotoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNPhotoTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNProfileImageLinksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNProfileImageLinksTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNSocialProfilesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNSocialProfilesTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUnsplashMonthlyStatsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUnsplashMonthlyStatsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUnsplashTotalStatsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUnsplashTotalStatsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserAPILocationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserAPILocationsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserInterestsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserInterestsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserProfileLinksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserProfileLinksTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserPublicProfileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserPublicProfileTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserStatisticsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserStatisticsTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/UNUserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/UNUserTests.swift -------------------------------------------------------------------------------- /Tests/Model Entities Tests/URLWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Model Entities Tests/URLWrapperTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/AuthorizationAttemptParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/AuthorizationAttemptParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/AuthorizationTokenParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/AuthorizationTokenParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNCollectionListParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNCollectionListParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNCollectionPhotosParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNCollectionPhotosParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNCollectionSearchParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNCollectionSearchParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNModifyPhotoToCollectionParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNModifyPhotoToCollectionParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNNewCollectionParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNNewCollectionParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNPhotoListParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNPhotoListParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNPhotoSearchParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNPhotoSearchParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNStatisticsParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNStatisticsParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNTopicListParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNTopicListParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNUpdateCollectionParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNUpdateCollectionParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNUpdatePhotoInfoParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNUpdatePhotoInfoParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNUserCollectionsParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNUserCollectionsParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNUserLikesParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNUserLikesParametersTests.swift -------------------------------------------------------------------------------- /Tests/Parameters Tests/UNUserSearchParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Parameters Tests/UNUserSearchParametersTests.swift -------------------------------------------------------------------------------- /Tests/Schema Tests/ResponseHeaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/Tests/Schema Tests/ResponseHeaderTests.swift -------------------------------------------------------------------------------- /UnsplashFrameworkLogo-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/UnsplashFrameworkLogo-Dark.png -------------------------------------------------------------------------------- /UnsplashFrameworkLogo-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camiletti/UnsplashFramework/HEAD/UnsplashFrameworkLogo-Light.png --------------------------------------------------------------------------------