@looker/sdk 25.0.0 → 25.2.0
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/CHANGELOG.md +14 -0
- package/lib/4.0/funcs.js +4 -2
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.js +4 -2
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +8 -1
- package/lib/4.0/models.js +1 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.js +4 -2
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +4 -2
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +4 -2
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +1 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +4 -2
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/lib/4.0/models.d.ts
CHANGED
|
@@ -820,6 +820,7 @@ export interface IDBConnection {
|
|
|
820
820
|
dialect?: IDialect;
|
|
821
821
|
snippets?: ISnippet[];
|
|
822
822
|
pdts_enabled?: boolean;
|
|
823
|
+
named_driver_version?: string | null;
|
|
823
824
|
host?: string | null;
|
|
824
825
|
port?: string | null;
|
|
825
826
|
username?: string | null;
|
|
@@ -873,6 +874,7 @@ export interface IDBConnection {
|
|
|
873
874
|
bq_storage_project_id?: string | null;
|
|
874
875
|
bq_roles_verified?: boolean | null;
|
|
875
876
|
p4sa_name?: string | null;
|
|
877
|
+
query_holding_disabled?: boolean;
|
|
876
878
|
}
|
|
877
879
|
export interface IDBConnectionBase {
|
|
878
880
|
can?: IDictionary<boolean>;
|
|
@@ -2467,6 +2469,7 @@ export interface IRequestRunInlineQuery {
|
|
|
2467
2469
|
path_prefix?: string | null;
|
|
2468
2470
|
rebuild_pdts?: boolean | null;
|
|
2469
2471
|
server_table_calcs?: boolean | null;
|
|
2472
|
+
enable_oauth_error_response?: boolean | null;
|
|
2470
2473
|
}
|
|
2471
2474
|
export interface IRequestRunLook {
|
|
2472
2475
|
look_id: string;
|
|
@@ -2506,6 +2509,7 @@ export interface IRequestRunQuery {
|
|
|
2506
2509
|
rebuild_pdts?: boolean | null;
|
|
2507
2510
|
server_table_calcs?: boolean | null;
|
|
2508
2511
|
source?: string | null;
|
|
2512
|
+
enable_oauth_error_response?: boolean | null;
|
|
2509
2513
|
}
|
|
2510
2514
|
export interface IRequestScheduledPlansForDashboard {
|
|
2511
2515
|
dashboard_id: string;
|
|
@@ -2869,7 +2873,8 @@ export declare enum ResultFormat {
|
|
|
2869
2873
|
txt = "txt",
|
|
2870
2874
|
xlsx = "xlsx",
|
|
2871
2875
|
gsxml = "gsxml",
|
|
2872
|
-
sql = "sql"
|
|
2876
|
+
sql = "sql",
|
|
2877
|
+
odc = "odc"
|
|
2873
2878
|
}
|
|
2874
2879
|
export interface IResultMakerFilterables {
|
|
2875
2880
|
model?: string | null;
|
|
@@ -3720,6 +3725,7 @@ export interface IWriteDatagroup {
|
|
|
3720
3725
|
}
|
|
3721
3726
|
export interface IWriteDBConnection {
|
|
3722
3727
|
name?: string;
|
|
3728
|
+
named_driver_version?: string | null;
|
|
3723
3729
|
host?: string | null;
|
|
3724
3730
|
port?: string | null;
|
|
3725
3731
|
username?: string | null;
|
|
@@ -3762,6 +3768,7 @@ export interface IWriteDBConnection {
|
|
|
3762
3768
|
connection_pooling?: boolean;
|
|
3763
3769
|
bq_storage_project_id?: string | null;
|
|
3764
3770
|
bq_roles_verified?: boolean | null;
|
|
3771
|
+
query_holding_disabled?: boolean;
|
|
3765
3772
|
}
|
|
3766
3773
|
export interface IWriteDBConnectionOverride {
|
|
3767
3774
|
context?: string;
|
package/lib/4.0/models.js
CHANGED
|
@@ -96,6 +96,7 @@ var ResultFormat = exports.ResultFormat = function (ResultFormat) {
|
|
|
96
96
|
ResultFormat["xlsx"] = "xlsx";
|
|
97
97
|
ResultFormat["gsxml"] = "gsxml";
|
|
98
98
|
ResultFormat["sql"] = "sql";
|
|
99
|
+
ResultFormat["odc"] = "odc";
|
|
99
100
|
return ResultFormat;
|
|
100
101
|
}({});
|
|
101
102
|
var SecretType = exports.SecretType = function (SecretType) {
|