-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* .net 8 & nuget update * release note corrected for.net 8 * #29 missing fields added
- Loading branch information
Showing
11 changed files
with
132 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
Apple.Receipt.Example.Tests/Apple.Receipt.Example.Tests/Apple.Receipt.Example.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace Apple.Receipt.Models.Enums | ||
{ | ||
/// <summary> | ||
/// The relationship of the user with the family-shared purchase to which they have access. | ||
/// </summary> | ||
/// <remarks> | ||
/// When family members benefit from a shared subscription, App Store updates their receipt to include the family-shared purchase. | ||
/// Use the value of in_app_ownership_type to understand whether a transaction belongs to the purchaser or a family member who benefits. | ||
/// This field appears in the App Store server notifications unified receipt (unified_receipt.Latest_receipt_info) and | ||
/// in transaction receipts (responseBody.Latest_receipt_info). | ||
/// </remarks> | ||
public enum InAppOwnershipType | ||
{ | ||
/// <summary> | ||
/// “FAMILY_SHARED” - The transaction belongs to a family member who benefits from service. | ||
/// </summary> | ||
FamilyShared, | ||
/// <summary> | ||
/// “PURCHASED” - The transaction belongs to the purchaser. | ||
/// </summary> | ||
Purchased | ||
} | ||
} |
12 changes: 6 additions & 6 deletions
12
Apple.Receipt.Parser.Tests/Apple.Receipt.Parser.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
Apple.Receipt.Verificator.Tests/Apple.Receipt.Verificator.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.100", | ||
"version": "8.0.100", | ||
"rollForward": "latestFeature" | ||
} | ||
} |