0.0.20241023 • Published 8 months ago

@maxim_mazurok/gapi.client.domains-v1 v0.0.20241023

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

TypeScript typings for Cloud Domains API v1

Enables management and configuration of domain names. For detailed description please check documentation.

Installing

Install typings for Cloud Domains API:

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

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 Cloud Domains API resources:

0.0.20241023

8 months ago

0.0.20241002

9 months ago

0.0.20240911

9 months ago

0.0.20240904

10 months ago

0.0.20240821

10 months ago

0.0.20240809

11 months ago

0.0.20240724

11 months ago

0.0.20240603

1 year ago

0.0.20240814

10 months ago

0.0.20240610

1 year ago

0.0.20240707

12 months ago

0.0.20240625

12 months ago

0.0.20240520

1 year ago

0.0.20240717

11 months ago

0.0.20240508

1 year ago

0.0.20240501

1 year ago

0.0.20240327

1 year ago

0.0.20240313

1 year ago

0.0.20240311

1 year ago

0.0.20240305

1 year ago

0.0.20240221

1 year ago

0.0.20240204

1 year ago

0.0.20240131

1 year ago

0.0.20240125

1 year ago

0.0.20240113

1 year ago

0.0.20240103

1 year ago

0.0.20230915

2 years ago

0.0.20230712

2 years ago

0.0.20231108

2 years ago

0.0.20230912

2 years ago

0.0.20230904

2 years ago

0.0.20231018

2 years ago

0.0.20230925

2 years ago

0.0.20230619

2 years ago

0.0.20230503

2 years ago

0.0.20230510

2 years ago

0.0.20230315

2 years ago

0.0.20230412

2 years ago

0.0.20230319

2 years ago

0.0.20230419

2 years ago

0.0.20230405

2 years ago

0.0.20230222

2 years ago

0.0.20230201

2 years ago

0.0.20230207

2 years ago

0.0.20221208

3 years ago

0.0.20221206

3 years ago

0.0.20230123

2 years ago

0.0.20230105

2 years ago

0.0.20221110

3 years ago

0.0.20221101

3 years ago

0.0.20220830

3 years ago

0.0.20220808

3 years ago