0.0.20250530 • Published 11 months ago

@maxim_mazurok/gapi.client.manufacturers-v1 v0.0.20250530

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

TypeScript typings for Manufacturer Center API v1

Public API for managing Manufacturer Center related data. For detailed description please check documentation.

Installing

Install typings for Manufacturer Center API:

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

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 for Google Manufacturer Center
    'https://www.googleapis.com/auth/manufacturercenter',
  ],
  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 Manufacturer Center API resources:

0.0.20241101

1 year ago

0.0.20250606

11 months ago

0.0.20250530

11 months ago

0.0.20241230

1 year ago

0.0.20250418

12 months ago

0.0.20250214

1 year ago

0.0.20250411

1 year ago

0.0.20250221

1 year ago

0.0.20250509

11 months ago

0.0.20241122

1 year ago

0.0.20250307

1 year ago

0.0.20250502

12 months ago

0.0.20250425

12 months ago

0.0.20250228

1 year ago

0.0.20241115

1 year ago

0.0.20241213

1 year ago

0.0.20250516

11 months ago

0.0.20241206

1 year ago

0.0.20240916

2 years ago

0.0.20240809

2 years ago

0.0.20240524

2 years ago

0.0.20240716

2 years ago

0.0.20240730

2 years ago

0.0.20240416

2 years ago

0.0.20240409

2 years ago

0.0.20240205

2 years ago

0.0.20231211

2 years ago

0.0.20230831

3 years ago

0.0.20231109

2 years ago

0.0.20231113

2 years ago

0.0.20230602

3 years ago

0.0.20230209

3 years ago

0.0.20230130

3 years ago

0.0.20230201

3 years ago

0.0.20221214

3 years ago

0.0.20221104

3 years ago

0.0.20221114

3 years ago

0.0.20221206

3 years ago

0.0.20230123

3 years ago

0.0.20230112

3 years ago

0.0.20221003

4 years ago

0.0.20221024

3 years ago

0.0.20221011

4 years ago

0.0.20220926

4 years ago

0.0.20220817

4 years ago

0.0.20220913

4 years ago

0.0.20220812

4 years ago

0.0.20220809

4 years ago