@maxim_mazurok/gapi.client.discoveryengine-v1 0.0.20240729 → 0.0.20240801
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 +8 -14
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240801
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -437,7 +437,7 @@ declare namespace gapi.client {
|
|
|
437
437
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig;
|
|
438
438
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
439
439
|
name?: string;
|
|
440
|
-
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. */
|
|
440
|
+
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. * `xlsx`: Override parsing config for XLSX files, only digital parsing and layout parsing are supported. */
|
|
441
441
|
parsingConfigOverrides?: {
|
|
442
442
|
[P in string]: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig;
|
|
443
443
|
};
|
|
@@ -600,16 +600,6 @@ declare namespace gapi.client {
|
|
|
600
600
|
/** Required. The full resource name of the SampleQuerySet used for the evaluation, in the format of `projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`. */
|
|
601
601
|
sampleQuerySet?: string;
|
|
602
602
|
}
|
|
603
|
-
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsMetadata {
|
|
604
|
-
/** Operation create time. */
|
|
605
|
-
createTime?: string;
|
|
606
|
-
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
607
|
-
updateTime?: string;
|
|
608
|
-
}
|
|
609
|
-
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsResponse {
|
|
610
|
-
/** The status of the export operation. */
|
|
611
|
-
status?: GoogleRpcStatus;
|
|
612
|
-
}
|
|
613
603
|
interface GoogleCloudDiscoveryengineV1alphaFieldConfig {
|
|
614
604
|
/** If this field is set, only the corresponding source will be indexed for this field. Otherwise, the values from different sources are merged. Assuming a page with `` in meta tag, and `` in page map: if this enum is set to METATAGS, we will only index ``; if this enum is not set, we will merge them and index ``. */
|
|
615
605
|
advancedSiteSearchDataSources?: string[];
|
|
@@ -1735,7 +1725,7 @@ declare namespace gapi.client {
|
|
|
1735
1725
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfig;
|
|
1736
1726
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
1737
1727
|
name?: string;
|
|
1738
|
-
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. */
|
|
1728
|
+
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. * `xlsx`: Override parsing config for XLSX files, only digital parsing and layout parsing are supported. */
|
|
1739
1729
|
parsingConfigOverrides?: {
|
|
1740
1730
|
[P in string]: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfig;
|
|
1741
1731
|
};
|
|
@@ -2762,6 +2752,8 @@ declare namespace gapi.client {
|
|
|
2762
2752
|
interface GoogleCloudDiscoveryengineV1DocumentInfo {
|
|
2763
2753
|
/** The Document resource ID. */
|
|
2764
2754
|
id?: string;
|
|
2755
|
+
/** Output only. Whether the referenced Document can be found in the data store. */
|
|
2756
|
+
joined?: boolean;
|
|
2765
2757
|
/** The Document resource full name, of the form: `projects/{project_id}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/branches/{branch_id}/documents/{document_id}` */
|
|
2766
2758
|
name?: string;
|
|
2767
2759
|
/** The promotion IDs associated with this Document. Currently, this field is restricted to at most one ID. */
|
|
@@ -2778,7 +2770,7 @@ declare namespace gapi.client {
|
|
|
2778
2770
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfig;
|
|
2779
2771
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
2780
2772
|
name?: string;
|
|
2781
|
-
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. */
|
|
2773
|
+
/** Map from file type to override the default parsing configuration based on the file type. Supported keys: * `pdf`: Override parsing config for PDF files, either digital parsing, ocr parsing or layout parsing is supported. * `html`: Override parsing config for HTML files, only digital parsing and layout parsing are supported. * `docx`: Override parsing config for DOCX files, only digital parsing and layout parsing are supported. * `pptx`: Override parsing config for PPTX files, only digital parsing and layout parsing are supported. * `xlsx`: Override parsing config for XLSX files, only digital parsing and layout parsing are supported. */
|
|
2782
2774
|
parsingConfigOverrides?: {
|
|
2783
2775
|
[P in string]: GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfig;
|
|
2784
2776
|
};
|
|
@@ -2894,6 +2886,8 @@ declare namespace gapi.client {
|
|
|
2894
2886
|
fhirStore?: string;
|
|
2895
2887
|
/** Intermediate Cloud Storage directory used for the import with a length limit of 2,000 characters. Can be specified if one wants to have the FhirStore export to a specific Cloud Storage directory. */
|
|
2896
2888
|
gcsStagingDir?: string;
|
|
2889
|
+
/** The FHIR resource types to import. The resource types should be a subset of all [supported FHIR resource types](https://cloud.google.com/generative-ai-app-builder/docs/fhir-schema-reference#resource-level-specification). Default to all supported FHIR resource types if empty. */
|
|
2890
|
+
resourceTypes?: string[];
|
|
2897
2891
|
}
|
|
2898
2892
|
interface GoogleCloudDiscoveryengineV1FirestoreSource {
|
|
2899
2893
|
/** Required. The Firestore collection (or entity) to copy the data from with a length limit of 1,500 characters. */
|