@maxim_mazurok/gapi.client.documentai-v1 0.0.20220821 → 0.0.20220911
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 +32 -1
- package/package.json +1 -1
- package/tests.ts +4 -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: 20220911
|
|
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;
|
|
@@ -704,6 +729,8 @@ declare namespace gapi.client {
|
|
|
704
729
|
backgroundColor?: GoogleTypeColor;
|
|
705
730
|
/** Text color. */
|
|
706
731
|
color?: GoogleTypeColor;
|
|
732
|
+
/** Font family such as "Arial", "Times New Roman". https://www.w3schools.com/cssref/pr_font_font-family.asp */
|
|
733
|
+
fontFamily?: string;
|
|
707
734
|
/** Font size. */
|
|
708
735
|
fontSize?: GoogleCloudDocumentaiV1beta1DocumentStyleFontSize;
|
|
709
736
|
/** Font weight. Possible values are normal, bold, bolder, and lighter. https://www.w3schools.com/cssref/pr_font_weight.asp */
|
|
@@ -1189,6 +1216,8 @@ declare namespace gapi.client {
|
|
|
1189
1216
|
backgroundColor?: GoogleTypeColor;
|
|
1190
1217
|
/** Text color. */
|
|
1191
1218
|
color?: GoogleTypeColor;
|
|
1219
|
+
/** Font family such as "Arial", "Times New Roman". https://www.w3schools.com/cssref/pr_font_font-family.asp */
|
|
1220
|
+
fontFamily?: string;
|
|
1192
1221
|
/** Font size. */
|
|
1193
1222
|
fontSize?: GoogleCloudDocumentaiV1beta2DocumentStyleFontSize;
|
|
1194
1223
|
/** Font weight. Possible values are normal, bold, bolder, and lighter. https://www.w3schools.com/cssref/pr_font_weight.asp */
|
|
@@ -1877,6 +1906,8 @@ declare namespace gapi.client {
|
|
|
1877
1906
|
backgroundColor?: GoogleTypeColor;
|
|
1878
1907
|
/** Text color. */
|
|
1879
1908
|
color?: GoogleTypeColor;
|
|
1909
|
+
/** Font family such as "Arial", "Times New Roman". https://www.w3schools.com/cssref/pr_font_font-family.asp */
|
|
1910
|
+
fontFamily?: string;
|
|
1880
1911
|
/** Font size. */
|
|
1881
1912
|
fontSize?: GoogleCloudDocumentaiV1DocumentStyleFontSize;
|
|
1882
1913
|
/** Font weight. Possible values are normal, bold, bolder, and lighter. https://www.w3schools.com/cssref/pr_font_weight.asp */
|
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: 20220911
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -917,6 +917,7 @@ gapi.load('client', async () => {
|
|
|
917
917
|
green: 42,
|
|
918
918
|
red: 42,
|
|
919
919
|
},
|
|
920
|
+
fontFamily: "Test string",
|
|
920
921
|
fontSize: {
|
|
921
922
|
size: 42,
|
|
922
923
|
unit: "Test string",
|
|
@@ -1781,6 +1782,7 @@ gapi.load('client', async () => {
|
|
|
1781
1782
|
green: 42,
|
|
1782
1783
|
red: 42,
|
|
1783
1784
|
},
|
|
1785
|
+
fontFamily: "Test string",
|
|
1784
1786
|
fontSize: {
|
|
1785
1787
|
size: 42,
|
|
1786
1788
|
unit: "Test string",
|
|
@@ -2626,6 +2628,7 @@ gapi.load('client', async () => {
|
|
|
2626
2628
|
green: 42,
|
|
2627
2629
|
red: 42,
|
|
2628
2630
|
},
|
|
2631
|
+
fontFamily: "Test string",
|
|
2629
2632
|
fontSize: {
|
|
2630
2633
|
size: 42,
|
|
2631
2634
|
unit: "Test string",
|