@looker/sdk 25.0.1 → 25.4.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 +21 -0
- package/lib/4.0/funcs.d.ts +2 -1
- package/lib/4.0/funcs.js +349 -327
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -1
- package/lib/4.0/methods.js +238 -218
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +67 -3
- package/lib/4.0/models.js +1 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -1
- package/lib/4.0/streams.js +238 -218
- 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 +347 -325
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +238 -218
- 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 +238 -218
- 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 +3 -3
package/lib/4.0/models.d.ts
CHANGED
|
@@ -820,6 +820,8 @@ export interface IDBConnection {
|
|
|
820
820
|
dialect?: IDialect;
|
|
821
821
|
snippets?: ISnippet[];
|
|
822
822
|
pdts_enabled?: boolean;
|
|
823
|
+
named_driver_version_requested?: string | null;
|
|
824
|
+
named_driver_version_actual?: string | null;
|
|
823
825
|
host?: string | null;
|
|
824
826
|
port?: string | null;
|
|
825
827
|
username?: string | null;
|
|
@@ -873,6 +875,7 @@ export interface IDBConnection {
|
|
|
873
875
|
bq_storage_project_id?: string | null;
|
|
874
876
|
bq_roles_verified?: boolean | null;
|
|
875
877
|
p4sa_name?: string | null;
|
|
878
|
+
query_holding_disabled?: boolean;
|
|
876
879
|
}
|
|
877
880
|
export interface IDBConnectionBase {
|
|
878
881
|
can?: IDictionary<boolean>;
|
|
@@ -884,16 +887,26 @@ export interface IDBConnectionBase {
|
|
|
884
887
|
export interface IDBConnectionOverride {
|
|
885
888
|
context?: string;
|
|
886
889
|
host?: string | null;
|
|
890
|
+
pdt_host?: string | null;
|
|
887
891
|
port?: string | null;
|
|
892
|
+
pdt_port?: string | null;
|
|
888
893
|
username?: string | null;
|
|
894
|
+
pdt_username?: string | null;
|
|
889
895
|
password?: string | null;
|
|
896
|
+
pdt_password?: string | null;
|
|
890
897
|
has_password?: boolean;
|
|
891
898
|
certificate?: string | null;
|
|
899
|
+
pdt_certificate?: string | null;
|
|
892
900
|
file_type?: string | null;
|
|
901
|
+
pdt_file_type?: string | null;
|
|
893
902
|
database?: string | null;
|
|
903
|
+
pdt_database?: string | null;
|
|
894
904
|
schema?: string | null;
|
|
905
|
+
pdt_schema?: string | null;
|
|
895
906
|
jdbc_additional_params?: string | null;
|
|
907
|
+
pdt_jdbc_additional_params?: string | null;
|
|
896
908
|
after_connect_statements?: string | null;
|
|
909
|
+
pdt_after_connect_statements?: string | null;
|
|
897
910
|
}
|
|
898
911
|
export interface IDBConnectionTestResult {
|
|
899
912
|
can?: IDictionary<boolean>;
|
|
@@ -950,6 +963,8 @@ export interface IDialectInfo {
|
|
|
950
963
|
label_for_database_equivalent?: string | null;
|
|
951
964
|
label_for_schema_equivalent?: string | null;
|
|
952
965
|
name?: string | null;
|
|
966
|
+
supported_driver_name?: string | null;
|
|
967
|
+
supported_driver_versions?: string[] | null;
|
|
953
968
|
supported_options?: IDialectInfoOptions;
|
|
954
969
|
}
|
|
955
970
|
export interface IDialectInfoOptions {
|
|
@@ -2208,6 +2223,26 @@ export interface IRenderTask {
|
|
|
2208
2223
|
user_id?: string | null;
|
|
2209
2224
|
width?: number | null;
|
|
2210
2225
|
}
|
|
2226
|
+
export interface IReport {
|
|
2227
|
+
can?: IDictionary<boolean>;
|
|
2228
|
+
id?: string;
|
|
2229
|
+
title?: string | null;
|
|
2230
|
+
user_id?: string | null;
|
|
2231
|
+
created_at?: Date | null;
|
|
2232
|
+
updated_at?: Date | null;
|
|
2233
|
+
last_viewed_at?: Date | null;
|
|
2234
|
+
favorite?: boolean;
|
|
2235
|
+
favorite_count?: number | null;
|
|
2236
|
+
view_count?: number | null;
|
|
2237
|
+
folder?: IFolderBase;
|
|
2238
|
+
folder_id?: string | null;
|
|
2239
|
+
url?: string | null;
|
|
2240
|
+
user_name?: string | null;
|
|
2241
|
+
deleted_at?: Date | null;
|
|
2242
|
+
last_accessed_at?: Date | null;
|
|
2243
|
+
deleter_user_id?: string | null;
|
|
2244
|
+
deleter_user_name?: string | null;
|
|
2245
|
+
}
|
|
2211
2246
|
export interface IRepositoryCredential {
|
|
2212
2247
|
can?: IDictionary<boolean>;
|
|
2213
2248
|
id?: string;
|
|
@@ -2300,6 +2335,7 @@ export interface IRequestArtifact {
|
|
|
2300
2335
|
fields?: string | null;
|
|
2301
2336
|
limit?: number | null;
|
|
2302
2337
|
offset?: number | null;
|
|
2338
|
+
tally?: boolean | null;
|
|
2303
2339
|
}
|
|
2304
2340
|
export interface IRequestArtifactNamespaces {
|
|
2305
2341
|
fields?: string | null;
|
|
@@ -2467,6 +2503,7 @@ export interface IRequestRunInlineQuery {
|
|
|
2467
2503
|
path_prefix?: string | null;
|
|
2468
2504
|
rebuild_pdts?: boolean | null;
|
|
2469
2505
|
server_table_calcs?: boolean | null;
|
|
2506
|
+
enable_oauth_error_response?: boolean | null;
|
|
2470
2507
|
}
|
|
2471
2508
|
export interface IRequestRunLook {
|
|
2472
2509
|
look_id: string;
|
|
@@ -2506,6 +2543,7 @@ export interface IRequestRunQuery {
|
|
|
2506
2543
|
rebuild_pdts?: boolean | null;
|
|
2507
2544
|
server_table_calcs?: boolean | null;
|
|
2508
2545
|
source?: string | null;
|
|
2546
|
+
enable_oauth_error_response?: boolean | null;
|
|
2509
2547
|
}
|
|
2510
2548
|
export interface IRequestScheduledPlansForDashboard {
|
|
2511
2549
|
dashboard_id: string;
|
|
@@ -2546,6 +2584,7 @@ export interface IRequestSearchArtifacts {
|
|
|
2546
2584
|
max_size?: number | null;
|
|
2547
2585
|
limit?: number | null;
|
|
2548
2586
|
offset?: number | null;
|
|
2587
|
+
tally?: boolean | null;
|
|
2549
2588
|
}
|
|
2550
2589
|
export interface IRequestSearchBoards {
|
|
2551
2590
|
title?: string | null;
|
|
@@ -2734,6 +2773,17 @@ export interface IRequestSearchPermissionSets {
|
|
|
2734
2773
|
built_in?: boolean | null;
|
|
2735
2774
|
filter_or?: boolean | null;
|
|
2736
2775
|
}
|
|
2776
|
+
export interface IRequestSearchReports {
|
|
2777
|
+
folder_id?: string | null;
|
|
2778
|
+
favorite?: boolean | null;
|
|
2779
|
+
recent?: boolean | null;
|
|
2780
|
+
id?: string | null;
|
|
2781
|
+
title?: string | null;
|
|
2782
|
+
sorts?: string | null;
|
|
2783
|
+
limit?: number | null;
|
|
2784
|
+
fields?: string | null;
|
|
2785
|
+
next_page_token?: string | null;
|
|
2786
|
+
}
|
|
2737
2787
|
export interface IRequestSearchRoles {
|
|
2738
2788
|
fields?: string | null;
|
|
2739
2789
|
limit?: number | null;
|
|
@@ -2869,7 +2919,8 @@ export declare enum ResultFormat {
|
|
|
2869
2919
|
txt = "txt",
|
|
2870
2920
|
xlsx = "xlsx",
|
|
2871
2921
|
gsxml = "gsxml",
|
|
2872
|
-
sql = "sql"
|
|
2922
|
+
sql = "sql",
|
|
2923
|
+
odc = "odc"
|
|
2873
2924
|
}
|
|
2874
2925
|
export interface IResultMakerFilterables {
|
|
2875
2926
|
model?: string | null;
|
|
@@ -3151,7 +3202,7 @@ export interface ISetting {
|
|
|
3151
3202
|
login_notification_text?: string | null;
|
|
3152
3203
|
dashboard_auto_refresh_restriction?: boolean;
|
|
3153
3204
|
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
3154
|
-
managed_certificate_uri?: string | null;
|
|
3205
|
+
managed_certificate_uri?: string[] | null;
|
|
3155
3206
|
}
|
|
3156
3207
|
export interface ISmtpNodeStatus {
|
|
3157
3208
|
is_valid?: boolean;
|
|
@@ -3404,6 +3455,7 @@ export interface IUser {
|
|
|
3404
3455
|
allow_normal_group_membership?: boolean;
|
|
3405
3456
|
allow_roles_from_normal_groups?: boolean;
|
|
3406
3457
|
embed_group_folder_id?: string | null;
|
|
3458
|
+
is_iam_admin?: boolean;
|
|
3407
3459
|
url?: string | null;
|
|
3408
3460
|
}
|
|
3409
3461
|
export interface IUserAttribute {
|
|
@@ -3720,6 +3772,7 @@ export interface IWriteDatagroup {
|
|
|
3720
3772
|
}
|
|
3721
3773
|
export interface IWriteDBConnection {
|
|
3722
3774
|
name?: string;
|
|
3775
|
+
named_driver_version_requested?: string | null;
|
|
3723
3776
|
host?: string | null;
|
|
3724
3777
|
port?: string | null;
|
|
3725
3778
|
username?: string | null;
|
|
@@ -3762,19 +3815,30 @@ export interface IWriteDBConnection {
|
|
|
3762
3815
|
connection_pooling?: boolean;
|
|
3763
3816
|
bq_storage_project_id?: string | null;
|
|
3764
3817
|
bq_roles_verified?: boolean | null;
|
|
3818
|
+
query_holding_disabled?: boolean;
|
|
3765
3819
|
}
|
|
3766
3820
|
export interface IWriteDBConnectionOverride {
|
|
3767
3821
|
context?: string;
|
|
3768
3822
|
host?: string | null;
|
|
3823
|
+
pdt_host?: string | null;
|
|
3769
3824
|
port?: string | null;
|
|
3825
|
+
pdt_port?: string | null;
|
|
3770
3826
|
username?: string | null;
|
|
3827
|
+
pdt_username?: string | null;
|
|
3771
3828
|
password?: string | null;
|
|
3829
|
+
pdt_password?: string | null;
|
|
3772
3830
|
certificate?: string | null;
|
|
3831
|
+
pdt_certificate?: string | null;
|
|
3773
3832
|
file_type?: string | null;
|
|
3833
|
+
pdt_file_type?: string | null;
|
|
3774
3834
|
database?: string | null;
|
|
3835
|
+
pdt_database?: string | null;
|
|
3775
3836
|
schema?: string | null;
|
|
3837
|
+
pdt_schema?: string | null;
|
|
3776
3838
|
jdbc_additional_params?: string | null;
|
|
3839
|
+
pdt_jdbc_additional_params?: string | null;
|
|
3777
3840
|
after_connect_statements?: string | null;
|
|
3841
|
+
pdt_after_connect_statements?: string | null;
|
|
3778
3842
|
}
|
|
3779
3843
|
export interface IWriteEmbedConfig {
|
|
3780
3844
|
domain_allowlist?: string[] | null;
|
|
@@ -4105,7 +4169,7 @@ export interface IWriteSetting {
|
|
|
4105
4169
|
embed_config?: IWriteEmbedConfig | null;
|
|
4106
4170
|
dashboard_auto_refresh_restriction?: boolean;
|
|
4107
4171
|
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
4108
|
-
managed_certificate_uri?: string | null;
|
|
4172
|
+
managed_certificate_uri?: string[] | null;
|
|
4109
4173
|
}
|
|
4110
4174
|
export interface IWriteSqlInterfaceQueryCreate {
|
|
4111
4175
|
sql: string | null;
|
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) {
|