├── .github ├── FUNDING.yml └── workflows │ └── swift.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources └── AppStoreReviewsAPI │ ├── AppStoreReviewsAPI.swift │ └── Models │ ├── Author │ └── Author.swift │ ├── Entry │ └── Entry.swift │ ├── ID │ └── ID.swift │ ├── Icon │ └── Icon.swift │ ├── Link │ └── Link.swift │ ├── ReviewsFeed.swift │ ├── Rights │ └── Rights.swift │ ├── Title │ └── Title.swift │ └── Updated │ └── Updated.swift └── Tests └── AppStoreReviewsAPITests └── AppStoreReviewsAPITests.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/AppStoreReviewsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/AppStoreReviewsAPI.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Author/Author.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Author/Author.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Entry/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Entry/Entry.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/ID/ID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/ID/ID.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Icon/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Icon/Icon.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Link/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Link/Link.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/ReviewsFeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/ReviewsFeed.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Rights/Rights.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Rights/Rights.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Title/Title.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Title/Title.swift -------------------------------------------------------------------------------- /Sources/AppStoreReviewsAPI/Models/Updated/Updated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Sources/AppStoreReviewsAPI/Models/Updated/Updated.swift -------------------------------------------------------------------------------- /Tests/AppStoreReviewsAPITests/AppStoreReviewsAPITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihamadfuad/AppStoreReviewsAPI/HEAD/Tests/AppStoreReviewsAPITests/AppStoreReviewsAPITests.swift --------------------------------------------------------------------------------