1.0.20220808 • Published 2 years ago

@maxim_mazurok/gapi.client.documentai v1.0.20220808

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

TypeScript typings for Cloud Document AI API v1

Service to parse structured information from unstructured or semi-structured documents using state-of-the-art Google AI such as natural language, computer vision, translation, and AutoML. For detailed description please check documentation.

Installing

Install typings for Cloud Document AI API:

npm install @types/gapi.client.documentai@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('documentai', 'v1', () => {
  // now we can use gapi.client.documentai
  // ...
});

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 Document AI API resources:

/*
Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
*/
await gapi.client.documentai.operations.delete({ name: "name",  });
1.0.20220615

2 years ago

1.0.20220621

2 years ago

1.0.20220713

2 years ago

1.0.20220711

2 years ago

1.0.20220719

2 years ago

1.0.20220720

2 years ago

1.0.20220808

2 years ago

1.0.20220610

2 years ago

1.0.20220429

2 years ago

1.0.20220505

2 years ago

1.0.20220519

2 years ago

1.0.20220513

2 years ago

1.0.20220602

2 years ago

1.0.20220525

2 years ago

1.0.20220530

2 years ago

1.0.20220415

2 years ago

1.0.20220421

2 years ago

1.0.20220401

2 years ago

1.0.20220321

2 years ago

1.0.20220409

2 years ago

1.0.20220326

2 years ago

1.0.20220316

2 years ago

1.0.20220226

2 years ago

1.0.20220307

2 years ago

1.0.20220311

2 years ago

1.0.20220216

2 years ago

1.0.20220105

2 years ago

1.0.20220122

2 years ago

1.0.20220222

2 years ago

1.0.20220205

2 years ago

1.0.20220129

2 years ago

1.0.20220212

2 years ago

1.0.20220114

2 years ago

1.0.20211214

2 years ago

1.0.20211112

3 years ago

1.0.20211203

2 years ago

1.0.20211105

3 years ago

1.0.20211125

2 years ago

1.0.20211102

3 years ago

1.0.20211022

3 years ago

1.0.20211019

3 years ago

1.0.20211012

3 years ago

1.0.20211002

3 years ago

1.0.20210926

3 years ago

1.0.20210917

3 years ago

1.0.20210911

3 years ago

1.0.20210907

3 years ago

1.0.20210830

3 years ago

1.0.20210820

3 years ago

1.0.20210817

3 years ago

1.0.20210806

3 years ago

1.0.20210731

3 years ago

1.0.20210730

3 years ago

1.0.20210728

3 years ago

1.0.20210719

3 years ago

1.0.20210709

3 years ago

1.0.20210625

3 years ago

1.0.20210618

3 years ago

1.0.20210610

3 years ago

1.0.20210607

3 years ago

1.0.20210527

3 years ago

1.0.20210520

3 years ago

1.0.20210513

3 years ago

1.0.20210507

3 years ago

1.0.20210430

3 years ago

1.0.20210426

3 years ago