@maxim_mazurok/gapi.client.bigquery-v2 0.1.20250831 → 0.1.20250912

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.
Files changed (2) hide show
  1. package/index.d.ts +12 -2
  2. 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://bigquery.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20250831
12
+ // Revision: 20250912
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -979,6 +979,14 @@ declare namespace gapi.client {
979
979
  /** The time at which the result table's contents were completely replaced. May be absent if no results have been written or the query has completed. */
980
980
  resultSetLastReplaceTime?: string;
981
981
  }
982
+ interface IndexPruningStats {
983
+ /** The base table reference. */
984
+ baseTable?: TableReference;
985
+ /** The number of parallel inputs after index pruning. */
986
+ postIndexPruningParallelInputCount?: string;
987
+ /** The number of parallel inputs before index pruning. */
988
+ preIndexPruningParallelInputCount?: string;
989
+ }
982
990
  interface IndexUnusedReason {
983
991
  /** Specifies the base table involved in the reason that no search index was used. */
984
992
  baseTable?: TableReference;
@@ -1072,7 +1080,7 @@ declare namespace gapi.client {
1072
1080
  dryRun?: boolean;
1073
1081
  /** [Pick one] Configures an extract job. */
1074
1082
  extract?: JobConfigurationExtract;
1075
- /** Optional. Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop a longer job, but may not always succeed in canceling it before the job completes. For example, a job that takes more than 60 seconds to complete has a better chance of being stopped than a job that takes 10 seconds to complete. */
1083
+ /** Optional. Job timeout in milliseconds relative to the job creation time. If this time limit is exceeded, BigQuery attempts to stop the job, but might not always succeed in canceling it before the job completes. For example, a job that takes more than 60 seconds to complete has a better chance of being stopped than a job that takes 10 seconds to complete. */
1076
1084
  jobTimeoutMs?: string;
1077
1085
  /** Output only. The type of the job. Can be QUERY, LOAD, EXTRACT, COPY or UNKNOWN. */
1078
1086
  jobType?: string;
@@ -2118,6 +2126,8 @@ declare namespace gapi.client {
2118
2126
  stackFrames?: ScriptStackFrame[];
2119
2127
  }
2120
2128
  interface SearchStatistics {
2129
+ /** Search index pruning statistics, one for each base table that has a search index. If a base table does not have a search index or the index does not help with pruning on the base table, then there is no pruning statistics for that table. */
2130
+ indexPruningStats?: IndexPruningStats[];
2121
2131
  /** When `indexUsageMode` is `UNUSED` or `PARTIALLY_USED`, this field explains why indexes were not used in all or part of the search query. If `indexUsageMode` is `FULLY_USED`, this field is not populated. */
2122
2132
  indexUnusedReasons?: IndexUnusedReason[];
2123
2133
  /** Specifies the index usage mode for the query. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.bigquery-v2",
3
- "version": "0.1.20250831",
3
+ "version": "0.1.20250912",
4
4
  "description": "TypeScript typings for BigQuery API v2",
5
5
  "repository": {
6
6
  "type": "git",