Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#201218
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Dec 21, 2020
2 parents fffc354 + cda1682 commit 639718d
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 16 deletions.
11 changes: 11 additions & 0 deletions code/include/playfab/PlayFabAdminDataModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5469,6 +5469,7 @@ namespace PlayFab
GenericErrorCodesExplorerBasicDeleteQueryError,
GenericErrorCodesExplorerBasicUpdateQueryError,
GenericErrorCodesExplorerBasicSavedQueriesLimit,
GenericErrorCodesExplorerBasicSavedQueryNotFound,
GenericErrorCodesTitleNotEnabledForParty,
GenericErrorCodesPartyVersionNotFound,
GenericErrorCodesMultiplayerServerBuildReferencedByMatchmakingQueue,
Expand Down Expand Up @@ -8397,6 +8398,11 @@ namespace PlayFab
output = Json::Value("ExplorerBasicSavedQueriesLimit");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueryNotFound)
{
output = Json::Value("ExplorerBasicSavedQueryNotFound");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesTitleNotEnabledForParty)
{
output = Json::Value("TitleNotEnabledForParty");
Expand Down Expand Up @@ -11485,6 +11491,11 @@ namespace PlayFab
output = GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueriesLimit;
return;
}
if (inputStr == "ExplorerBasicSavedQueryNotFound")
{
output = GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueryNotFound;
return;
}
if (inputStr == "TitleNotEnabledForParty")
{
output = GenericErrorCodes::GenericErrorCodesTitleNotEnabledForParty;
Expand Down
1 change: 1 addition & 0 deletions code/include/playfab/PlayFabError.h
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,7 @@ namespace PlayFab
PlayFabErrorExplorerBasicDeleteQueryError = 5111,
PlayFabErrorExplorerBasicUpdateQueryError = 5112,
PlayFabErrorExplorerBasicSavedQueriesLimit = 5113,
PlayFabErrorExplorerBasicSavedQueryNotFound = 5114,
PlayFabErrorTitleNotEnabledForParty = 6000,
PlayFabErrorPartyVersionNotFound = 6001,
PlayFabErrorMultiplayerServerBuildReferencedByMatchmakingQueue = 6002,
Expand Down
11 changes: 11 additions & 0 deletions code/include/playfab/PlayFabServerDataModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5371,6 +5371,7 @@ namespace PlayFab
GenericErrorCodesExplorerBasicDeleteQueryError,
GenericErrorCodesExplorerBasicUpdateQueryError,
GenericErrorCodesExplorerBasicSavedQueriesLimit,
GenericErrorCodesExplorerBasicSavedQueryNotFound,
GenericErrorCodesTitleNotEnabledForParty,
GenericErrorCodesPartyVersionNotFound,
GenericErrorCodesMultiplayerServerBuildReferencedByMatchmakingQueue,
Expand Down Expand Up @@ -8299,6 +8300,11 @@ namespace PlayFab
output = Json::Value("ExplorerBasicSavedQueriesLimit");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueryNotFound)
{
output = Json::Value("ExplorerBasicSavedQueryNotFound");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesTitleNotEnabledForParty)
{
output = Json::Value("TitleNotEnabledForParty");
Expand Down Expand Up @@ -11387,6 +11393,11 @@ namespace PlayFab
output = GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueriesLimit;
return;
}
if (inputStr == "ExplorerBasicSavedQueryNotFound")
{
output = GenericErrorCodes::GenericErrorCodesExplorerBasicSavedQueryNotFound;
return;
}
if (inputStr == "TitleNotEnabledForParty")
{
output = GenericErrorCodes::GenericErrorCodesTitleNotEnabledForParty;
Expand Down
2 changes: 0 additions & 2 deletions code/source/playfab/PlayFabCloudScriptApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ namespace PlayFab
std::string jsonAsString = requestJson.toStyledString();

std::unordered_map<std::string, std::string> headers;
headers.emplace("X-EntityToken", context->entityToken);

auto reqContainer = std::unique_ptr<CallRequestContainer>(new CallRequestContainer(
"/CloudScript/ExecuteEntityCloudScript",
Expand Down Expand Up @@ -93,7 +92,6 @@ namespace PlayFab
std::string jsonAsString = requestJson.toStyledString();

std::unordered_map<std::string, std::string> headers;
headers.emplace("X-EntityToken", context->entityToken);

auto reqContainer = std::unique_ptr<CallRequestContainer>(new CallRequestContainer(
"/CloudScript/ExecuteFunction",
Expand Down
2 changes: 0 additions & 2 deletions code/source/playfab/PlayFabCloudScriptInstanceApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ namespace PlayFab

std::shared_ptr<PlayFabAuthenticationContext> authenticationContext = request.authenticationContext == nullptr ? this->m_context : request.authenticationContext;
std::unordered_map<std::string, std::string> headers;
headers.emplace("X-EntityToken", context->entityToken);

auto reqContainer = std::unique_ptr<CallRequestContainer>(new CallRequestContainer(
"/CloudScript/ExecuteEntityCloudScript",
Expand Down Expand Up @@ -125,7 +124,6 @@ namespace PlayFab

std::shared_ptr<PlayFabAuthenticationContext> authenticationContext = request.authenticationContext == nullptr ? this->m_context : request.authenticationContext;
std::unordered_map<std::string, std::string> headers;
headers.emplace("X-EntityToken", context->entityToken);

auto reqContainer = std::unique_ptr<CallRequestContainer>(new CallRequestContainer(
"/CloudScript/ExecuteFunction",
Expand Down
6 changes: 3 additions & 3 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.43.201207";
const std::string PlayFabSettings::buildIdentifier = "jbuild_xplatcppsdk_sdk-genericslave-3_2";
const std::string PlayFabSettings::versionString = "XPlatCppSdk-3.43.201207";
const std::string PlayFabSettings::sdkVersion = "3.44.201217";
const std::string PlayFabSettings::buildIdentifier = "jbuild_xplatcppsdk_sdk-genericslave-2_0";
const std::string PlayFabSettings::versionString = "XPlatCppSdk-3.44.201217";
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.43.201207;
version : 3.44.201217;
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/#201207";
releaseNotes: "https://api.playfab.com/releaseNotes/#201217";
copyright: "Copyright 2020";
language: "C++";
tags: { PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native };
Expand Down
10 changes: 5 additions & 5 deletions com.playfab.xplatcppsdk.v141.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>com.playfab.xplatcppsdk.v141</id>
<version>3.43.201207</version>
<version>3.44.201217</version>
<authors>Microsoft</authors>
<owners>pgilmore, toddbellMSFT</owners>
<projectUrl>http://github.com/PlayFab/XPlatCppSdk</projectUrl>
<license type="expression">Apache-2.0</license>
<iconUrl>https://playfab.com/assets/img/logo/azure-playfab-logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://api.playfab.com/releaseNotes/#201014</releaseNotes>
<releaseNotes>https://api.playfab.com/releaseNotes/#3.44.201217</releaseNotes>
<description>Microsoft Azure PlayFab XPlatCppSdk</description>
<copyright>Copyright ©2020 Microsoft Corp</copyright>
<tags>Microsoft Azure PlayFab Baas Paas JSON REST HTTP SSL API cloud liveops game gamedev native nativepackage</tags>
</metadata>
<files>
<file src=".\com.playfab.xplatcppsdk.v141.targets" target="build\native\com.playfab.xplatcppsdk.v141.targets" />
<file src=".\external\jsoncpp-build\$configuration$\lib_json.lib" target="build\native\lib\$configuration$\lib_json.lib" />
<file src=".\build\Windows\$configuration$\XPlatCppWindows\XPlatCppWindows.pdb" target="build\native\lib\$configuration$\XPlatCppWindows.pdb" />
<file src=".\build\Windows\$configuration$\XPlatCppWindows\XPlatCppWindows.lib" target="build\native\lib\$configuration$\XPlatCppWindows.lib" />
<file src=".\external\jsoncpp-build\x64\$configuration$\lib_json.lib" target="build\native\lib\$configuration$\lib_json.lib" />
<file src=".\build\Windows\x64\$configuration$\XPlatCppWindows\XPlatCppWindows.pdb" target="build\native\lib\$configuration$\XPlatCppWindows.pdb" />
<file src=".\build\Windows\x64\$configuration$\XPlatCppWindows\XPlatCppWindows.lib" target="build\native\lib\$configuration$\XPlatCppWindows.lib" />
<file src=".\code\include\playfab\**\*.h" target="build\native\include\playfab" />
<file src=".\external\jsoncpp\include\json\**\*.h" target="build\native\include\json" />
</files>
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.43.201207;
version : 3.44.201217;
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/#201207";
releaseNotes: "https://api.playfab.com/releaseNotes/#201217";
copyright: "Copyright 2020";
language: "C++";
tags: { PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native, xbox };
Expand Down

0 comments on commit 639718d

Please sign in to comment.