@maxim_mazurok/gapi.client.documentai-v1beta3 0.0.20230218 → 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 +19 -2
- 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=v1beta3
|
|
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: "v1beta3", 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;
|
|
@@ -1852,7 +1869,7 @@ declare namespace gapi.client {
|
|
|
1852
1869
|
* be honored for backward compatibility.
|
|
1853
1870
|
*/
|
|
1854
1871
|
name?: string;
|
|
1855
|
-
/**
|
|
1872
|
+
/** Description the nested structure, or composition of an entity. */
|
|
1856
1873
|
properties?: GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeProperty[];
|
|
1857
1874
|
}
|
|
1858
1875
|
interface GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues {
|
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 */
|