@maxim_mazurok/gapi.client.discoveryengine-v1alpha 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 +23 -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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240704
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1132,6 +1132,18 @@ declare namespace gapi.client {
|
|
|
1132
1132
|
/** Total number of documents. */
|
|
1133
1133
|
documentCount?: string;
|
|
1134
1134
|
}
|
|
1135
|
+
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsMetadata {
|
|
1136
|
+
/** Operation create time. */
|
|
1137
|
+
createTime?: string;
|
|
1138
|
+
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
1139
|
+
updateTime?: string;
|
|
1140
|
+
}
|
|
1141
|
+
interface GoogleCloudDiscoveryengineV1alphaExportUserEventsResponse {
|
|
1142
|
+
/** Output result indicating where the data were exported to. */
|
|
1143
|
+
outputResult?: GoogleCloudDiscoveryengineV1alphaOutputResult;
|
|
1144
|
+
/** The status of the export operation. */
|
|
1145
|
+
status?: GoogleRpcStatus;
|
|
1146
|
+
}
|
|
1135
1147
|
interface GoogleCloudDiscoveryengineV1alphaFactChunk {
|
|
1136
1148
|
/** Text content of the fact chunk. Can be at most 10K characters long. */
|
|
1137
1149
|
chunkText?: string;
|
|
@@ -1456,6 +1468,16 @@ declare namespace gapi.client {
|
|
|
1456
1468
|
/** Media progress should be computed using only the media_progress_duration relative to the media total length. This value must be between `[0, 1.0]` inclusive. If this is not a playback or the progress cannot be computed (e.g. ongoing livestream), this field should be unset. */
|
|
1457
1469
|
mediaProgressPercentage?: number;
|
|
1458
1470
|
}
|
|
1471
|
+
interface GoogleCloudDiscoveryengineV1alphaOutputResult {
|
|
1472
|
+
/** The BigQuery location where the result is stored. */
|
|
1473
|
+
bigqueryResult?: GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult;
|
|
1474
|
+
}
|
|
1475
|
+
interface GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult {
|
|
1476
|
+
/** The ID of a BigQuery Dataset. */
|
|
1477
|
+
datasetId?: string;
|
|
1478
|
+
/** The ID of a BigQuery Table. */
|
|
1479
|
+
tableId?: string;
|
|
1480
|
+
}
|
|
1459
1481
|
interface GoogleCloudDiscoveryengineV1alphaPageInfo {
|
|
1460
1482
|
/** The most specific category associated with a category page. To represent full path of category, use '>' sign to separate different hierarchies. If '>' is part of the category name, replace it with other character(s). Category pages include special pages such as sales or promotions. For instance, a special sale page may have the category hierarchy: `"pageCategory" : "Sales > 2017 Black Friday Deals"`. Required for `view-category-page` events. Other event types should not set this field. Otherwise, an `INVALID_ARGUMENT` error is returned. */
|
|
1461
1483
|
pageCategory?: string;
|