Skip to content

Commit 81935a2

Browse files
PlayFab SDK TeamPlayFab SDK Team
PlayFab SDK Team
authored and
PlayFab SDK Team
committed
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#241108
2 parents 651a233 + 9673d06 commit 81935a2

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

PlayFabSdk/Scripts/PlayFab/PlayFab.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
var url = require("url");
44
var https = require("https");
55

6-
exports.sdk_version = "2.164.241025";
7-
exports.buildIdentifier = "adobuild_nodesdk_116";
6+
exports.sdk_version = "2.165.241108";
7+
exports.buildIdentifier = "adobuild_nodesdk_114";
88

99
var settings = (exports.settings = {
1010
productionUrl: ".playfabapi.com",
@@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = {
1919
entityToken: null,
2020
sessionTicket: null,
2121
requestGetParams: {
22-
sdk: "JavaScriptSDK-2.164.241025",
22+
sdk: "JavaScriptSDK-2.165.241108",
2323
},
2424
});
2525

PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -3021,11 +3021,14 @@ declare module PlayFabMultiplayerModels {
30213021
EntityKey: EntityKey;
30223022
// Opaque string, given to a client upon creating a connection with PubSub.
30233023
PubSubConnectionHandle: string;
3024-
// The name of the resource to subscribe to.
3024+
// The name of the resource to subscribe to. For LobbyChange subscriptions this is the lobbyId. For LobbyInvite
3025+
// subscriptions this should always be "@me".
30253026
ResourceId: string;
30263027
// Version number for the subscription of this resource.
30273028
SubscriptionVersion: number;
3028-
// Subscription type.
3029+
// Subscription type. "LobbyChange" subscriptions allow a member or owner to receive notifications of lobby data, member or
3030+
// owner changes. "LobbyInvite" subscriptions allow a player to receive invites to lobbies. A player does not need to be a
3031+
// member of a lobby to receive lobby invites.
30293032
Type: string;
30303033
}
30313034

PlayFabSdk/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PlayFabSdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playfab-sdk",
3-
"version": "2.164.241025",
3+
"version": "2.165.241108",
44
"description": "Playfab SDK for node.js applications",
55
"license": "Apache-2.0",
66
"devDependencies": {

0 commit comments

Comments
 (0)