@maxim_mazurok/gapi.client.documentai-v1 0.0.20220821 → 0.0.20220824
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 +26 -1
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://documentai.googleapis.com/$discovery/rest?version=v1
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220824
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
|
@@ -133,6 +133,31 @@ declare namespace gapi.client {
|
|
|
133
133
|
/** The resource name of the created evaluation. */
|
|
134
134
|
evaluation?: string;
|
|
135
135
|
}
|
|
136
|
+
interface GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata {
|
|
137
|
+
/** The basic metadata of the long running operation. */
|
|
138
|
+
commonMetadata?: GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata;
|
|
139
|
+
/** The list of response details of each document. */
|
|
140
|
+
individualExportStatuses?: GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus[];
|
|
141
|
+
/** The list of statistics for each dataset split type. */
|
|
142
|
+
splitExportStats?: GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat[];
|
|
143
|
+
}
|
|
144
|
+
interface GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus {
|
|
145
|
+
/** The path to source docproto of the document. */
|
|
146
|
+
documentId?: GoogleCloudDocumentaiUiv1beta3DocumentId;
|
|
147
|
+
/** The output_gcs_destination of the exported document if it was successful, otherwise empty. */
|
|
148
|
+
outputGcsDestination?: string;
|
|
149
|
+
/** The status of the exporting of the document. */
|
|
150
|
+
status?: GoogleRpcStatus;
|
|
151
|
+
}
|
|
152
|
+
interface GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat {
|
|
153
|
+
/** The dataset split type. */
|
|
154
|
+
splitType?: string;
|
|
155
|
+
/** Total number of documents with the given dataset split type to be exported. */
|
|
156
|
+
totalDocumentCount?: number;
|
|
157
|
+
}
|
|
158
|
+
// tslint:disable-next-line:no-empty-interface
|
|
159
|
+
interface GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse {
|
|
160
|
+
}
|
|
136
161
|
interface GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata {
|
|
137
162
|
/** The common metadata about the operation. */
|
|
138
163
|
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: 20220824
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|