0.0.20241030 • Published 12 months ago

@maxim_mazurok/gapi.client.merchantapi-reports_v1beta v0.0.20241030

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

TypeScript typings for Merchant API reports_v1beta

Programmatically manage your Merchant Center Accounts. For detailed description please check documentation.

Installing

Install typings for Merchant API:

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

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 = [
    // Manage your product listings and accounts for Google Shopping
    'https://www.googleapis.com/auth/content',
  ],
  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 Merchant API resources:

0.0.20241030

12 months ago

0.0.20241029

12 months ago

0.0.20241028

12 months ago

0.0.20241027

12 months ago

0.0.20241022

12 months ago

0.0.20241023

12 months ago

0.0.20241021

1 year ago

0.0.20241020

1 year ago

0.0.20241016

1 year ago

0.0.20241015

1 year ago

0.0.20241004

1 year ago

0.0.20241001

1 year ago

0.0.20240924

1 year ago

0.0.20240930

1 year ago

0.0.20240921

1 year ago

0.0.20240923

1 year ago

0.0.20240918

1 year ago

0.0.20240916

1 year ago

0.0.20240908

1 year ago

0.0.20240909

1 year ago

0.0.20240827

1 year ago

0.0.20240828

1 year ago

0.0.20240830

1 year ago

0.0.20240826

1 year ago

0.0.20240825

1 year ago

0.0.20240821

1 year ago

0.0.20240815

1 year ago

0.0.20240814

1 year ago

0.0.20240813

1 year ago

0.0.20240812

1 year ago

0.0.20240811

1 year ago

0.0.20240807

1 year ago

0.0.20240806

1 year ago

0.0.20240805

1 year ago

0.0.20240804

1 year ago

0.0.20240731

1 year ago

0.0.20240730

1 year ago

0.0.20240729

1 year ago

0.0.20240728

1 year ago

0.0.20240724

1 year ago

0.0.20240723

1 year ago

0.0.20240719

1 year ago

0.0.20240712

1 year ago

0.0.20240709

1 year ago

0.0.20240614

1 year ago

0.0.20240613

1 year ago

0.0.20240611

1 year ago