@maxim_mazurok/gapi.client.bigquery-v2 0.0.20230520 → 0.0.20230617

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 (3) hide show
  1. package/index.d.ts +13 -7
  2. package/package.json +1 -1
  3. package/tests.ts +6 -3
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: 20230520
12
+ // Revision: 20230617
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1092,6 +1092,12 @@ declare namespace gapi.client {
1092
1092
  */
1093
1093
  decimalTargetTypes?:
1094
1094
  string[];
1095
+ /**
1096
+ * [Optional] Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include
1097
+ * specifying manifest files. Only applicable to object storage systems.
1098
+ */
1099
+ fileSetSpecType?:
1100
+ string;
1095
1101
  /** [Optional] Additional options if sourceFormat is set to GOOGLE_SHEETS. */
1096
1102
  googleSheetsOptions?:
1097
1103
  GoogleSheetsOptions;
@@ -1621,6 +1627,12 @@ declare namespace gapi.client {
1621
1627
  */
1622
1628
  fieldDelimiter?:
1623
1629
  string;
1630
+ /**
1631
+ * [Optional] Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include
1632
+ * specifying manifest files. Only applicable to object storage systems.
1633
+ */
1634
+ fileSetSpecType?:
1635
+ string;
1624
1636
  /** [Optional] Options to configure hive partitioning support. */
1625
1637
  hivePartitioningOptions?:
1626
1638
  HivePartitioningOptions;
@@ -3699,12 +3711,6 @@ declare namespace gapi.client {
3699
3711
  /** Optimization strategy for training linear regression models. */
3700
3712
  optimizationStrategy?:
3701
3713
  string;
3702
- /**
3703
- * Whether to preserve the input structs in output feature names. Suppose there is a struct A with field b. When false (default), the output feature name is A_b. When true, the output
3704
- * feature name is A.b.
3705
- */
3706
- preserveInputStructs?:
3707
- boolean;
3708
3714
  /** Number of paths for the sampled Shapley explain method. */
3709
3715
  sampledShapleyNumPaths?:
3710
3716
  string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.bigquery-v2",
3
- "version": "0.0.20230520",
3
+ "version": "0.0.20230617",
4
4
  "description": "TypeScript typings for BigQuery API v2",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230520
6
+ // Revision: 20230617
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -402,6 +402,7 @@ gapi.load('client', async () => {
402
402
  },
403
403
  encoding: "Test string",
404
404
  fieldDelimiter: "Test string",
405
+ fileSetSpecType: "Test string",
405
406
  hivePartitioningOptions: {
406
407
  fields: [
407
408
  "Test string"
@@ -588,6 +589,7 @@ gapi.load('client', async () => {
588
589
  decimalTargetTypes: [
589
590
  "Test string"
590
591
  ],
592
+ fileSetSpecType: "Test string",
591
593
  googleSheetsOptions: {
592
594
  range: "Test string",
593
595
  skipLeadingRows: "Test string",
@@ -1522,7 +1524,6 @@ gapi.load('client', async () => {
1522
1524
  numParallelTree: "Test string",
1523
1525
  numTrials: "Test string",
1524
1526
  optimizationStrategy: "Test string",
1525
- preserveInputStructs: true,
1526
1527
  sampledShapleyNumPaths: "Test string",
1527
1528
  subsample: 42,
1528
1529
  tfVersion: "Test string",
@@ -1987,7 +1988,6 @@ gapi.load('client', async () => {
1987
1988
  numParallelTree: "Test string",
1988
1989
  numTrials: "Test string",
1989
1990
  optimizationStrategy: "Test string",
1990
- preserveInputStructs: true,
1991
1991
  sampledShapleyNumPaths: "Test string",
1992
1992
  subsample: 42,
1993
1993
  tfVersion: "Test string",
@@ -2423,6 +2423,7 @@ gapi.load('client', async () => {
2423
2423
  decimalTargetTypes: [
2424
2424
  "Test string"
2425
2425
  ],
2426
+ fileSetSpecType: "Test string",
2426
2427
  googleSheetsOptions: {
2427
2428
  range: "Test string",
2428
2429
  skipLeadingRows: "Test string",
@@ -2721,6 +2722,7 @@ gapi.load('client', async () => {
2721
2722
  decimalTargetTypes: [
2722
2723
  "Test string"
2723
2724
  ],
2725
+ fileSetSpecType: "Test string",
2724
2726
  googleSheetsOptions: {
2725
2727
  range: "Test string",
2726
2728
  skipLeadingRows: "Test string",
@@ -3060,6 +3062,7 @@ gapi.load('client', async () => {
3060
3062
  decimalTargetTypes: [
3061
3063
  "Test string"
3062
3064
  ],
3065
+ fileSetSpecType: "Test string",
3063
3066
  googleSheetsOptions: {
3064
3067
  range: "Test string",
3065
3068
  skipLeadingRows: "Test string",