@maxim_mazurok/gapi.client.bigquery-v2 0.0.20231030 → 0.0.20231111
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 +19 -1
- package/package.json +1 -1
- package/tests.ts +2 -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://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231111
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2871,6 +2871,13 @@ declare namespace gapi.client {
|
|
|
2871
2871
|
/** Output only. The remote service type for remote model. */
|
|
2872
2872
|
remoteServiceType?:
|
|
2873
2873
|
string;
|
|
2874
|
+
/**
|
|
2875
|
+
* Output only. The name of the speech recognizer to use for speech recognition. The expected format is `projects/{project}/locations/{location}/recognizers/{recognizer}`. Customers
|
|
2876
|
+
* can specify this field at model creation. If not specified, a default recognizer `projects/{model project}/locations/global/recognizers/_` will be used. See more details at
|
|
2877
|
+
* [recognizers](https://cloud.google.com/speech-to-text/v2/docs/reference/rest/v2/projects.locations.recognizers)
|
|
2878
|
+
*/
|
|
2879
|
+
speechRecognizer?:
|
|
2880
|
+
string;
|
|
2874
2881
|
}
|
|
2875
2882
|
interface Routine {
|
|
2876
2883
|
/** Optional. */
|
|
@@ -3993,6 +4000,17 @@ declare namespace gapi.client {
|
|
|
3993
4000
|
resourceUri?:
|
|
3994
4001
|
string;
|
|
3995
4002
|
}
|
|
4003
|
+
interface VectorSearchStatistics {
|
|
4004
|
+
/**
|
|
4005
|
+
* When `indexUsageMode` is `UNUSED` or `PARTIALLY_USED`, this field explains why indexes were not used in all or part of the vector search query. If `indexUsageMode` is `FULLY_USED`,
|
|
4006
|
+
* this field is not populated.
|
|
4007
|
+
*/
|
|
4008
|
+
indexUnusedReasons?:
|
|
4009
|
+
IndexUnusedReason[];
|
|
4010
|
+
/** Specifies the index usage mode for the query. */
|
|
4011
|
+
indexUsageMode?:
|
|
4012
|
+
string;
|
|
4013
|
+
}
|
|
3996
4014
|
interface ViewDefinition {
|
|
3997
4015
|
/** [Required] A query that BigQuery executes when the view is referenced. */
|
|
3998
4016
|
query?:
|
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: 20231111
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1769,6 +1769,7 @@ gapi.load('client', async () => {
|
|
|
1769
1769
|
maxBatchingRows: "Test string",
|
|
1770
1770
|
remoteModelVersion: "Test string",
|
|
1771
1771
|
remoteServiceType: "Test string",
|
|
1772
|
+
speechRecognizer: "Test string",
|
|
1772
1773
|
},
|
|
1773
1774
|
trainingRuns: [
|
|
1774
1775
|
{
|