@maxim_mazurok/gapi.client.discoveryengine-v1beta 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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230310
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -253,13 +253,15 @@ declare namespace gapi.client {
|
|
|
253
253
|
}
|
|
254
254
|
interface GoogleCloudDiscoveryengineV1betaGcsSource {
|
|
255
255
|
/**
|
|
256
|
-
* The schema to use when parsing the data from the source. Supported values for imports: * `
|
|
257
|
-
* Document
|
|
256
|
+
* 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
|
|
257
|
+
* 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
|
|
258
|
+
* as a hex string. Supported values for user even imports: * `user_event` (default): One JSON UserEvent per line.
|
|
258
259
|
*/
|
|
259
260
|
dataSchema?: string;
|
|
260
261
|
/**
|
|
261
262
|
* 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
|
|
262
|
-
* pattern matching one or more files, such as `gs://bucket/directory/*.json`. A request can contain at most 100 files
|
|
263
|
+
* 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
|
|
264
|
+
* can be up to 2 GB.
|
|
263
265
|
*/
|
|
264
266
|
inputUris?: string[];
|
|
265
267
|
}
|
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 */
|