Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#220908
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Sep 8, 2022
2 parents fab9715 + ba37035 commit 2e6dac2
Show file tree
Hide file tree
Showing 22 changed files with 19 additions and 263 deletions.
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.171.220907.jar -Destination ../../builds/client-sdk-0.171.220907.jar
Copy-Item client-sdk-0.171.220908.jar -Destination ../../builds/client-sdk-0.171.220908.jar
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.171.220907.jar ../../builds/client-sdk-0.171.220907.jar
cp client-sdk-0.171.220908.jar ../../builds/client-sdk-0.171.220908.jar
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ public static class AddInventoryItemsRequest {
public Integer Amount;
/** The id of the entity's collection to perform this action on. (Default="default") */
public String CollectionId;
/** The currency code of the real money transaction. */
public String CurrencyCode;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
Expand All @@ -29,29 +27,14 @@ public static class AddInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item the request applies to. */
public InventoryItemReference Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Purchase price of the offer. */
public Integer PurchasePrice;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class AddInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down Expand Up @@ -1097,12 +1080,6 @@ public static enum ModerationStatus {
}

public static class PayoutDetails {
/** The Dev Center account ID of the payee. */
public String AccountSellerId;
/** The tax code for payout calculations. */
public String TaxCode;
/** The Universal account ID of the payee. */
public String Uaid;

}

Expand Down Expand Up @@ -1237,8 +1214,6 @@ public static class RedeemAppleAppStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The receipt provided by the Apple marketplace upon successful purchase. */
public String Receipt;

Expand All @@ -1262,8 +1237,6 @@ public static class RedeemGooglePlayInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The list of purchases to redeem */
public ArrayList<GooglePlayProductPurchase> Purchases;

Expand All @@ -1289,8 +1262,6 @@ public static class RedeemMicrosoftStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** Xbox Token used for delegated business partner authentication. */
public String XboxToken;

Expand All @@ -1314,8 +1285,6 @@ public static class RedeemNintendoEShopInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The Nintendo provided token authorizing redemption */
public String NintendoServiceAccountIdToken;

Expand All @@ -1341,8 +1310,6 @@ public static class RedeemPlayStationStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** Optional Service Label to pass into the request. */
public String ServiceLabel;

Expand All @@ -1366,8 +1333,6 @@ public static class RedeemSteamInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;

}

Expand Down Expand Up @@ -1635,27 +1600,14 @@ public static class SubtractInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item the request applies to. */
public InventoryItemReference Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class SubtractInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down Expand Up @@ -1774,27 +1726,14 @@ public static class UpdateInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item to update with the specified values. */
public InventoryItem Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class UpdateInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.171.220907";
public static String SdkVersion = "0.171.220908";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.171.220907";
public static String SdkVersionString = "JavaSDK-0.171.220908";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.171.220907.jar -Destination ../../builds/client-sdk-0.171.220907.jar
Copy-Item client-sdk-0.171.220908.jar -Destination ../../builds/client-sdk-0.171.220908.jar
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.171.220907.jar ../../builds/client-sdk-0.171.220907.jar
cp client-sdk-0.171.220908.jar ../../builds/client-sdk-0.171.220908.jar
2 changes: 1 addition & 1 deletion PlayFabClientSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>client-sdk</artifactId>
<version>0.171.220907</version>
<version>0.171.220908</version>
<name>PlayFab Client API</name>
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
<url>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ public static class AddInventoryItemsRequest {
public Integer Amount;
/** The id of the entity's collection to perform this action on. (Default="default") */
public String CollectionId;
/** The currency code of the real money transaction. */
public String CurrencyCode;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
Expand All @@ -29,29 +27,14 @@ public static class AddInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item the request applies to. */
public InventoryItemReference Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Purchase price of the offer. */
public Integer PurchasePrice;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class AddInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down Expand Up @@ -1097,12 +1080,6 @@ public static enum ModerationStatus {
}

public static class PayoutDetails {
/** The Dev Center account ID of the payee. */
public String AccountSellerId;
/** The tax code for payout calculations. */
public String TaxCode;
/** The Universal account ID of the payee. */
public String Uaid;

}

Expand Down Expand Up @@ -1237,8 +1214,6 @@ public static class RedeemAppleAppStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The receipt provided by the Apple marketplace upon successful purchase. */
public String Receipt;

Expand All @@ -1262,8 +1237,6 @@ public static class RedeemGooglePlayInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The list of purchases to redeem */
public ArrayList<GooglePlayProductPurchase> Purchases;

Expand All @@ -1289,8 +1262,6 @@ public static class RedeemMicrosoftStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** Xbox Token used for delegated business partner authentication. */
public String XboxToken;

Expand All @@ -1314,8 +1285,6 @@ public static class RedeemNintendoEShopInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** The Nintendo provided token authorizing redemption */
public String NintendoServiceAccountIdToken;

Expand All @@ -1341,8 +1310,6 @@ public static class RedeemPlayStationStoreInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;
/** Optional Service Label to pass into the request. */
public String ServiceLabel;

Expand All @@ -1366,8 +1333,6 @@ public static class RedeemSteamInventoryItemsRequest {
public Map<String,String> CustomTags;
/** The entity to perform this action on. */
public EntityKey Entity;
/** The Idempotency ID for this request. */
public String IdempotencyId;

}

Expand Down Expand Up @@ -1635,27 +1600,14 @@ public static class SubtractInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item the request applies to. */
public InventoryItemReference Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class SubtractInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down Expand Up @@ -1774,27 +1726,14 @@ public static class UpdateInventoryItemsRequest {
public String IdempotencyId;
/** The inventory item to update with the specified values. */
public InventoryItem Item;
/** A list of Items to modify. */
public ArrayList<InventoryItem> Items;
/** Indicates if the full inventory should be returned. */
public Boolean ReturnInventory;

}

public static class UpdateInventoryItemsResponse {
/** The idempotency id used in the request. */
public String IdempotencyId;
/**
* Details of the current inventory items. Null if ReturnInventory was set to false in request or InventoryTooLarge is set
* to true in response.
*/
public ArrayList<InventoryItem> InventoryItems;
/** Whether the number of inventory items is too large to be returned. */
public Boolean InventoryTooLarge;
/** The ids of transactions that occurred as a result of the request. */
public ArrayList<String> TransactionIds;
/** The updated items for this request. */
public ArrayList<InventoryItem> UpdatedItems;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.171.220907";
public static String SdkVersion = "0.171.220908";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.171.220907";
public static String SdkVersionString = "JavaSDK-0.171.220908";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item combo-sdk-0.171.220907.jar -Destination ../../builds/combo-sdk-0.171.220907.jar
Copy-Item combo-sdk-0.171.220908.jar -Destination ../../builds/combo-sdk-0.171.220908.jar
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp combo-sdk-0.171.220907.jar ../../builds/combo-sdk-0.171.220907.jar
cp combo-sdk-0.171.220908.jar ../../builds/combo-sdk-0.171.220908.jar
Loading

0 comments on commit 2e6dac2

Please sign in to comment.