Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#241025
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Oct 30, 2024
2 parents 60fe72a + 1747199 commit 6891928
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 12 deletions.
22 changes: 22 additions & 0 deletions code/include/playfab/PlayFabAdminDataModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5484,6 +5484,8 @@ namespace PlayFab
GenericErrorCodesMaxQueryableVersionsValueNotAllowedForTier,
GenericErrorCodesStatisticDefinitionHasNullOrEmptyVersionConfiguration,
GenericErrorCodesStatisticColumnLengthMismatch,
GenericErrorCodesInvalidExternalEntityId,
GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier,
GenericErrorCodesMatchmakingEntityInvalid,
GenericErrorCodesMatchmakingPlayerAttributesInvalid,
GenericErrorCodesMatchmakingQueueNotFound,
Expand Down Expand Up @@ -8680,6 +8682,16 @@ namespace PlayFab
output = Json::Value("StatisticColumnLengthMismatch");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesInvalidExternalEntityId)
{
output = Json::Value("InvalidExternalEntityId");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier)
{
output = Json::Value("UpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid)
{
output = Json::Value("MatchmakingEntityInvalid");
Expand Down Expand Up @@ -13028,6 +13040,16 @@ namespace PlayFab
output = GenericErrorCodes::GenericErrorCodesStatisticColumnLengthMismatch;
return;
}
if (inputStr == "InvalidExternalEntityId")
{
output = GenericErrorCodes::GenericErrorCodesInvalidExternalEntityId;
return;
}
if (inputStr == "UpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier")
{
output = GenericErrorCodes::GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier;
return;
}
if (inputStr == "MatchmakingEntityInvalid")
{
output = GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid;
Expand Down
2 changes: 2 additions & 0 deletions code/include/playfab/PlayFabError.h
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,8 @@ namespace PlayFab
PlayFabErrorMaxQueryableVersionsValueNotAllowedForTier = 1591,
PlayFabErrorStatisticDefinitionHasNullOrEmptyVersionConfiguration = 1592,
PlayFabErrorStatisticColumnLengthMismatch = 1593,
PlayFabErrorInvalidExternalEntityId = 1594,
PlayFabErrorUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier = 1595,
PlayFabErrorMatchmakingEntityInvalid = 2001,
PlayFabErrorMatchmakingPlayerAttributesInvalid = 2002,
PlayFabErrorMatchmakingQueueNotFound = 2016,
Expand Down
22 changes: 22 additions & 0 deletions code/include/playfab/PlayFabServerDataModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5508,6 +5508,8 @@ namespace PlayFab
GenericErrorCodesMaxQueryableVersionsValueNotAllowedForTier,
GenericErrorCodesStatisticDefinitionHasNullOrEmptyVersionConfiguration,
GenericErrorCodesStatisticColumnLengthMismatch,
GenericErrorCodesInvalidExternalEntityId,
GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier,
GenericErrorCodesMatchmakingEntityInvalid,
GenericErrorCodesMatchmakingPlayerAttributesInvalid,
GenericErrorCodesMatchmakingQueueNotFound,
Expand Down Expand Up @@ -8704,6 +8706,16 @@ namespace PlayFab
output = Json::Value("StatisticColumnLengthMismatch");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesInvalidExternalEntityId)
{
output = Json::Value("InvalidExternalEntityId");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier)
{
output = Json::Value("UpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid)
{
output = Json::Value("MatchmakingEntityInvalid");
Expand Down Expand Up @@ -13052,6 +13064,16 @@ namespace PlayFab
output = GenericErrorCodes::GenericErrorCodesStatisticColumnLengthMismatch;
return;
}
if (inputStr == "InvalidExternalEntityId")
{
output = GenericErrorCodes::GenericErrorCodesInvalidExternalEntityId;
return;
}
if (inputStr == "UpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier")
{
output = GenericErrorCodes::GenericErrorCodesUpdatingStatisticsUsingTransactionIdNotAvailableForFreeTier;
return;
}
if (inputStr == "MatchmakingEntityInvalid")
{
output = GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid;
Expand Down
4 changes: 2 additions & 2 deletions code/source/playfab/PlayFabSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ namespace PlayFab
// Control whether all callbacks are threaded or whether the user manually controls callback timing from their main-thread
// Note ANY api call may synchronously throw an exception if the title id is not set
bool PlayFabSettings::threadedCallbacks = false;
const std::string PlayFabSettings::sdkVersion = "3.146.241014";
const std::string PlayFabSettings::sdkVersion = "3.147.241025";
const std::string PlayFabSettings::buildIdentifier = "adobuild_xplatcppsdk_166";
const std::string PlayFabSettings::versionString = "XPlatCppSdk-3.146.241014";
const std::string PlayFabSettings::versionString = "XPlatCppSdk-3.147.241025";
std::string PlayFabSettings::productionEnvironmentURL = ".playfabapi.com";

ErrorCallback PlayFabSettings::globalErrorHandler = nullptr;
Expand Down
4 changes: 2 additions & 2 deletions com.playfab.xplatcppsdk.v141.autopkg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configurations {
nuget {
nuspec {
id = "com.playfab.xplatcppsdk.v141";
version : 3.146.241014;
version : 3.147.241025;
title: "PlayFab Cross Platform C++ Sdk for Visual Studio 2017";
summary: "PlayFab is the unified backend platform for games and 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.";
authors: "PlayFab";
Expand All @@ -18,7 +18,7 @@ nuget {
iconUrl: "https://playfab.com/assets/img/playfab-mark.png";
requireLicenseAcceptance: false;
description: "Authentication, in-game commerce, player data, title data, inventory, characters, statistics, leaderboards, analytics and reporting, friends, multiplayer, matchmaking, tournaments, cloud script, trading, real-time event handling, player management, live ops, and server hosting for all major platforms/devices and games of any scale. This sdk gives your game the ability log into PlayFab and access cloud data and services.";
releaseNotes: "https://api.playfab.com/releaseNotes/#241014";
releaseNotes: "https://api.playfab.com/releaseNotes/#241025";
copyright: "Copyright 2024";
language: "C++";
tags: { PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native };
Expand Down
4 changes: 2 additions & 2 deletions com.playfab.xplatcppsdk.v141.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>com.playfab.xplatcppsdk.v141</id>
<version>3.146.241014</version>
<version>3.147.241025</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<projectUrl>http://github.com/PlayFab/XPlatCppSdk</projectUrl>
<license type="expression">Apache-2.0</license>
<icon>./images/icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://api.playfab.com/releaseNotes/#3.146.241014</releaseNotes>
<releaseNotes>https://api.playfab.com/releaseNotes/#3.147.241025</releaseNotes>
<description>Microsoft Azure PlayFab XPlatCppSdk</description>
<copyright>&#169; Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft Azure PlayFab Baas Paas JSON REST HTTP SSL API cloud liveops game gamedev native nativepackage</tags>
Expand Down
4 changes: 2 additions & 2 deletions com.playfab.xplatcppsdk.v142.autopkg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configurations {
nuget {
nuspec {
id = "com.playfab.xplatcppsdk.v142";
version : 3.146.241014;
version : 3.147.241025;
title: "PlayFab Cross Platform C++ Sdk for Visual Studio 2019+";
summary: "PlayFab is the unified backend platform for games and 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.";
authors: "PlayFab";
Expand All @@ -18,7 +18,7 @@ nuget {
iconUrl: "https://playfab.com/assets/img/playfab-mark.png";
requireLicenseAcceptance: false;
description: "Authentication, in-game commerce, player data, title data, inventory, characters, statistics, leaderboards, analytics and reporting, friends, multiplayer, matchmaking, tournaments, cloud script, trading, real-time event handling, player management, live ops, and server hosting for all major platforms/devices and games of any scale. This sdk gives your game the ability log into PlayFab and access cloud data and services.";
releaseNotes: "https://api.playfab.com/releaseNotes/#241014";
releaseNotes: "https://api.playfab.com/releaseNotes/#241025";
copyright: "Copyright 2024";
language: "C++";
tags: { PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native };
Expand Down
4 changes: 2 additions & 2 deletions com.playfab.xplatcppsdk.v142.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>com.playfab.xplatcppsdk.v142</id>
<version>3.146.241014</version>
<version>3.147.241025</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<projectUrl>http://github.com/PlayFab/XPlatCppSdk</projectUrl>
<license type="expression">Apache-2.0</license>
<icon>./images/icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://api.playfab.com/releaseNotes/#3.146.241014</releaseNotes>
<releaseNotes>https://api.playfab.com/releaseNotes/#3.147.241025</releaseNotes>
<description>Microsoft Azure PlayFab XPlatCppSdk</description>
<copyright>&#169; Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft Azure PlayFab Baas Paas JSON REST HTTP SSL API cloud liveops game gamedev native nativepackage</tags>
Expand Down
4 changes: 2 additions & 2 deletions com.playfab.xplatxboxsdk.v141.autopkg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ configurations {
nuget {
nuspec {
id = "com.playfab.xplatxboxsdk.v141";
version : 3.146.241014;
version : 3.147.241025;
title: "PlayFab Xbox Platform C++ Sdk for Visual Studio 2017";
summary: "PlayFab is the unified backend platform for games and 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.";
authors: "PlayFab";
Expand All @@ -28,7 +28,7 @@ nuget {
iconUrl: "https://playfab.com/assets/img/playfab-mark.png";
requireLicenseAcceptance: false;
description: "Authentication, in-game commerce, player data, title data, inventory, characters, statistics, leaderboards, analytics and reporting, friends, multiplayer, matchmaking, tournaments, cloud script, trading, real-time event handling, player management, live ops, and server hosting for all major platforms/devices and games of any scale. This sdk gives your game the ability log into PlayFab and access cloud data and services.";
releaseNotes: "https://api.playfab.com/releaseNotes/#241014";
releaseNotes: "https://api.playfab.com/releaseNotes/#241025";
copyright: "Copyright 2024";
language: "C++";
tags: { PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native, xbox };
Expand Down

0 comments on commit 6891928

Please sign in to comment.