@looker/sdk 22.2.0 → 22.6.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 +31 -1
- package/lib/3.1/funcs.d.ts +5 -5
- package/lib/3.1/funcs.js +258 -261
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +5 -5
- package/lib/3.1/methods.js +4 -7
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +5 -5
- package/lib/3.1/models.d.ts +55 -49
- package/lib/3.1/models.js +1 -0
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +5 -5
- package/lib/3.1/streams.js +4 -7
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +106 -109
- package/lib/4.0/funcs.js +1353 -1265
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +106 -109
- package/lib/4.0/methods.js +943 -843
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +106 -109
- package/lib/4.0/models.d.ts +306 -261
- package/lib/4.0/models.js +2 -9
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +106 -109
- package/lib/4.0/streams.js +943 -843
- 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/3.1/funcs.js +258 -261
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +4 -7
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/models.js +1 -0
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +4 -7
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1344 -1247
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +943 -843
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js +1 -7
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +943 -843
- 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
|
@@ -10,13 +10,13 @@ export interface IAlert {
|
|
|
10
10
|
comparison_type: ComparisonType;
|
|
11
11
|
cron: string;
|
|
12
12
|
custom_title?: string | null;
|
|
13
|
-
dashboard_element_id?:
|
|
13
|
+
dashboard_element_id?: string | null;
|
|
14
14
|
description?: string | null;
|
|
15
15
|
destinations: IAlertDestination[] | null;
|
|
16
16
|
field: IAlertField;
|
|
17
17
|
followed?: boolean;
|
|
18
18
|
followable?: boolean;
|
|
19
|
-
id?:
|
|
19
|
+
id?: string;
|
|
20
20
|
is_disabled?: boolean;
|
|
21
21
|
disabled_reason?: string | null;
|
|
22
22
|
is_public?: boolean;
|
|
@@ -25,7 +25,7 @@ export interface IAlert {
|
|
|
25
25
|
investigative_content_title?: string | null;
|
|
26
26
|
lookml_dashboard_id?: string | null;
|
|
27
27
|
lookml_link_id?: string | null;
|
|
28
|
-
owner_id:
|
|
28
|
+
owner_id: string;
|
|
29
29
|
owner_display_name?: string | null;
|
|
30
30
|
threshold: number;
|
|
31
31
|
time_series_condition_state?: IAlertConditionState;
|
|
@@ -56,8 +56,17 @@ export interface IAlertFieldFilter {
|
|
|
56
56
|
field_value: any;
|
|
57
57
|
filter_value?: string | null;
|
|
58
58
|
}
|
|
59
|
+
export interface IAlertNotifications {
|
|
60
|
+
notification_id?: string;
|
|
61
|
+
alert_condition_id?: string;
|
|
62
|
+
user_id?: string;
|
|
63
|
+
is_read?: boolean;
|
|
64
|
+
field_value?: number | null;
|
|
65
|
+
threshold_value?: number | null;
|
|
66
|
+
ran_at?: string;
|
|
67
|
+
}
|
|
59
68
|
export interface IAlertPatch {
|
|
60
|
-
owner_id?:
|
|
69
|
+
owner_id?: string | null;
|
|
61
70
|
is_disabled?: boolean | null;
|
|
62
71
|
disabled_reason?: string | null;
|
|
63
72
|
is_public?: boolean | null;
|
|
@@ -70,7 +79,7 @@ export declare enum Align {
|
|
|
70
79
|
export interface IApiSession {
|
|
71
80
|
can?: IDictionary<boolean>;
|
|
72
81
|
workspace_id?: string | null;
|
|
73
|
-
sudo_user_id?:
|
|
82
|
+
sudo_user_id?: string | null;
|
|
74
83
|
}
|
|
75
84
|
export interface IApiVersion {
|
|
76
85
|
looker_release_version?: string;
|
|
@@ -96,32 +105,32 @@ export interface IBackupConfiguration {
|
|
|
96
105
|
}
|
|
97
106
|
export interface IBoard {
|
|
98
107
|
can?: IDictionary<boolean>;
|
|
99
|
-
content_metadata_id?:
|
|
108
|
+
content_metadata_id?: string | null;
|
|
100
109
|
created_at?: Date | null;
|
|
101
110
|
deleted_at?: Date | null;
|
|
102
111
|
description?: string | null;
|
|
103
112
|
board_sections?: IBoardSection[] | null;
|
|
104
|
-
id?:
|
|
105
|
-
section_order?:
|
|
113
|
+
id?: string;
|
|
114
|
+
section_order?: string[] | null;
|
|
106
115
|
title?: string | null;
|
|
107
116
|
updated_at?: Date | null;
|
|
108
|
-
user_id?:
|
|
117
|
+
user_id?: string | null;
|
|
109
118
|
primary_homepage?: boolean;
|
|
110
119
|
}
|
|
111
120
|
export interface IBoardItem {
|
|
112
121
|
can?: IDictionary<boolean>;
|
|
113
122
|
content_created_by?: string | null;
|
|
114
|
-
content_favorite_id?:
|
|
115
|
-
content_metadata_id?:
|
|
123
|
+
content_favorite_id?: string | null;
|
|
124
|
+
content_metadata_id?: string | null;
|
|
116
125
|
content_updated_at?: string | null;
|
|
117
126
|
custom_description?: string | null;
|
|
118
127
|
custom_title?: string | null;
|
|
119
128
|
custom_url?: string | null;
|
|
120
|
-
dashboard_id?:
|
|
129
|
+
dashboard_id?: string | null;
|
|
121
130
|
description?: string | null;
|
|
122
131
|
favorite_count?: number | null;
|
|
123
|
-
board_section_id?:
|
|
124
|
-
id?:
|
|
132
|
+
board_section_id?: string | null;
|
|
133
|
+
id?: string;
|
|
125
134
|
image_url?: string | null;
|
|
126
135
|
location?: string | null;
|
|
127
136
|
look_id?: string | null;
|
|
@@ -129,18 +138,24 @@ export interface IBoardItem {
|
|
|
129
138
|
order?: number | null;
|
|
130
139
|
title?: string | null;
|
|
131
140
|
url?: string;
|
|
141
|
+
use_custom_description?: boolean;
|
|
142
|
+
use_custom_title?: boolean;
|
|
143
|
+
use_custom_url?: boolean;
|
|
132
144
|
view_count?: number | null;
|
|
145
|
+
custom_image_data_base64?: string | null;
|
|
146
|
+
custom_image_url?: string | null;
|
|
147
|
+
use_custom_image?: boolean;
|
|
133
148
|
}
|
|
134
149
|
export interface IBoardSection {
|
|
135
150
|
can?: IDictionary<boolean>;
|
|
136
151
|
created_at?: Date | null;
|
|
137
152
|
deleted_at?: Date | null;
|
|
138
153
|
description?: string | null;
|
|
139
|
-
board_id?:
|
|
154
|
+
board_id?: string | null;
|
|
140
155
|
board_items?: IBoardItem[] | null;
|
|
141
|
-
id?:
|
|
142
|
-
item_order?:
|
|
143
|
-
visible_item_order?:
|
|
156
|
+
id?: string;
|
|
157
|
+
item_order?: string[] | null;
|
|
158
|
+
visible_item_order?: string[] | null;
|
|
144
159
|
title?: string | null;
|
|
145
160
|
updated_at?: Date | null;
|
|
146
161
|
}
|
|
@@ -167,14 +182,6 @@ export interface IColumnSearch {
|
|
|
167
182
|
column_name?: string | null;
|
|
168
183
|
data_type?: string | null;
|
|
169
184
|
}
|
|
170
|
-
export interface ICommand {
|
|
171
|
-
id?: number;
|
|
172
|
-
author_id?: number;
|
|
173
|
-
name?: string;
|
|
174
|
-
description?: string | null;
|
|
175
|
-
linked_content_id?: string;
|
|
176
|
-
linked_content_type?: LinkedContentType;
|
|
177
|
-
}
|
|
178
185
|
export declare enum ComparisonType {
|
|
179
186
|
EQUAL_TO = "EQUAL_TO",
|
|
180
187
|
GREATER_THAN = "GREATER_THAN",
|
|
@@ -204,26 +211,26 @@ export interface IConnectionFeatures {
|
|
|
204
211
|
connection_pooling?: boolean;
|
|
205
212
|
}
|
|
206
213
|
export interface IContentFavorite {
|
|
207
|
-
id?:
|
|
208
|
-
user_id?:
|
|
209
|
-
content_metadata_id?:
|
|
214
|
+
id?: string;
|
|
215
|
+
user_id?: string;
|
|
216
|
+
content_metadata_id?: string;
|
|
210
217
|
look_id?: string | null;
|
|
211
|
-
dashboard_id?:
|
|
218
|
+
dashboard_id?: string | null;
|
|
212
219
|
look?: ILookBasic;
|
|
213
220
|
dashboard?: IDashboardBase;
|
|
214
|
-
board_id?:
|
|
221
|
+
board_id?: string | null;
|
|
215
222
|
}
|
|
216
223
|
export interface IContentMeta {
|
|
217
224
|
can?: IDictionary<boolean>;
|
|
218
|
-
id?:
|
|
225
|
+
id?: string;
|
|
219
226
|
name?: string | null;
|
|
220
|
-
parent_id?:
|
|
227
|
+
parent_id?: string | null;
|
|
221
228
|
dashboard_id?: string | null;
|
|
222
229
|
look_id?: string | null;
|
|
223
230
|
folder_id?: string | null;
|
|
224
231
|
content_type?: string | null;
|
|
225
232
|
inherits?: boolean;
|
|
226
|
-
inheriting_id?:
|
|
233
|
+
inheriting_id?: string | null;
|
|
227
234
|
slug?: string | null;
|
|
228
235
|
}
|
|
229
236
|
export interface IContentMetaGroupUser {
|
|
@@ -231,8 +238,8 @@ export interface IContentMetaGroupUser {
|
|
|
231
238
|
id?: string;
|
|
232
239
|
content_metadata_id?: string | null;
|
|
233
240
|
permission_type?: PermissionType | null;
|
|
234
|
-
group_id?:
|
|
235
|
-
user_id?:
|
|
241
|
+
group_id?: string | null;
|
|
242
|
+
user_id?: string | null;
|
|
236
243
|
}
|
|
237
244
|
export interface IContentValidation {
|
|
238
245
|
content_with_errors?: IContentValidatorError[] | null;
|
|
@@ -245,7 +252,7 @@ export interface IContentValidation {
|
|
|
245
252
|
total_explores_validated?: number | null;
|
|
246
253
|
}
|
|
247
254
|
export interface IContentValidationAlert {
|
|
248
|
-
id?:
|
|
255
|
+
id?: string;
|
|
249
256
|
lookml_dashboard_id?: string | null;
|
|
250
257
|
lookml_link_id?: string | null;
|
|
251
258
|
custom_title?: string | null;
|
|
@@ -266,12 +273,13 @@ export interface IContentValidationDashboardElement {
|
|
|
266
273
|
note_state?: string | null;
|
|
267
274
|
note_text?: string | null;
|
|
268
275
|
note_text_as_html?: string | null;
|
|
269
|
-
query_id?:
|
|
276
|
+
query_id?: string | null;
|
|
270
277
|
subtitle_text?: string | null;
|
|
271
278
|
title?: string | null;
|
|
272
279
|
title_hidden?: boolean;
|
|
273
280
|
title_text?: string | null;
|
|
274
281
|
type?: string | null;
|
|
282
|
+
rich_content_json?: string | null;
|
|
275
283
|
}
|
|
276
284
|
export interface IContentValidationDashboardFilter {
|
|
277
285
|
id?: string;
|
|
@@ -313,7 +321,7 @@ export interface IContentValidationLookMLDashboardElement {
|
|
|
313
321
|
export interface IContentValidationScheduledPlan {
|
|
314
322
|
name?: string | null;
|
|
315
323
|
look_id?: string | null;
|
|
316
|
-
id?:
|
|
324
|
+
id?: string;
|
|
317
325
|
}
|
|
318
326
|
export interface IContentValidatorError {
|
|
319
327
|
look?: IContentValidationLook;
|
|
@@ -329,13 +337,13 @@ export interface IContentValidatorError {
|
|
|
329
337
|
}
|
|
330
338
|
export interface IContentView {
|
|
331
339
|
can?: IDictionary<boolean>;
|
|
332
|
-
id?:
|
|
340
|
+
id?: string;
|
|
333
341
|
look_id?: string | null;
|
|
334
|
-
dashboard_id?:
|
|
342
|
+
dashboard_id?: string | null;
|
|
335
343
|
title?: string | null;
|
|
336
|
-
content_metadata_id?:
|
|
337
|
-
user_id?:
|
|
338
|
-
group_id?:
|
|
344
|
+
content_metadata_id?: string | null;
|
|
345
|
+
user_id?: string | null;
|
|
346
|
+
group_id?: string | null;
|
|
339
347
|
view_count?: number | null;
|
|
340
348
|
favorite_count?: number | null;
|
|
341
349
|
last_viewed_at?: string | null;
|
|
@@ -358,7 +366,7 @@ export interface ICreateCostEstimate {
|
|
|
358
366
|
}
|
|
359
367
|
export interface ICreateCredentialsApi3 {
|
|
360
368
|
can?: IDictionary<boolean>;
|
|
361
|
-
id?:
|
|
369
|
+
id?: string;
|
|
362
370
|
client_id?: string | null;
|
|
363
371
|
created_at?: string | null;
|
|
364
372
|
is_disabled?: boolean;
|
|
@@ -403,12 +411,12 @@ export interface ICreateOAuthApplicationUserStateRequest {
|
|
|
403
411
|
refresh_token_expires_at?: Date | null;
|
|
404
412
|
}
|
|
405
413
|
export interface ICreateOAuthApplicationUserStateResponse {
|
|
406
|
-
user_id:
|
|
407
|
-
oauth_application_id:
|
|
414
|
+
user_id: string;
|
|
415
|
+
oauth_application_id: string;
|
|
408
416
|
}
|
|
409
417
|
export interface ICreateQueryTask {
|
|
410
418
|
can?: IDictionary<boolean>;
|
|
411
|
-
query_id:
|
|
419
|
+
query_id: string | null;
|
|
412
420
|
result_format: ResultFormat | null;
|
|
413
421
|
source?: string | null;
|
|
414
422
|
deferred?: boolean;
|
|
@@ -417,7 +425,7 @@ export interface ICreateQueryTask {
|
|
|
417
425
|
}
|
|
418
426
|
export interface ICredentialsApi3 {
|
|
419
427
|
can?: IDictionary<boolean>;
|
|
420
|
-
id?:
|
|
428
|
+
id?: string;
|
|
421
429
|
client_id?: string | null;
|
|
422
430
|
created_at?: string | null;
|
|
423
431
|
is_disabled?: boolean;
|
|
@@ -453,7 +461,7 @@ export interface ICredentialsEmbed {
|
|
|
453
461
|
created_at?: string | null;
|
|
454
462
|
external_group_id?: string | null;
|
|
455
463
|
external_user_id?: string | null;
|
|
456
|
-
id?:
|
|
464
|
+
id?: string;
|
|
457
465
|
is_disabled?: boolean;
|
|
458
466
|
logged_in_at?: string | null;
|
|
459
467
|
type?: string | null;
|
|
@@ -528,8 +536,8 @@ export interface ICustomWelcomeEmail {
|
|
|
528
536
|
}
|
|
529
537
|
export interface IDashboard {
|
|
530
538
|
can?: IDictionary<boolean>;
|
|
531
|
-
content_favorite_id?:
|
|
532
|
-
content_metadata_id?:
|
|
539
|
+
content_favorite_id?: string | null;
|
|
540
|
+
content_metadata_id?: string | null;
|
|
533
541
|
description?: string | null;
|
|
534
542
|
hidden?: boolean;
|
|
535
543
|
id?: string;
|
|
@@ -540,7 +548,7 @@ export interface IDashboard {
|
|
|
540
548
|
refresh_interval_to_i?: number | null;
|
|
541
549
|
folder?: IFolderBase;
|
|
542
550
|
title?: string | null;
|
|
543
|
-
user_id?:
|
|
551
|
+
user_id?: string | null;
|
|
544
552
|
slug?: string | null;
|
|
545
553
|
preferred_viewer?: string | null;
|
|
546
554
|
alert_sync_with_dashboard_filter_enabled?: boolean;
|
|
@@ -552,20 +560,20 @@ export interface IDashboard {
|
|
|
552
560
|
dashboard_layouts?: IDashboardLayout[] | null;
|
|
553
561
|
deleted?: boolean;
|
|
554
562
|
deleted_at?: Date | null;
|
|
555
|
-
deleter_id?:
|
|
563
|
+
deleter_id?: string | null;
|
|
556
564
|
edit_uri?: string | null;
|
|
557
565
|
favorite_count?: number | null;
|
|
558
566
|
filters_bar_collapsed?: boolean;
|
|
559
567
|
last_accessed_at?: Date | null;
|
|
560
568
|
last_viewed_at?: Date | null;
|
|
561
569
|
updated_at?: Date | null;
|
|
562
|
-
last_updater_id?:
|
|
570
|
+
last_updater_id?: string | null;
|
|
563
571
|
last_updater_name?: string | null;
|
|
564
572
|
user_name?: string | null;
|
|
565
573
|
load_configuration?: string | null;
|
|
566
574
|
lookml_link_id?: string | null;
|
|
567
|
-
show_filters_bar?: boolean;
|
|
568
|
-
show_title?: boolean;
|
|
575
|
+
show_filters_bar?: boolean | null;
|
|
576
|
+
show_title?: boolean | null;
|
|
569
577
|
folder_id?: string | null;
|
|
570
578
|
text_tile_text_color?: string | null;
|
|
571
579
|
tile_background_color?: string | null;
|
|
@@ -590,8 +598,8 @@ export interface IDashboardAppearance {
|
|
|
590
598
|
}
|
|
591
599
|
export interface IDashboardBase {
|
|
592
600
|
can?: IDictionary<boolean>;
|
|
593
|
-
content_favorite_id?:
|
|
594
|
-
content_metadata_id?:
|
|
601
|
+
content_favorite_id?: string | null;
|
|
602
|
+
content_metadata_id?: string | null;
|
|
595
603
|
description?: string | null;
|
|
596
604
|
hidden?: boolean;
|
|
597
605
|
id?: string;
|
|
@@ -602,7 +610,7 @@ export interface IDashboardBase {
|
|
|
602
610
|
refresh_interval_to_i?: number | null;
|
|
603
611
|
folder?: IFolderBase;
|
|
604
612
|
title?: string | null;
|
|
605
|
-
user_id?:
|
|
613
|
+
user_id?: string | null;
|
|
606
614
|
slug?: string | null;
|
|
607
615
|
preferred_viewer?: string | null;
|
|
608
616
|
}
|
|
@@ -622,19 +630,21 @@ export interface IDashboardElement {
|
|
|
622
630
|
note_text?: string | null;
|
|
623
631
|
note_text_as_html?: string | null;
|
|
624
632
|
query?: IQuery;
|
|
625
|
-
query_id?:
|
|
633
|
+
query_id?: string | null;
|
|
626
634
|
refresh_interval?: string | null;
|
|
627
635
|
refresh_interval_to_i?: number | null;
|
|
628
636
|
result_maker?: IResultMakerWithIdVisConfigAndDynamicFields;
|
|
629
|
-
result_maker_id?:
|
|
637
|
+
result_maker_id?: string | null;
|
|
630
638
|
subtitle_text?: string | null;
|
|
631
639
|
title?: string | null;
|
|
632
640
|
title_hidden?: boolean;
|
|
633
641
|
title_text?: string | null;
|
|
634
642
|
type?: string | null;
|
|
635
643
|
alert_count?: number | null;
|
|
644
|
+
rich_content_json?: string | null;
|
|
636
645
|
title_text_as_html?: string | null;
|
|
637
646
|
subtitle_text_as_html?: string | null;
|
|
647
|
+
extension_id?: string | null;
|
|
638
648
|
}
|
|
639
649
|
export interface IDashboardFilter {
|
|
640
650
|
can?: IDictionary<boolean>;
|
|
@@ -722,7 +732,7 @@ export interface IDataActionUserState {
|
|
|
722
732
|
export interface IDatagroup {
|
|
723
733
|
can?: IDictionary<boolean>;
|
|
724
734
|
created_at?: number | null;
|
|
725
|
-
id?:
|
|
735
|
+
id?: string;
|
|
726
736
|
model_name?: string | null;
|
|
727
737
|
name?: string | null;
|
|
728
738
|
stale_before?: number | null;
|
|
@@ -772,7 +782,7 @@ export interface IDBConnection {
|
|
|
772
782
|
tunnel_id?: string | null;
|
|
773
783
|
pdt_concurrency?: number | null;
|
|
774
784
|
disable_context_comment?: boolean | null;
|
|
775
|
-
oauth_application_id?:
|
|
785
|
+
oauth_application_id?: string | null;
|
|
776
786
|
always_retry_failed_builds?: boolean | null;
|
|
777
787
|
cost_estimate_enabled?: boolean | null;
|
|
778
788
|
pdt_api_control_enabled?: boolean | null;
|
|
@@ -808,7 +818,7 @@ export interface IDBConnectionTestResult {
|
|
|
808
818
|
export interface IDelegateOauthTest {
|
|
809
819
|
name?: string;
|
|
810
820
|
installation_target_id?: string;
|
|
811
|
-
installation_id?:
|
|
821
|
+
installation_id?: string;
|
|
812
822
|
success?: boolean;
|
|
813
823
|
}
|
|
814
824
|
export interface IDependencyGraph {
|
|
@@ -828,6 +838,7 @@ export interface IDialect {
|
|
|
828
838
|
name?: string;
|
|
829
839
|
label?: string;
|
|
830
840
|
supports_cost_estimate?: boolean;
|
|
841
|
+
cost_estimate_style?: string | null;
|
|
831
842
|
persistent_table_indexes?: string;
|
|
832
843
|
persistent_table_sortkeys?: string;
|
|
833
844
|
persistent_table_distkey?: string;
|
|
@@ -885,9 +896,9 @@ export interface IEmbedSecret {
|
|
|
885
896
|
algorithm?: string | null;
|
|
886
897
|
created_at?: string | null;
|
|
887
898
|
enabled?: boolean;
|
|
888
|
-
id?:
|
|
899
|
+
id?: string;
|
|
889
900
|
secret?: string | null;
|
|
890
|
-
user_id?:
|
|
901
|
+
user_id?: string | null;
|
|
891
902
|
}
|
|
892
903
|
export interface IEmbedSsoParams {
|
|
893
904
|
target_url: string;
|
|
@@ -899,10 +910,10 @@ export interface IEmbedSsoParams {
|
|
|
899
910
|
user_timezone?: string | null;
|
|
900
911
|
permissions?: string[] | null;
|
|
901
912
|
models?: string[] | null;
|
|
902
|
-
group_ids?:
|
|
913
|
+
group_ids?: string[] | null;
|
|
903
914
|
external_group_id?: string | null;
|
|
904
915
|
user_attributes?: IDictionary<any> | null;
|
|
905
|
-
secret_id?:
|
|
916
|
+
secret_id?: string | null;
|
|
906
917
|
}
|
|
907
918
|
export interface IEmbedUrlResponse {
|
|
908
919
|
url?: string;
|
|
@@ -913,7 +924,7 @@ export interface IError {
|
|
|
913
924
|
}
|
|
914
925
|
export interface IExternalOauthApplication {
|
|
915
926
|
can?: IDictionary<boolean>;
|
|
916
|
-
id?:
|
|
927
|
+
id?: string;
|
|
917
928
|
name?: string;
|
|
918
929
|
client_id?: string;
|
|
919
930
|
client_secret?: string;
|
|
@@ -928,9 +939,9 @@ export interface IFolder {
|
|
|
928
939
|
name: string;
|
|
929
940
|
parent_id?: string | null;
|
|
930
941
|
id?: string;
|
|
931
|
-
content_metadata_id?:
|
|
942
|
+
content_metadata_id?: string | null;
|
|
932
943
|
created_at?: Date | null;
|
|
933
|
-
creator_id?:
|
|
944
|
+
creator_id?: string | null;
|
|
934
945
|
child_count?: number | null;
|
|
935
946
|
external_id?: string | null;
|
|
936
947
|
is_embed?: boolean;
|
|
@@ -948,9 +959,9 @@ export interface IFolderBase {
|
|
|
948
959
|
name: string;
|
|
949
960
|
parent_id?: string | null;
|
|
950
961
|
id?: string;
|
|
951
|
-
content_metadata_id?:
|
|
962
|
+
content_metadata_id?: string | null;
|
|
952
963
|
created_at?: Date | null;
|
|
953
|
-
creator_id?:
|
|
964
|
+
creator_id?: string | null;
|
|
954
965
|
child_count?: number | null;
|
|
955
966
|
external_id?: string | null;
|
|
956
967
|
is_embed?: boolean;
|
|
@@ -1008,7 +1019,7 @@ export interface IGroup {
|
|
|
1008
1019
|
contains_current_user?: boolean;
|
|
1009
1020
|
external_group_id?: string | null;
|
|
1010
1021
|
externally_managed?: boolean;
|
|
1011
|
-
id?:
|
|
1022
|
+
id?: string;
|
|
1012
1023
|
include_by_default?: boolean;
|
|
1013
1024
|
name?: string | null;
|
|
1014
1025
|
user_count?: number | null;
|
|
@@ -1019,18 +1030,18 @@ export interface IGroupHierarchy {
|
|
|
1019
1030
|
contains_current_user?: boolean;
|
|
1020
1031
|
external_group_id?: string | null;
|
|
1021
1032
|
externally_managed?: boolean;
|
|
1022
|
-
id?:
|
|
1033
|
+
id?: string;
|
|
1023
1034
|
include_by_default?: boolean;
|
|
1024
1035
|
name?: string | null;
|
|
1025
1036
|
user_count?: number | null;
|
|
1026
|
-
parent_group_ids?:
|
|
1027
|
-
role_ids?:
|
|
1037
|
+
parent_group_ids?: string[] | null;
|
|
1038
|
+
role_ids?: string[] | null;
|
|
1028
1039
|
}
|
|
1029
1040
|
export interface IGroupIdForGroupInclusion {
|
|
1030
|
-
group_id?:
|
|
1041
|
+
group_id?: string | null;
|
|
1031
1042
|
}
|
|
1032
1043
|
export interface IGroupIdForGroupUserInclusion {
|
|
1033
|
-
user_id?:
|
|
1044
|
+
user_id?: string | null;
|
|
1034
1045
|
}
|
|
1035
1046
|
export interface IGroupSearch {
|
|
1036
1047
|
can?: IDictionary<boolean>;
|
|
@@ -1038,7 +1049,7 @@ export interface IGroupSearch {
|
|
|
1038
1049
|
contains_current_user?: boolean;
|
|
1039
1050
|
external_group_id?: string | null;
|
|
1040
1051
|
externally_managed?: boolean;
|
|
1041
|
-
id?:
|
|
1052
|
+
id?: string;
|
|
1042
1053
|
include_by_default?: boolean;
|
|
1043
1054
|
name?: string | null;
|
|
1044
1055
|
user_count?: number | null;
|
|
@@ -1047,19 +1058,19 @@ export interface IGroupSearch {
|
|
|
1047
1058
|
export interface IHomepageItem {
|
|
1048
1059
|
can?: IDictionary<boolean>;
|
|
1049
1060
|
content_created_by?: string | null;
|
|
1050
|
-
content_favorite_id?:
|
|
1051
|
-
content_metadata_id?:
|
|
1061
|
+
content_favorite_id?: string | null;
|
|
1062
|
+
content_metadata_id?: string | null;
|
|
1052
1063
|
content_updated_at?: string | null;
|
|
1053
1064
|
custom_description?: string | null;
|
|
1054
1065
|
custom_image_data_base64?: string | null;
|
|
1055
1066
|
custom_image_url?: string | null;
|
|
1056
1067
|
custom_title?: string | null;
|
|
1057
1068
|
custom_url?: string | null;
|
|
1058
|
-
dashboard_id?:
|
|
1069
|
+
dashboard_id?: string | null;
|
|
1059
1070
|
description?: string | null;
|
|
1060
1071
|
favorite_count?: number | null;
|
|
1061
|
-
homepage_section_id?:
|
|
1062
|
-
id?:
|
|
1072
|
+
homepage_section_id?: string | null;
|
|
1073
|
+
id?: string;
|
|
1063
1074
|
image_url?: string | null;
|
|
1064
1075
|
location?: string | null;
|
|
1065
1076
|
look_id?: string | null;
|
|
@@ -1079,15 +1090,15 @@ export interface IHomepageSection {
|
|
|
1079
1090
|
created_at?: Date | null;
|
|
1080
1091
|
deleted_at?: Date | null;
|
|
1081
1092
|
detail_url?: string | null;
|
|
1082
|
-
homepage_id?:
|
|
1093
|
+
homepage_id?: string | null;
|
|
1083
1094
|
homepage_items?: IHomepageItem[] | null;
|
|
1084
|
-
id?:
|
|
1095
|
+
id?: string;
|
|
1085
1096
|
is_header?: boolean;
|
|
1086
|
-
item_order?:
|
|
1097
|
+
item_order?: string[] | null;
|
|
1087
1098
|
title?: string | null;
|
|
1088
1099
|
updated_at?: Date | null;
|
|
1089
1100
|
description?: string | null;
|
|
1090
|
-
visible_item_order?:
|
|
1101
|
+
visible_item_order?: string[] | null;
|
|
1091
1102
|
}
|
|
1092
1103
|
export interface IImportedProject {
|
|
1093
1104
|
name?: string | null;
|
|
@@ -1098,7 +1109,7 @@ export interface IImportedProject {
|
|
|
1098
1109
|
export interface IIntegration {
|
|
1099
1110
|
can?: IDictionary<boolean>;
|
|
1100
1111
|
id?: string;
|
|
1101
|
-
integration_hub_id?:
|
|
1112
|
+
integration_hub_id?: string;
|
|
1102
1113
|
label?: string;
|
|
1103
1114
|
description?: string | null;
|
|
1104
1115
|
enabled?: boolean;
|
|
@@ -1112,11 +1123,11 @@ export interface IIntegration {
|
|
|
1112
1123
|
uses_oauth?: boolean | null;
|
|
1113
1124
|
required_fields?: IIntegrationRequiredField[];
|
|
1114
1125
|
delegate_oauth?: boolean | null;
|
|
1115
|
-
installed_delegate_oauth_targets?:
|
|
1126
|
+
installed_delegate_oauth_targets?: string[];
|
|
1116
1127
|
}
|
|
1117
1128
|
export interface IIntegrationHub {
|
|
1118
1129
|
can?: IDictionary<boolean>;
|
|
1119
|
-
id?:
|
|
1130
|
+
id?: string;
|
|
1120
1131
|
url?: string;
|
|
1121
1132
|
label?: string;
|
|
1122
1133
|
official?: boolean;
|
|
@@ -1171,9 +1182,9 @@ export interface ILDAPConfig {
|
|
|
1171
1182
|
connection_port?: string | null;
|
|
1172
1183
|
connection_tls?: boolean;
|
|
1173
1184
|
connection_tls_no_verify?: boolean;
|
|
1174
|
-
default_new_user_group_ids?:
|
|
1185
|
+
default_new_user_group_ids?: string[] | null;
|
|
1175
1186
|
default_new_user_groups?: IGroup[] | null;
|
|
1176
|
-
default_new_user_role_ids?:
|
|
1187
|
+
default_new_user_role_ids?: string[] | null;
|
|
1177
1188
|
default_new_user_roles?: IRole[] | null;
|
|
1178
1189
|
enabled?: boolean;
|
|
1179
1190
|
force_no_page?: boolean;
|
|
@@ -1220,19 +1231,19 @@ export interface ILDAPConfigTestResult {
|
|
|
1220
1231
|
url?: string | null;
|
|
1221
1232
|
}
|
|
1222
1233
|
export interface ILDAPGroupRead {
|
|
1223
|
-
id?:
|
|
1224
|
-
looker_group_id?:
|
|
1234
|
+
id?: string;
|
|
1235
|
+
looker_group_id?: string | null;
|
|
1225
1236
|
looker_group_name?: string | null;
|
|
1226
1237
|
name?: string | null;
|
|
1227
1238
|
roles?: IRole[] | null;
|
|
1228
1239
|
url?: string | null;
|
|
1229
1240
|
}
|
|
1230
1241
|
export interface ILDAPGroupWrite {
|
|
1231
|
-
id?:
|
|
1232
|
-
looker_group_id?:
|
|
1242
|
+
id?: string | null;
|
|
1243
|
+
looker_group_id?: string | null;
|
|
1233
1244
|
looker_group_name?: string | null;
|
|
1234
1245
|
name?: string | null;
|
|
1235
|
-
role_ids?:
|
|
1246
|
+
role_ids?: string[] | null;
|
|
1236
1247
|
url?: string | null;
|
|
1237
1248
|
}
|
|
1238
1249
|
export interface ILDAPUser {
|
|
@@ -1256,7 +1267,7 @@ export interface ILDAPUserAttributeRead {
|
|
|
1256
1267
|
export interface ILDAPUserAttributeWrite {
|
|
1257
1268
|
name?: string | null;
|
|
1258
1269
|
required?: boolean;
|
|
1259
|
-
user_attribute_ids?:
|
|
1270
|
+
user_attribute_ids?: string[] | null;
|
|
1260
1271
|
url?: string | null;
|
|
1261
1272
|
}
|
|
1262
1273
|
export interface ILegacyFeature {
|
|
@@ -1274,10 +1285,6 @@ export interface ILegacyFeature {
|
|
|
1274
1285
|
approximate_end_of_life_date?: Date | null;
|
|
1275
1286
|
has_disabled_on_upgrade?: boolean;
|
|
1276
1287
|
}
|
|
1277
|
-
export declare enum LinkedContentType {
|
|
1278
|
-
dashboard = "dashboard",
|
|
1279
|
-
lookml_dashboard = "lookml_dashboard"
|
|
1280
|
-
}
|
|
1281
1288
|
export interface ILocale {
|
|
1282
1289
|
code?: string | null;
|
|
1283
1290
|
native_name?: string | null;
|
|
@@ -1289,15 +1296,15 @@ export interface ILocalizationSettings {
|
|
|
1289
1296
|
}
|
|
1290
1297
|
export interface ILook {
|
|
1291
1298
|
can?: IDictionary<boolean>;
|
|
1292
|
-
content_metadata_id?:
|
|
1299
|
+
content_metadata_id?: string | null;
|
|
1293
1300
|
id?: string;
|
|
1294
1301
|
title?: string | null;
|
|
1295
|
-
user_id?:
|
|
1296
|
-
content_favorite_id?:
|
|
1302
|
+
user_id?: string | null;
|
|
1303
|
+
content_favorite_id?: string | null;
|
|
1297
1304
|
created_at?: Date | null;
|
|
1298
1305
|
deleted?: boolean;
|
|
1299
1306
|
deleted_at?: Date | null;
|
|
1300
|
-
deleter_id?:
|
|
1307
|
+
deleter_id?: string | null;
|
|
1301
1308
|
description?: string | null;
|
|
1302
1309
|
embed_url?: string | null;
|
|
1303
1310
|
excel_file_url?: string | null;
|
|
@@ -1306,13 +1313,13 @@ export interface ILook {
|
|
|
1306
1313
|
image_embed_url?: string | null;
|
|
1307
1314
|
is_run_on_load?: boolean;
|
|
1308
1315
|
last_accessed_at?: Date | null;
|
|
1309
|
-
last_updater_id?:
|
|
1316
|
+
last_updater_id?: string | null;
|
|
1310
1317
|
last_viewed_at?: Date | null;
|
|
1311
1318
|
model?: ILookModel;
|
|
1312
1319
|
public?: boolean;
|
|
1313
1320
|
public_slug?: string | null;
|
|
1314
1321
|
public_url?: string | null;
|
|
1315
|
-
query_id?:
|
|
1322
|
+
query_id?: string | null;
|
|
1316
1323
|
short_url?: string | null;
|
|
1317
1324
|
folder?: IFolderBase;
|
|
1318
1325
|
folder_id?: string | null;
|
|
@@ -1321,10 +1328,10 @@ export interface ILook {
|
|
|
1321
1328
|
}
|
|
1322
1329
|
export interface ILookBasic {
|
|
1323
1330
|
can?: IDictionary<boolean>;
|
|
1324
|
-
content_metadata_id?:
|
|
1325
|
-
id?:
|
|
1331
|
+
content_metadata_id?: string | null;
|
|
1332
|
+
id?: string;
|
|
1326
1333
|
title?: string | null;
|
|
1327
|
-
user_id?:
|
|
1334
|
+
user_id?: string | null;
|
|
1328
1335
|
}
|
|
1329
1336
|
export interface ILookmlModel {
|
|
1330
1337
|
can?: IDictionary<boolean>;
|
|
@@ -1544,15 +1551,15 @@ export interface ILookModel {
|
|
|
1544
1551
|
}
|
|
1545
1552
|
export interface ILookWithDashboards {
|
|
1546
1553
|
can?: IDictionary<boolean>;
|
|
1547
|
-
content_metadata_id?:
|
|
1554
|
+
content_metadata_id?: string | null;
|
|
1548
1555
|
id?: string;
|
|
1549
1556
|
title?: string | null;
|
|
1550
|
-
user_id?:
|
|
1551
|
-
content_favorite_id?:
|
|
1557
|
+
user_id?: string | null;
|
|
1558
|
+
content_favorite_id?: string | null;
|
|
1552
1559
|
created_at?: Date | null;
|
|
1553
1560
|
deleted?: boolean;
|
|
1554
1561
|
deleted_at?: Date | null;
|
|
1555
|
-
deleter_id?:
|
|
1562
|
+
deleter_id?: string | null;
|
|
1556
1563
|
description?: string | null;
|
|
1557
1564
|
embed_url?: string | null;
|
|
1558
1565
|
excel_file_url?: string | null;
|
|
@@ -1561,13 +1568,13 @@ export interface ILookWithDashboards {
|
|
|
1561
1568
|
image_embed_url?: string | null;
|
|
1562
1569
|
is_run_on_load?: boolean;
|
|
1563
1570
|
last_accessed_at?: Date | null;
|
|
1564
|
-
last_updater_id?:
|
|
1571
|
+
last_updater_id?: string | null;
|
|
1565
1572
|
last_viewed_at?: Date | null;
|
|
1566
1573
|
model?: ILookModel;
|
|
1567
1574
|
public?: boolean;
|
|
1568
1575
|
public_slug?: string | null;
|
|
1569
1576
|
public_url?: string | null;
|
|
1570
|
-
query_id?:
|
|
1577
|
+
query_id?: string | null;
|
|
1571
1578
|
short_url?: string | null;
|
|
1572
1579
|
folder?: IFolderBase;
|
|
1573
1580
|
folder_id?: string | null;
|
|
@@ -1577,15 +1584,15 @@ export interface ILookWithDashboards {
|
|
|
1577
1584
|
}
|
|
1578
1585
|
export interface ILookWithQuery {
|
|
1579
1586
|
can?: IDictionary<boolean>;
|
|
1580
|
-
content_metadata_id?:
|
|
1587
|
+
content_metadata_id?: string | null;
|
|
1581
1588
|
id?: string;
|
|
1582
1589
|
title?: string | null;
|
|
1583
|
-
user_id?:
|
|
1584
|
-
content_favorite_id?:
|
|
1590
|
+
user_id?: string | null;
|
|
1591
|
+
content_favorite_id?: string | null;
|
|
1585
1592
|
created_at?: Date | null;
|
|
1586
1593
|
deleted?: boolean;
|
|
1587
1594
|
deleted_at?: Date | null;
|
|
1588
|
-
deleter_id?:
|
|
1595
|
+
deleter_id?: string | null;
|
|
1589
1596
|
description?: string | null;
|
|
1590
1597
|
embed_url?: string | null;
|
|
1591
1598
|
excel_file_url?: string | null;
|
|
@@ -1594,13 +1601,13 @@ export interface ILookWithQuery {
|
|
|
1594
1601
|
image_embed_url?: string | null;
|
|
1595
1602
|
is_run_on_load?: boolean;
|
|
1596
1603
|
last_accessed_at?: Date | null;
|
|
1597
|
-
last_updater_id?:
|
|
1604
|
+
last_updater_id?: string | null;
|
|
1598
1605
|
last_viewed_at?: Date | null;
|
|
1599
1606
|
model?: ILookModel;
|
|
1600
1607
|
public?: boolean;
|
|
1601
1608
|
public_slug?: string | null;
|
|
1602
1609
|
public_url?: string | null;
|
|
1603
|
-
query_id?:
|
|
1610
|
+
query_id?: string | null;
|
|
1604
1611
|
short_url?: string | null;
|
|
1605
1612
|
folder?: IFolderBase;
|
|
1606
1613
|
folder_id?: string | null;
|
|
@@ -1629,7 +1636,7 @@ export interface IMergeQuery {
|
|
|
1629
1636
|
dynamic_fields?: string | null;
|
|
1630
1637
|
id?: string;
|
|
1631
1638
|
pivots?: string[] | null;
|
|
1632
|
-
result_maker_id?:
|
|
1639
|
+
result_maker_id?: string | null;
|
|
1633
1640
|
sorts?: string[] | null;
|
|
1634
1641
|
source_queries?: IMergeQuerySourceQuery[] | null;
|
|
1635
1642
|
total?: boolean;
|
|
@@ -1638,7 +1645,7 @@ export interface IMergeQuery {
|
|
|
1638
1645
|
export interface IMergeQuerySourceQuery {
|
|
1639
1646
|
merge_fields?: IMergeFields[] | null;
|
|
1640
1647
|
name?: string | null;
|
|
1641
|
-
query_id?:
|
|
1648
|
+
query_id?: string | null;
|
|
1642
1649
|
}
|
|
1643
1650
|
export interface IMobileSettings {
|
|
1644
1651
|
mobile_force_authentication?: boolean;
|
|
@@ -1666,7 +1673,7 @@ export interface IModelSet {
|
|
|
1666
1673
|
can?: IDictionary<boolean>;
|
|
1667
1674
|
all_access?: boolean;
|
|
1668
1675
|
built_in?: boolean;
|
|
1669
|
-
id?:
|
|
1676
|
+
id?: string;
|
|
1670
1677
|
models?: string[] | null;
|
|
1671
1678
|
name?: string | null;
|
|
1672
1679
|
url?: string | null;
|
|
@@ -1694,7 +1701,7 @@ export interface IOauthClientApp {
|
|
|
1694
1701
|
display_name?: string;
|
|
1695
1702
|
description?: string;
|
|
1696
1703
|
enabled?: boolean;
|
|
1697
|
-
group_id?:
|
|
1704
|
+
group_id?: string | null;
|
|
1698
1705
|
tokens_invalid_before?: Date;
|
|
1699
1706
|
activated_users?: IUserPublic[];
|
|
1700
1707
|
}
|
|
@@ -1704,9 +1711,9 @@ export interface IOIDCConfig {
|
|
|
1704
1711
|
audience?: string | null;
|
|
1705
1712
|
auth_requires_role?: boolean;
|
|
1706
1713
|
authorization_endpoint?: string | null;
|
|
1707
|
-
default_new_user_group_ids?:
|
|
1714
|
+
default_new_user_group_ids?: string[] | null;
|
|
1708
1715
|
default_new_user_groups?: IGroup[] | null;
|
|
1709
|
-
default_new_user_role_ids?:
|
|
1716
|
+
default_new_user_role_ids?: string[] | null;
|
|
1710
1717
|
default_new_user_roles?: IRole[] | null;
|
|
1711
1718
|
enabled?: boolean;
|
|
1712
1719
|
groups?: IOIDCGroupRead[] | null;
|
|
@@ -1715,7 +1722,7 @@ export interface IOIDCConfig {
|
|
|
1715
1722
|
identifier?: string | null;
|
|
1716
1723
|
issuer?: string | null;
|
|
1717
1724
|
modified_at?: Date | null;
|
|
1718
|
-
modified_by?:
|
|
1725
|
+
modified_by?: string | null;
|
|
1719
1726
|
new_user_migration_types?: string | null;
|
|
1720
1727
|
scopes?: string[] | null;
|
|
1721
1728
|
secret?: string | null;
|
|
@@ -1734,18 +1741,18 @@ export interface IOIDCConfig {
|
|
|
1734
1741
|
url?: string | null;
|
|
1735
1742
|
}
|
|
1736
1743
|
export interface IOIDCGroupRead {
|
|
1737
|
-
id?:
|
|
1738
|
-
looker_group_id?:
|
|
1744
|
+
id?: string;
|
|
1745
|
+
looker_group_id?: string | null;
|
|
1739
1746
|
looker_group_name?: string | null;
|
|
1740
1747
|
name?: string | null;
|
|
1741
1748
|
roles?: IRole[] | null;
|
|
1742
1749
|
}
|
|
1743
1750
|
export interface IOIDCGroupWrite {
|
|
1744
|
-
id?:
|
|
1745
|
-
looker_group_id?:
|
|
1751
|
+
id?: string | null;
|
|
1752
|
+
looker_group_id?: string | null;
|
|
1746
1753
|
looker_group_name?: string | null;
|
|
1747
1754
|
name?: string | null;
|
|
1748
|
-
role_ids?:
|
|
1755
|
+
role_ids?: string[] | null;
|
|
1749
1756
|
}
|
|
1750
1757
|
export interface IOIDCUserAttributeRead {
|
|
1751
1758
|
name?: string | null;
|
|
@@ -1755,7 +1762,7 @@ export interface IOIDCUserAttributeRead {
|
|
|
1755
1762
|
export interface IOIDCUserAttributeWrite {
|
|
1756
1763
|
name?: string | null;
|
|
1757
1764
|
required?: boolean;
|
|
1758
|
-
user_attribute_ids?:
|
|
1765
|
+
user_attribute_ids?: string[] | null;
|
|
1759
1766
|
}
|
|
1760
1767
|
export interface IPasswordConfig {
|
|
1761
1768
|
can?: IDictionary<boolean>;
|
|
@@ -1774,7 +1781,7 @@ export interface IPermissionSet {
|
|
|
1774
1781
|
can?: IDictionary<boolean>;
|
|
1775
1782
|
all_access?: boolean;
|
|
1776
1783
|
built_in?: boolean;
|
|
1777
|
-
id?:
|
|
1784
|
+
id?: string;
|
|
1778
1785
|
name?: string | null;
|
|
1779
1786
|
permissions?: string[] | null;
|
|
1780
1787
|
url?: string | null;
|
|
@@ -1783,6 +1790,23 @@ export declare enum PermissionType {
|
|
|
1783
1790
|
view = "view",
|
|
1784
1791
|
edit = "edit"
|
|
1785
1792
|
}
|
|
1793
|
+
export interface IPrivatelabelConfiguration {
|
|
1794
|
+
logo_file?: string | null;
|
|
1795
|
+
logo_url?: string | null;
|
|
1796
|
+
favicon_file?: string | null;
|
|
1797
|
+
favicon_url?: string | null;
|
|
1798
|
+
default_title?: string | null;
|
|
1799
|
+
show_help_menu?: boolean;
|
|
1800
|
+
show_docs?: boolean;
|
|
1801
|
+
show_email_sub_options?: boolean;
|
|
1802
|
+
allow_looker_mentions?: boolean;
|
|
1803
|
+
allow_looker_links?: boolean;
|
|
1804
|
+
custom_welcome_email_advanced?: boolean;
|
|
1805
|
+
setup_mentions?: boolean;
|
|
1806
|
+
alerts_logo?: boolean;
|
|
1807
|
+
alerts_links?: boolean;
|
|
1808
|
+
folders_mentions?: boolean;
|
|
1809
|
+
}
|
|
1786
1810
|
export interface IProject {
|
|
1787
1811
|
can?: IDictionary<boolean>;
|
|
1788
1812
|
id?: string;
|
|
@@ -1863,7 +1887,7 @@ export declare enum PullRequestMode {
|
|
|
1863
1887
|
}
|
|
1864
1888
|
export interface IQuery {
|
|
1865
1889
|
can?: IDictionary<boolean>;
|
|
1866
|
-
id?:
|
|
1890
|
+
id?: string;
|
|
1867
1891
|
model: string;
|
|
1868
1892
|
view: string;
|
|
1869
1893
|
fields?: string[] | null;
|
|
@@ -1892,7 +1916,7 @@ export interface IQuery {
|
|
|
1892
1916
|
export interface IQueryTask {
|
|
1893
1917
|
can?: IDictionary<boolean>;
|
|
1894
1918
|
id?: string;
|
|
1895
|
-
query_id?:
|
|
1919
|
+
query_id?: string | null;
|
|
1896
1920
|
query?: IQuery;
|
|
1897
1921
|
generate_links?: boolean;
|
|
1898
1922
|
force_production?: boolean;
|
|
@@ -1914,14 +1938,14 @@ export interface IRenderTask {
|
|
|
1914
1938
|
can?: IDictionary<boolean>;
|
|
1915
1939
|
created_at?: string | null;
|
|
1916
1940
|
dashboard_filters?: string | null;
|
|
1917
|
-
dashboard_id?:
|
|
1941
|
+
dashboard_id?: string | null;
|
|
1918
1942
|
dashboard_style?: string | null;
|
|
1919
1943
|
finalized_at?: string | null;
|
|
1920
1944
|
height?: number | null;
|
|
1921
1945
|
id?: string;
|
|
1922
1946
|
look_id?: string | null;
|
|
1923
1947
|
lookml_dashboard_id?: string | null;
|
|
1924
|
-
query_id?:
|
|
1948
|
+
query_id?: string | null;
|
|
1925
1949
|
dashboard_element_id?: string | null;
|
|
1926
1950
|
query_runtime?: number | null;
|
|
1927
1951
|
render_runtime?: number | null;
|
|
@@ -1929,7 +1953,7 @@ export interface IRenderTask {
|
|
|
1929
1953
|
runtime?: number | null;
|
|
1930
1954
|
status?: string | null;
|
|
1931
1955
|
status_detail?: string | null;
|
|
1932
|
-
user_id?:
|
|
1956
|
+
user_id?: string | null;
|
|
1933
1957
|
width?: number | null;
|
|
1934
1958
|
}
|
|
1935
1959
|
export interface IRepositoryCredential {
|
|
@@ -1964,16 +1988,20 @@ export interface IRequestAllGroups {
|
|
|
1964
1988
|
fields?: string | null;
|
|
1965
1989
|
page?: number | null;
|
|
1966
1990
|
per_page?: number | null;
|
|
1991
|
+
limit?: number | null;
|
|
1992
|
+
offset?: number | null;
|
|
1967
1993
|
sorts?: string | null;
|
|
1968
|
-
ids?: DelimArray<
|
|
1969
|
-
content_metadata_id?:
|
|
1994
|
+
ids?: DelimArray<string> | null;
|
|
1995
|
+
content_metadata_id?: string | null;
|
|
1970
1996
|
can_add_to_content_metadata?: boolean | null;
|
|
1971
1997
|
}
|
|
1972
1998
|
export interface IRequestAllGroupUsers {
|
|
1973
|
-
group_id:
|
|
1999
|
+
group_id: string;
|
|
1974
2000
|
fields?: string | null;
|
|
1975
2001
|
page?: number | null;
|
|
1976
2002
|
per_page?: number | null;
|
|
2003
|
+
limit?: number | null;
|
|
2004
|
+
offset?: number | null;
|
|
1977
2005
|
sorts?: string | null;
|
|
1978
2006
|
}
|
|
1979
2007
|
export interface IRequestAllIntegrations {
|
|
@@ -1987,10 +2015,10 @@ export interface IRequestAllLookmlModels {
|
|
|
1987
2015
|
}
|
|
1988
2016
|
export interface IRequestAllRoles {
|
|
1989
2017
|
fields?: string | null;
|
|
1990
|
-
ids?: DelimArray<
|
|
2018
|
+
ids?: DelimArray<string> | null;
|
|
1991
2019
|
}
|
|
1992
2020
|
export interface IRequestAllScheduledPlans {
|
|
1993
|
-
user_id?:
|
|
2021
|
+
user_id?: string | null;
|
|
1994
2022
|
fields?: string | null;
|
|
1995
2023
|
all_users?: boolean | null;
|
|
1996
2024
|
}
|
|
@@ -2001,7 +2029,7 @@ export interface IRequestAllUsers {
|
|
|
2001
2029
|
limit?: number | null;
|
|
2002
2030
|
offset?: number | null;
|
|
2003
2031
|
sorts?: string | null;
|
|
2004
|
-
ids?: DelimArray<
|
|
2032
|
+
ids?: DelimArray<string> | null;
|
|
2005
2033
|
}
|
|
2006
2034
|
export interface IRequestConnectionColumns {
|
|
2007
2035
|
connection_name: string;
|
|
@@ -2040,6 +2068,11 @@ export interface IRequestContentThumbnail {
|
|
|
2040
2068
|
width?: number | null;
|
|
2041
2069
|
height?: number | null;
|
|
2042
2070
|
}
|
|
2071
|
+
export interface IRequestCreateDashboardElement {
|
|
2072
|
+
body: IWriteDashboardElement;
|
|
2073
|
+
fields?: string | null;
|
|
2074
|
+
apply_filters?: boolean | null;
|
|
2075
|
+
}
|
|
2043
2076
|
export interface IRequestCreateDashboardRenderTask {
|
|
2044
2077
|
dashboard_id: string;
|
|
2045
2078
|
result_format: string;
|
|
@@ -2068,7 +2101,7 @@ export interface IRequestCreateQueryTask {
|
|
|
2068
2101
|
fields?: string | null;
|
|
2069
2102
|
}
|
|
2070
2103
|
export interface IRequestCreateUserCredentialsEmailPasswordReset {
|
|
2071
|
-
user_id:
|
|
2104
|
+
user_id: string;
|
|
2072
2105
|
expires?: boolean | null;
|
|
2073
2106
|
fields?: string | null;
|
|
2074
2107
|
}
|
|
@@ -2090,11 +2123,6 @@ export interface IRequestFolderChildrenSearch {
|
|
|
2090
2123
|
sorts?: string | null;
|
|
2091
2124
|
name?: string | null;
|
|
2092
2125
|
}
|
|
2093
|
-
export interface IRequestGetAllCommands {
|
|
2094
|
-
content_id?: string | null;
|
|
2095
|
-
content_type?: string | null;
|
|
2096
|
-
limit?: number | null;
|
|
2097
|
-
}
|
|
2098
2126
|
export interface IRequestGraphDerivedTablesForModel {
|
|
2099
2127
|
model: string;
|
|
2100
2128
|
format?: string | null;
|
|
@@ -2117,7 +2145,7 @@ export interface IRequestModelFieldnameSuggestions {
|
|
|
2117
2145
|
filters?: any | null;
|
|
2118
2146
|
}
|
|
2119
2147
|
export interface IRequestRoleUsers {
|
|
2120
|
-
role_id:
|
|
2148
|
+
role_id: string;
|
|
2121
2149
|
fields?: string | null;
|
|
2122
2150
|
direct_association_only?: boolean | null;
|
|
2123
2151
|
}
|
|
@@ -2166,7 +2194,7 @@ export interface IRequestRunLookmlTest {
|
|
|
2166
2194
|
model?: string | null;
|
|
2167
2195
|
}
|
|
2168
2196
|
export interface IRequestRunQuery {
|
|
2169
|
-
query_id:
|
|
2197
|
+
query_id: string;
|
|
2170
2198
|
result_format: string;
|
|
2171
2199
|
limit?: number | null;
|
|
2172
2200
|
apply_formatting?: boolean | null;
|
|
@@ -2183,20 +2211,20 @@ export interface IRequestRunQuery {
|
|
|
2183
2211
|
source?: string | null;
|
|
2184
2212
|
}
|
|
2185
2213
|
export interface IRequestScheduledPlansForDashboard {
|
|
2186
|
-
dashboard_id:
|
|
2187
|
-
user_id?:
|
|
2214
|
+
dashboard_id: string;
|
|
2215
|
+
user_id?: string | null;
|
|
2188
2216
|
all_users?: boolean | null;
|
|
2189
2217
|
fields?: string | null;
|
|
2190
2218
|
}
|
|
2191
2219
|
export interface IRequestScheduledPlansForLook {
|
|
2192
|
-
look_id:
|
|
2193
|
-
user_id?:
|
|
2220
|
+
look_id: string;
|
|
2221
|
+
user_id?: string | null;
|
|
2194
2222
|
fields?: string | null;
|
|
2195
2223
|
all_users?: boolean | null;
|
|
2196
2224
|
}
|
|
2197
2225
|
export interface IRequestScheduledPlansForLookmlDashboard {
|
|
2198
2226
|
lookml_dashboard_id: string;
|
|
2199
|
-
user_id?:
|
|
2227
|
+
user_id?: string | null;
|
|
2200
2228
|
fields?: string | null;
|
|
2201
2229
|
all_users?: boolean | null;
|
|
2202
2230
|
}
|
|
@@ -2228,7 +2256,7 @@ export interface IRequestSearchBoards {
|
|
|
2228
2256
|
filter_or?: boolean | null;
|
|
2229
2257
|
}
|
|
2230
2258
|
export interface IRequestSearchContentFavorites {
|
|
2231
|
-
id?:
|
|
2259
|
+
id?: string | null;
|
|
2232
2260
|
user_id?: string | null;
|
|
2233
2261
|
content_metadata_id?: string | null;
|
|
2234
2262
|
dashboard_id?: string | null;
|
|
@@ -2260,14 +2288,14 @@ export interface IRequestSearchCredentialsEmail {
|
|
|
2260
2288
|
limit?: number | null;
|
|
2261
2289
|
offset?: number | null;
|
|
2262
2290
|
sorts?: string | null;
|
|
2263
|
-
id?:
|
|
2291
|
+
id?: string | null;
|
|
2264
2292
|
email?: string | null;
|
|
2265
2293
|
emails?: string | null;
|
|
2266
2294
|
filter_or?: boolean | null;
|
|
2267
2295
|
}
|
|
2268
2296
|
export interface IRequestSearchDashboardElements {
|
|
2269
|
-
dashboard_id?:
|
|
2270
|
-
look_id?:
|
|
2297
|
+
dashboard_id?: string | null;
|
|
2298
|
+
look_id?: string | null;
|
|
2271
2299
|
title?: string | null;
|
|
2272
2300
|
deleted?: boolean | null;
|
|
2273
2301
|
fields?: string | null;
|
|
@@ -2303,7 +2331,7 @@ export interface IRequestSearchFolders {
|
|
|
2303
2331
|
offset?: number | null;
|
|
2304
2332
|
sorts?: string | null;
|
|
2305
2333
|
name?: string | null;
|
|
2306
|
-
id?:
|
|
2334
|
+
id?: string | null;
|
|
2307
2335
|
parent_id?: string | null;
|
|
2308
2336
|
creator_id?: string | null;
|
|
2309
2337
|
filter_or?: boolean | null;
|
|
@@ -2315,7 +2343,7 @@ export interface IRequestSearchGroups {
|
|
|
2315
2343
|
offset?: number | null;
|
|
2316
2344
|
sorts?: string | null;
|
|
2317
2345
|
filter_or?: boolean | null;
|
|
2318
|
-
id?:
|
|
2346
|
+
id?: string | null;
|
|
2319
2347
|
name?: string | null;
|
|
2320
2348
|
external_group_id?: string | null;
|
|
2321
2349
|
externally_managed?: boolean | null;
|
|
@@ -2330,7 +2358,7 @@ export interface IRequestSearchLooks {
|
|
|
2330
2358
|
user_id?: string | null;
|
|
2331
2359
|
view_count?: string | null;
|
|
2332
2360
|
deleted?: boolean | null;
|
|
2333
|
-
query_id?:
|
|
2361
|
+
query_id?: string | null;
|
|
2334
2362
|
curate?: boolean | null;
|
|
2335
2363
|
last_viewed_at?: string | null;
|
|
2336
2364
|
fields?: string | null;
|
|
@@ -2346,7 +2374,7 @@ export interface IRequestSearchModelSets {
|
|
|
2346
2374
|
limit?: number | null;
|
|
2347
2375
|
offset?: number | null;
|
|
2348
2376
|
sorts?: string | null;
|
|
2349
|
-
id?:
|
|
2377
|
+
id?: string | null;
|
|
2350
2378
|
name?: string | null;
|
|
2351
2379
|
all_access?: boolean | null;
|
|
2352
2380
|
built_in?: boolean | null;
|
|
@@ -2357,13 +2385,13 @@ export interface IRequestSearchRoles {
|
|
|
2357
2385
|
limit?: number | null;
|
|
2358
2386
|
offset?: number | null;
|
|
2359
2387
|
sorts?: string | null;
|
|
2360
|
-
id?:
|
|
2388
|
+
id?: string | null;
|
|
2361
2389
|
name?: string | null;
|
|
2362
2390
|
built_in?: boolean | null;
|
|
2363
2391
|
filter_or?: boolean | null;
|
|
2364
2392
|
}
|
|
2365
2393
|
export interface IRequestSearchThemes {
|
|
2366
|
-
id?:
|
|
2394
|
+
id?: string | null;
|
|
2367
2395
|
name?: string | null;
|
|
2368
2396
|
begin_at?: Date | null;
|
|
2369
2397
|
end_at?: Date | null;
|
|
@@ -2377,6 +2405,8 @@ export interface IRequestSearchUserLoginLockouts {
|
|
|
2377
2405
|
fields?: string | null;
|
|
2378
2406
|
page?: number | null;
|
|
2379
2407
|
per_page?: number | null;
|
|
2408
|
+
limit?: number | null;
|
|
2409
|
+
offset?: number | null;
|
|
2380
2410
|
sorts?: string | null;
|
|
2381
2411
|
auth_type?: string | null;
|
|
2382
2412
|
full_name?: string | null;
|
|
@@ -2410,7 +2440,7 @@ export interface IRequestSearchUsersNames {
|
|
|
2410
2440
|
limit?: number | null;
|
|
2411
2441
|
offset?: number | null;
|
|
2412
2442
|
sorts?: string | null;
|
|
2413
|
-
id?:
|
|
2443
|
+
id?: string | null;
|
|
2414
2444
|
first_name?: string | null;
|
|
2415
2445
|
last_name?: string | null;
|
|
2416
2446
|
verified_looker_employee?: boolean | null;
|
|
@@ -2433,14 +2463,14 @@ export interface IRequestTagRef {
|
|
|
2433
2463
|
tag_message?: string | null;
|
|
2434
2464
|
}
|
|
2435
2465
|
export interface IRequestUserAttributeUserValues {
|
|
2436
|
-
user_id:
|
|
2466
|
+
user_id: string;
|
|
2437
2467
|
fields?: string | null;
|
|
2438
|
-
user_attribute_ids?: DelimArray<
|
|
2468
|
+
user_attribute_ids?: DelimArray<string> | null;
|
|
2439
2469
|
all_values?: boolean | null;
|
|
2440
2470
|
include_unset?: boolean | null;
|
|
2441
2471
|
}
|
|
2442
2472
|
export interface IRequestUserRoles {
|
|
2443
|
-
user_id:
|
|
2473
|
+
user_id: string;
|
|
2444
2474
|
fields?: string | null;
|
|
2445
2475
|
direct_association_only?: boolean | null;
|
|
2446
2476
|
}
|
|
@@ -2467,43 +2497,43 @@ export interface IResultMakerFilterablesListen {
|
|
|
2467
2497
|
field?: string | null;
|
|
2468
2498
|
}
|
|
2469
2499
|
export interface IResultMakerWithIdVisConfigAndDynamicFields {
|
|
2470
|
-
id?:
|
|
2500
|
+
id?: string;
|
|
2471
2501
|
dynamic_fields?: string | null;
|
|
2472
2502
|
filterables?: IResultMakerFilterables[] | null;
|
|
2473
2503
|
sorts?: string[] | null;
|
|
2474
2504
|
merge_result_id?: string | null;
|
|
2475
2505
|
total?: boolean;
|
|
2476
|
-
query_id?:
|
|
2506
|
+
query_id?: string | null;
|
|
2477
2507
|
sql_query_id?: string | null;
|
|
2478
2508
|
query?: IQuery;
|
|
2479
2509
|
vis_config?: IDictionary<any> | null;
|
|
2480
2510
|
}
|
|
2481
2511
|
export interface IRole {
|
|
2482
2512
|
can?: IDictionary<boolean>;
|
|
2483
|
-
id?:
|
|
2513
|
+
id?: string;
|
|
2484
2514
|
name?: string | null;
|
|
2485
2515
|
permission_set?: IPermissionSet;
|
|
2486
|
-
permission_set_id?:
|
|
2516
|
+
permission_set_id?: string | null;
|
|
2487
2517
|
model_set?: IModelSet;
|
|
2488
|
-
model_set_id?:
|
|
2518
|
+
model_set_id?: string | null;
|
|
2489
2519
|
url?: string | null;
|
|
2490
2520
|
users_url?: string | null;
|
|
2491
2521
|
}
|
|
2492
2522
|
export interface IRoleSearch {
|
|
2493
2523
|
can?: IDictionary<boolean>;
|
|
2494
|
-
id?:
|
|
2524
|
+
id?: string;
|
|
2495
2525
|
name?: string | null;
|
|
2496
2526
|
permission_set?: IPermissionSet;
|
|
2497
|
-
permission_set_id?:
|
|
2527
|
+
permission_set_id?: string | null;
|
|
2498
2528
|
model_set?: IModelSet;
|
|
2499
|
-
model_set_id?:
|
|
2529
|
+
model_set_id?: string | null;
|
|
2500
2530
|
user_count?: number | null;
|
|
2501
2531
|
url?: string | null;
|
|
2502
2532
|
users_url?: string | null;
|
|
2503
2533
|
}
|
|
2504
2534
|
export interface IRunningQueries {
|
|
2505
2535
|
can?: IDictionary<boolean>;
|
|
2506
|
-
id?:
|
|
2536
|
+
id?: string;
|
|
2507
2537
|
user?: IUserPublic;
|
|
2508
2538
|
query?: IQuery;
|
|
2509
2539
|
sql_query?: ISqlQuery;
|
|
@@ -2542,8 +2572,8 @@ export interface ISamlConfig {
|
|
|
2542
2572
|
modified_by?: string | null;
|
|
2543
2573
|
default_new_user_roles?: IRole[] | null;
|
|
2544
2574
|
default_new_user_groups?: IGroup[] | null;
|
|
2545
|
-
default_new_user_role_ids?:
|
|
2546
|
-
default_new_user_group_ids?:
|
|
2575
|
+
default_new_user_role_ids?: string[] | null;
|
|
2576
|
+
default_new_user_group_ids?: string[] | null;
|
|
2547
2577
|
set_roles_from_groups?: boolean;
|
|
2548
2578
|
groups_attribute?: string | null;
|
|
2549
2579
|
groups?: ISamlGroupRead[] | null;
|
|
@@ -2560,19 +2590,19 @@ export interface ISamlConfig {
|
|
|
2560
2590
|
url?: string | null;
|
|
2561
2591
|
}
|
|
2562
2592
|
export interface ISamlGroupRead {
|
|
2563
|
-
id?:
|
|
2564
|
-
looker_group_id?:
|
|
2593
|
+
id?: string;
|
|
2594
|
+
looker_group_id?: string | null;
|
|
2565
2595
|
looker_group_name?: string | null;
|
|
2566
2596
|
name?: string | null;
|
|
2567
2597
|
roles?: IRole[] | null;
|
|
2568
2598
|
url?: string | null;
|
|
2569
2599
|
}
|
|
2570
2600
|
export interface ISamlGroupWrite {
|
|
2571
|
-
id?:
|
|
2572
|
-
looker_group_id?:
|
|
2601
|
+
id?: string | null;
|
|
2602
|
+
looker_group_id?: string | null;
|
|
2573
2603
|
looker_group_name?: string | null;
|
|
2574
2604
|
name?: string | null;
|
|
2575
|
-
role_ids?:
|
|
2605
|
+
role_ids?: string[] | null;
|
|
2576
2606
|
url?: string | null;
|
|
2577
2607
|
}
|
|
2578
2608
|
export interface ISamlMetadataParseResult {
|
|
@@ -2590,16 +2620,16 @@ export interface ISamlUserAttributeRead {
|
|
|
2590
2620
|
export interface ISamlUserAttributeWrite {
|
|
2591
2621
|
name?: string | null;
|
|
2592
2622
|
required?: boolean;
|
|
2593
|
-
user_attribute_ids?:
|
|
2623
|
+
user_attribute_ids?: string[] | null;
|
|
2594
2624
|
url?: string | null;
|
|
2595
2625
|
}
|
|
2596
2626
|
export interface IScheduledPlan {
|
|
2597
2627
|
name?: string | null;
|
|
2598
|
-
user_id?:
|
|
2628
|
+
user_id?: string | null;
|
|
2599
2629
|
run_as_recipient?: boolean;
|
|
2600
2630
|
enabled?: boolean;
|
|
2601
2631
|
look_id?: string | null;
|
|
2602
|
-
dashboard_id?:
|
|
2632
|
+
dashboard_id?: string | null;
|
|
2603
2633
|
lookml_dashboard_id?: string | null;
|
|
2604
2634
|
filters_string?: string | null;
|
|
2605
2635
|
dashboard_filters?: string | null;
|
|
@@ -2620,7 +2650,7 @@ export interface IScheduledPlan {
|
|
|
2620
2650
|
color_theme?: string | null;
|
|
2621
2651
|
long_tables?: boolean;
|
|
2622
2652
|
inline_table_width?: number | null;
|
|
2623
|
-
id?:
|
|
2653
|
+
id?: string;
|
|
2624
2654
|
created_at?: Date | null;
|
|
2625
2655
|
updated_at?: Date | null;
|
|
2626
2656
|
title?: string | null;
|
|
@@ -2630,8 +2660,8 @@ export interface IScheduledPlan {
|
|
|
2630
2660
|
can?: IDictionary<boolean>;
|
|
2631
2661
|
}
|
|
2632
2662
|
export interface IScheduledPlanDestination {
|
|
2633
|
-
id?:
|
|
2634
|
-
scheduled_plan_id?:
|
|
2663
|
+
id?: string;
|
|
2664
|
+
scheduled_plan_id?: string | null;
|
|
2635
2665
|
format?: string | null;
|
|
2636
2666
|
apply_formatting?: boolean;
|
|
2637
2667
|
apply_vis?: boolean;
|
|
@@ -2679,7 +2709,7 @@ export interface ISchemaTables {
|
|
|
2679
2709
|
}
|
|
2680
2710
|
export interface ISession {
|
|
2681
2711
|
can?: IDictionary<boolean>;
|
|
2682
|
-
id?:
|
|
2712
|
+
id?: string;
|
|
2683
2713
|
ip_address?: string | null;
|
|
2684
2714
|
browser?: string | null;
|
|
2685
2715
|
operating_system?: string | null;
|
|
@@ -2689,7 +2719,7 @@ export interface ISession {
|
|
|
2689
2719
|
credentials_type?: string | null;
|
|
2690
2720
|
extended_at?: string | null;
|
|
2691
2721
|
extended_count?: number | null;
|
|
2692
|
-
sudo_user_id?:
|
|
2722
|
+
sudo_user_id?: string | null;
|
|
2693
2723
|
created_at?: string | null;
|
|
2694
2724
|
expires_at?: string | null;
|
|
2695
2725
|
url?: string | null;
|
|
@@ -2704,9 +2734,10 @@ export interface ISessionConfig {
|
|
|
2704
2734
|
}
|
|
2705
2735
|
export interface ISetting {
|
|
2706
2736
|
extension_framework_enabled?: boolean;
|
|
2737
|
+
extension_load_url_enabled?: boolean;
|
|
2707
2738
|
marketplace_auto_install_enabled?: boolean;
|
|
2708
2739
|
marketplace_enabled?: boolean;
|
|
2709
|
-
|
|
2740
|
+
privatelabel_configuration?: IPrivatelabelConfiguration;
|
|
2710
2741
|
custom_welcome_email?: ICustomWelcomeEmail;
|
|
2711
2742
|
onboarding_enabled?: boolean;
|
|
2712
2743
|
}
|
|
@@ -2748,7 +2779,7 @@ export interface ISqlQuery {
|
|
|
2748
2779
|
explore_url?: string | null;
|
|
2749
2780
|
plaintext?: boolean;
|
|
2750
2781
|
vis_config?: IDictionary<any> | null;
|
|
2751
|
-
result_maker_id?:
|
|
2782
|
+
result_maker_id?: string | null;
|
|
2752
2783
|
}
|
|
2753
2784
|
export interface ISqlQueryCreate {
|
|
2754
2785
|
connection_name?: string | null;
|
|
@@ -2810,7 +2841,8 @@ export interface ISupportAccessStatus {
|
|
|
2810
2841
|
export declare enum SupportedActionTypes {
|
|
2811
2842
|
cell = "cell",
|
|
2812
2843
|
query = "query",
|
|
2813
|
-
dashboard = "dashboard"
|
|
2844
|
+
dashboard = "dashboard",
|
|
2845
|
+
none = "none"
|
|
2814
2846
|
}
|
|
2815
2847
|
export declare enum SupportedDownloadSettings {
|
|
2816
2848
|
push = "push",
|
|
@@ -2843,7 +2875,7 @@ export interface ITheme {
|
|
|
2843
2875
|
can?: IDictionary<boolean>;
|
|
2844
2876
|
begin_at?: Date | null;
|
|
2845
2877
|
end_at?: Date | null;
|
|
2846
|
-
id?:
|
|
2878
|
+
id?: string;
|
|
2847
2879
|
name?: string;
|
|
2848
2880
|
settings?: IThemeSettings;
|
|
2849
2881
|
}
|
|
@@ -2871,10 +2903,6 @@ export interface ITimezone {
|
|
|
2871
2903
|
label?: string | null;
|
|
2872
2904
|
group?: string | null;
|
|
2873
2905
|
}
|
|
2874
|
-
export interface IUpdateCommand {
|
|
2875
|
-
name?: string | null;
|
|
2876
|
-
description?: string | null;
|
|
2877
|
-
}
|
|
2878
2906
|
export interface IUpdateFolder {
|
|
2879
2907
|
name?: string;
|
|
2880
2908
|
parent_id?: string;
|
|
@@ -2894,19 +2922,19 @@ export interface IUser {
|
|
|
2894
2922
|
credentials_totp?: ICredentialsTotp;
|
|
2895
2923
|
display_name?: string | null;
|
|
2896
2924
|
email?: string | null;
|
|
2897
|
-
embed_group_space_id?:
|
|
2925
|
+
embed_group_space_id?: string | null;
|
|
2898
2926
|
first_name?: string | null;
|
|
2899
|
-
group_ids?:
|
|
2927
|
+
group_ids?: string[] | null;
|
|
2900
2928
|
home_folder_id?: string | null;
|
|
2901
|
-
id?:
|
|
2929
|
+
id?: string;
|
|
2902
2930
|
is_disabled?: boolean;
|
|
2903
2931
|
last_name?: string | null;
|
|
2904
2932
|
locale?: string | null;
|
|
2905
2933
|
looker_versions?: string[] | null;
|
|
2906
2934
|
models_dir_validated?: boolean | null;
|
|
2907
|
-
personal_folder_id?:
|
|
2935
|
+
personal_folder_id?: string | null;
|
|
2908
2936
|
presumed_looker_employee?: boolean;
|
|
2909
|
-
role_ids?:
|
|
2937
|
+
role_ids?: string[] | null;
|
|
2910
2938
|
sessions?: ISession[] | null;
|
|
2911
2939
|
ui_state?: IDictionary<string> | null;
|
|
2912
2940
|
verified_looker_employee?: boolean;
|
|
@@ -2914,11 +2942,12 @@ export interface IUser {
|
|
|
2914
2942
|
allow_direct_roles?: boolean;
|
|
2915
2943
|
allow_normal_group_membership?: boolean;
|
|
2916
2944
|
allow_roles_from_normal_groups?: boolean;
|
|
2945
|
+
embed_group_folder_id?: string | null;
|
|
2917
2946
|
url?: string | null;
|
|
2918
2947
|
}
|
|
2919
2948
|
export interface IUserAttribute {
|
|
2920
2949
|
can?: IDictionary<boolean>;
|
|
2921
|
-
id?:
|
|
2950
|
+
id?: string;
|
|
2922
2951
|
name: string | null;
|
|
2923
2952
|
label: string | null;
|
|
2924
2953
|
type: string | null;
|
|
@@ -2943,9 +2972,9 @@ export declare enum UserAttributeFilterTypes {
|
|
|
2943
2972
|
}
|
|
2944
2973
|
export interface IUserAttributeGroupValue {
|
|
2945
2974
|
can?: IDictionary<boolean>;
|
|
2946
|
-
id?:
|
|
2947
|
-
group_id?:
|
|
2948
|
-
user_attribute_id?:
|
|
2975
|
+
id?: string;
|
|
2976
|
+
group_id?: string | null;
|
|
2977
|
+
user_attribute_id?: string | null;
|
|
2949
2978
|
value_is_hidden?: boolean;
|
|
2950
2979
|
rank?: number | null;
|
|
2951
2980
|
value?: string | null;
|
|
@@ -2956,10 +2985,10 @@ export interface IUserAttributeWithValue {
|
|
|
2956
2985
|
label?: string | null;
|
|
2957
2986
|
rank?: number | null;
|
|
2958
2987
|
value?: string | null;
|
|
2959
|
-
user_id?:
|
|
2988
|
+
user_id?: string | null;
|
|
2960
2989
|
user_can_edit?: boolean;
|
|
2961
2990
|
value_is_hidden?: boolean;
|
|
2962
|
-
user_attribute_id?:
|
|
2991
|
+
user_attribute_id?: string | null;
|
|
2963
2992
|
source?: string | null;
|
|
2964
2993
|
hidden_value_domain_whitelist?: string | null;
|
|
2965
2994
|
}
|
|
@@ -2971,7 +3000,7 @@ export interface IUserLoginLockout {
|
|
|
2971
3000
|
key?: string | null;
|
|
2972
3001
|
auth_type?: string | null;
|
|
2973
3002
|
ip?: string | null;
|
|
2974
|
-
user_id?:
|
|
3003
|
+
user_id?: string | null;
|
|
2975
3004
|
remote_id?: string | null;
|
|
2976
3005
|
full_name?: string | null;
|
|
2977
3006
|
email?: string | null;
|
|
@@ -2980,7 +3009,7 @@ export interface IUserLoginLockout {
|
|
|
2980
3009
|
}
|
|
2981
3010
|
export interface IUserPublic {
|
|
2982
3011
|
can?: IDictionary<boolean>;
|
|
2983
|
-
id?:
|
|
3012
|
+
id?: string;
|
|
2984
3013
|
first_name?: string;
|
|
2985
3014
|
last_name?: string;
|
|
2986
3015
|
display_name?: string | null;
|
|
@@ -3013,7 +3042,7 @@ export interface IWelcomeEmailTest {
|
|
|
3013
3042
|
header?: string | null;
|
|
3014
3043
|
}
|
|
3015
3044
|
export interface IWhitelabelConfiguration {
|
|
3016
|
-
id?:
|
|
3045
|
+
id?: string;
|
|
3017
3046
|
logo_file?: string | null;
|
|
3018
3047
|
logo_url?: string | null;
|
|
3019
3048
|
favicon_file?: string | null;
|
|
@@ -3040,7 +3069,7 @@ export interface IWriteAlert {
|
|
|
3040
3069
|
comparison_type: ComparisonType | null;
|
|
3041
3070
|
cron: string;
|
|
3042
3071
|
custom_title?: string | null;
|
|
3043
|
-
dashboard_element_id?:
|
|
3072
|
+
dashboard_element_id?: string | null;
|
|
3044
3073
|
description?: string | null;
|
|
3045
3074
|
destinations: IAlertDestination[] | null;
|
|
3046
3075
|
field: IAlertField | null;
|
|
@@ -3051,7 +3080,7 @@ export interface IWriteAlert {
|
|
|
3051
3080
|
investigative_content_id?: string | null;
|
|
3052
3081
|
lookml_dashboard_id?: string | null;
|
|
3053
3082
|
lookml_link_id?: string | null;
|
|
3054
|
-
owner_id:
|
|
3083
|
+
owner_id: string;
|
|
3055
3084
|
threshold: number;
|
|
3056
3085
|
time_series_condition_state?: IAlertConditionState | null;
|
|
3057
3086
|
}
|
|
@@ -3068,24 +3097,29 @@ export interface IWriteBackupConfiguration {
|
|
|
3068
3097
|
export interface IWriteBoard {
|
|
3069
3098
|
deleted_at?: Date | null;
|
|
3070
3099
|
description?: string | null;
|
|
3071
|
-
section_order?:
|
|
3100
|
+
section_order?: string[] | null;
|
|
3072
3101
|
title?: string | null;
|
|
3073
3102
|
}
|
|
3074
3103
|
export interface IWriteBoardItem {
|
|
3075
3104
|
custom_description?: string | null;
|
|
3076
3105
|
custom_title?: string | null;
|
|
3077
3106
|
custom_url?: string | null;
|
|
3078
|
-
dashboard_id?:
|
|
3079
|
-
board_section_id?:
|
|
3107
|
+
dashboard_id?: string | null;
|
|
3108
|
+
board_section_id?: string | null;
|
|
3080
3109
|
look_id?: string | null;
|
|
3081
3110
|
lookml_dashboard_id?: string | null;
|
|
3082
3111
|
order?: number | null;
|
|
3112
|
+
use_custom_description?: boolean;
|
|
3113
|
+
use_custom_title?: boolean;
|
|
3114
|
+
use_custom_url?: boolean;
|
|
3115
|
+
custom_image_data_base64?: string | null;
|
|
3116
|
+
use_custom_image?: boolean;
|
|
3083
3117
|
}
|
|
3084
3118
|
export interface IWriteBoardSection {
|
|
3085
3119
|
deleted_at?: Date | null;
|
|
3086
3120
|
description?: string | null;
|
|
3087
|
-
board_id?:
|
|
3088
|
-
item_order?:
|
|
3121
|
+
board_id?: string | null;
|
|
3122
|
+
item_order?: string[] | null;
|
|
3089
3123
|
title?: string | null;
|
|
3090
3124
|
}
|
|
3091
3125
|
export interface IWriteColorCollection {
|
|
@@ -3094,15 +3128,9 @@ export interface IWriteColorCollection {
|
|
|
3094
3128
|
sequentialPalettes?: IContinuousPalette[] | null;
|
|
3095
3129
|
divergingPalettes?: IContinuousPalette[] | null;
|
|
3096
3130
|
}
|
|
3097
|
-
export interface IWriteCommand {
|
|
3098
|
-
name?: string;
|
|
3099
|
-
description?: string | null;
|
|
3100
|
-
linked_content_id?: string;
|
|
3101
|
-
linked_content_type?: LinkedContentType | null;
|
|
3102
|
-
}
|
|
3103
3131
|
export interface IWriteContentFavorite {
|
|
3104
|
-
user_id?:
|
|
3105
|
-
content_metadata_id?:
|
|
3132
|
+
user_id?: string;
|
|
3133
|
+
content_metadata_id?: string;
|
|
3106
3134
|
look?: IWriteLookBasic | null;
|
|
3107
3135
|
dashboard?: IWriteDashboardBase | null;
|
|
3108
3136
|
}
|
|
@@ -3125,7 +3153,7 @@ export interface IWriteCreateDashboardFilter {
|
|
|
3125
3153
|
ui_config?: IDictionary<any> | null;
|
|
3126
3154
|
}
|
|
3127
3155
|
export interface IWriteCreateQueryTask {
|
|
3128
|
-
query_id:
|
|
3156
|
+
query_id: string | null;
|
|
3129
3157
|
result_format: ResultFormat | null;
|
|
3130
3158
|
source?: string | null;
|
|
3131
3159
|
deferred?: boolean;
|
|
@@ -3152,8 +3180,8 @@ export interface IWriteDashboard {
|
|
|
3152
3180
|
filters_bar_collapsed?: boolean;
|
|
3153
3181
|
load_configuration?: string | null;
|
|
3154
3182
|
lookml_link_id?: string | null;
|
|
3155
|
-
show_filters_bar?: boolean;
|
|
3156
|
-
show_title?: boolean;
|
|
3183
|
+
show_filters_bar?: boolean | null;
|
|
3184
|
+
show_title?: boolean | null;
|
|
3157
3185
|
folder_id?: string | null;
|
|
3158
3186
|
text_tile_text_color?: string | null;
|
|
3159
3187
|
tile_background_color?: string | null;
|
|
@@ -3174,15 +3202,16 @@ export interface IWriteDashboardElement {
|
|
|
3174
3202
|
note_state?: string | null;
|
|
3175
3203
|
note_text?: string | null;
|
|
3176
3204
|
query?: IWriteQuery | null;
|
|
3177
|
-
query_id?:
|
|
3205
|
+
query_id?: string | null;
|
|
3178
3206
|
refresh_interval?: string | null;
|
|
3179
3207
|
result_maker?: IWriteResultMakerWithIdVisConfigAndDynamicFields | null;
|
|
3180
|
-
result_maker_id?:
|
|
3208
|
+
result_maker_id?: string | null;
|
|
3181
3209
|
subtitle_text?: string | null;
|
|
3182
3210
|
title?: string | null;
|
|
3183
3211
|
title_hidden?: boolean;
|
|
3184
3212
|
title_text?: string | null;
|
|
3185
3213
|
type?: string | null;
|
|
3214
|
+
rich_content_json?: string | null;
|
|
3186
3215
|
}
|
|
3187
3216
|
export interface IWriteDashboardFilter {
|
|
3188
3217
|
name?: string | null;
|
|
@@ -3251,7 +3280,7 @@ export interface IWriteDBConnection {
|
|
|
3251
3280
|
tunnel_id?: string | null;
|
|
3252
3281
|
pdt_concurrency?: number | null;
|
|
3253
3282
|
disable_context_comment?: boolean | null;
|
|
3254
|
-
oauth_application_id?:
|
|
3283
|
+
oauth_application_id?: string | null;
|
|
3255
3284
|
always_retry_failed_builds?: boolean | null;
|
|
3256
3285
|
cost_estimate_enabled?: boolean | null;
|
|
3257
3286
|
pdt_api_control_enabled?: boolean | null;
|
|
@@ -3294,7 +3323,7 @@ export interface IWriteGroup {
|
|
|
3294
3323
|
export interface IWriteIntegration {
|
|
3295
3324
|
enabled?: boolean;
|
|
3296
3325
|
params?: IIntegrationParam[] | null;
|
|
3297
|
-
installed_delegate_oauth_targets?:
|
|
3326
|
+
installed_delegate_oauth_targets?: string[] | null;
|
|
3298
3327
|
}
|
|
3299
3328
|
export interface IWriteIntegrationHub {
|
|
3300
3329
|
url?: string;
|
|
@@ -3316,8 +3345,8 @@ export interface IWriteLDAPConfig {
|
|
|
3316
3345
|
connection_port?: string | null;
|
|
3317
3346
|
connection_tls?: boolean;
|
|
3318
3347
|
connection_tls_no_verify?: boolean;
|
|
3319
|
-
default_new_user_group_ids?:
|
|
3320
|
-
default_new_user_role_ids?:
|
|
3348
|
+
default_new_user_group_ids?: string[] | null;
|
|
3349
|
+
default_new_user_role_ids?: string[] | null;
|
|
3321
3350
|
enabled?: boolean;
|
|
3322
3351
|
force_no_page?: boolean;
|
|
3323
3352
|
groups_base_dn?: string | null;
|
|
@@ -3347,7 +3376,7 @@ export interface IWriteLegacyFeature {
|
|
|
3347
3376
|
enabled_locally?: boolean;
|
|
3348
3377
|
}
|
|
3349
3378
|
export interface IWriteLookBasic {
|
|
3350
|
-
user_id?:
|
|
3379
|
+
user_id?: string | null;
|
|
3351
3380
|
}
|
|
3352
3381
|
export interface IWriteLookmlModel {
|
|
3353
3382
|
allowed_db_connection_names?: string[] | null;
|
|
@@ -3357,12 +3386,12 @@ export interface IWriteLookmlModel {
|
|
|
3357
3386
|
}
|
|
3358
3387
|
export interface IWriteLookWithQuery {
|
|
3359
3388
|
title?: string | null;
|
|
3360
|
-
user_id?:
|
|
3389
|
+
user_id?: string | null;
|
|
3361
3390
|
deleted?: boolean;
|
|
3362
3391
|
description?: string | null;
|
|
3363
3392
|
is_run_on_load?: boolean;
|
|
3364
3393
|
public?: boolean;
|
|
3365
|
-
query_id?:
|
|
3394
|
+
query_id?: string | null;
|
|
3366
3395
|
folder?: IWriteFolderBase | null;
|
|
3367
3396
|
folder_id?: string | null;
|
|
3368
3397
|
query?: IWriteQuery | null;
|
|
@@ -3385,15 +3414,15 @@ export interface IWriteOauthClientApp {
|
|
|
3385
3414
|
display_name?: string;
|
|
3386
3415
|
description?: string;
|
|
3387
3416
|
enabled?: boolean;
|
|
3388
|
-
group_id?:
|
|
3417
|
+
group_id?: string | null;
|
|
3389
3418
|
}
|
|
3390
3419
|
export interface IWriteOIDCConfig {
|
|
3391
3420
|
alternate_email_login_allowed?: boolean;
|
|
3392
3421
|
audience?: string | null;
|
|
3393
3422
|
auth_requires_role?: boolean;
|
|
3394
3423
|
authorization_endpoint?: string | null;
|
|
3395
|
-
default_new_user_group_ids?:
|
|
3396
|
-
default_new_user_role_ids?:
|
|
3424
|
+
default_new_user_group_ids?: string[] | null;
|
|
3425
|
+
default_new_user_role_ids?: string[] | null;
|
|
3397
3426
|
enabled?: boolean;
|
|
3398
3427
|
groups_attribute?: string | null;
|
|
3399
3428
|
groups_with_role_ids?: IOIDCGroupWrite[] | null;
|
|
@@ -3423,6 +3452,21 @@ export interface IWritePermissionSet {
|
|
|
3423
3452
|
name?: string | null;
|
|
3424
3453
|
permissions?: string[] | null;
|
|
3425
3454
|
}
|
|
3455
|
+
export interface IWritePrivatelabelConfiguration {
|
|
3456
|
+
logo_file?: string | null;
|
|
3457
|
+
favicon_file?: string | null;
|
|
3458
|
+
default_title?: string | null;
|
|
3459
|
+
show_help_menu?: boolean;
|
|
3460
|
+
show_docs?: boolean;
|
|
3461
|
+
show_email_sub_options?: boolean;
|
|
3462
|
+
allow_looker_mentions?: boolean;
|
|
3463
|
+
allow_looker_links?: boolean;
|
|
3464
|
+
custom_welcome_email_advanced?: boolean;
|
|
3465
|
+
setup_mentions?: boolean;
|
|
3466
|
+
alerts_logo?: boolean;
|
|
3467
|
+
alerts_links?: boolean;
|
|
3468
|
+
folders_mentions?: boolean;
|
|
3469
|
+
}
|
|
3426
3470
|
export interface IWriteProject {
|
|
3427
3471
|
name?: string;
|
|
3428
3472
|
git_remote_url?: string | null;
|
|
@@ -3475,9 +3519,9 @@ export interface IWriteResultMakerWithIdVisConfigAndDynamicFields {
|
|
|
3475
3519
|
export interface IWriteRole {
|
|
3476
3520
|
name?: string | null;
|
|
3477
3521
|
permission_set?: IWritePermissionSet | null;
|
|
3478
|
-
permission_set_id?:
|
|
3522
|
+
permission_set_id?: string | null;
|
|
3479
3523
|
model_set?: IWriteModelSet | null;
|
|
3480
|
-
model_set_id?:
|
|
3524
|
+
model_set_id?: string | null;
|
|
3481
3525
|
}
|
|
3482
3526
|
export interface IWriteSamlConfig {
|
|
3483
3527
|
enabled?: boolean;
|
|
@@ -3491,8 +3535,8 @@ export interface IWriteSamlConfig {
|
|
|
3491
3535
|
user_attribute_map_last_name?: string | null;
|
|
3492
3536
|
new_user_migration_types?: string | null;
|
|
3493
3537
|
alternate_email_login_allowed?: boolean;
|
|
3494
|
-
default_new_user_role_ids?:
|
|
3495
|
-
default_new_user_group_ids?:
|
|
3538
|
+
default_new_user_role_ids?: string[] | null;
|
|
3539
|
+
default_new_user_group_ids?: string[] | null;
|
|
3496
3540
|
set_roles_from_groups?: boolean;
|
|
3497
3541
|
groups_attribute?: string | null;
|
|
3498
3542
|
groups_with_role_ids?: ISamlGroupWrite[] | null;
|
|
@@ -3507,11 +3551,11 @@ export interface IWriteSamlConfig {
|
|
|
3507
3551
|
}
|
|
3508
3552
|
export interface IWriteScheduledPlan {
|
|
3509
3553
|
name?: string | null;
|
|
3510
|
-
user_id?:
|
|
3554
|
+
user_id?: string | null;
|
|
3511
3555
|
run_as_recipient?: boolean;
|
|
3512
3556
|
enabled?: boolean;
|
|
3513
3557
|
look_id?: string | null;
|
|
3514
|
-
dashboard_id?:
|
|
3558
|
+
dashboard_id?: string | null;
|
|
3515
3559
|
lookml_dashboard_id?: string | null;
|
|
3516
3560
|
filters_string?: string | null;
|
|
3517
3561
|
dashboard_filters?: string | null;
|
|
@@ -3542,9 +3586,10 @@ export interface IWriteSessionConfig {
|
|
|
3542
3586
|
}
|
|
3543
3587
|
export interface IWriteSetting {
|
|
3544
3588
|
extension_framework_enabled?: boolean;
|
|
3589
|
+
extension_load_url_enabled?: boolean;
|
|
3545
3590
|
marketplace_auto_install_enabled?: boolean;
|
|
3546
3591
|
marketplace_enabled?: boolean;
|
|
3547
|
-
|
|
3592
|
+
privatelabel_configuration?: IWritePrivatelabelConfiguration | null;
|
|
3548
3593
|
custom_welcome_email?: ICustomWelcomeEmail | null;
|
|
3549
3594
|
onboarding_enabled?: boolean;
|
|
3550
3595
|
}
|