Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230220
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Feb 20, 2023
2 parents ca1f042 + 90ee353 commit 88a6720
Show file tree
Hide file tree
Showing 16 changed files with 100 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.158.230206"; } }
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.159.230220"; } }
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,7 @@ public enum GenericErrorCodes
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
InvalidNintendoSwitchAccountId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@ public class TransferInventoryItemsOperation : PlayFabBaseModel
/// <summary>
/// The amount to transfer.
/// </summary>
public int Amount;
public int? Amount;
/// <summary>
/// Indicates whether stacks reduced to an amount of 0 during the operation should be deleted from the inventory. (Default =
/// false)
Expand Down Expand Up @@ -2795,7 +2795,7 @@ public class TransferInventoryItemsRequest : PlayFabRequestCommon
/// <summary>
/// The amount to transfer .
/// </summary>
public int Amount;
public int? Amount;
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,10 @@ public class CreateBuildWithCustomContainerRequest : PlayFabRequestCommon
/// The VM size to create the build on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
}

[Serializable]
Expand Down Expand Up @@ -735,6 +739,10 @@ public class CreateBuildWithCustomContainerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -816,6 +824,10 @@ public class CreateBuildWithManagedContainerRequest : PlayFabRequestCommon
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
/// <summary>
/// The crash dump configuration for the build.
/// </summary>
public WindowsCrashDumpConfiguration WindowsCrashDumpConfiguration;
Expand Down Expand Up @@ -907,6 +919,10 @@ public class CreateBuildWithManagedContainerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -990,6 +1006,10 @@ public class CreateBuildWithProcessBasedServerRequest : PlayFabRequestCommon
/// The VM size to create the build on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
}

[Serializable]
Expand Down Expand Up @@ -1080,6 +1100,10 @@ public class CreateBuildWithProcessBasedServerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -4811,6 +4835,24 @@ public class VirtualMachineSummary : PlayFabBaseModel
public string VmId;
}

[Serializable]
public class VmStartupScriptConfiguration : PlayFabBaseModel
{
/// <summary>
/// Asset which contains the VmStartupScript script and any other required files.
/// </summary>
public AssetReference VmStartupScriptAssetReference;
}

[Serializable]
public class VmStartupScriptParams : PlayFabBaseModel
{
/// <summary>
/// Asset which contains the VmStartupScript script and any other required files.
/// </summary>
public AssetReferenceParams VmStartupScriptAssetReference;
}

[Serializable]
public class WindowsCrashDumpConfiguration : PlayFabBaseModel
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1990,6 +1990,7 @@ public enum GenericErrorCodes
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
InvalidNintendoSwitchAccountId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ public enum PlayFabErrorCode
AnalysisSubscriptionFoundAlready = 1552,
AnalysisSubscriptionManagementInvalidInput = 1553,
InvalidGameCenterId = 1554,
InvalidNintendoSwitchAccountId = 1555,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ static PlayFabSettings() { }
/// </summary>
public static readonly PlayFabAuthenticationContext staticPlayer = new PlayFabAuthenticationContext();

public const string SdkVersion = "2.158.230206";
public const string SdkVersion = "2.159.230220";
public const string BuildIdentifier = "adobuild_unitysdk_167";
public const string VersionString = "UnitySDK-2.158.230206";
public const string VersionString = "UnitySDK-2.159.230220";

public const string DefaultPlayFabApiUrl = "playfabapi.com";

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.158.230206"; } }
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.159.230220"; } }
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,7 @@ public enum GenericErrorCodes
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
InvalidNintendoSwitchAccountId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@ public class TransferInventoryItemsOperation : PlayFabBaseModel
/// <summary>
/// The amount to transfer.
/// </summary>
public int Amount;
public int? Amount;
/// <summary>
/// Indicates whether stacks reduced to an amount of 0 during the operation should be deleted from the inventory. (Default =
/// false)
Expand Down Expand Up @@ -2795,7 +2795,7 @@ public class TransferInventoryItemsRequest : PlayFabRequestCommon
/// <summary>
/// The amount to transfer .
/// </summary>
public int Amount;
public int? Amount;
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,10 @@ public class CreateBuildWithCustomContainerRequest : PlayFabRequestCommon
/// The VM size to create the build on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
}

[Serializable]
Expand Down Expand Up @@ -735,6 +739,10 @@ public class CreateBuildWithCustomContainerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -816,6 +824,10 @@ public class CreateBuildWithManagedContainerRequest : PlayFabRequestCommon
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
/// <summary>
/// The crash dump configuration for the build.
/// </summary>
public WindowsCrashDumpConfiguration WindowsCrashDumpConfiguration;
Expand Down Expand Up @@ -907,6 +919,10 @@ public class CreateBuildWithManagedContainerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -990,6 +1006,10 @@ public class CreateBuildWithProcessBasedServerRequest : PlayFabRequestCommon
/// The VM size to create the build on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript for the build
/// </summary>
public VmStartupScriptParams VmStartupScriptConfiguration;
}

[Serializable]
Expand Down Expand Up @@ -1080,6 +1100,10 @@ public class CreateBuildWithProcessBasedServerResponse : PlayFabResultCommon
/// The VM size the build was created on.
/// </summary>
public AzureVmSize? VmSize;
/// <summary>
/// The configuration for the VmStartupScript feature for the build
/// </summary>
public VmStartupScriptConfiguration VmStartupScriptConfiguration;
}

/// <summary>
Expand Down Expand Up @@ -4811,6 +4835,24 @@ public class VirtualMachineSummary : PlayFabBaseModel
public string VmId;
}

[Serializable]
public class VmStartupScriptConfiguration : PlayFabBaseModel
{
/// <summary>
/// Asset which contains the VmStartupScript script and any other required files.
/// </summary>
public AssetReference VmStartupScriptAssetReference;
}

[Serializable]
public class VmStartupScriptParams : PlayFabBaseModel
{
/// <summary>
/// Asset which contains the VmStartupScript script and any other required files.
/// </summary>
public AssetReferenceParams VmStartupScriptAssetReference;
}

[Serializable]
public class WindowsCrashDumpConfiguration : PlayFabBaseModel
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1990,6 +1990,7 @@ public enum GenericErrorCodes
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
InvalidNintendoSwitchAccountId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ public enum PlayFabErrorCode
AnalysisSubscriptionFoundAlready = 1552,
AnalysisSubscriptionManagementInvalidInput = 1553,
InvalidGameCenterId = 1554,
InvalidNintendoSwitchAccountId = 1555,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ static PlayFabSettings() { }
/// </summary>
public static readonly PlayFabAuthenticationContext staticPlayer = new PlayFabAuthenticationContext();

public const string SdkVersion = "2.158.230206";
public const string SdkVersion = "2.159.230220";
public const string BuildIdentifier = "adobuild_unitysdk_167";
public const string VersionString = "UnitySDK-2.158.230206";
public const string VersionString = "UnitySDK-2.159.230220";

public const string DefaultPlayFabApiUrl = "playfabapi.com";

Expand Down
Binary file modified Packages/PlayFabEditorExtensions.unitypackage
Binary file not shown.
Binary file modified Packages/UnitySDK.unitypackage
Binary file not shown.

0 comments on commit 88a6720

Please sign in to comment.