@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.0.20230925 → 0.0.20230928
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 +17 -1
- 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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230928
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1301,6 +1301,8 @@ declare namespace gapi.client {
|
|
|
1301
1301
|
/** Results of facets requested by user. */
|
|
1302
1302
|
facets?:
|
|
1303
1303
|
GoogleCloudDiscoveryengineV1alphaSearchResponseFacet[];
|
|
1304
|
+
geoSearchDebugInfo?:
|
|
1305
|
+
GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo[];
|
|
1304
1306
|
/** Guided search result. */
|
|
1305
1307
|
guidedSearchResult?:
|
|
1306
1308
|
GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult;
|
|
@@ -1345,6 +1347,14 @@ declare namespace gapi.client {
|
|
|
1345
1347
|
value?:
|
|
1346
1348
|
string;
|
|
1347
1349
|
}
|
|
1350
|
+
interface GoogleCloudDiscoveryengineV1alphaSearchResponseGeoSearchDebugInfo {
|
|
1351
|
+
/** The error produced. */
|
|
1352
|
+
errorMessage?:
|
|
1353
|
+
string;
|
|
1354
|
+
/** The address from which forward geocoding ingestion produced issues. */
|
|
1355
|
+
originalAddressQuery?:
|
|
1356
|
+
string;
|
|
1357
|
+
}
|
|
1348
1358
|
interface GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResult {
|
|
1349
1359
|
/** Suggested follow-up questions. */
|
|
1350
1360
|
followUpQuestions?:
|
|
@@ -1706,6 +1716,12 @@ declare namespace gapi.client {
|
|
|
1706
1716
|
*/
|
|
1707
1717
|
name?:
|
|
1708
1718
|
string;
|
|
1719
|
+
/**
|
|
1720
|
+
* The type of snippet to display in UCS widget. - RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-enterprise search users. - EXTRACTIVE_ANSWER for new
|
|
1721
|
+
* enterprise search users.
|
|
1722
|
+
*/
|
|
1723
|
+
resultDisplayType?:
|
|
1724
|
+
string;
|
|
1709
1725
|
/** Required. Immutable. Specifies the solution type that this WidgetConfig can be used for. */
|
|
1710
1726
|
solutionType?:
|
|
1711
1727
|
string;
|
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: 20230928
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|