@maxim_mazurok/gapi.client.documentai-v1 0.0.20230227 → 0.0.20230302
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +18 -1
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://documentai.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230302
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -22,6 +22,23 @@ declare namespace gapi.client {
|
|
|
22
22
|
function load(name: "documentai", version: "v1", callback: () => any): void;
|
|
23
23
|
|
|
24
24
|
namespace documentai {
|
|
25
|
+
interface GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata {
|
|
26
|
+
/** The basic metadata of the long running operation. */
|
|
27
|
+
commonMetadata?: GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata;
|
|
28
|
+
/** The list of individual auto-labeling statuses of the dataset documents. */
|
|
29
|
+
individualAutoLabelStatuses?: GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus[];
|
|
30
|
+
/** Total number of the auto-labeling documents. */
|
|
31
|
+
totalDocumentCount?: number;
|
|
32
|
+
}
|
|
33
|
+
interface GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus {
|
|
34
|
+
/** The gcs_uri of the auto-labeling document, which uniquely identifies a dataset document. */
|
|
35
|
+
gcsUri?: string;
|
|
36
|
+
/** The status of the document auto-labeling. */
|
|
37
|
+
status?: GoogleRpcStatus;
|
|
38
|
+
}
|
|
39
|
+
// tslint:disable-next-line:no-empty-interface
|
|
40
|
+
interface GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsResponse {
|
|
41
|
+
}
|
|
25
42
|
interface GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadata {
|
|
26
43
|
/** The basic metadata of the long running operation. */
|
|
27
44
|
commonMetadata?: GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230302
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|