🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@maxim_mazurok/gapi.client.admin-reports_v1

Package Overview
Dependencies
Maintainers
1
Versions
161
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maxim_mazurok/gapi.client.admin-reports_v1

TypeScript typings for Admin SDK API reports_v1

latest
Source
npmnpm
Version
0.1.20251202
Version published
Maintainers
1
Created
Source

TypeScript typings for Admin SDK API reports_v1

Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain. For detailed description please check documentation.

Installing

Install typings for Admin SDK API:

npm install @types/gapi.client.admin-reports_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://admin.googleapis.com/$discovery/rest?version=reports_v1',
  () => {
    // now we can use:
    // gapi.client.admin
    // gapi.client.reports
  },
);
// 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('admin', 'reports_v1', () => {
  // now we can use:
  // gapi.client.admin
  // gapi.client.reports
});

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 audit reports for your Google Workspace domain
    'https://www.googleapis.com/auth/admin.reports.audit.readonly',

    // View usage reports for your Google Workspace domain
    'https://www.googleapis.com/auth/admin.reports.usage.readonly',
  ],
  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 Admin SDK API resources:

/*
Retrieves a list of activities for a specific customer's account and application such as the Admin console application or the Google Drive application. For more information, see the guides for administrator and Google Drive activity reports. For more information about the activity report's parameters, see the activity parameters reference guides. 
*/
await gapi.client.reports.activities.list({
  applicationName: 'applicationName',
  userKey: 'userKey',
});

/*
Start receiving notifications for account activities. For more information, see Receiving Push Notifications.
*/
await gapi.client.reports.activities.watch({
  applicationName: 'applicationName',
  userKey: 'userKey',
});

/*
Stop watching resources through this channel.
*/
await gapi.client.admin.channels.stop({});

/*
Retrieves a report which is a collection of properties and statistics for a specific customer's account. For more information, see the Customers Usage Report guide. For more information about the customer report's parameters, see the Customers Usage parameters reference guides. 
*/
await gapi.client.reports.customerUsageReports.get({date: 'date'});

/*
Retrieves a report which is a collection of properties and statistics for entities used by users within the account. For more information, see the Entities Usage Report guide. For more information about the entities report's parameters, see the Entities Usage parameters reference guides.
*/
await gapi.client.reports.entityUsageReports.get({
  date: 'date',
  entityKey: 'entityKey',
  entityType: 'entityType',
});

/*
Retrieves a report which is a collection of properties and statistics for a set of users with the account. For more information, see the User Usage Report guide. For more information about the user report's parameters, see the Users Usage parameters reference guides.
*/
await gapi.client.reports.userUsageReport.get({
  date: 'date',
  userKey: 'userKey',
});

For provenance information see Provenance section on NPM

FAQs

Package last updated on 02 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts