Skip to content

Commit 7cc3c23

Browse files
author
Playfab Jenkins Bot
committed
Automated build from Jenkins
1 parent effedb9 commit 7cc3c23

File tree

1 file changed

+105
-0
lines changed

1 file changed

+105
-0
lines changed

playfab.json

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"admin-AddServerBuild",
1616
"admin-AddUserVirtualCurrency",
1717
"admin-AddVirtualCurrencyTypes",
18+
"admin-CreatePlayerStatisticDefinition",
1819
"admin-DeleteContent",
1920
"admin-DeleteUsers",
2021
"admin-GetCatalogItems",
@@ -25,6 +26,8 @@
2526
"admin-GetDataReport",
2627
"admin-GetMatchmakerGameInfo",
2728
"admin-GetMatchmakerGameModes",
29+
"admin-GetPlayerStatisticDefinitions",
30+
"admin-GetPlayerStatisticVersions",
2831
"admin-GetPublisherData",
2932
"admin-GetRandomResultTables",
3033
"admin-GetServerBuildInfo",
@@ -40,6 +43,7 @@
4043
"admin-GetUserPublisherReadOnlyData",
4144
"admin-GetUserReadOnlyData",
4245
"admin-GrantItemsToUsers",
46+
"admin-IncrementPlayerStatisticVersion",
4347
"admin-ListServerBuilds",
4448
"admin-ListVirtualCurrencyTypes",
4549
"admin-ModifyMatchmakerGameModes",
@@ -59,6 +63,7 @@
5963
"admin-SubtractUserVirtualCurrency",
6064
"admin-UpdateCatalogItems",
6165
"admin-UpdateCloudScript",
66+
"admin-UpdatePlayerStatisticDefinition",
6267
"admin-UpdateRandomResultTables",
6368
"admin-UpdateStoreItems",
6469
"admin-UpdateUserData",
@@ -217,6 +222,7 @@
217222
"client-GetPlayFabIDsFromKongregateIDs",
218223
"client-GetPlayFabIDsFromPSNAccountIDs",
219224
"client-GetPlayFabIDsFromSteamIDs",
225+
"client-GetPlayerStatistics",
220226
"client-GetPlayerTrades",
221227
"client-GetPublisherData",
222228
"client-GetPurchase",
@@ -288,6 +294,7 @@
288294
"client-UnlockContainerItem",
289295
"client-UpdateCharacterData",
290296
"client-UpdateCharacterStatistics",
297+
"client-UpdatePlayerStatistics",
291298
"client-UpdateSharedGroupData",
292299
"client-UpdateUserData",
293300
"client-UpdateUserPublisherData",
@@ -360,6 +367,20 @@
360367
"folder": "PlayFabPostmanSDK-adminFolder",
361368
"rawModeData": "{\n \"VirtualCurrencies\": [\n {\n \"CurrencyCode\": \"CC\",\n \"DisplayName\": \"Chump Coins\",\n \"InitialDeposit\": 100,\n \"RechargeRate\": 1000,\n \"RechargeMax\": 1000\n },\n {\n \"CurrencyCode\": \"GC\"\n }\n ]\n}"
362369
},
370+
{
371+
"id": "admin-CreatePlayerStatisticDefinition",
372+
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
373+
"url": "https://{{TitleId}}.playfabapi.com/Admin/CreatePlayerStatisticDefinition",
374+
"method": "POST",
375+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
376+
"dataMode": "raw",
377+
"name": "CreatePlayerStatisticDefinition",
378+
"description": "Adds a new player statistic configuration to the title, optionally allowing the developer to specify a reset interval.\n\nApi Documentation: https://api.playfab.com/Documentation/Admin/method/CreatePlayerStatisticDefinition\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SecretKey\" - The PlayFab API Secret Key, available in the dashboard of your title (https://developer.playfab.com/title/properties/{{titleId}})\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"StatisticName\": unique name of the statistic\n\n\"VersionChangeInterval\": interval at which the values of the statistic for all players are reset (resets begin at the next interval boundary)\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
379+
"descriptionFormat": "html",
380+
"currentHelper": "normal",
381+
"folder": "PlayFabPostmanSDK-adminFolder",
382+
"rawModeData": "{\n \"StatisticName\": \"headshots\",\n \"VersionChangeInterval\": \"Never\"\n}"
383+
},
363384
{
364385
"id": "admin-DeleteContent",
365386
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
@@ -500,6 +521,34 @@
500521
"folder": "PlayFabPostmanSDK-adminFolder",
501522
"rawModeData": "{\n \"BuildVersion\": \"5.0.1\"\n}"
502523
},
524+
{
525+
"id": "admin-GetPlayerStatisticDefinitions",
526+
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
527+
"url": "https://{{TitleId}}.playfabapi.com/Admin/GetPlayerStatisticDefinitions",
528+
"method": "POST",
529+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
530+
"dataMode": "raw",
531+
"name": "GetPlayerStatisticDefinitions",
532+
"description": "Retrieves the configuration information for all player statistics defined in the title, regardless of whether they have a reset interval.\n\nApi Documentation: https://api.playfab.com/Documentation/Admin/method/GetPlayerStatisticDefinitions\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SecretKey\" - The PlayFab API Secret Key, available in the dashboard of your title (https://developer.playfab.com/title/properties/{{titleId}})\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
533+
"descriptionFormat": "html",
534+
"currentHelper": "normal",
535+
"folder": "PlayFabPostmanSDK-adminFolder",
536+
"rawModeData": "{}"
537+
},
538+
{
539+
"id": "admin-GetPlayerStatisticVersions",
540+
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
541+
"url": "https://{{TitleId}}.playfabapi.com/Admin/GetPlayerStatisticVersions",
542+
"method": "POST",
543+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
544+
"dataMode": "raw",
545+
"name": "GetPlayerStatisticVersions",
546+
"description": "Retrieves the information on the available versions of the specified statistic.\n\nApi Documentation: https://api.playfab.com/Documentation/Admin/method/GetPlayerStatisticVersions\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SecretKey\" - The PlayFab API Secret Key, available in the dashboard of your title (https://developer.playfab.com/title/properties/{{titleId}})\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"StatisticName\": unique name of the statistic\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
547+
"descriptionFormat": "html",
548+
"currentHelper": "normal",
549+
"folder": "PlayFabPostmanSDK-adminFolder",
550+
"rawModeData": "{\n \"StatisticName\": \"headshots\"\n}"
551+
},
503552
{
504553
"id": "admin-GetPublisherData",
505554
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
@@ -710,6 +759,20 @@
710759
"folder": "PlayFabPostmanSDK-adminFolder",
711760
"rawModeData": "{\n \"CatalogVersion\": \"5\",\n \"ItemGrants\": [\n {\n \"PlayFabId\": \"20394883\",\n \"ItemId\": \"shield_level_1\",\n \"Annotation\": \"Entered Level 2\"\n },\n {\n \"PlayFabId\": \"20394883\",\n \"ItemId\": \"shield_level_2\",\n \"Annotation\": \"Entered Level 2\"\n }\n ]\n}"
712761
},
762+
{
763+
"id": "admin-IncrementPlayerStatisticVersion",
764+
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
765+
"url": "https://{{TitleId}}.playfabapi.com/Admin/IncrementPlayerStatisticVersion",
766+
"method": "POST",
767+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
768+
"dataMode": "raw",
769+
"name": "IncrementPlayerStatisticVersion",
770+
"description": "Resets the indicated statistic, removing all player entries for it and backing up the old values.\n\nApi Documentation: https://api.playfab.com/Documentation/Admin/method/IncrementPlayerStatisticVersion\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SecretKey\" - The PlayFab API Secret Key, available in the dashboard of your title (https://developer.playfab.com/title/properties/{{titleId}})\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"StatisticName\": unique name of the statistic\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
771+
"descriptionFormat": "html",
772+
"currentHelper": "normal",
773+
"folder": "PlayFabPostmanSDK-adminFolder",
774+
"rawModeData": "{\n \"StatisticName\": \"headshots\"\n}"
775+
},
713776
{
714777
"id": "admin-ListServerBuilds",
715778
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
@@ -976,6 +1039,20 @@
9761039
"folder": "PlayFabPostmanSDK-adminFolder",
9771040
"rawModeData": "{\"Version\": \"Number\",\"Files\": \"Object\"}"
9781041
},
1042+
{
1043+
"id": "admin-UpdatePlayerStatisticDefinition",
1044+
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
1045+
"url": "https://{{TitleId}}.playfabapi.com/Admin/UpdatePlayerStatisticDefinition",
1046+
"method": "POST",
1047+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
1048+
"dataMode": "raw",
1049+
"name": "UpdatePlayerStatisticDefinition",
1050+
"description": "Updates a player statistic configuration for the title, optionally allowing the developer to specify a reset interval.\n\nApi Documentation: https://api.playfab.com/Documentation/Admin/method/UpdatePlayerStatisticDefinition\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SecretKey\" - The PlayFab API Secret Key, available in the dashboard of your title (https://developer.playfab.com/title/properties/{{titleId}})\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"StatisticName\": unique name of the statistic\n\n\"VersionChangeInterval\": interval at which the values of the statistic for all players are reset (changes are effective at the next occurance of the new interval boundary)\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
1051+
"descriptionFormat": "html",
1052+
"currentHelper": "normal",
1053+
"folder": "PlayFabPostmanSDK-adminFolder",
1054+
"rawModeData": "{\n \"StatisticName\": \"headshots\",\n \"VersionChangeInterval\": \"Day\"\n}"
1055+
},
9791056
{
9801057
"id": "admin-UpdateRandomResultTables",
9811058
"headers": "Content-Type: application/json\nX-SecretKey: {{SecretKey}}\n",
@@ -2771,6 +2848,20 @@
27712848
"folder": "PlayFabPostmanSDK-clientFolder",
27722849
"rawModeData": "{\n \"SteamStringIDs\": [\n \"857498576495\",\n \"759374651209\"\n ]\n}"
27732850
},
2851+
{
2852+
"id": "client-GetPlayerStatistics",
2853+
"headers": "Content-Type: application/json\nX-Authentication: {{SessionTicket}}\n",
2854+
"url": "https://{{TitleId}}.playfabapi.com/Client/GetPlayerStatistics",
2855+
"method": "POST",
2856+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
2857+
"dataMode": "raw",
2858+
"name": "GetPlayerStatistics",
2859+
"description": "Retrieves the current version and values for the indicated statistics, for the local player.\n\nApi Documentation: https://api.playfab.com/Documentation/Client/method/GetPlayerStatistics\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SessionTicket\" - The string returned as \"SessionTicket\" in response to any sign in operation.\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"StatisticNames\": statistics to return\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
2860+
"descriptionFormat": "html",
2861+
"currentHelper": "normal",
2862+
"folder": "PlayFabPostmanSDK-clientFolder",
2863+
"rawModeData": "{\n \"StatisticNames\": [\n \"Points\",\n \"Wins\"\n ]\n}"
2864+
},
27742865
{
27752866
"id": "client-GetPlayerTrades",
27762867
"headers": "Content-Type: application/json\nX-Authentication: {{SessionTicket}}\n",
@@ -3765,6 +3856,20 @@
37653856
"folder": "PlayFabPostmanSDK-clientFolder",
37663857
"rawModeData": "{\n \"CharacterId\": \"98765432\",\n \"CharacterStatistics\": {\n \"Headshots\": 18,\n \"Kills\": 47\n }\n}"
37673858
},
3859+
{
3860+
"id": "client-UpdatePlayerStatistics",
3861+
"headers": "Content-Type: application/json\nX-Authentication: {{SessionTicket}}\n",
3862+
"url": "https://{{TitleId}}.playfabapi.com/Client/UpdatePlayerStatistics",
3863+
"method": "POST",
3864+
"collectionId": "PlayFabPostmanSDK-0.8.160208",
3865+
"dataMode": "raw",
3866+
"name": "UpdatePlayerStatistics",
3867+
"description": "Updates the values of the specified title-specific statistics for the user\n\nApi Documentation: https://api.playfab.com/Documentation/Client/method/UpdatePlayerStatistics\n\n**The following case-sensitive environment variables are required for this call:**\n\n\"TitleId\" - The Title Id of your game, available in the Game Manager (https://developer.playfab.com)\n\n\"SessionTicket\" - The string returned as \"SessionTicket\" in response to any sign in operation.\n\n**The body of this api-call should be proper json-format. The api-body accepts the following case-sensitive parameters:**\n\n\"Statistics\": Statistics to be updated with the provided values\n\nTo set up an Environment, click the text next to the eye icon up top in Postman (it should say \"No environment\", if this is your first time using Postman). Select \"Manage environments\", then \"Add\". Type a name for your environment where it says \"New environment\", then enter each variable name above as the \"Key\", with the value as defined for each above.",
3868+
"descriptionFormat": "html",
3869+
"currentHelper": "normal",
3870+
"folder": "PlayFabPostmanSDK-clientFolder",
3871+
"rawModeData": "{\n \"Statistics\": [\n {\n \"StatisticName\": \"Points\",\n \"Version\": 1,\n \"Value\": 600\n },\n {\n \"StatisticName\": \"Wins\",\n \"Version\": 0,\n \"Value\": 16\n },\n {\n \"StatisticName\": \"Stars\",\n \"Value\": 7\n }\n ]\n}"
3872+
},
37683873
{
37693874
"id": "client-UpdateSharedGroupData",
37703875
"headers": "Content-Type: application/json\nX-Authentication: {{SessionTicket}}\n",

0 commit comments

Comments
 (0)