0.0.20240508 • Published 7 days ago

@maxim_mazurok/gapi.client.healthcare-v1 v0.0.20240508

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

TypeScript typings for Cloud Healthcare API v1

Manage, store, and access healthcare data in Google Cloud Platform. For detailed description please check documentation.

Installing

Install typings for Cloud Healthcare API:

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

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 = [
    // Read, write and manage healthcare data
    'https://www.googleapis.com/auth/cloud-healthcare',

    // 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 Healthcare API resources:

0.0.20240508

7 days ago

0.0.20240429

14 days ago

0.0.20240427

24 days ago

0.0.20240425

25 days ago

0.0.20240329

2 months ago

0.0.20240312

2 months ago

0.0.20240228

3 months ago

0.0.20240223

3 months ago

0.0.20240206

3 months ago

0.0.20240130

4 months ago

0.0.20240113

4 months ago

0.0.20240112

4 months ago

0.0.20240110

4 months ago

0.0.20240108

4 months ago

0.0.20240103

5 months ago

0.0.20231214

5 months ago

0.0.20231205

5 months ago

0.0.20231127

6 months ago

0.0.20230816

9 months ago

0.0.20230817

9 months ago

0.0.20231028

7 months ago

0.0.20231031

7 months ago

0.0.20231115

6 months ago

0.0.20231114

6 months ago

0.0.20230728

10 months ago

0.0.20231017

7 months ago

0.0.20230921

8 months ago

0.0.20230720

10 months ago

0.0.20231019

7 months ago

0.0.20231023

7 months ago

0.0.20231101

7 months ago

0.0.20231104

7 months ago

0.0.20231103

7 months ago

0.0.20231026

7 months ago

0.0.20230830

8 months ago

0.0.20231008

7 months ago

0.0.20230713

10 months ago

0.0.20230912

8 months ago

0.0.20230627

11 months ago

0.0.20231003

7 months ago

0.0.20230519

12 months ago

0.0.20230616

11 months ago

0.0.20230607

11 months ago

0.0.20230509

1 year ago

0.0.20230427

1 year ago

0.0.20230510

12 months ago

0.0.20230404

1 year ago

0.0.20230412

1 year ago

0.0.20230223

1 year ago

0.0.20230323

1 year ago

0.0.20230321

1 year ago

0.0.20230310

1 year ago

0.0.20230126

1 year ago

0.0.20230207

1 year ago

0.0.20221027

2 years ago

0.0.20221122

1 year ago

0.0.20221111

2 years ago

0.0.20221220

1 year ago

0.0.20221207

1 year ago

0.0.20220929

2 years ago

0.0.20221025

2 years ago

0.0.20220818

2 years ago

0.0.20220912

2 years ago

0.0.20220810

2 years ago

0.0.20220727

2 years ago