@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.0.20230306 → 0.0.20230310
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 +6 -4
- 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://discoveryengine.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230310
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -210,13 +210,15 @@ declare namespace gapi.client {
|
|
|
210
210
|
}
|
|
211
211
|
interface GoogleCloudDiscoveryengineV1alphaGcsSource {
|
|
212
212
|
/**
|
|
213
|
-
* The schema to use when parsing the data from the source. Supported values for imports: * `
|
|
214
|
-
* Document
|
|
213
|
+
* The schema to use when parsing the data from the source. Supported values for document imports: * `document` (default): One JSON Document per line. Each document must have a valid
|
|
214
|
+
* Document.id. * `content`: Unstructured data (e.g. PDF, HTML). Each file matched by `input_uris` will become a document, with the ID set to the first 128 bits of SHA256(URI) encoded
|
|
215
|
+
* as a hex string. Supported values for user even imports: * `user_event` (default): One JSON UserEvent per line.
|
|
215
216
|
*/
|
|
216
217
|
dataSchema?: string;
|
|
217
218
|
/**
|
|
218
219
|
* Required. Cloud Storage URIs to input files. URI can be up to 2000 characters long. URIs can match the full object path (for example, `gs://bucket/directory/object.json`) or a
|
|
219
|
-
* pattern matching one or more files, such as `gs://bucket/directory/*.json`. A request can contain at most 100 files
|
|
220
|
+
* pattern matching one or more files, such as `gs://bucket/directory/*.json`. A request can contain at most 100 files or 100000 files if the data_schema is `content`. And each file
|
|
221
|
+
* can be up to 2 GB.
|
|
220
222
|
*/
|
|
221
223
|
inputUris?: string[];
|
|
222
224
|
}
|
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: 20230310
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|