npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@maxim_mazurok/gapi.client.games-v1

v0.0.20240508

Published

TypeScript typings for Google Play Game Services v1

Downloads

5,217

Readme

TypeScript typings for Google Play Game Services v1

The Google Play games service allows developers to enhance games with social leaderboards, achievements, game state, sign-in with Google, and more. For detailed description please check documentation.

Installing

Install typings for Google Play Game Services:

npm install @types/gapi.client.games-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://games.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.games
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('games', 'v1', () => {
  // now we can use:
  // gapi.client.games
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // View and manage your Google Play Developer account
    'https://www.googleapis.com/auth/androidpublisher',

    // See, create, and delete its own configuration data in your Google Drive
    'https://www.googleapis.com/auth/drive.appdata',

    // Create, edit, and delete your Google Play Games activity
    'https://www.googleapis.com/auth/games',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use Google Play Game Services resources:

/*
Lists all the achievement definitions for your application.
*/
await gapi.client.games.achievementDefinitions.list({});

/*
Increments the steps of the achievement with the given ID for the currently authenticated player.
*/
await gapi.client.games.achievements.increment({
  achievementId: 'achievementId',
  stepsToIncrement: 1,
});

/*
Lists the progress for all your application's achievements for the currently authenticated player.
*/
await gapi.client.games.achievements.list({playerId: 'playerId'});

/*
Sets the state of the achievement with the given ID to `REVEALED` for the currently authenticated player.
*/
await gapi.client.games.achievements.reveal({achievementId: 'achievementId'});

/*
Sets the steps for the currently authenticated player towards unlocking an achievement. If the steps parameter is less than the current number of steps that the player already gained for the achievement, the achievement is not modified.
*/
await gapi.client.games.achievements.setStepsAtLeast({
  achievementId: 'achievementId',
  steps: 1,
});

/*
Unlocks this achievement for the currently authenticated player.
*/
await gapi.client.games.achievements.unlock({achievementId: 'achievementId'});

/*
Updates multiple achievements for the currently authenticated player.
*/
await gapi.client.games.achievements.updateMultiple({});

/*
Retrieves the metadata of the application with the given ID. If the requested application is not available for the specified `platformType`, the returned response will not include any instance data.
*/
await gapi.client.games.applications.get({applicationId: 'applicationId'});

/*
Returns a URL for the requested end point type.
*/
await gapi.client.games.applications.getEndPoint({});

/*
Indicate that the currently authenticated user is playing your application.
*/
await gapi.client.games.applications.played({});

/*
Verifies the auth token provided with this request is for the application with the specified ID, and returns the ID of the player it was granted for.
*/
await gapi.client.games.applications.verify({applicationId: 'applicationId'});

/*
Returns a list showing the current progress on events in this application for the currently authenticated user.
*/
await gapi.client.games.events.listByPlayer({});

/*
Returns a list of the event definitions in this application.
*/
await gapi.client.games.events.listDefinitions({});

/*
Records a batch of changes to the number of times events have occurred for the currently authenticated user of this application.
*/
await gapi.client.games.events.record({});

/*
Retrieves the metadata of the leaderboard with the given ID.
*/
await gapi.client.games.leaderboards.get({leaderboardId: 'leaderboardId'});

/*
Lists all the leaderboard metadata for your application.
*/
await gapi.client.games.leaderboards.list({});

/*
Return the metagame configuration data for the calling application.
*/
await gapi.client.games.metagame.getMetagameConfig({});

/*
List play data aggregated per category for the player corresponding to `playerId`.
*/
await gapi.client.games.metagame.listCategoriesByPlayer({
  collection: 'collection',
  playerId: 'playerId',
});

/*
Retrieves the Player resource with the given ID. To retrieve the player for the currently authenticated user, set `playerId` to `me`.
*/
await gapi.client.games.players.get({playerId: 'playerId'});

/*
Get the application player ids for the currently authenticated player across all requested games by the same developer as the calling application. This will only return ids for players that actually have an id (scoped or otherwise) with that game.
*/
await gapi.client.games.players.getMultipleApplicationPlayerIds({});

/*
Retrieves scoped player identifiers for currently authenticated user.
*/
await gapi.client.games.players.getScopedPlayerIds({});

/*
Get the collection of players for the currently authenticated user.
*/
await gapi.client.games.players.list({collection: 'collection'});

/*
Retrieve the last Recall token from all developer games that is associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
*/
await gapi.client.games.recall.lastTokenFromAllDeveloperGames({
  sessionId: 'sessionId',
});

/*
Associate the PGS Player principal encoded in the provided recall session id with an in-game account
*/
await gapi.client.games.recall.linkPersona({});

/*
Delete all Recall tokens linking the given persona to any player (with or without a profile).
*/
await gapi.client.games.recall.resetPersona({});

/*
Retrieve all Recall tokens associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
*/
await gapi.client.games.recall.retrieveTokens({sessionId: 'sessionId'});

/*
Delete a Recall token linking the PGS Player principal identified by the Recall session and an in-game account identified either by the 'persona' or by the token value.
*/
await gapi.client.games.recall.unlinkPersona({});

/*
Checks whether the games client is out of date.
*/
await gapi.client.games.revisions.check({clientRevision: 'clientRevision'});

/*
Get high scores, and optionally ranks, in leaderboards for the currently authenticated player. For a specific time span, `leaderboardId` can be set to `ALL` to retrieve data for all leaderboards in a given time span. `NOTE: You cannot ask for 'ALL' leaderboards and 'ALL' timeSpans in the same request; only one parameter may be set to 'ALL'.
*/
await gapi.client.games.scores.get({
  leaderboardId: 'leaderboardId',
  playerId: 'playerId',
  timeSpan: 'timeSpan',
});

/*
Lists the scores in a leaderboard, starting from the top.
*/
await gapi.client.games.scores.list({
  collection: 'collection',
  leaderboardId: 'leaderboardId',
  timeSpan: 'timeSpan',
});

/*
Lists the scores in a leaderboard around (and including) a player's score.
*/
await gapi.client.games.scores.listWindow({
  collection: 'collection',
  leaderboardId: 'leaderboardId',
  timeSpan: 'timeSpan',
});

/*
Submits a score to the specified leaderboard.
*/
await gapi.client.games.scores.submit({
  leaderboardId: 'leaderboardId',
  score: 'score',
});

/*
Submits multiple scores to leaderboards.
*/
await gapi.client.games.scores.submitMultiple({});

/*
Retrieves the metadata for a given snapshot ID.
*/
await gapi.client.games.snapshots.get({snapshotId: 'snapshotId'});

/*
Retrieves a list of snapshots created by your application for the player corresponding to the player ID.
*/
await gapi.client.games.snapshots.list({playerId: 'playerId'});

/*
Returns engagement and spend statistics in this application for the currently authenticated user.
*/
await gapi.client.games.stats.get({});