@maxim_mazurok/gapi.client.bigquery-v2 0.0.20221112 → 0.0.20221203
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 +6 -4
- package/package.json +1 -1
- package/tests.ts +4 -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: 20221203
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1668,7 +1668,7 @@ declare namespace gapi.client {
|
|
|
1668
1668
|
nextPageToken?: string;
|
|
1669
1669
|
/**
|
|
1670
1670
|
* Routines in the requested dataset. Unless read_mask is set in the request, only the following fields are populated: etag, project_id, dataset_id, routine_id, routine_type,
|
|
1671
|
-
* creation_time, last_modified_time, and
|
|
1671
|
+
* creation_time, last_modified_time, language, and remote_function_options.
|
|
1672
1672
|
*/
|
|
1673
1673
|
routines?: Routine[];
|
|
1674
1674
|
}
|
|
@@ -1683,6 +1683,8 @@ declare namespace gapi.client {
|
|
|
1683
1683
|
legacyLocationId?: string;
|
|
1684
1684
|
}
|
|
1685
1685
|
interface MaterializedViewDefinition {
|
|
1686
|
+
/** [Optional] Allow non incremental materialized view definition. The default value is "false". */
|
|
1687
|
+
allow_non_incremental_definition?: boolean;
|
|
1686
1688
|
/** [Optional] [TrustedTester] Enable automatic refresh of the materialized view when the base table is updated. The default value is "true". */
|
|
1687
1689
|
enableRefresh?: boolean;
|
|
1688
1690
|
/** [Output-only] [TrustedTester] The time when this materialized view was last modified, in milliseconds since the epoch. */
|
|
@@ -2093,7 +2095,7 @@ declare namespace gapi.client {
|
|
|
2093
2095
|
etag?: string;
|
|
2094
2096
|
/** Optional. If language = "JAVASCRIPT", this field stores the path of the imported JAVASCRIPT libraries. */
|
|
2095
2097
|
importedLibraries?: string[];
|
|
2096
|
-
/** Optional. Defaults to "SQL". */
|
|
2098
|
+
/** Optional. Defaults to "SQL" if remote_function_options field is absent, not set otherwise. */
|
|
2097
2099
|
language?: string;
|
|
2098
2100
|
/** Output only. The time when this routine was last modified, in milliseconds since the epoch. */
|
|
2099
2101
|
lastModifiedTime?: string;
|
|
@@ -2101,7 +2103,7 @@ declare namespace gapi.client {
|
|
|
2101
2103
|
remoteFunctionOptions?: RemoteFunctionOptions;
|
|
2102
2104
|
/**
|
|
2103
2105
|
* Optional. Can be set only if routine_type = "TABLE_VALUED_FUNCTION". If absent, the return table type is inferred from definition_body at query time in each query that references
|
|
2104
|
-
* this routine. If present, then the columns in the evaluated table result will be cast to match the column types
|
|
2106
|
+
* this routine. If present, then the columns in the evaluated table result will be cast to match the column types specified in return table type, at query time.
|
|
2105
2107
|
*/
|
|
2106
2108
|
returnTableType?: StandardSqlTableType;
|
|
2107
2109
|
/**
|
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: 20221203
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -2444,6 +2444,7 @@ gapi.load('client', async () => {
|
|
|
2444
2444
|
lastModifiedTime: "Test string",
|
|
2445
2445
|
location: "Test string",
|
|
2446
2446
|
materializedView: {
|
|
2447
|
+
allow_non_incremental_definition: true,
|
|
2447
2448
|
enableRefresh: true,
|
|
2448
2449
|
lastRefreshTime: "Test string",
|
|
2449
2450
|
maxStaleness: "Test string",
|
|
@@ -2709,6 +2710,7 @@ gapi.load('client', async () => {
|
|
|
2709
2710
|
lastModifiedTime: "Test string",
|
|
2710
2711
|
location: "Test string",
|
|
2711
2712
|
materializedView: {
|
|
2713
|
+
allow_non_incremental_definition: true,
|
|
2712
2714
|
enableRefresh: true,
|
|
2713
2715
|
lastRefreshTime: "Test string",
|
|
2714
2716
|
maxStaleness: "Test string",
|
|
@@ -3015,6 +3017,7 @@ gapi.load('client', async () => {
|
|
|
3015
3017
|
lastModifiedTime: "Test string",
|
|
3016
3018
|
location: "Test string",
|
|
3017
3019
|
materializedView: {
|
|
3020
|
+
allow_non_incremental_definition: true,
|
|
3018
3021
|
enableRefresh: true,
|
|
3019
3022
|
lastRefreshTime: "Test string",
|
|
3020
3023
|
maxStaleness: "Test string",
|