Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.

Commit f8fc66a

Browse files
author
playfabjenkinsbot
committed
https://api.playfab.com/releaseNotes/#180102
2 parents 69eff81 + d84014c commit f8fc66a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed
93 Bytes
Binary file not shown.

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorHelper.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,24 @@ public static partial class PlayFabEditorHelper
2727
public static string CLOUDSCRIPT_PATH = EDEX_ROOT + "/Resources/" + CLOUDSCRIPT_FILENAME;
2828

2929
public static string ADMIN_API = "ENABLE_PLAYFABADMIN_API";
30-
public static string SERVER_API = "ENABLE_PLAYFABSERVER_API";
3130
public static string CLIENT_API = "DISABLE_PLAYFABCLIENT_API";
31+
public static string ENTITY_API = "ENABLE_PLAYFABENTITY_API";
32+
public static string SERVER_API = "ENABLE_PLAYFABSERVER_API";
3233
public static string DEBUG_REQUEST_TIMING = "PLAYFAB_REQUEST_TIMING";
3334
public static string DISABLE_IDFA = "DISABLE_IDFA";
3435
public static Dictionary<string, string> FLAG_LABELS = new Dictionary<string, string> {
36+
{ ADMIN_API, "ENABLE ADMIN API" },
3537
{ CLIENT_API, "ENABLE CLIENT API" },
38+
{ ENTITY_API, "ENABLE ENTITY API" },
3639
{ SERVER_API, "ENABLE SERVER API" },
37-
{ ADMIN_API, "ENABLE ADMIN API" },
3840
{ DEBUG_REQUEST_TIMING, "ENABLE REQUEST TIMES" },
3941
{ DISABLE_IDFA, "DISABLE IDFA" },
4042
};
4143
public static Dictionary<string, bool> FLAG_INVERSION = new Dictionary<string, bool> {
44+
{ ADMIN_API, false },
4245
{ CLIENT_API, true },
46+
{ ENTITY_API, false },
4347
{ SERVER_API, false },
44-
{ ADMIN_API, false },
4548
{ DEBUG_REQUEST_TIMING, false },
4649
{ DISABLE_IDFA, false },
4750
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.33.171127"; } }
1+
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.34.180102"; } }

0 commit comments

Comments
 (0)