@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20231209 → 0.0.20231218
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 +15 -1
- package/package.json +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://discoveryengine.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231218
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -163,6 +163,12 @@ declare namespace gapi.client {
|
|
|
163
163
|
updateTime?: string;
|
|
164
164
|
}
|
|
165
165
|
interface GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchResponse {}
|
|
166
|
+
interface GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig {
|
|
167
|
+
/** Output only. The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
168
|
+
name?: string;
|
|
169
|
+
/** The OCR config. Currently it only applies to PDFs. */
|
|
170
|
+
ocrConfig?: GoogleCloudDiscoveryengineV1alphaOcrConfig;
|
|
171
|
+
}
|
|
166
172
|
interface GoogleCloudDiscoveryengineV1alphaEnableAdvancedSiteSearchMetadata {
|
|
167
173
|
/** Operation create time. */
|
|
168
174
|
createTime?: string;
|
|
@@ -325,6 +331,14 @@ declare namespace gapi.client {
|
|
|
325
331
|
/** Count of user events imported, but with Document information not found in the existing Branch. */
|
|
326
332
|
unjoinedEventsCount?: string;
|
|
327
333
|
}
|
|
334
|
+
interface GoogleCloudDiscoveryengineV1alphaOcrConfig {
|
|
335
|
+
/** Required. If OCR is enabled or not. OCR must be enabled for other OcrConfig options to apply. */
|
|
336
|
+
enabled?: boolean;
|
|
337
|
+
/** Apply additional enhanced OCR processing to a list of document elements. Supported values: * `table`: advanced table parsing model. */
|
|
338
|
+
enhancedDocumentElements?: string[];
|
|
339
|
+
/** If true, will use native text instead of OCR text on pages containing native text. */
|
|
340
|
+
useNativeText?: boolean;
|
|
341
|
+
}
|
|
328
342
|
interface GoogleCloudDiscoveryengineV1alphaPurgeDocumentsMetadata {
|
|
329
343
|
/** Operation create time. */
|
|
330
344
|
createTime?: string;
|