@looker/sdk 25.20.0 → 26.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.d.ts +8 -2
- package/lib/4.0/funcs.js +989 -933
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +8 -2
- package/lib/4.0/methods.js +665 -621
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +8 -2
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +51 -2
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +8 -2
- package/lib/4.0/streams.js +665 -621
- 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 +985 -929
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +665 -621
- 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.map +1 -1
- package/lib/esm/4.0/streams.js +665 -621
- 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
|
@@ -222,10 +222,11 @@ export declare enum Category {
|
|
|
222
222
|
dimension = "dimension"
|
|
223
223
|
}
|
|
224
224
|
export interface ICertification {
|
|
225
|
-
certification_status?: CertificationStatus;
|
|
225
|
+
certification_status?: CertificationStatus | null;
|
|
226
|
+
ui_status?: string | null;
|
|
226
227
|
user_name?: string | null;
|
|
227
228
|
notes?: string | null;
|
|
228
|
-
updated_at?: Date;
|
|
229
|
+
updated_at?: Date | null;
|
|
229
230
|
}
|
|
230
231
|
export declare enum CertificationStatus {
|
|
231
232
|
certified = "certified",
|
|
@@ -340,6 +341,9 @@ export interface IContentSearch {
|
|
|
340
341
|
view_count?: number | null;
|
|
341
342
|
preferred_viewer?: string | null;
|
|
342
343
|
model?: string | null;
|
|
344
|
+
created_by_id?: number | null;
|
|
345
|
+
certification_status?: string | null;
|
|
346
|
+
parent_folder_name?: string | null;
|
|
343
347
|
}
|
|
344
348
|
export interface IContentSummary {
|
|
345
349
|
can?: IDictionary<boolean>;
|
|
@@ -761,6 +765,8 @@ export interface IDashboard {
|
|
|
761
765
|
title_color?: string | null;
|
|
762
766
|
view_count?: number | null;
|
|
763
767
|
appearance?: IDashboardAppearance;
|
|
768
|
+
usage_count?: number | null;
|
|
769
|
+
is_owner_disabled?: boolean;
|
|
764
770
|
url?: string | null;
|
|
765
771
|
}
|
|
766
772
|
export interface IDashboardAggregateTableLookml {
|
|
@@ -828,6 +834,7 @@ export interface IDashboardElement {
|
|
|
828
834
|
subtitle_text_as_html?: string | null;
|
|
829
835
|
extension_id?: string | null;
|
|
830
836
|
aria_description?: string | null;
|
|
837
|
+
certification_metadata?: ICertification;
|
|
831
838
|
}
|
|
832
839
|
export interface IDashboardFilter {
|
|
833
840
|
can?: IDictionary<boolean>;
|
|
@@ -875,6 +882,10 @@ export interface IDashboardLayoutComponent {
|
|
|
875
882
|
element_title?: string | null;
|
|
876
883
|
element_title_hidden?: boolean;
|
|
877
884
|
vis_type?: string | null;
|
|
885
|
+
granular_row?: number | null;
|
|
886
|
+
granular_column?: number | null;
|
|
887
|
+
granular_width?: number | null;
|
|
888
|
+
granular_height?: number | null;
|
|
878
889
|
}
|
|
879
890
|
export interface IDashboardLookml {
|
|
880
891
|
dashboard_id?: string | null;
|
|
@@ -939,6 +950,7 @@ export interface IDBConnection {
|
|
|
939
950
|
port?: string | null;
|
|
940
951
|
username?: string | null;
|
|
941
952
|
password?: string | null;
|
|
953
|
+
has_password?: boolean;
|
|
942
954
|
uses_oauth?: boolean;
|
|
943
955
|
uses_key_pair_auth?: boolean;
|
|
944
956
|
uses_instance_oauth?: boolean;
|
|
@@ -1097,6 +1109,7 @@ export interface IDialectInfoOptions {
|
|
|
1097
1109
|
disable_context_comment?: boolean;
|
|
1098
1110
|
host?: boolean;
|
|
1099
1111
|
instance_name?: boolean;
|
|
1112
|
+
key_pair_authentication?: boolean;
|
|
1100
1113
|
max_billing_gigabytes?: boolean;
|
|
1101
1114
|
oauth_credentials?: boolean;
|
|
1102
1115
|
pdts_for_oauth?: boolean;
|
|
@@ -1697,6 +1710,8 @@ export interface ILook {
|
|
|
1697
1710
|
updated_at?: Date | null;
|
|
1698
1711
|
user_name?: string | null;
|
|
1699
1712
|
view_count?: number | null;
|
|
1713
|
+
usage_count?: number | null;
|
|
1714
|
+
is_owner_disabled?: boolean;
|
|
1700
1715
|
}
|
|
1701
1716
|
export interface ILookBasic {
|
|
1702
1717
|
can?: IDictionary<boolean>;
|
|
@@ -2000,6 +2015,8 @@ export interface ILookWithDashboards {
|
|
|
2000
2015
|
updated_at?: Date | null;
|
|
2001
2016
|
user_name?: string | null;
|
|
2002
2017
|
view_count?: number | null;
|
|
2018
|
+
usage_count?: number | null;
|
|
2019
|
+
is_owner_disabled?: boolean;
|
|
2003
2020
|
dashboards?: IDashboardBase[] | null;
|
|
2004
2021
|
}
|
|
2005
2022
|
export interface ILookWithQuery {
|
|
@@ -2035,6 +2052,8 @@ export interface ILookWithQuery {
|
|
|
2035
2052
|
updated_at?: Date | null;
|
|
2036
2053
|
user_name?: string | null;
|
|
2037
2054
|
view_count?: number | null;
|
|
2055
|
+
usage_count?: number | null;
|
|
2056
|
+
is_owner_disabled?: boolean;
|
|
2038
2057
|
query?: IQuery;
|
|
2039
2058
|
url?: string | null;
|
|
2040
2059
|
}
|
|
@@ -2067,6 +2086,7 @@ export interface IMergeQuery {
|
|
|
2067
2086
|
sorts?: string[] | null;
|
|
2068
2087
|
source_queries?: IMergeQuerySourceQuery[] | null;
|
|
2069
2088
|
total?: boolean;
|
|
2089
|
+
limit?: string | null;
|
|
2070
2090
|
vis_config?: IDictionary<string> | null;
|
|
2071
2091
|
}
|
|
2072
2092
|
export interface IMergeQuerySourceQuery {
|
|
@@ -2216,6 +2236,9 @@ export interface IPasswordConfig {
|
|
|
2216
2236
|
require_numeric?: boolean;
|
|
2217
2237
|
require_upperlower?: boolean;
|
|
2218
2238
|
require_special?: boolean;
|
|
2239
|
+
expiration_enabled?: boolean;
|
|
2240
|
+
expiration_duration_days?: number | null;
|
|
2241
|
+
policy_enabled_at?: Date | null;
|
|
2219
2242
|
}
|
|
2220
2243
|
export declare enum Period {
|
|
2221
2244
|
year = "year",
|
|
@@ -2267,6 +2290,7 @@ export interface IProject {
|
|
|
2267
2290
|
id?: string;
|
|
2268
2291
|
name?: string;
|
|
2269
2292
|
uses_git?: boolean;
|
|
2293
|
+
is_git_dev_locked?: boolean;
|
|
2270
2294
|
git_remote_url?: string | null;
|
|
2271
2295
|
git_username?: string | null;
|
|
2272
2296
|
git_password?: string | null;
|
|
@@ -2284,6 +2308,7 @@ export interface IProject {
|
|
|
2284
2308
|
git_release_mgmt_enabled?: boolean;
|
|
2285
2309
|
allow_warnings?: boolean;
|
|
2286
2310
|
is_example?: boolean;
|
|
2311
|
+
has_production_counterpart?: boolean;
|
|
2287
2312
|
dependency_status?: string | null;
|
|
2288
2313
|
}
|
|
2289
2314
|
export interface IProjectError {
|
|
@@ -2812,6 +2837,7 @@ export interface IRequestSearchContentFavorites {
|
|
|
2812
2837
|
dashboard_id?: string | null;
|
|
2813
2838
|
look_id?: string | null;
|
|
2814
2839
|
board_id?: string | null;
|
|
2840
|
+
lookml_dashboard_id?: string | null;
|
|
2815
2841
|
include_board_items?: boolean | null;
|
|
2816
2842
|
limit?: number | null;
|
|
2817
2843
|
offset?: number | null;
|
|
@@ -3060,6 +3086,7 @@ export interface IRequestSearchUsers {
|
|
|
3060
3086
|
id?: string | null;
|
|
3061
3087
|
first_name?: string | null;
|
|
3062
3088
|
last_name?: string | null;
|
|
3089
|
+
full_name?: string | null;
|
|
3063
3090
|
verified_looker_employee?: boolean | null;
|
|
3064
3091
|
embed_user?: boolean | null;
|
|
3065
3092
|
email?: string | null;
|
|
@@ -3162,6 +3189,7 @@ export interface IRole {
|
|
|
3162
3189
|
permission_set_id?: string | null;
|
|
3163
3190
|
model_set?: IModelSet;
|
|
3164
3191
|
model_set_id?: string | null;
|
|
3192
|
+
internal?: boolean;
|
|
3165
3193
|
url?: string | null;
|
|
3166
3194
|
users_url?: string | null;
|
|
3167
3195
|
}
|
|
@@ -3173,6 +3201,7 @@ export interface IRoleSearch {
|
|
|
3173
3201
|
permission_set_id?: string | null;
|
|
3174
3202
|
model_set?: IModelSet;
|
|
3175
3203
|
model_set_id?: string | null;
|
|
3204
|
+
internal?: boolean;
|
|
3176
3205
|
user_count?: number | null;
|
|
3177
3206
|
url?: string | null;
|
|
3178
3207
|
users_url?: string | null;
|
|
@@ -3234,6 +3263,8 @@ export interface ISamlConfig {
|
|
|
3234
3263
|
can?: IDictionary<boolean>;
|
|
3235
3264
|
enabled?: boolean;
|
|
3236
3265
|
idp_cert?: string | null;
|
|
3266
|
+
idp_cert_multi?: ISamlIdpCertMulti;
|
|
3267
|
+
multi_certs_supported?: boolean | null;
|
|
3237
3268
|
idp_url?: string | null;
|
|
3238
3269
|
idp_issuer?: string | null;
|
|
3239
3270
|
idp_audience?: string | null;
|
|
@@ -3281,11 +3312,15 @@ export interface ISamlGroupWrite {
|
|
|
3281
3312
|
role_ids?: string[] | null;
|
|
3282
3313
|
url?: string | null;
|
|
3283
3314
|
}
|
|
3315
|
+
export interface ISamlIdpCertMulti {
|
|
3316
|
+
signing?: string[] | null;
|
|
3317
|
+
}
|
|
3284
3318
|
export interface ISamlMetadataParseResult {
|
|
3285
3319
|
can?: IDictionary<boolean>;
|
|
3286
3320
|
idp_issuer?: string | null;
|
|
3287
3321
|
idp_url?: string | null;
|
|
3288
3322
|
idp_cert?: string | null;
|
|
3323
|
+
idp_cert_multi?: ISamlIdpCertMulti;
|
|
3289
3324
|
}
|
|
3290
3325
|
export interface ISamlUserAttributeRead {
|
|
3291
3326
|
name?: string | null;
|
|
@@ -3454,6 +3489,8 @@ export interface ISetting {
|
|
|
3454
3489
|
dashboard_auto_refresh_restriction?: boolean;
|
|
3455
3490
|
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
3456
3491
|
managed_certificate_uri?: string[] | null;
|
|
3492
|
+
content_certification_documentation_link?: string | null;
|
|
3493
|
+
revoke_certification_on_edits?: boolean;
|
|
3457
3494
|
}
|
|
3458
3495
|
export interface ISmtpNodeStatus {
|
|
3459
3496
|
is_valid?: boolean;
|
|
@@ -4035,6 +4072,7 @@ export interface IWriteDashboardElement {
|
|
|
4035
4072
|
rich_content_json?: string | null;
|
|
4036
4073
|
extension_id?: string | null;
|
|
4037
4074
|
aria_description?: string | null;
|
|
4075
|
+
certification_metadata?: IWriteCertification | null;
|
|
4038
4076
|
}
|
|
4039
4077
|
export interface IWriteDashboardFilter {
|
|
4040
4078
|
name?: string | null;
|
|
@@ -4067,6 +4105,10 @@ export interface IWriteDashboardLayoutComponent {
|
|
|
4067
4105
|
column?: number | null;
|
|
4068
4106
|
width?: number | null;
|
|
4069
4107
|
height?: number | null;
|
|
4108
|
+
granular_row?: number | null;
|
|
4109
|
+
granular_column?: number | null;
|
|
4110
|
+
granular_width?: number | null;
|
|
4111
|
+
granular_height?: number | null;
|
|
4070
4112
|
}
|
|
4071
4113
|
export interface IWriteDashboardLookml {
|
|
4072
4114
|
folder_id?: string | null;
|
|
@@ -4270,6 +4312,7 @@ export interface IWriteMergeQuery {
|
|
|
4270
4312
|
sorts?: string[] | null;
|
|
4271
4313
|
source_queries?: IMergeQuerySourceQuery[] | null;
|
|
4272
4314
|
total?: boolean;
|
|
4315
|
+
limit?: string | null;
|
|
4273
4316
|
vis_config?: IDictionary<string> | null;
|
|
4274
4317
|
}
|
|
4275
4318
|
export interface IWriteMobileToken {
|
|
@@ -4318,6 +4361,8 @@ export interface IWritePasswordConfig {
|
|
|
4318
4361
|
require_numeric?: boolean;
|
|
4319
4362
|
require_upperlower?: boolean;
|
|
4320
4363
|
require_special?: boolean;
|
|
4364
|
+
expiration_enabled?: boolean;
|
|
4365
|
+
expiration_duration_days?: number | null;
|
|
4321
4366
|
}
|
|
4322
4367
|
export interface IWritePermissionSet {
|
|
4323
4368
|
name?: string | null;
|
|
@@ -4404,6 +4449,8 @@ export interface IWriteRole {
|
|
|
4404
4449
|
export interface IWriteSamlConfig {
|
|
4405
4450
|
enabled?: boolean;
|
|
4406
4451
|
idp_cert?: string | null;
|
|
4452
|
+
idp_cert_multi?: ISamlIdpCertMulti | null;
|
|
4453
|
+
multi_certs_supported?: boolean | null;
|
|
4407
4454
|
idp_url?: string | null;
|
|
4408
4455
|
idp_issuer?: string | null;
|
|
4409
4456
|
idp_audience?: string | null;
|
|
@@ -4491,6 +4538,8 @@ export interface IWriteSetting {
|
|
|
4491
4538
|
dashboard_auto_refresh_restriction?: boolean;
|
|
4492
4539
|
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
4493
4540
|
managed_certificate_uri?: string[] | null;
|
|
4541
|
+
content_certification_documentation_link?: string | null;
|
|
4542
|
+
revoke_certification_on_edits?: boolean;
|
|
4494
4543
|
}
|
|
4495
4544
|
export interface IWriteSqlInterfaceQueryCreate {
|
|
4496
4545
|
sql: string | null;
|