├── .github ├── dependabot.yml └── workflows │ ├── ci-prb.yml │ └── ci-release-docs.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── Package.swift ├── README.md ├── Sources └── AppStoreServerLibrary │ ├── AppStoreServerAPIClient.swift │ ├── ChainVerifier.swift │ ├── JWSSignatureCreator.swift │ ├── Models │ ├── AccountTenure.swift │ ├── AlternateProduct.swift │ ├── AppStoreEnvironment.swift │ ├── AppTransaction.swift │ ├── AppTransactionInfoResponse.swift │ ├── AutoRenewStatus.swift │ ├── CheckTestNotificationResponse.swift │ ├── ConsumptionRequest.swift │ ├── ConsumptionRequestReason.swift │ ├── ConsumptionStatus.swift │ ├── DecodedRealtimeRequestBody.swift │ ├── DecodedSignedData.swift │ ├── DefaultConfigurationRequest.swift │ ├── DeliveryStatus.swift │ ├── ErrorPayload.swift │ ├── ExpirationIntent.swift │ ├── ExtendReasonCode.swift │ ├── ExtendRenewalDateRequest.swift │ ├── ExtendRenewalDateResponse.swift │ ├── ExternalPurchaseToken.swift │ ├── GetImageListResponse.swift │ ├── GetImageListResponseItem.swift │ ├── GetMessageListResponse.swift │ ├── GetMessageListResponseItem.swift │ ├── HistoryResponse.swift │ ├── ImageState.swift │ ├── InAppOwnershipType.swift │ ├── JWSRenewalInfoDecodedPayload.swift │ ├── JWSTransactionDecodedPayload.swift │ ├── LastTransactionsItem.swift │ ├── LifetimeDollarsPurchased.swift │ ├── LifetimeDollarsRefunded.swift │ ├── MassExtendRenewalDateRequest.swift │ ├── MassExtendRenewalDateResponse.swift │ ├── MassExtendRenewalDateStatusResponse.swift │ ├── Message.swift │ ├── MessageState.swift │ ├── NotificationData.swift │ ├── NotificationHistoryRequest.swift │ ├── NotificationHistoryResponse.swift │ ├── NotificationHistoryResponseItem.swift │ ├── NotificationTypeV2.swift │ ├── OfferDiscountType.swift │ ├── OfferType.swift │ ├── OrderLookupResponse.swift │ ├── OrderLookupStatus.swift │ ├── Platform.swift │ ├── PlayTime.swift │ ├── PriceIncreaseStatus.swift │ ├── ProductType.swift │ ├── PromotionalOffer.swift │ ├── PromotionalOfferSignatureV1.swift │ ├── PurchasePlatform.swift │ ├── RealtimeRequestBody.swift │ ├── RealtimeResponseBody.swift │ ├── RefundHistoryResponse.swift │ ├── RefundPreference.swift │ ├── ResponseBodyV2.swift │ ├── ResponseBodyV2DecodedPayload.swift │ ├── RevocationReason.swift │ ├── SendAttemptItem.swift │ ├── SendAttemptResult.swift │ ├── SendTestNotificationResponse.swift │ ├── Status.swift │ ├── StatusResponse.swift │ ├── SubscriptionGroupIdentifierItem.swift │ ├── Subtype.swift │ ├── Summary.swift │ ├── TransactionHistoryRequest.swift │ ├── TransactionInfoResponse.swift │ ├── TransactionReason.swift │ ├── UpdateAppAccountTokenRequest.swift │ ├── UploadMessageImage.swift │ ├── UploadMessageRequestBody.swift │ └── UserStatus.swift │ ├── PromotionalOfferSignatureCreator.swift │ ├── ReceiptUtility.swift │ ├── SignedDataVerifier.swift │ └── Utility.swift └── Tests └── AppStoreServerLibraryTests ├── AppStoreServerAPIClientTests.swift ├── JWSSignatureCreatorTests.swift ├── PromotionalOfferSignatureCreatorTests.swift ├── RealtimeResponseBodyTests.swift ├── ReceiptUtilityTests.swift ├── SignedDataVerifierTests.swift ├── SignedModelTests.swift ├── TestingUtility.swift ├── XcodeSignedDataVerifierTests.swift └── resources ├── certs ├── testCA.der └── testSigningKey.p8 ├── mock_signed_data ├── legacyTransaction ├── missingX5CHeaderClaim ├── renewalInfo ├── testNotification ├── transactionInfo └── wrongBundleId ├── models ├── apiException.json ├── apiTooManyRequestsException.json ├── apiUnknownError.json ├── appTransaction.json ├── appTransactionDoesNotExistError.json ├── appTransactionInfoResponse.json ├── decodedRealtimeRequest.json ├── extendRenewalDateForAllActiveSubscribersResponse.json ├── extendSubscriptionRenewalDateResponse.json ├── familyTransactionNotSupportedError.json ├── getAllSubscriptionStatusesResponse.json ├── getImageListResponse.json ├── getMessageListResponse.json ├── getNotificationHistoryResponse.json ├── getRefundHistoryResponse.json ├── getStatusOfSubscriptionRenewalDateExtensionsResponse.json ├── getTestNotificationStatusResponse.json ├── invalidAppAccountTokenUUIDError.json ├── invalidTransactionIdError.json ├── lookupOrderIdResponse.json ├── requestTestNotificationResponse.json ├── signedConsumptionRequestNotification.json ├── signedExternalPurchaseTokenNotification.json ├── signedExternalPurchaseTokenSandboxNotification.json ├── signedNotification.json ├── signedRenewalInfo.json ├── signedSummaryNotification.json ├── signedTransaction.json ├── transactionHistoryResponse.json ├── transactionHistoryResponseWithMalformedAppAppleId.json ├── transactionHistoryResponseWithMalformedEnvironment.json ├── transactionIdNotFoundError.json ├── transactionIdNotOriginalTransactionId.json └── transactionInfoResponse.json └── xcode ├── xcode-app-receipt-empty ├── xcode-app-receipt-with-transaction ├── xcode-signed-app-transaction ├── xcode-signed-renewal-info └── xcode-signed-transaction /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-prb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/.github/workflows/ci-prb.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/.github/workflows/ci-release-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/ChainVerifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/ChainVerifier.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/JWSSignatureCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/JWSSignatureCreator.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AccountTenure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AccountTenure.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AlternateProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AlternateProduct.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AppStoreEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AppStoreEnvironment.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AppTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AppTransaction.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AppTransactionInfoResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AppTransactionInfoResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/AutoRenewStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/AutoRenewStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/CheckTestNotificationResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/CheckTestNotificationResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ConsumptionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ConsumptionRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ConsumptionRequestReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ConsumptionRequestReason.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ConsumptionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ConsumptionStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/DecodedRealtimeRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/DecodedRealtimeRequestBody.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/DecodedSignedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/DecodedSignedData.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/DefaultConfigurationRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/DefaultConfigurationRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/DeliveryStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/DeliveryStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ErrorPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ErrorPayload.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ExpirationIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ExpirationIntent.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ExtendReasonCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ExtendReasonCode.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ExtendRenewalDateRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ExtendRenewalDateRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ExtendRenewalDateResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ExtendRenewalDateResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ExternalPurchaseToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ExternalPurchaseToken.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/GetImageListResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/GetImageListResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/GetImageListResponseItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/GetImageListResponseItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/GetMessageListResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/GetMessageListResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/GetMessageListResponseItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/GetMessageListResponseItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/HistoryResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/HistoryResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ImageState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ImageState.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/InAppOwnershipType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/InAppOwnershipType.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/JWSRenewalInfoDecodedPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/JWSRenewalInfoDecodedPayload.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/JWSTransactionDecodedPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/JWSTransactionDecodedPayload.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/LastTransactionsItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/LastTransactionsItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/LifetimeDollarsPurchased.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/LifetimeDollarsPurchased.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/LifetimeDollarsRefunded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/LifetimeDollarsRefunded.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateStatusResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/MassExtendRenewalDateStatusResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/Message.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/MessageState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/MessageState.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/NotificationData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/NotificationData.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/NotificationHistoryRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/NotificationHistoryRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/NotificationHistoryResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/NotificationHistoryResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/NotificationHistoryResponseItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/NotificationHistoryResponseItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/NotificationTypeV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/NotificationTypeV2.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/OfferDiscountType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/OfferDiscountType.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/OfferType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/OfferType.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/OrderLookupResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/OrderLookupResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/OrderLookupStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/OrderLookupStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/Platform.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/PlayTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/PlayTime.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/PriceIncreaseStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/PriceIncreaseStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ProductType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ProductType.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/PromotionalOffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/PromotionalOffer.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/PromotionalOfferSignatureV1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/PromotionalOfferSignatureV1.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/PurchasePlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/PurchasePlatform.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/RealtimeRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/RealtimeRequestBody.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/RealtimeResponseBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/RealtimeResponseBody.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/RefundHistoryResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/RefundHistoryResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/RefundPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/RefundPreference.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ResponseBodyV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ResponseBodyV2.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/ResponseBodyV2DecodedPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/ResponseBodyV2DecodedPayload.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/RevocationReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/RevocationReason.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/SendAttemptItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/SendAttemptItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/SendAttemptResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/SendAttemptResult.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/SendTestNotificationResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/SendTestNotificationResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/Status.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/StatusResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/StatusResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/SubscriptionGroupIdentifierItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/SubscriptionGroupIdentifierItem.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/Subtype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/Subtype.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/Summary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/Summary.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/TransactionHistoryRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/TransactionHistoryRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/TransactionInfoResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/TransactionInfoResponse.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/TransactionReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/TransactionReason.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/UpdateAppAccountTokenRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/UpdateAppAccountTokenRequest.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/UploadMessageImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/UploadMessageImage.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/UploadMessageRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/UploadMessageRequestBody.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Models/UserStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Models/UserStatus.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/PromotionalOfferSignatureCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/PromotionalOfferSignatureCreator.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/ReceiptUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/ReceiptUtility.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/SignedDataVerifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/SignedDataVerifier.swift -------------------------------------------------------------------------------- /Sources/AppStoreServerLibrary/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Sources/AppStoreServerLibrary/Utility.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/AppStoreServerAPIClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/AppStoreServerAPIClientTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/JWSSignatureCreatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/JWSSignatureCreatorTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/PromotionalOfferSignatureCreatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/PromotionalOfferSignatureCreatorTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/RealtimeResponseBodyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/RealtimeResponseBodyTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/ReceiptUtilityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/ReceiptUtilityTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/SignedDataVerifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/SignedDataVerifierTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/SignedModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/SignedModelTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/TestingUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/TestingUtility.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/XcodeSignedDataVerifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/XcodeSignedDataVerifierTests.swift -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/certs/testCA.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/certs/testCA.der -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/certs/testSigningKey.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/certs/testSigningKey.p8 -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/legacyTransaction: -------------------------------------------------------------------------------- 1 | ewoicHVyY2hhc2UtaW5mbyIgPSAiZXdvaWRISmhibk5oWTNScGIyNHRhV1FpSUQwZ0lqTXpPVGt6TXprNUlqc0tmUW89IjsKfQo= -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/missingX5CHeaderClaim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/mock_signed_data/missingX5CHeaderClaim -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/renewalInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/mock_signed_data/renewalInfo -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/testNotification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/mock_signed_data/testNotification -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/transactionInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/mock_signed_data/transactionInfo -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/mock_signed_data/wrongBundleId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/mock_signed_data/wrongBundleId -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/apiException.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/apiException.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/apiTooManyRequestsException.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/apiTooManyRequestsException.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/apiUnknownError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/apiUnknownError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/appTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/appTransaction.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/appTransactionDoesNotExistError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/appTransactionDoesNotExistError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/appTransactionInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/appTransactionInfoResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/decodedRealtimeRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/decodedRealtimeRequest.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/extendRenewalDateForAllActiveSubscribersResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "requestIdentifier": "758883e8-151b-47b7-abd0-60c4d804c2f5" 3 | } -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/extendSubscriptionRenewalDateResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/extendSubscriptionRenewalDateResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/familyTransactionNotSupportedError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/familyTransactionNotSupportedError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getAllSubscriptionStatusesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getAllSubscriptionStatusesResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getImageListResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getImageListResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getMessageListResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getMessageListResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getNotificationHistoryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getNotificationHistoryResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getRefundHistoryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getRefundHistoryResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getStatusOfSubscriptionRenewalDateExtensionsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getStatusOfSubscriptionRenewalDateExtensionsResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/getTestNotificationStatusResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/getTestNotificationStatusResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/invalidAppAccountTokenUUIDError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/invalidAppAccountTokenUUIDError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/invalidTransactionIdError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/invalidTransactionIdError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/lookupOrderIdResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/lookupOrderIdResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/requestTestNotificationResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "testNotificationToken": "ce3af791-365e-4c60-841b-1674b43c1609" 3 | } -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedConsumptionRequestNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedConsumptionRequestNotification.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedExternalPurchaseTokenNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedExternalPurchaseTokenNotification.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedExternalPurchaseTokenSandboxNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedExternalPurchaseTokenSandboxNotification.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedNotification.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedRenewalInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedRenewalInfo.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedSummaryNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedSummaryNotification.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/signedTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/signedTransaction.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponseWithMalformedAppAppleId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponseWithMalformedAppAppleId.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponseWithMalformedEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionHistoryResponseWithMalformedEnvironment.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionIdNotFoundError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionIdNotFoundError.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionIdNotOriginalTransactionId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionIdNotOriginalTransactionId.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/models/transactionInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/models/transactionInfoResponse.json -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/xcode/xcode-app-receipt-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/xcode/xcode-app-receipt-empty -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/xcode/xcode-app-receipt-with-transaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/xcode/xcode-app-receipt-with-transaction -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-app-transaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-app-transaction -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-renewal-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-renewal-info -------------------------------------------------------------------------------- /Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-transaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/app-store-server-library-swift/HEAD/Tests/AppStoreServerLibraryTests/resources/xcode/xcode-signed-transaction --------------------------------------------------------------------------------