0.0.20240415 • Published 1 month ago

@maxim_mazurok/gapi.client.connectors-v2 v0.0.20240415

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

TypeScript typings for Connectors API v2

Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface. For detailed description please check documentation.

Installing

Install typings for Connectors API:

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

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 = [
    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',
  ],
  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 Connectors API resources:

0.0.20240415

1 month ago

0.0.20240320

2 months ago

0.0.20240319

2 months ago

0.0.20240305

2 months ago

0.0.20240226

3 months ago

0.0.20240221

3 months ago

0.0.20240207

3 months ago

0.0.20240131

3 months ago

0.0.20240125

4 months ago

0.0.20240122

4 months ago

0.0.20240116

4 months ago

0.0.20240104

4 months ago

0.0.20240102

5 months ago

0.0.20231213

5 months ago

0.0.20231205

6 months ago

0.0.20231126

6 months ago

0.0.20231106

6 months ago

0.0.20230712

10 months ago

0.0.20230913

8 months ago

0.0.20230812

9 months ago

0.0.20231031

7 months ago

0.0.20231011

7 months ago

0.0.20231015

7 months ago

0.0.20230906

8 months ago

0.0.20230706

11 months ago

0.0.20230806

10 months ago

0.0.20230920

8 months ago

0.0.20230621

11 months ago

0.0.20230801

10 months ago

0.0.20230724

10 months ago

0.0.20231024

7 months ago

0.0.20230514

1 year ago

0.0.20230517

12 months ago

0.0.20230614

11 months ago

0.0.20230609

12 months ago

0.0.20230524

12 months ago

0.0.20230503

1 year ago

0.0.20230501

1 year ago

0.0.20230531

12 months ago

0.0.20230403

1 year ago

0.0.20230412

1 year ago

0.0.20230417

1 year ago

0.0.20230318

1 year ago

0.0.20230322

1 year ago

0.0.20230301

1 year ago

0.0.20230222

1 year ago

0.0.20230220

1 year ago

0.0.20230130

1 year ago

0.0.20230125

1 year ago

0.0.20230208

1 year ago

0.0.20230103

1 year ago

0.0.20221215

1 year ago

0.0.20221201

1 year ago

0.0.20221110

2 years ago

0.0.20221018

2 years ago

0.0.20220912

2 years ago