@looker/sdk 25.10.0 → 25.16.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 +8 -0
- package/lib/4.0/funcs.d.ts +4 -3
- package/lib/4.0/funcs.js +103 -89
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +4 -3
- package/lib/4.0/methods.js +71 -59
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +4 -3
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +44 -22
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +3 -2
- package/lib/4.0/streams.js +71 -59
- 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 +102 -88
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +71 -59
- 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 +71 -59
- 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
|
@@ -232,24 +232,6 @@ export interface ICIGitState {
|
|
|
232
232
|
commit_ref?: string | null;
|
|
233
233
|
target?: string | null;
|
|
234
234
|
}
|
|
235
|
-
export interface ICIRun {
|
|
236
|
-
run_id?: string;
|
|
237
|
-
created_at?: Date;
|
|
238
|
-
started_at?: Date | null;
|
|
239
|
-
finished_at?: Date | null;
|
|
240
|
-
status_url?: string | null;
|
|
241
|
-
status?: string;
|
|
242
|
-
git_service?: string | null;
|
|
243
|
-
git_state?: ICIGitState;
|
|
244
|
-
result?: ICIRunResult;
|
|
245
|
-
schedule?: ICIScheduleTrigger;
|
|
246
|
-
target_branch?: string | null;
|
|
247
|
-
title?: string;
|
|
248
|
-
trigger?: string;
|
|
249
|
-
change_request?: ICIChangeRequest;
|
|
250
|
-
suite_id?: string;
|
|
251
|
-
username?: string | null;
|
|
252
|
-
}
|
|
253
235
|
export interface ICIRunResult {
|
|
254
236
|
sql_result?: ISqlValidatorResult;
|
|
255
237
|
sql_error?: IGenericError;
|
|
@@ -321,6 +303,8 @@ export interface IContentFavorite {
|
|
|
321
303
|
look?: ILookBasic;
|
|
322
304
|
dashboard?: IDashboardBase;
|
|
323
305
|
board_id?: string | null;
|
|
306
|
+
lookml_dashboard_id?: string | null;
|
|
307
|
+
lookml_dashboard?: IDashboardBase;
|
|
324
308
|
}
|
|
325
309
|
export interface IContentMeta {
|
|
326
310
|
can?: IDictionary<boolean>;
|
|
@@ -330,6 +314,8 @@ export interface IContentMeta {
|
|
|
330
314
|
dashboard_id?: string | null;
|
|
331
315
|
look_id?: string | null;
|
|
332
316
|
folder_id?: string | null;
|
|
317
|
+
homepage_id?: string | null;
|
|
318
|
+
agent_id?: string | null;
|
|
333
319
|
content_type?: string | null;
|
|
334
320
|
inherits?: boolean;
|
|
335
321
|
inheriting_id?: string | null;
|
|
@@ -550,6 +536,7 @@ export interface ICreateCredentialsApi3 {
|
|
|
550
536
|
created_at?: string | null;
|
|
551
537
|
is_disabled?: boolean;
|
|
552
538
|
type?: string | null;
|
|
539
|
+
purpose?: string | null;
|
|
553
540
|
client_secret?: string | null;
|
|
554
541
|
url?: string | null;
|
|
555
542
|
}
|
|
@@ -609,6 +596,7 @@ export interface ICredentialsApi3 {
|
|
|
609
596
|
created_at?: string | null;
|
|
610
597
|
is_disabled?: boolean;
|
|
611
598
|
type?: string | null;
|
|
599
|
+
purpose?: string | null;
|
|
612
600
|
url?: string | null;
|
|
613
601
|
}
|
|
614
602
|
export interface ICredentialsEmail {
|
|
@@ -945,6 +933,7 @@ export interface IDBConnection {
|
|
|
945
933
|
uses_oauth?: boolean;
|
|
946
934
|
uses_key_pair_auth?: boolean;
|
|
947
935
|
uses_instance_oauth?: boolean;
|
|
936
|
+
uses_service_auth?: boolean;
|
|
948
937
|
certificate?: string | null;
|
|
949
938
|
file_type?: string | null;
|
|
950
939
|
database?: string | null;
|
|
@@ -1491,7 +1480,7 @@ export interface IJsonBiBigQueryMetadata {
|
|
|
1491
1480
|
}
|
|
1492
1481
|
export interface IJsonBiField {
|
|
1493
1482
|
sql: string | null;
|
|
1494
|
-
view: string;
|
|
1483
|
+
view: string | null;
|
|
1495
1484
|
dimension_group: string | null;
|
|
1496
1485
|
category: string;
|
|
1497
1486
|
field_group_label: string | null;
|
|
@@ -2276,9 +2265,6 @@ export interface IProject {
|
|
|
2276
2265
|
is_example?: boolean;
|
|
2277
2266
|
dependency_status?: string | null;
|
|
2278
2267
|
}
|
|
2279
|
-
export interface IProjectCIRun {
|
|
2280
|
-
run?: ICIRun;
|
|
2281
|
-
}
|
|
2282
2268
|
export interface IProjectError {
|
|
2283
2269
|
code?: string | null;
|
|
2284
2270
|
severity?: string | null;
|
|
@@ -2304,6 +2290,9 @@ export interface IProjectFile {
|
|
|
2304
2290
|
editable?: boolean;
|
|
2305
2291
|
git_status?: IGitStatus;
|
|
2306
2292
|
}
|
|
2293
|
+
export interface IProjectRun {
|
|
2294
|
+
run?: IRun;
|
|
2295
|
+
}
|
|
2307
2296
|
export interface IProjectValidation {
|
|
2308
2297
|
errors?: IProjectError[] | null;
|
|
2309
2298
|
project_digest?: string | null;
|
|
@@ -2800,6 +2789,7 @@ export interface IRequestSearchContentFavorites {
|
|
|
2800
2789
|
dashboard_id?: string | null;
|
|
2801
2790
|
look_id?: string | null;
|
|
2802
2791
|
board_id?: string | null;
|
|
2792
|
+
include_board_items?: boolean | null;
|
|
2803
2793
|
limit?: number | null;
|
|
2804
2794
|
offset?: number | null;
|
|
2805
2795
|
sorts?: string | null;
|
|
@@ -3046,6 +3036,7 @@ export interface IRequestSearchUsers {
|
|
|
3046
3036
|
filter_or?: boolean | null;
|
|
3047
3037
|
content_metadata_id?: string | null;
|
|
3048
3038
|
group_id?: string | null;
|
|
3039
|
+
can_manage_api3_creds?: boolean | null;
|
|
3049
3040
|
}
|
|
3050
3041
|
export interface IRequestSearchUsersNames {
|
|
3051
3042
|
pattern: string;
|
|
@@ -3154,6 +3145,24 @@ export interface IRoleSearch {
|
|
|
3154
3145
|
url?: string | null;
|
|
3155
3146
|
users_url?: string | null;
|
|
3156
3147
|
}
|
|
3148
|
+
export interface IRun {
|
|
3149
|
+
run_id?: string;
|
|
3150
|
+
created_at?: Date;
|
|
3151
|
+
started_at?: Date | null;
|
|
3152
|
+
finished_at?: Date | null;
|
|
3153
|
+
status_url?: string | null;
|
|
3154
|
+
status?: string;
|
|
3155
|
+
git_service?: string | null;
|
|
3156
|
+
git_state?: ICIGitState;
|
|
3157
|
+
result?: ICIRunResult;
|
|
3158
|
+
schedule?: ICIScheduleTrigger;
|
|
3159
|
+
target_branch?: string | null;
|
|
3160
|
+
title?: string;
|
|
3161
|
+
trigger?: string;
|
|
3162
|
+
change_request?: ICIChangeRequest;
|
|
3163
|
+
suite_id?: string;
|
|
3164
|
+
username?: string | null;
|
|
3165
|
+
}
|
|
3157
3166
|
export interface IRunningQueries {
|
|
3158
3167
|
can?: IDictionary<boolean>;
|
|
3159
3168
|
id?: string;
|
|
@@ -3675,6 +3684,7 @@ export interface IUser {
|
|
|
3675
3684
|
allow_roles_from_normal_groups?: boolean;
|
|
3676
3685
|
embed_group_folder_id?: string | null;
|
|
3677
3686
|
is_iam_admin?: boolean;
|
|
3687
|
+
can_manage_api3_creds?: boolean;
|
|
3678
3688
|
url?: string | null;
|
|
3679
3689
|
}
|
|
3680
3690
|
export interface IUserAttribute {
|
|
@@ -3869,6 +3879,7 @@ export interface IWriteContentFavorite {
|
|
|
3869
3879
|
content_metadata_id?: string;
|
|
3870
3880
|
look?: IWriteLookBasic | null;
|
|
3871
3881
|
dashboard?: IWriteDashboardBase | null;
|
|
3882
|
+
lookml_dashboard?: IWriteDashboardBase | null;
|
|
3872
3883
|
}
|
|
3873
3884
|
export interface IWriteContentMeta {
|
|
3874
3885
|
inherits?: boolean;
|
|
@@ -3896,6 +3907,9 @@ export interface IWriteCreateQueryTask {
|
|
|
3896
3907
|
look_id?: string | null;
|
|
3897
3908
|
dashboard_id?: string | null;
|
|
3898
3909
|
}
|
|
3910
|
+
export interface IWriteCredentialsApi3 {
|
|
3911
|
+
purpose?: string | null;
|
|
3912
|
+
}
|
|
3899
3913
|
export interface IWriteCredentialsEmail {
|
|
3900
3914
|
email?: string | null;
|
|
3901
3915
|
forced_password_reset_at_next_login?: boolean;
|
|
@@ -4295,7 +4309,14 @@ export interface IWriteRepositoryCredential {
|
|
|
4295
4309
|
ssh_public_key?: string | null;
|
|
4296
4310
|
}
|
|
4297
4311
|
export interface IWriteResultMakerWithIdVisConfigAndDynamicFields {
|
|
4312
|
+
dynamic_fields?: string | null;
|
|
4313
|
+
filterables?: IResultMakerFilterables[] | null;
|
|
4314
|
+
sorts?: string[] | null;
|
|
4315
|
+
merge_result_id?: string | null;
|
|
4316
|
+
total?: boolean;
|
|
4317
|
+
sql_query_id?: string | null;
|
|
4298
4318
|
query?: IWriteQuery | null;
|
|
4319
|
+
vis_config?: IDictionary<any> | null;
|
|
4299
4320
|
}
|
|
4300
4321
|
export interface IWriteRole {
|
|
4301
4322
|
name?: string | null;
|
|
@@ -4422,6 +4443,7 @@ export interface IWriteUser {
|
|
|
4422
4443
|
locale?: string | null;
|
|
4423
4444
|
models_dir_validated?: boolean | null;
|
|
4424
4445
|
ui_state?: IDictionary<string> | null;
|
|
4446
|
+
can_manage_api3_creds?: boolean;
|
|
4425
4447
|
}
|
|
4426
4448
|
export interface IWriteUserAttribute {
|
|
4427
4449
|
name: string | null;
|