@maxim_mazurok/gapi.client.discoveryengine-v1 0.0.20240701 → 0.0.20240704
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 +25 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240704
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -557,6 +557,18 @@ declare namespace gapi.client {
|
|
|
557
557
|
/** Total number of documents. */
|
|
558
558
|
documentCount?: string;
|
|
559
559
|
}
|
|
560
|
+
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsMetadata {
|
|
561
|
+
/** Operation create time. */
|
|
562
|
+
createTime?: string;
|
|
563
|
+
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
564
|
+
updateTime?: string;
|
|
565
|
+
}
|
|
566
|
+
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsResponse {
|
|
567
|
+
/** Output result indicating where the data were exported to. */
|
|
568
|
+
outputResult?: GoogleCloudDiscoveryengineV1alphaOutputResult;
|
|
569
|
+
/** The status of the export operation. */
|
|
570
|
+
status?: GoogleRpcStatus;
|
|
571
|
+
}
|
|
560
572
|
interface GoogleCloudDiscoveryengineV1alphaFieldConfig {
|
|
561
573
|
/** 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 ``. */
|
|
562
574
|
advancedSiteSearchDataSources?: string[];
|
|
@@ -677,6 +689,16 @@ declare namespace gapi.client {
|
|
|
677
689
|
/** List of custom tuning models. */
|
|
678
690
|
models?: GoogleCloudDiscoveryengineV1alphaCustomTuningModel[];
|
|
679
691
|
}
|
|
692
|
+
interface GoogleCloudDiscoveryengineV1alphaOutputResult {
|
|
693
|
+
/** The BigQuery location where the result is stored. */
|
|
694
|
+
bigqueryResult?: GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult;
|
|
695
|
+
}
|
|
696
|
+
interface GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult {
|
|
697
|
+
/** The ID of a BigQuery Dataset. */
|
|
698
|
+
datasetId?: string;
|
|
699
|
+
/** The ID of a BigQuery Table. */
|
|
700
|
+
tableId?: string;
|
|
701
|
+
}
|
|
680
702
|
interface GoogleCloudDiscoveryengineV1alphaProject {
|
|
681
703
|
/** Output only. The timestamp when this project is created. */
|
|
682
704
|
createTime?: string;
|
|
@@ -994,6 +1016,8 @@ declare namespace gapi.client {
|
|
|
994
1016
|
interface GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec {
|
|
995
1017
|
/** Disable query rephraser. */
|
|
996
1018
|
disable?: boolean;
|
|
1019
|
+
/** Max rephrase steps. The max number is 5 steps. If not set or set to < 1, it will be set to 1 by default. */
|
|
1020
|
+
maxRephraseSteps?: number;
|
|
997
1021
|
}
|
|
998
1022
|
interface GoogleCloudDiscoveryengineV1AnswerQueryRequestRelatedQuestionsSpec {
|
|
999
1023
|
/** Enable related questions feature if true. */
|