@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.0.20240729 → 0.0.20240810
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 +12 -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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240810
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -961,6 +961,8 @@ declare namespace gapi.client {
|
|
|
961
961
|
interface GoogleCloudDiscoveryengineV1alphaDocumentInfo {
|
|
962
962
|
/** The Document resource ID. */
|
|
963
963
|
id?: string;
|
|
964
|
+
/** Output only. Whether the referenced Document can be found in the data store. */
|
|
965
|
+
joined?: boolean;
|
|
964
966
|
/** 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}` */
|
|
965
967
|
name?: string;
|
|
966
968
|
/** The promotion IDs associated with this Document. Currently, this field is restricted to at most one ID. */
|
|
@@ -977,7 +979,7 @@ declare namespace gapi.client {
|
|
|
977
979
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig;
|
|
978
980
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
979
981
|
name?: string;
|
|
980
|
-
/** 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. */
|
|
982
|
+
/** 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. */
|
|
981
983
|
parsingConfigOverrides?: {
|
|
982
984
|
[P in string]: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfig;
|
|
983
985
|
};
|
|
@@ -1173,16 +1175,6 @@ declare namespace gapi.client {
|
|
|
1173
1175
|
/** Required. The full resource name of the SampleQuerySet used for the evaluation, in the format of `projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`. */
|
|
1174
1176
|
sampleQuerySet?: string;
|
|
1175
1177
|
}
|
|
1176
|
-
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsMetadata {
|
|
1177
|
-
/** Operation create time. */
|
|
1178
|
-
createTime?: string;
|
|
1179
|
-
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
1180
|
-
updateTime?: string;
|
|
1181
|
-
}
|
|
1182
|
-
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsResponse {
|
|
1183
|
-
/** The status of the export operation. */
|
|
1184
|
-
status?: GoogleRpcStatus;
|
|
1185
|
-
}
|
|
1186
1178
|
interface GoogleCloudDiscoveryengineV1alphaFactChunk {
|
|
1187
1179
|
/** Text content of the fact chunk. Can be at most 10K characters long. */
|
|
1188
1180
|
chunkText?: string;
|
|
@@ -1206,6 +1198,8 @@ declare namespace gapi.client {
|
|
|
1206
1198
|
fhirStore?: string;
|
|
1207
1199
|
/** 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. */
|
|
1208
1200
|
gcsStagingDir?: string;
|
|
1201
|
+
/** 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. */
|
|
1202
|
+
resourceTypes?: string[];
|
|
1209
1203
|
}
|
|
1210
1204
|
interface GoogleCloudDiscoveryengineV1alphaFieldConfig {
|
|
1211
1205
|
/** 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 ``. */
|
|
@@ -2296,6 +2290,10 @@ declare namespace gapi.client {
|
|
|
2296
2290
|
address?: string;
|
|
2297
2291
|
/** The name of the geolocation field as defined in the schema. */
|
|
2298
2292
|
fieldName?: string;
|
|
2293
|
+
/** The latitude of the geolocation inferred from the input query. */
|
|
2294
|
+
latitude?: number;
|
|
2295
|
+
/** The longitude of the geolocation inferred from the input query. */
|
|
2296
|
+
longitude?: number;
|
|
2299
2297
|
/** The radius in meters around the address. The record is returned if the location of the geolocation field is within the radius. */
|
|
2300
2298
|
radiusInMeters?: number;
|
|
2301
2299
|
}
|
|
@@ -2863,7 +2861,7 @@ declare namespace gapi.client {
|
|
|
2863
2861
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfig;
|
|
2864
2862
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
2865
2863
|
name?: string;
|
|
2866
|
-
/** 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. */
|
|
2864
|
+
/** 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. */
|
|
2867
2865
|
parsingConfigOverrides?: {
|
|
2868
2866
|
[P in string]: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigParsingConfig;
|
|
2869
2867
|
};
|
|
@@ -3627,7 +3625,7 @@ declare namespace gapi.client {
|
|
|
3627
3625
|
defaultParsingConfig?: GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfig;
|
|
3628
3626
|
/** The full resource name of the Document Processing Config. Format: `projects/*/locations/*/collections/*/dataStores/*/documentProcessingConfig`. */
|
|
3629
3627
|
name?: string;
|
|
3630
|
-
/** 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. */
|
|
3628
|
+
/** 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. */
|
|
3631
3629
|
parsingConfigOverrides?: {
|
|
3632
3630
|
[P in string]: GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfig;
|
|
3633
3631
|
};
|