Skip to content

Commit

Permalink
Version up 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
phantola committed Feb 3, 2023
1 parent a066638 commit a3f04fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "aptoplay-core",
"author": "Catze-Labs",
"license": "MIT",
"version": "1.0.4",
"version": "1.0.5",
"description": "Aptos Gaming TS library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion src/AptoPlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,9 @@ export class AptoPlay {
* @param {string} sessionTicket - The sessionTicket generated by PlayFab when user login or register.
* @returns {string} Return PlayFabId of user.
*/
public async validateAndGetPlayFabIdBySessionTicket(sessionTicket: string) {
public async validateAndGetPlayFabIdBySessionTicket(
sessionTicket: string
): Promise<string> {
const path = '/Server/AuthenticateSessionTicket';
const params = {
SessionTicket: sessionTicket
Expand Down

0 comments on commit a3f04fd

Please sign in to comment.