@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20230814 → 0.0.20230819
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +5 -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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230819
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1163,6 +1163,12 @@ declare namespace gapi.client {
|
|
|
1163
1163
|
*/
|
|
1164
1164
|
maxExtractiveSegmentCount?:
|
|
1165
1165
|
number;
|
|
1166
|
+
/** Return at most `num_next_segments` segments after each selected segments. */
|
|
1167
|
+
numNextSegments?:
|
|
1168
|
+
number;
|
|
1169
|
+
/** Specifies whether to also include the adjacent from each selected segments. Return at most `num_previous_segments` segments before each selected segments. */
|
|
1170
|
+
numPreviousSegments?:
|
|
1171
|
+
number;
|
|
1166
1172
|
/** Specifies whether to return the confidence score from the extractive segments in each search result. The default value is `false`. */
|
|
1167
1173
|
returnExtractiveSegmentScore?:
|
|
1168
1174
|
boolean;
|
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: 20230819
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -500,6 +500,8 @@ gapi.load('client', async () => {
|
|
|
500
500
|
extractiveContentSpec: {
|
|
501
501
|
maxExtractiveAnswerCount: 42,
|
|
502
502
|
maxExtractiveSegmentCount: 42,
|
|
503
|
+
numNextSegments: 42,
|
|
504
|
+
numPreviousSegments: 42,
|
|
503
505
|
returnExtractiveSegmentScore: true,
|
|
504
506
|
},
|
|
505
507
|
snippetSpec: {
|
|
@@ -1282,6 +1284,8 @@ gapi.load('client', async () => {
|
|
|
1282
1284
|
extractiveContentSpec: {
|
|
1283
1285
|
maxExtractiveAnswerCount: 42,
|
|
1284
1286
|
maxExtractiveSegmentCount: 42,
|
|
1287
|
+
numNextSegments: 42,
|
|
1288
|
+
numPreviousSegments: 42,
|
|
1285
1289
|
returnExtractiveSegmentScore: true,
|
|
1286
1290
|
},
|
|
1287
1291
|
snippetSpec: {
|