0.0.20240506 • Published 2 days ago

@maxim_mazurok/gapi.client.publicca-v1alpha1 v0.0.20240506

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

TypeScript typings for Public Certificate Authority API v1alpha1

The Public Certificate Authority API may be used to create and manage ACME external account binding keys associated with Google Trust Services' publicly trusted certificate authority. For detailed description please check documentation.

Installing

Install typings for Public Certificate Authority API:

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

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 Public Certificate Authority API resources:

0.0.20240506

2 days ago

0.0.20240429

10 days ago

0.0.20240422

17 days ago

0.0.20240415

22 days ago

0.0.20240402

1 month ago

0.0.20240325

1 month ago

0.0.20240318

2 months ago

0.0.20240311

2 months ago

0.0.20240303

2 months ago

0.0.20240228

2 months ago

0.0.20240226

2 months ago

0.0.20240219

3 months ago

0.0.20240216

3 months ago

0.0.20240214

3 months ago

0.0.20240207

3 months ago

0.0.20240206

3 months ago

0.0.20240131

3 months ago

0.0.20240121

4 months ago

0.0.20240115

4 months ago

0.0.20240108

4 months ago

0.0.20240102

4 months ago

0.0.20231218

5 months ago

0.0.20231211

5 months ago

0.0.20231205

5 months ago

0.0.20231127

5 months ago

0.0.20230816

9 months ago

0.0.20230718

10 months ago

0.0.20230919

8 months ago

0.0.20230711

10 months ago

0.0.20231009

7 months ago

0.0.20230731

9 months ago

0.0.20231107

6 months ago

0.0.20230814

9 months ago

0.0.20230911

8 months ago

0.0.20231016

7 months ago

0.0.20231114

6 months ago

0.0.20231030

6 months ago

0.0.20230807

9 months ago

0.0.20230926

8 months ago

0.0.20230905

8 months ago

0.0.20230828

8 months ago

0.0.20230809

9 months ago

0.0.20230821

9 months ago

0.0.20231116

6 months ago

0.0.20230724

10 months ago

0.0.20231024

7 months ago

0.0.20231002

7 months ago

0.0.20230626

11 months ago

0.0.20230509

12 months ago

0.0.20230531

11 months ago

0.0.20230620

11 months ago

0.0.20230502

1 year ago

0.0.20230614

11 months ago

0.0.20230425

1 year ago

0.0.20230424

1 year ago

0.0.20230417

1 year ago

0.0.20230404

1 year ago