@looker/sdk 21.18.0 → 22.0.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 +67 -0
- package/lib/3.1/funcs.d.ts +3 -2
- package/lib/3.1/funcs.js +725 -709
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +3 -2
- package/lib/3.1/methods.js +484 -472
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +3 -2
- package/lib/3.1/models.d.ts +1666 -1661
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +3 -2
- package/lib/3.1/streams.js +484 -472
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +19 -8
- package/lib/4.0/funcs.js +1339 -1182
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +19 -8
- package/lib/4.0/methods.js +898 -786
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +19 -8
- package/lib/4.0/models.d.ts +1884 -1822
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +19 -8
- package/lib/4.0/streams.js +898 -786
- 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 +716 -703
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +484 -472
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +484 -472
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1298 -1175
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +898 -786
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +898 -786
- 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 +4 -4
package/lib/4.0/models.d.ts
CHANGED
|
@@ -3,65 +3,65 @@ export interface IAccessToken {
|
|
|
3
3
|
access_token?: string;
|
|
4
4
|
token_type?: string;
|
|
5
5
|
expires_in?: number;
|
|
6
|
-
refresh_token?: string;
|
|
6
|
+
refresh_token?: string | null;
|
|
7
7
|
}
|
|
8
8
|
export interface IAlert {
|
|
9
|
-
applied_dashboard_filters?: IAlertAppliedDashboardFilter[];
|
|
9
|
+
applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
|
|
10
10
|
comparison_type: ComparisonType;
|
|
11
11
|
cron: string;
|
|
12
|
-
custom_title?: string;
|
|
13
|
-
dashboard_element_id?: number;
|
|
14
|
-
description?: string;
|
|
15
|
-
destinations: IAlertDestination[];
|
|
12
|
+
custom_title?: string | null;
|
|
13
|
+
dashboard_element_id?: number | null;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
destinations: IAlertDestination[] | null;
|
|
16
16
|
field: IAlertField;
|
|
17
17
|
followed?: boolean;
|
|
18
18
|
followable?: boolean;
|
|
19
19
|
id?: number;
|
|
20
20
|
is_disabled?: boolean;
|
|
21
|
-
disabled_reason?: string;
|
|
21
|
+
disabled_reason?: string | null;
|
|
22
22
|
is_public?: boolean;
|
|
23
|
-
investigative_content_type?: InvestigativeContentType;
|
|
24
|
-
investigative_content_id?: string;
|
|
25
|
-
investigative_content_title?: string;
|
|
26
|
-
lookml_dashboard_id?: string;
|
|
27
|
-
lookml_link_id?: string;
|
|
23
|
+
investigative_content_type?: InvestigativeContentType | null;
|
|
24
|
+
investigative_content_id?: string | null;
|
|
25
|
+
investigative_content_title?: string | null;
|
|
26
|
+
lookml_dashboard_id?: string | null;
|
|
27
|
+
lookml_link_id?: string | null;
|
|
28
28
|
owner_id: number;
|
|
29
|
-
owner_display_name?: string;
|
|
29
|
+
owner_display_name?: string | null;
|
|
30
30
|
threshold: number;
|
|
31
31
|
time_series_condition_state?: IAlertConditionState;
|
|
32
32
|
}
|
|
33
33
|
export interface IAlertAppliedDashboardFilter {
|
|
34
|
-
filter_title: string;
|
|
34
|
+
filter_title: string | null;
|
|
35
35
|
field_name: string;
|
|
36
36
|
filter_value: string;
|
|
37
|
-
filter_description?: string;
|
|
37
|
+
filter_description?: string | null;
|
|
38
38
|
}
|
|
39
39
|
export interface IAlertConditionState {
|
|
40
|
-
previous_time_series_id?: string;
|
|
41
|
-
latest_time_series_id?: string;
|
|
40
|
+
previous_time_series_id?: string | null;
|
|
41
|
+
latest_time_series_id?: string | null;
|
|
42
42
|
}
|
|
43
43
|
export interface IAlertDestination {
|
|
44
44
|
destination_type: DestinationType;
|
|
45
|
-
email_address?: string;
|
|
46
|
-
action_hub_integration_id?: string;
|
|
47
|
-
action_hub_form_params_json?: string;
|
|
45
|
+
email_address?: string | null;
|
|
46
|
+
action_hub_integration_id?: string | null;
|
|
47
|
+
action_hub_form_params_json?: string | null;
|
|
48
48
|
}
|
|
49
49
|
export interface IAlertField {
|
|
50
50
|
title: string;
|
|
51
51
|
name: string;
|
|
52
|
-
filter?: IAlertFieldFilter[];
|
|
52
|
+
filter?: IAlertFieldFilter[] | null;
|
|
53
53
|
}
|
|
54
54
|
export interface IAlertFieldFilter {
|
|
55
55
|
field_name: string;
|
|
56
56
|
field_value: any;
|
|
57
|
-
filter_value?: string;
|
|
57
|
+
filter_value?: string | null;
|
|
58
58
|
}
|
|
59
59
|
export interface IAlertPatch {
|
|
60
|
-
owner_id?: number;
|
|
61
|
-
is_disabled?: boolean;
|
|
62
|
-
disabled_reason?: string;
|
|
63
|
-
is_public?: boolean;
|
|
64
|
-
threshold?: number;
|
|
60
|
+
owner_id?: number | null;
|
|
61
|
+
is_disabled?: boolean | null;
|
|
62
|
+
disabled_reason?: string | null;
|
|
63
|
+
is_public?: boolean | null;
|
|
64
|
+
threshold?: number | null;
|
|
65
65
|
}
|
|
66
66
|
export declare enum Align {
|
|
67
67
|
left = "left",
|
|
@@ -69,8 +69,8 @@ export declare enum Align {
|
|
|
69
69
|
}
|
|
70
70
|
export interface IApiSession {
|
|
71
71
|
can?: IDictionary<boolean>;
|
|
72
|
-
workspace_id?: string;
|
|
73
|
-
sudo_user_id?: number;
|
|
72
|
+
workspace_id?: string | null;
|
|
73
|
+
sudo_user_id?: number | null;
|
|
74
74
|
}
|
|
75
75
|
export interface IApiVersion {
|
|
76
76
|
looker_release_version?: string;
|
|
@@ -80,69 +80,69 @@ export interface IApiVersion {
|
|
|
80
80
|
web_server_url?: string;
|
|
81
81
|
}
|
|
82
82
|
export interface IApiVersionElement {
|
|
83
|
-
version?: string;
|
|
84
|
-
full_version?: string;
|
|
85
|
-
status?: string;
|
|
86
|
-
swagger_url?: string;
|
|
83
|
+
version?: string | null;
|
|
84
|
+
full_version?: string | null;
|
|
85
|
+
status?: string | null;
|
|
86
|
+
swagger_url?: string | null;
|
|
87
87
|
}
|
|
88
88
|
export interface IBackupConfiguration {
|
|
89
89
|
can?: IDictionary<boolean>;
|
|
90
|
-
type?: string;
|
|
91
|
-
custom_s3_bucket?: string;
|
|
92
|
-
custom_s3_bucket_region?: string;
|
|
93
|
-
custom_s3_key?: string;
|
|
94
|
-
custom_s3_secret?: string;
|
|
95
|
-
url?: string;
|
|
90
|
+
type?: string | null;
|
|
91
|
+
custom_s3_bucket?: string | null;
|
|
92
|
+
custom_s3_bucket_region?: string | null;
|
|
93
|
+
custom_s3_key?: string | null;
|
|
94
|
+
custom_s3_secret?: string | null;
|
|
95
|
+
url?: string | null;
|
|
96
96
|
}
|
|
97
97
|
export interface IBoard {
|
|
98
98
|
can?: IDictionary<boolean>;
|
|
99
|
-
content_metadata_id?: number;
|
|
100
|
-
created_at?: Date;
|
|
101
|
-
deleted_at?: Date;
|
|
102
|
-
description?: string;
|
|
103
|
-
board_sections?: IBoardSection[];
|
|
99
|
+
content_metadata_id?: number | null;
|
|
100
|
+
created_at?: Date | null;
|
|
101
|
+
deleted_at?: Date | null;
|
|
102
|
+
description?: string | null;
|
|
103
|
+
board_sections?: IBoardSection[] | null;
|
|
104
104
|
id?: number;
|
|
105
|
-
section_order?: number[];
|
|
106
|
-
title?: string;
|
|
107
|
-
updated_at?: Date;
|
|
108
|
-
user_id?: number;
|
|
105
|
+
section_order?: number[] | null;
|
|
106
|
+
title?: string | null;
|
|
107
|
+
updated_at?: Date | null;
|
|
108
|
+
user_id?: number | null;
|
|
109
109
|
primary_homepage?: boolean;
|
|
110
110
|
}
|
|
111
111
|
export interface IBoardItem {
|
|
112
112
|
can?: IDictionary<boolean>;
|
|
113
|
-
content_created_by?: string;
|
|
114
|
-
content_favorite_id?: number;
|
|
115
|
-
content_metadata_id?: number;
|
|
116
|
-
content_updated_at?: string;
|
|
117
|
-
custom_description?: string;
|
|
118
|
-
custom_title?: string;
|
|
119
|
-
custom_url?: string;
|
|
120
|
-
dashboard_id?: number;
|
|
121
|
-
description?: string;
|
|
122
|
-
favorite_count?: number;
|
|
123
|
-
board_section_id?: number;
|
|
113
|
+
content_created_by?: string | null;
|
|
114
|
+
content_favorite_id?: number | null;
|
|
115
|
+
content_metadata_id?: number | null;
|
|
116
|
+
content_updated_at?: string | null;
|
|
117
|
+
custom_description?: string | null;
|
|
118
|
+
custom_title?: string | null;
|
|
119
|
+
custom_url?: string | null;
|
|
120
|
+
dashboard_id?: number | null;
|
|
121
|
+
description?: string | null;
|
|
122
|
+
favorite_count?: number | null;
|
|
123
|
+
board_section_id?: number | null;
|
|
124
124
|
id?: number;
|
|
125
|
-
image_url?: string;
|
|
126
|
-
location?: string;
|
|
127
|
-
look_id?:
|
|
128
|
-
lookml_dashboard_id?: string;
|
|
129
|
-
order?: number;
|
|
130
|
-
title?: string;
|
|
125
|
+
image_url?: string | null;
|
|
126
|
+
location?: string | null;
|
|
127
|
+
look_id?: string | null;
|
|
128
|
+
lookml_dashboard_id?: string | null;
|
|
129
|
+
order?: number | null;
|
|
130
|
+
title?: string | null;
|
|
131
131
|
url?: string;
|
|
132
|
-
view_count?: number;
|
|
132
|
+
view_count?: number | null;
|
|
133
133
|
}
|
|
134
134
|
export interface IBoardSection {
|
|
135
135
|
can?: IDictionary<boolean>;
|
|
136
|
-
created_at?: Date;
|
|
137
|
-
deleted_at?: Date;
|
|
138
|
-
description?: string;
|
|
139
|
-
board_id?: number;
|
|
140
|
-
board_items?: IBoardItem[];
|
|
136
|
+
created_at?: Date | null;
|
|
137
|
+
deleted_at?: Date | null;
|
|
138
|
+
description?: string | null;
|
|
139
|
+
board_id?: number | null;
|
|
140
|
+
board_items?: IBoardItem[] | null;
|
|
141
141
|
id?: number;
|
|
142
|
-
item_order?: number[];
|
|
143
|
-
visible_item_order?: number[];
|
|
144
|
-
title?: string;
|
|
145
|
-
updated_at?: Date;
|
|
142
|
+
item_order?: number[] | null;
|
|
143
|
+
visible_item_order?: number[] | null;
|
|
144
|
+
title?: string | null;
|
|
145
|
+
updated_at?: Date | null;
|
|
146
146
|
}
|
|
147
147
|
export declare enum Category {
|
|
148
148
|
parameter = "parameter",
|
|
@@ -162,16 +162,16 @@ export interface IColorStop {
|
|
|
162
162
|
offset?: number;
|
|
163
163
|
}
|
|
164
164
|
export interface IColumnSearch {
|
|
165
|
-
schema_name?: string;
|
|
166
|
-
table_name?: string;
|
|
167
|
-
column_name?: string;
|
|
168
|
-
data_type?: string;
|
|
165
|
+
schema_name?: string | null;
|
|
166
|
+
table_name?: string | null;
|
|
167
|
+
column_name?: string | null;
|
|
168
|
+
data_type?: string | null;
|
|
169
169
|
}
|
|
170
170
|
export interface ICommand {
|
|
171
171
|
id?: number;
|
|
172
172
|
author_id?: number;
|
|
173
173
|
name?: string;
|
|
174
|
-
description?: string;
|
|
174
|
+
description?: string | null;
|
|
175
175
|
linked_content_id?: string;
|
|
176
176
|
linked_content_type?: LinkedContentType;
|
|
177
177
|
}
|
|
@@ -207,88 +207,88 @@ export interface IContentFavorite {
|
|
|
207
207
|
id?: number;
|
|
208
208
|
user_id?: number;
|
|
209
209
|
content_metadata_id?: number;
|
|
210
|
-
look_id?:
|
|
211
|
-
dashboard_id?: number;
|
|
210
|
+
look_id?: string | null;
|
|
211
|
+
dashboard_id?: number | null;
|
|
212
212
|
look?: ILookBasic;
|
|
213
213
|
dashboard?: IDashboardBase;
|
|
214
|
-
board_id?: number;
|
|
214
|
+
board_id?: number | null;
|
|
215
215
|
}
|
|
216
216
|
export interface IContentMeta {
|
|
217
217
|
can?: IDictionary<boolean>;
|
|
218
218
|
id?: number;
|
|
219
|
-
name?: string;
|
|
220
|
-
parent_id?: number;
|
|
221
|
-
dashboard_id?: string;
|
|
222
|
-
look_id?:
|
|
223
|
-
folder_id?: string;
|
|
224
|
-
content_type?: string;
|
|
219
|
+
name?: string | null;
|
|
220
|
+
parent_id?: number | null;
|
|
221
|
+
dashboard_id?: string | null;
|
|
222
|
+
look_id?: string | null;
|
|
223
|
+
folder_id?: string | null;
|
|
224
|
+
content_type?: string | null;
|
|
225
225
|
inherits?: boolean;
|
|
226
|
-
inheriting_id?: number;
|
|
227
|
-
slug?: string;
|
|
226
|
+
inheriting_id?: number | null;
|
|
227
|
+
slug?: string | null;
|
|
228
228
|
}
|
|
229
229
|
export interface IContentMetaGroupUser {
|
|
230
230
|
can?: IDictionary<boolean>;
|
|
231
231
|
id?: string;
|
|
232
|
-
content_metadata_id?: string;
|
|
233
|
-
permission_type?: PermissionType;
|
|
234
|
-
group_id?: number;
|
|
235
|
-
user_id?: number;
|
|
232
|
+
content_metadata_id?: string | null;
|
|
233
|
+
permission_type?: PermissionType | null;
|
|
234
|
+
group_id?: number | null;
|
|
235
|
+
user_id?: number | null;
|
|
236
236
|
}
|
|
237
237
|
export interface IContentValidation {
|
|
238
|
-
content_with_errors?: IContentValidatorError[];
|
|
239
|
-
computation_time?: number;
|
|
240
|
-
total_looks_validated?: number;
|
|
241
|
-
total_dashboard_elements_validated?: number;
|
|
242
|
-
total_dashboard_filters_validated?: number;
|
|
243
|
-
total_scheduled_plans_validated?: number;
|
|
244
|
-
total_alerts_validated?: number;
|
|
245
|
-
total_explores_validated?: number;
|
|
238
|
+
content_with_errors?: IContentValidatorError[] | null;
|
|
239
|
+
computation_time?: number | null;
|
|
240
|
+
total_looks_validated?: number | null;
|
|
241
|
+
total_dashboard_elements_validated?: number | null;
|
|
242
|
+
total_dashboard_filters_validated?: number | null;
|
|
243
|
+
total_scheduled_plans_validated?: number | null;
|
|
244
|
+
total_alerts_validated?: number | null;
|
|
245
|
+
total_explores_validated?: number | null;
|
|
246
246
|
}
|
|
247
247
|
export interface IContentValidationAlert {
|
|
248
248
|
id?: number;
|
|
249
|
-
lookml_dashboard_id?: string;
|
|
250
|
-
lookml_link_id?: string;
|
|
251
|
-
custom_title?: string;
|
|
249
|
+
lookml_dashboard_id?: string | null;
|
|
250
|
+
lookml_link_id?: string | null;
|
|
251
|
+
custom_title?: string | null;
|
|
252
252
|
}
|
|
253
253
|
export interface IContentValidationDashboard {
|
|
254
|
-
description?: string;
|
|
254
|
+
description?: string | null;
|
|
255
255
|
id?: string;
|
|
256
256
|
folder?: IContentValidationFolder;
|
|
257
|
-
title?: string;
|
|
258
|
-
url?: string;
|
|
257
|
+
title?: string | null;
|
|
258
|
+
url?: string | null;
|
|
259
259
|
}
|
|
260
260
|
export interface IContentValidationDashboardElement {
|
|
261
|
-
body_text?: string;
|
|
262
|
-
dashboard_id?: string;
|
|
261
|
+
body_text?: string | null;
|
|
262
|
+
dashboard_id?: string | null;
|
|
263
263
|
id?: string;
|
|
264
|
-
look_id?: string;
|
|
265
|
-
note_display?: string;
|
|
266
|
-
note_state?: string;
|
|
267
|
-
note_text?: string;
|
|
268
|
-
note_text_as_html?: string;
|
|
269
|
-
query_id?: number;
|
|
270
|
-
subtitle_text?: string;
|
|
271
|
-
title?: string;
|
|
264
|
+
look_id?: string | null;
|
|
265
|
+
note_display?: string | null;
|
|
266
|
+
note_state?: string | null;
|
|
267
|
+
note_text?: string | null;
|
|
268
|
+
note_text_as_html?: string | null;
|
|
269
|
+
query_id?: number | null;
|
|
270
|
+
subtitle_text?: string | null;
|
|
271
|
+
title?: string | null;
|
|
272
272
|
title_hidden?: boolean;
|
|
273
|
-
title_text?: string;
|
|
274
|
-
type?: string;
|
|
273
|
+
title_text?: string | null;
|
|
274
|
+
type?: string | null;
|
|
275
275
|
}
|
|
276
276
|
export interface IContentValidationDashboardFilter {
|
|
277
277
|
id?: string;
|
|
278
|
-
dashboard_id?: string;
|
|
279
|
-
name?: string;
|
|
280
|
-
title?: string;
|
|
281
|
-
type?: string;
|
|
282
|
-
default_value?: string;
|
|
283
|
-
model?: string;
|
|
284
|
-
explore?: string;
|
|
285
|
-
dimension?: string;
|
|
278
|
+
dashboard_id?: string | null;
|
|
279
|
+
name?: string | null;
|
|
280
|
+
title?: string | null;
|
|
281
|
+
type?: string | null;
|
|
282
|
+
default_value?: string | null;
|
|
283
|
+
model?: string | null;
|
|
284
|
+
explore?: string | null;
|
|
285
|
+
dimension?: string | null;
|
|
286
286
|
}
|
|
287
287
|
export interface IContentValidationError {
|
|
288
|
-
message?: string;
|
|
289
|
-
field_name?: string;
|
|
290
|
-
model_name?: string;
|
|
291
|
-
explore_name?: string;
|
|
288
|
+
message?: string | null;
|
|
289
|
+
field_name?: string | null;
|
|
290
|
+
model_name?: string | null;
|
|
291
|
+
explore_name?: string | null;
|
|
292
292
|
removable?: boolean;
|
|
293
293
|
}
|
|
294
294
|
export interface IContentValidationFolder {
|
|
@@ -296,23 +296,23 @@ export interface IContentValidationFolder {
|
|
|
296
296
|
id?: string;
|
|
297
297
|
}
|
|
298
298
|
export interface IContentValidationLook {
|
|
299
|
-
id?:
|
|
300
|
-
title?: string;
|
|
301
|
-
short_url?: string;
|
|
299
|
+
id?: string;
|
|
300
|
+
title?: string | null;
|
|
301
|
+
short_url?: string | null;
|
|
302
302
|
folder?: IContentValidationFolder;
|
|
303
303
|
}
|
|
304
304
|
export interface IContentValidationLookMLDashboard {
|
|
305
305
|
id?: string;
|
|
306
|
-
title?: string;
|
|
307
|
-
space_id?: string;
|
|
306
|
+
title?: string | null;
|
|
307
|
+
space_id?: string | null;
|
|
308
308
|
}
|
|
309
309
|
export interface IContentValidationLookMLDashboardElement {
|
|
310
|
-
lookml_link_id?: string;
|
|
311
|
-
title?: string;
|
|
310
|
+
lookml_link_id?: string | null;
|
|
311
|
+
title?: string | null;
|
|
312
312
|
}
|
|
313
313
|
export interface IContentValidationScheduledPlan {
|
|
314
|
-
name?: string;
|
|
315
|
-
look_id?:
|
|
314
|
+
name?: string | null;
|
|
315
|
+
look_id?: string | null;
|
|
316
316
|
id?: number;
|
|
317
317
|
}
|
|
318
318
|
export interface IContentValidatorError {
|
|
@@ -324,26 +324,26 @@ export interface IContentValidatorError {
|
|
|
324
324
|
alert?: IContentValidationAlert;
|
|
325
325
|
lookml_dashboard?: IContentValidationLookMLDashboard;
|
|
326
326
|
lookml_dashboard_element?: IContentValidationLookMLDashboardElement;
|
|
327
|
-
errors?: IContentValidationError[];
|
|
327
|
+
errors?: IContentValidationError[] | null;
|
|
328
328
|
id?: string;
|
|
329
329
|
}
|
|
330
330
|
export interface IContentView {
|
|
331
331
|
can?: IDictionary<boolean>;
|
|
332
332
|
id?: number;
|
|
333
|
-
look_id?:
|
|
334
|
-
dashboard_id?: number;
|
|
335
|
-
title?: string;
|
|
336
|
-
content_metadata_id?: number;
|
|
337
|
-
user_id?: number;
|
|
338
|
-
group_id?: number;
|
|
339
|
-
view_count?: number;
|
|
340
|
-
favorite_count?: number;
|
|
341
|
-
last_viewed_at?: string;
|
|
342
|
-
start_of_week_date?: string;
|
|
333
|
+
look_id?: string | null;
|
|
334
|
+
dashboard_id?: number | null;
|
|
335
|
+
title?: string | null;
|
|
336
|
+
content_metadata_id?: number | null;
|
|
337
|
+
user_id?: number | null;
|
|
338
|
+
group_id?: number | null;
|
|
339
|
+
view_count?: number | null;
|
|
340
|
+
favorite_count?: number | null;
|
|
341
|
+
last_viewed_at?: string | null;
|
|
342
|
+
start_of_week_date?: string | null;
|
|
343
343
|
}
|
|
344
344
|
export interface IContinuousPalette {
|
|
345
345
|
id?: string;
|
|
346
|
-
label?: string;
|
|
346
|
+
label?: string | null;
|
|
347
347
|
type?: string;
|
|
348
348
|
stops?: IColorStop[];
|
|
349
349
|
}
|
|
@@ -356,26 +356,36 @@ export interface ICostEstimate {
|
|
|
356
356
|
export interface ICreateCostEstimate {
|
|
357
357
|
sql?: string;
|
|
358
358
|
}
|
|
359
|
+
export interface ICreateCredentialsApi3 {
|
|
360
|
+
can?: IDictionary<boolean>;
|
|
361
|
+
id?: number;
|
|
362
|
+
client_id?: string | null;
|
|
363
|
+
created_at?: string | null;
|
|
364
|
+
is_disabled?: boolean;
|
|
365
|
+
type?: string | null;
|
|
366
|
+
client_secret?: string | null;
|
|
367
|
+
url?: string | null;
|
|
368
|
+
}
|
|
359
369
|
export interface ICreateDashboardFilter {
|
|
360
370
|
id?: string;
|
|
361
|
-
dashboard_id: string;
|
|
362
|
-
name: string;
|
|
363
|
-
title: string;
|
|
364
|
-
type: string;
|
|
365
|
-
default_value?: string;
|
|
366
|
-
model?: string;
|
|
367
|
-
explore?: string;
|
|
368
|
-
dimension?: string;
|
|
369
|
-
field?: IDictionary<any
|
|
370
|
-
row?: number;
|
|
371
|
-
listens_to_filters?: string[];
|
|
371
|
+
dashboard_id: string | null;
|
|
372
|
+
name: string | null;
|
|
373
|
+
title: string | null;
|
|
374
|
+
type: string | null;
|
|
375
|
+
default_value?: string | null;
|
|
376
|
+
model?: string | null;
|
|
377
|
+
explore?: string | null;
|
|
378
|
+
dimension?: string | null;
|
|
379
|
+
field?: IDictionary<any> | null;
|
|
380
|
+
row?: number | null;
|
|
381
|
+
listens_to_filters?: string[] | null;
|
|
372
382
|
allow_multiple_values?: boolean;
|
|
373
383
|
required?: boolean;
|
|
374
|
-
ui_config?: IDictionary<any
|
|
384
|
+
ui_config?: IDictionary<any> | null;
|
|
375
385
|
}
|
|
376
386
|
export interface ICreateDashboardRenderTask {
|
|
377
|
-
dashboard_filters?: string;
|
|
378
|
-
dashboard_style?: string;
|
|
387
|
+
dashboard_filters?: string | null;
|
|
388
|
+
dashboard_style?: string | null;
|
|
379
389
|
}
|
|
380
390
|
export interface ICreateEmbedUserRequest {
|
|
381
391
|
external_user_id: string;
|
|
@@ -389,8 +399,8 @@ export interface ICreateOAuthApplicationUserStateRequest {
|
|
|
389
399
|
oauth_application_id: string;
|
|
390
400
|
access_token: string;
|
|
391
401
|
access_token_expires_at: Date;
|
|
392
|
-
refresh_token?: string;
|
|
393
|
-
refresh_token_expires_at?: Date;
|
|
402
|
+
refresh_token?: string | null;
|
|
403
|
+
refresh_token_expires_at?: Date | null;
|
|
394
404
|
}
|
|
395
405
|
export interface ICreateOAuthApplicationUserStateResponse {
|
|
396
406
|
user_id: number;
|
|
@@ -398,327 +408,327 @@ export interface ICreateOAuthApplicationUserStateResponse {
|
|
|
398
408
|
}
|
|
399
409
|
export interface ICreateQueryTask {
|
|
400
410
|
can?: IDictionary<boolean>;
|
|
401
|
-
query_id: number;
|
|
402
|
-
result_format: ResultFormat;
|
|
403
|
-
source?: string;
|
|
411
|
+
query_id: number | null;
|
|
412
|
+
result_format: ResultFormat | null;
|
|
413
|
+
source?: string | null;
|
|
404
414
|
deferred?: boolean;
|
|
405
|
-
look_id?:
|
|
406
|
-
dashboard_id?: string;
|
|
415
|
+
look_id?: string | null;
|
|
416
|
+
dashboard_id?: string | null;
|
|
407
417
|
}
|
|
408
418
|
export interface ICredentialsApi3 {
|
|
409
419
|
can?: IDictionary<boolean>;
|
|
410
420
|
id?: number;
|
|
411
|
-
client_id?: string;
|
|
412
|
-
created_at?: string;
|
|
421
|
+
client_id?: string | null;
|
|
422
|
+
created_at?: string | null;
|
|
413
423
|
is_disabled?: boolean;
|
|
414
|
-
type?: string;
|
|
415
|
-
url?: string;
|
|
424
|
+
type?: string | null;
|
|
425
|
+
url?: string | null;
|
|
416
426
|
}
|
|
417
427
|
export interface ICredentialsEmail {
|
|
418
428
|
can?: IDictionary<boolean>;
|
|
419
|
-
created_at?: string;
|
|
420
|
-
email?: string;
|
|
429
|
+
created_at?: string | null;
|
|
430
|
+
email?: string | null;
|
|
421
431
|
forced_password_reset_at_next_login?: boolean;
|
|
422
432
|
is_disabled?: boolean;
|
|
423
|
-
logged_in_at?: string;
|
|
424
|
-
password_reset_url?: string;
|
|
425
|
-
type?: string;
|
|
426
|
-
url?: string;
|
|
427
|
-
user_url?: string;
|
|
433
|
+
logged_in_at?: string | null;
|
|
434
|
+
password_reset_url?: string | null;
|
|
435
|
+
type?: string | null;
|
|
436
|
+
url?: string | null;
|
|
437
|
+
user_url?: string | null;
|
|
428
438
|
}
|
|
429
439
|
export interface ICredentialsEmailSearch {
|
|
430
440
|
can?: IDictionary<boolean>;
|
|
431
|
-
created_at?: string;
|
|
432
|
-
email?: string;
|
|
441
|
+
created_at?: string | null;
|
|
442
|
+
email?: string | null;
|
|
433
443
|
forced_password_reset_at_next_login?: boolean;
|
|
434
444
|
is_disabled?: boolean;
|
|
435
|
-
logged_in_at?: string;
|
|
436
|
-
password_reset_url?: string;
|
|
437
|
-
type?: string;
|
|
438
|
-
url?: string;
|
|
439
|
-
user_url?: string;
|
|
445
|
+
logged_in_at?: string | null;
|
|
446
|
+
password_reset_url?: string | null;
|
|
447
|
+
type?: string | null;
|
|
448
|
+
url?: string | null;
|
|
449
|
+
user_url?: string | null;
|
|
440
450
|
}
|
|
441
451
|
export interface ICredentialsEmbed {
|
|
442
452
|
can?: IDictionary<boolean>;
|
|
443
|
-
created_at?: string;
|
|
444
|
-
external_group_id?: string;
|
|
445
|
-
external_user_id?: string;
|
|
453
|
+
created_at?: string | null;
|
|
454
|
+
external_group_id?: string | null;
|
|
455
|
+
external_user_id?: string | null;
|
|
446
456
|
id?: number;
|
|
447
457
|
is_disabled?: boolean;
|
|
448
|
-
logged_in_at?: string;
|
|
449
|
-
type?: string;
|
|
450
|
-
url?: string;
|
|
458
|
+
logged_in_at?: string | null;
|
|
459
|
+
type?: string | null;
|
|
460
|
+
url?: string | null;
|
|
451
461
|
}
|
|
452
462
|
export interface ICredentialsGoogle {
|
|
453
463
|
can?: IDictionary<boolean>;
|
|
454
|
-
created_at?: string;
|
|
455
|
-
domain?: string;
|
|
456
|
-
email?: string;
|
|
457
|
-
google_user_id?: string;
|
|
464
|
+
created_at?: string | null;
|
|
465
|
+
domain?: string | null;
|
|
466
|
+
email?: string | null;
|
|
467
|
+
google_user_id?: string | null;
|
|
458
468
|
is_disabled?: boolean;
|
|
459
|
-
logged_in_at?: string;
|
|
460
|
-
type?: string;
|
|
461
|
-
url?: string;
|
|
469
|
+
logged_in_at?: string | null;
|
|
470
|
+
type?: string | null;
|
|
471
|
+
url?: string | null;
|
|
462
472
|
}
|
|
463
473
|
export interface ICredentialsLDAP {
|
|
464
474
|
can?: IDictionary<boolean>;
|
|
465
|
-
created_at?: string;
|
|
466
|
-
email?: string;
|
|
475
|
+
created_at?: string | null;
|
|
476
|
+
email?: string | null;
|
|
467
477
|
is_disabled?: boolean;
|
|
468
|
-
ldap_dn?: string;
|
|
469
|
-
ldap_id?: string;
|
|
470
|
-
logged_in_at?: string;
|
|
471
|
-
type?: string;
|
|
472
|
-
url?: string;
|
|
478
|
+
ldap_dn?: string | null;
|
|
479
|
+
ldap_id?: string | null;
|
|
480
|
+
logged_in_at?: string | null;
|
|
481
|
+
type?: string | null;
|
|
482
|
+
url?: string | null;
|
|
473
483
|
}
|
|
474
484
|
export interface ICredentialsLookerOpenid {
|
|
475
485
|
can?: IDictionary<boolean>;
|
|
476
|
-
created_at?: string;
|
|
477
|
-
email?: string;
|
|
486
|
+
created_at?: string | null;
|
|
487
|
+
email?: string | null;
|
|
478
488
|
is_disabled?: boolean;
|
|
479
|
-
logged_in_at?: string;
|
|
480
|
-
logged_in_ip?: string;
|
|
481
|
-
type?: string;
|
|
482
|
-
url?: string;
|
|
483
|
-
user_url?: string;
|
|
489
|
+
logged_in_at?: string | null;
|
|
490
|
+
logged_in_ip?: string | null;
|
|
491
|
+
type?: string | null;
|
|
492
|
+
url?: string | null;
|
|
493
|
+
user_url?: string | null;
|
|
484
494
|
}
|
|
485
495
|
export interface ICredentialsOIDC {
|
|
486
496
|
can?: IDictionary<boolean>;
|
|
487
|
-
created_at?: string;
|
|
488
|
-
email?: string;
|
|
497
|
+
created_at?: string | null;
|
|
498
|
+
email?: string | null;
|
|
489
499
|
is_disabled?: boolean;
|
|
490
|
-
logged_in_at?: string;
|
|
491
|
-
oidc_user_id?: string;
|
|
492
|
-
type?: string;
|
|
493
|
-
url?: string;
|
|
500
|
+
logged_in_at?: string | null;
|
|
501
|
+
oidc_user_id?: string | null;
|
|
502
|
+
type?: string | null;
|
|
503
|
+
url?: string | null;
|
|
494
504
|
}
|
|
495
505
|
export interface ICredentialsSaml {
|
|
496
506
|
can?: IDictionary<boolean>;
|
|
497
|
-
created_at?: string;
|
|
498
|
-
email?: string;
|
|
507
|
+
created_at?: string | null;
|
|
508
|
+
email?: string | null;
|
|
499
509
|
is_disabled?: boolean;
|
|
500
|
-
logged_in_at?: string;
|
|
501
|
-
saml_user_id?: string;
|
|
502
|
-
type?: string;
|
|
503
|
-
url?: string;
|
|
510
|
+
logged_in_at?: string | null;
|
|
511
|
+
saml_user_id?: string | null;
|
|
512
|
+
type?: string | null;
|
|
513
|
+
url?: string | null;
|
|
504
514
|
}
|
|
505
515
|
export interface ICredentialsTotp {
|
|
506
516
|
can?: IDictionary<boolean>;
|
|
507
|
-
created_at?: string;
|
|
517
|
+
created_at?: string | null;
|
|
508
518
|
is_disabled?: boolean;
|
|
509
|
-
type?: string;
|
|
519
|
+
type?: string | null;
|
|
510
520
|
verified?: boolean;
|
|
511
|
-
url?: string;
|
|
521
|
+
url?: string | null;
|
|
512
522
|
}
|
|
513
523
|
export interface ICustomWelcomeEmail {
|
|
514
524
|
enabled?: boolean;
|
|
515
|
-
content?: string;
|
|
516
|
-
subject?: string;
|
|
517
|
-
header?: string;
|
|
525
|
+
content?: string | null;
|
|
526
|
+
subject?: string | null;
|
|
527
|
+
header?: string | null;
|
|
518
528
|
}
|
|
519
529
|
export interface IDashboard {
|
|
520
530
|
can?: IDictionary<boolean>;
|
|
521
|
-
content_favorite_id?: number;
|
|
522
|
-
content_metadata_id?: number;
|
|
523
|
-
description?: string;
|
|
531
|
+
content_favorite_id?: number | null;
|
|
532
|
+
content_metadata_id?: number | null;
|
|
533
|
+
description?: string | null;
|
|
524
534
|
hidden?: boolean;
|
|
525
535
|
id?: string;
|
|
526
536
|
model?: ILookModel;
|
|
527
|
-
query_timezone?: string;
|
|
537
|
+
query_timezone?: string | null;
|
|
528
538
|
readonly?: boolean;
|
|
529
|
-
refresh_interval?: string;
|
|
530
|
-
refresh_interval_to_i?: number;
|
|
539
|
+
refresh_interval?: string | null;
|
|
540
|
+
refresh_interval_to_i?: number | null;
|
|
531
541
|
folder?: IFolderBase;
|
|
532
|
-
title?: string;
|
|
533
|
-
user_id?: number;
|
|
534
|
-
slug?: string;
|
|
535
|
-
preferred_viewer?: string;
|
|
542
|
+
title?: string | null;
|
|
543
|
+
user_id?: number | null;
|
|
544
|
+
slug?: string | null;
|
|
545
|
+
preferred_viewer?: string | null;
|
|
536
546
|
alert_sync_with_dashboard_filter_enabled?: boolean;
|
|
537
|
-
background_color?: string;
|
|
538
|
-
created_at?: Date;
|
|
547
|
+
background_color?: string | null;
|
|
548
|
+
created_at?: Date | null;
|
|
539
549
|
crossfilter_enabled?: boolean;
|
|
540
|
-
dashboard_elements?: IDashboardElement[];
|
|
541
|
-
dashboard_filters?: IDashboardFilter[];
|
|
542
|
-
dashboard_layouts?: IDashboardLayout[];
|
|
550
|
+
dashboard_elements?: IDashboardElement[] | null;
|
|
551
|
+
dashboard_filters?: IDashboardFilter[] | null;
|
|
552
|
+
dashboard_layouts?: IDashboardLayout[] | null;
|
|
543
553
|
deleted?: boolean;
|
|
544
|
-
deleted_at?: Date;
|
|
545
|
-
deleter_id?: number;
|
|
546
|
-
edit_uri?: string;
|
|
547
|
-
favorite_count?: number;
|
|
554
|
+
deleted_at?: Date | null;
|
|
555
|
+
deleter_id?: number | null;
|
|
556
|
+
edit_uri?: string | null;
|
|
557
|
+
favorite_count?: number | null;
|
|
548
558
|
filters_bar_collapsed?: boolean;
|
|
549
|
-
last_accessed_at?: Date;
|
|
550
|
-
last_viewed_at?: Date;
|
|
551
|
-
updated_at?: Date;
|
|
552
|
-
last_updater_id?: number;
|
|
553
|
-
last_updater_name?: string;
|
|
554
|
-
user_name?: string;
|
|
555
|
-
load_configuration?: string;
|
|
556
|
-
lookml_link_id?: string;
|
|
559
|
+
last_accessed_at?: Date | null;
|
|
560
|
+
last_viewed_at?: Date | null;
|
|
561
|
+
updated_at?: Date | null;
|
|
562
|
+
last_updater_id?: number | null;
|
|
563
|
+
last_updater_name?: string | null;
|
|
564
|
+
user_name?: string | null;
|
|
565
|
+
load_configuration?: string | null;
|
|
566
|
+
lookml_link_id?: string | null;
|
|
557
567
|
show_filters_bar?: boolean;
|
|
558
568
|
show_title?: boolean;
|
|
559
|
-
folder_id?: string;
|
|
560
|
-
text_tile_text_color?: string;
|
|
561
|
-
tile_background_color?: string;
|
|
562
|
-
tile_text_color?: string;
|
|
563
|
-
title_color?: string;
|
|
564
|
-
view_count?: number;
|
|
569
|
+
folder_id?: string | null;
|
|
570
|
+
text_tile_text_color?: string | null;
|
|
571
|
+
tile_background_color?: string | null;
|
|
572
|
+
tile_text_color?: string | null;
|
|
573
|
+
title_color?: string | null;
|
|
574
|
+
view_count?: number | null;
|
|
565
575
|
appearance?: IDashboardAppearance;
|
|
566
|
-
url?: string;
|
|
576
|
+
url?: string | null;
|
|
567
577
|
}
|
|
568
578
|
export interface IDashboardAggregateTableLookml {
|
|
569
|
-
dashboard_id?: string;
|
|
570
|
-
aggregate_table_lookml?: string;
|
|
579
|
+
dashboard_id?: string | null;
|
|
580
|
+
aggregate_table_lookml?: string | null;
|
|
571
581
|
}
|
|
572
582
|
export interface IDashboardAppearance {
|
|
573
|
-
page_side_margins?: number;
|
|
574
|
-
page_background_color?: string;
|
|
575
|
-
tile_title_alignment?: string;
|
|
576
|
-
tile_space_between?: number;
|
|
577
|
-
tile_background_color?: string;
|
|
578
|
-
tile_shadow?: boolean;
|
|
579
|
-
key_color?: string;
|
|
583
|
+
page_side_margins?: number | null;
|
|
584
|
+
page_background_color?: string | null;
|
|
585
|
+
tile_title_alignment?: string | null;
|
|
586
|
+
tile_space_between?: number | null;
|
|
587
|
+
tile_background_color?: string | null;
|
|
588
|
+
tile_shadow?: boolean | null;
|
|
589
|
+
key_color?: string | null;
|
|
580
590
|
}
|
|
581
591
|
export interface IDashboardBase {
|
|
582
592
|
can?: IDictionary<boolean>;
|
|
583
|
-
content_favorite_id?: number;
|
|
584
|
-
content_metadata_id?: number;
|
|
585
|
-
description?: string;
|
|
593
|
+
content_favorite_id?: number | null;
|
|
594
|
+
content_metadata_id?: number | null;
|
|
595
|
+
description?: string | null;
|
|
586
596
|
hidden?: boolean;
|
|
587
597
|
id?: string;
|
|
588
598
|
model?: ILookModel;
|
|
589
|
-
query_timezone?: string;
|
|
599
|
+
query_timezone?: string | null;
|
|
590
600
|
readonly?: boolean;
|
|
591
|
-
refresh_interval?: string;
|
|
592
|
-
refresh_interval_to_i?: number;
|
|
601
|
+
refresh_interval?: string | null;
|
|
602
|
+
refresh_interval_to_i?: number | null;
|
|
593
603
|
folder?: IFolderBase;
|
|
594
|
-
title?: string;
|
|
595
|
-
user_id?: number;
|
|
596
|
-
slug?: string;
|
|
597
|
-
preferred_viewer?: string;
|
|
604
|
+
title?: string | null;
|
|
605
|
+
user_id?: number | null;
|
|
606
|
+
slug?: string | null;
|
|
607
|
+
preferred_viewer?: string | null;
|
|
598
608
|
}
|
|
599
609
|
export interface IDashboardElement {
|
|
600
610
|
can?: IDictionary<boolean>;
|
|
601
|
-
body_text?: string;
|
|
602
|
-
body_text_as_html?: string;
|
|
603
|
-
dashboard_id?: string;
|
|
604
|
-
edit_uri?: string;
|
|
611
|
+
body_text?: string | null;
|
|
612
|
+
body_text_as_html?: string | null;
|
|
613
|
+
dashboard_id?: string | null;
|
|
614
|
+
edit_uri?: string | null;
|
|
605
615
|
id?: string;
|
|
606
616
|
look?: ILookWithQuery;
|
|
607
|
-
look_id?: string;
|
|
608
|
-
lookml_link_id?: string;
|
|
609
|
-
merge_result_id?: string;
|
|
610
|
-
note_display?: string;
|
|
611
|
-
note_state?: string;
|
|
612
|
-
note_text?: string;
|
|
613
|
-
note_text_as_html?: string;
|
|
617
|
+
look_id?: string | null;
|
|
618
|
+
lookml_link_id?: string | null;
|
|
619
|
+
merge_result_id?: string | null;
|
|
620
|
+
note_display?: string | null;
|
|
621
|
+
note_state?: string | null;
|
|
622
|
+
note_text?: string | null;
|
|
623
|
+
note_text_as_html?: string | null;
|
|
614
624
|
query?: IQuery;
|
|
615
|
-
query_id?: number;
|
|
616
|
-
refresh_interval?: string;
|
|
617
|
-
refresh_interval_to_i?: number;
|
|
625
|
+
query_id?: number | null;
|
|
626
|
+
refresh_interval?: string | null;
|
|
627
|
+
refresh_interval_to_i?: number | null;
|
|
618
628
|
result_maker?: IResultMakerWithIdVisConfigAndDynamicFields;
|
|
619
|
-
result_maker_id?: number;
|
|
620
|
-
subtitle_text?: string;
|
|
621
|
-
title?: string;
|
|
629
|
+
result_maker_id?: number | null;
|
|
630
|
+
subtitle_text?: string | null;
|
|
631
|
+
title?: string | null;
|
|
622
632
|
title_hidden?: boolean;
|
|
623
|
-
title_text?: string;
|
|
624
|
-
type?: string;
|
|
625
|
-
alert_count?: number;
|
|
626
|
-
title_text_as_html?: string;
|
|
627
|
-
subtitle_text_as_html?: string;
|
|
633
|
+
title_text?: string | null;
|
|
634
|
+
type?: string | null;
|
|
635
|
+
alert_count?: number | null;
|
|
636
|
+
title_text_as_html?: string | null;
|
|
637
|
+
subtitle_text_as_html?: string | null;
|
|
628
638
|
}
|
|
629
639
|
export interface IDashboardFilter {
|
|
630
640
|
can?: IDictionary<boolean>;
|
|
631
641
|
id?: string;
|
|
632
|
-
dashboard_id?: string;
|
|
633
|
-
name?: string;
|
|
634
|
-
title?: string;
|
|
635
|
-
type?: string;
|
|
636
|
-
default_value?: string;
|
|
637
|
-
model?: string;
|
|
638
|
-
explore?: string;
|
|
639
|
-
dimension?: string;
|
|
640
|
-
field?: IDictionary<any
|
|
641
|
-
row?: number;
|
|
642
|
-
listens_to_filters?: string[];
|
|
642
|
+
dashboard_id?: string | null;
|
|
643
|
+
name?: string | null;
|
|
644
|
+
title?: string | null;
|
|
645
|
+
type?: string | null;
|
|
646
|
+
default_value?: string | null;
|
|
647
|
+
model?: string | null;
|
|
648
|
+
explore?: string | null;
|
|
649
|
+
dimension?: string | null;
|
|
650
|
+
field?: IDictionary<any> | null;
|
|
651
|
+
row?: number | null;
|
|
652
|
+
listens_to_filters?: string[] | null;
|
|
643
653
|
allow_multiple_values?: boolean;
|
|
644
654
|
required?: boolean;
|
|
645
|
-
ui_config?: IDictionary<any
|
|
655
|
+
ui_config?: IDictionary<any> | null;
|
|
646
656
|
}
|
|
647
657
|
export interface IDashboardLayout {
|
|
648
658
|
can?: IDictionary<boolean>;
|
|
649
659
|
id?: string;
|
|
650
|
-
dashboard_id?: string;
|
|
651
|
-
type?: string;
|
|
660
|
+
dashboard_id?: string | null;
|
|
661
|
+
type?: string | null;
|
|
652
662
|
active?: boolean;
|
|
653
|
-
column_width?: number;
|
|
654
|
-
width?: number;
|
|
663
|
+
column_width?: number | null;
|
|
664
|
+
width?: number | null;
|
|
655
665
|
deleted?: boolean;
|
|
656
|
-
dashboard_title?: string;
|
|
657
|
-
dashboard_layout_components?: IDashboardLayoutComponent[];
|
|
666
|
+
dashboard_title?: string | null;
|
|
667
|
+
dashboard_layout_components?: IDashboardLayoutComponent[] | null;
|
|
658
668
|
}
|
|
659
669
|
export interface IDashboardLayoutComponent {
|
|
660
670
|
can?: IDictionary<boolean>;
|
|
661
671
|
id?: string;
|
|
662
|
-
dashboard_layout_id?: string;
|
|
663
|
-
dashboard_element_id?: string;
|
|
664
|
-
row?: number;
|
|
665
|
-
column?: number;
|
|
666
|
-
width?: number;
|
|
667
|
-
height?: number;
|
|
672
|
+
dashboard_layout_id?: string | null;
|
|
673
|
+
dashboard_element_id?: string | null;
|
|
674
|
+
row?: number | null;
|
|
675
|
+
column?: number | null;
|
|
676
|
+
width?: number | null;
|
|
677
|
+
height?: number | null;
|
|
668
678
|
deleted?: boolean;
|
|
669
|
-
element_title?: string;
|
|
679
|
+
element_title?: string | null;
|
|
670
680
|
element_title_hidden?: boolean;
|
|
671
|
-
vis_type?: string;
|
|
681
|
+
vis_type?: string | null;
|
|
672
682
|
}
|
|
673
683
|
export interface IDashboardLookml {
|
|
674
|
-
dashboard_id?: string;
|
|
675
|
-
lookml?: string;
|
|
684
|
+
dashboard_id?: string | null;
|
|
685
|
+
lookml?: string | null;
|
|
676
686
|
}
|
|
677
687
|
export interface IDataActionForm {
|
|
678
688
|
state?: IDataActionUserState;
|
|
679
|
-
fields?: IDataActionFormField[];
|
|
689
|
+
fields?: IDataActionFormField[] | null;
|
|
680
690
|
}
|
|
681
691
|
export interface IDataActionFormField {
|
|
682
|
-
name?: string;
|
|
683
|
-
label?: string;
|
|
684
|
-
description?: string;
|
|
685
|
-
type?: string;
|
|
686
|
-
default?: string;
|
|
687
|
-
oauth_url?: string;
|
|
692
|
+
name?: string | null;
|
|
693
|
+
label?: string | null;
|
|
694
|
+
description?: string | null;
|
|
695
|
+
type?: string | null;
|
|
696
|
+
default?: string | null;
|
|
697
|
+
oauth_url?: string | null;
|
|
688
698
|
interactive?: boolean;
|
|
689
699
|
required?: boolean;
|
|
690
|
-
options?: IDataActionFormSelectOption[];
|
|
700
|
+
options?: IDataActionFormSelectOption[] | null;
|
|
691
701
|
}
|
|
692
702
|
export interface IDataActionFormSelectOption {
|
|
693
|
-
name?: string;
|
|
694
|
-
label?: string;
|
|
703
|
+
name?: string | null;
|
|
704
|
+
label?: string | null;
|
|
695
705
|
}
|
|
696
706
|
export interface IDataActionRequest {
|
|
697
|
-
action?: IDictionary<any
|
|
698
|
-
form_values?: IDictionary<string
|
|
707
|
+
action?: IDictionary<any> | null;
|
|
708
|
+
form_values?: IDictionary<string> | null;
|
|
699
709
|
}
|
|
700
710
|
export interface IDataActionResponse {
|
|
701
|
-
webhook_id?: string;
|
|
711
|
+
webhook_id?: string | null;
|
|
702
712
|
success?: boolean;
|
|
703
713
|
refresh_query?: boolean;
|
|
704
714
|
validation_errors?: IValidationError;
|
|
705
|
-
message?: string;
|
|
715
|
+
message?: string | null;
|
|
706
716
|
}
|
|
707
717
|
export interface IDataActionUserState {
|
|
708
|
-
data?: string;
|
|
709
|
-
refresh_time?: number;
|
|
718
|
+
data?: string | null;
|
|
719
|
+
refresh_time?: number | null;
|
|
710
720
|
}
|
|
711
721
|
export interface IDatagroup {
|
|
712
722
|
can?: IDictionary<boolean>;
|
|
713
|
-
created_at?: number;
|
|
723
|
+
created_at?: number | null;
|
|
714
724
|
id?: number;
|
|
715
|
-
model_name?: string;
|
|
716
|
-
name?: string;
|
|
717
|
-
stale_before?: number;
|
|
718
|
-
trigger_check_at?: number;
|
|
719
|
-
trigger_error?: string;
|
|
720
|
-
trigger_value?: string;
|
|
721
|
-
triggered_at?: number;
|
|
725
|
+
model_name?: string | null;
|
|
726
|
+
name?: string | null;
|
|
727
|
+
stale_before?: number | null;
|
|
728
|
+
trigger_check_at?: number | null;
|
|
729
|
+
trigger_error?: string | null;
|
|
730
|
+
trigger_value?: string | null;
|
|
731
|
+
triggered_at?: number | null;
|
|
722
732
|
}
|
|
723
733
|
export interface IDBConnection {
|
|
724
734
|
can?: IDictionary<boolean>;
|
|
@@ -726,43 +736,43 @@ export interface IDBConnection {
|
|
|
726
736
|
dialect?: IDialect;
|
|
727
737
|
snippets?: ISnippet[];
|
|
728
738
|
pdts_enabled?: boolean;
|
|
729
|
-
host?: string;
|
|
730
|
-
port?: string;
|
|
731
|
-
username?: string;
|
|
732
|
-
password?: string;
|
|
739
|
+
host?: string | null;
|
|
740
|
+
port?: string | null;
|
|
741
|
+
username?: string | null;
|
|
742
|
+
password?: string | null;
|
|
733
743
|
uses_oauth?: boolean;
|
|
734
|
-
certificate?: string;
|
|
735
|
-
file_type?: string;
|
|
736
|
-
database?: string;
|
|
737
|
-
db_timezone?: string;
|
|
738
|
-
query_timezone?: string;
|
|
739
|
-
schema?: string;
|
|
740
|
-
max_connections?: number;
|
|
741
|
-
max_billing_gigabytes?: string;
|
|
744
|
+
certificate?: string | null;
|
|
745
|
+
file_type?: string | null;
|
|
746
|
+
database?: string | null;
|
|
747
|
+
db_timezone?: string | null;
|
|
748
|
+
query_timezone?: string | null;
|
|
749
|
+
schema?: string | null;
|
|
750
|
+
max_connections?: number | null;
|
|
751
|
+
max_billing_gigabytes?: string | null;
|
|
742
752
|
ssl?: boolean;
|
|
743
753
|
verify_ssl?: boolean;
|
|
744
|
-
tmp_db_name?: string;
|
|
745
|
-
jdbc_additional_params?: string;
|
|
746
|
-
pool_timeout?: number;
|
|
747
|
-
dialect_name?: string;
|
|
748
|
-
created_at?: string;
|
|
749
|
-
user_id?: string;
|
|
754
|
+
tmp_db_name?: string | null;
|
|
755
|
+
jdbc_additional_params?: string | null;
|
|
756
|
+
pool_timeout?: number | null;
|
|
757
|
+
dialect_name?: string | null;
|
|
758
|
+
created_at?: string | null;
|
|
759
|
+
user_id?: string | null;
|
|
750
760
|
example?: boolean;
|
|
751
|
-
user_db_credentials?: boolean;
|
|
752
|
-
user_attribute_fields?: string[];
|
|
753
|
-
maintenance_cron?: string;
|
|
754
|
-
last_regen_at?: string;
|
|
755
|
-
last_reap_at?: string;
|
|
761
|
+
user_db_credentials?: boolean | null;
|
|
762
|
+
user_attribute_fields?: string[] | null;
|
|
763
|
+
maintenance_cron?: string | null;
|
|
764
|
+
last_regen_at?: string | null;
|
|
765
|
+
last_reap_at?: string | null;
|
|
756
766
|
sql_runner_precache_tables?: boolean;
|
|
757
767
|
sql_writing_with_info_schema?: boolean;
|
|
758
|
-
after_connect_statements?: string;
|
|
768
|
+
after_connect_statements?: string | null;
|
|
759
769
|
pdt_context_override?: IDBConnectionOverride;
|
|
760
770
|
managed?: boolean;
|
|
761
|
-
tunnel_id?: string;
|
|
762
|
-
pdt_concurrency?: number;
|
|
763
|
-
disable_context_comment?: boolean;
|
|
764
|
-
oauth_application_id?: number;
|
|
765
|
-
always_retry_failed_builds?: boolean;
|
|
771
|
+
tunnel_id?: string | null;
|
|
772
|
+
pdt_concurrency?: number | null;
|
|
773
|
+
disable_context_comment?: boolean | null;
|
|
774
|
+
oauth_application_id?: number | null;
|
|
775
|
+
always_retry_failed_builds?: boolean | null;
|
|
766
776
|
}
|
|
767
777
|
export interface IDBConnectionBase {
|
|
768
778
|
can?: IDictionary<boolean>;
|
|
@@ -773,24 +783,24 @@ export interface IDBConnectionBase {
|
|
|
773
783
|
}
|
|
774
784
|
export interface IDBConnectionOverride {
|
|
775
785
|
context?: string;
|
|
776
|
-
host?: string;
|
|
777
|
-
port?: string;
|
|
778
|
-
username?: string;
|
|
779
|
-
password?: string;
|
|
786
|
+
host?: string | null;
|
|
787
|
+
port?: string | null;
|
|
788
|
+
username?: string | null;
|
|
789
|
+
password?: string | null;
|
|
780
790
|
has_password?: boolean;
|
|
781
|
-
certificate?: string;
|
|
782
|
-
file_type?: string;
|
|
783
|
-
database?: string;
|
|
784
|
-
schema?: string;
|
|
785
|
-
jdbc_additional_params?: string;
|
|
786
|
-
after_connect_statements?: string;
|
|
791
|
+
certificate?: string | null;
|
|
792
|
+
file_type?: string | null;
|
|
793
|
+
database?: string | null;
|
|
794
|
+
schema?: string | null;
|
|
795
|
+
jdbc_additional_params?: string | null;
|
|
796
|
+
after_connect_statements?: string | null;
|
|
787
797
|
}
|
|
788
798
|
export interface IDBConnectionTestResult {
|
|
789
799
|
can?: IDictionary<boolean>;
|
|
790
|
-
connection_string?: string;
|
|
791
|
-
message?: string;
|
|
792
|
-
name?: string;
|
|
793
|
-
status?: string;
|
|
800
|
+
connection_string?: string | null;
|
|
801
|
+
message?: string | null;
|
|
802
|
+
name?: string | null;
|
|
803
|
+
status?: string | null;
|
|
794
804
|
}
|
|
795
805
|
export interface IDelegateOauthTest {
|
|
796
806
|
name?: string;
|
|
@@ -828,12 +838,12 @@ export interface IDialect {
|
|
|
828
838
|
}
|
|
829
839
|
export interface IDialectInfo {
|
|
830
840
|
can?: IDictionary<boolean>;
|
|
831
|
-
default_max_connections?: string;
|
|
832
|
-
default_port?: string;
|
|
841
|
+
default_max_connections?: string | null;
|
|
842
|
+
default_port?: string | null;
|
|
833
843
|
installed?: boolean;
|
|
834
|
-
label?: string;
|
|
835
|
-
label_for_database_equivalent?: string;
|
|
836
|
-
name?: string;
|
|
844
|
+
label?: string | null;
|
|
845
|
+
label_for_database_equivalent?: string | null;
|
|
846
|
+
name?: string | null;
|
|
837
847
|
supported_options?: IDialectInfoOptions;
|
|
838
848
|
}
|
|
839
849
|
export interface IDialectInfoOptions {
|
|
@@ -856,36 +866,44 @@ export interface IDigestEmailSend {
|
|
|
856
866
|
}
|
|
857
867
|
export interface IDiscretePalette {
|
|
858
868
|
id?: string;
|
|
859
|
-
label?: string;
|
|
869
|
+
label?: string | null;
|
|
860
870
|
type?: string;
|
|
861
871
|
colors?: string[];
|
|
862
872
|
}
|
|
863
873
|
export interface IEmbedParams {
|
|
864
874
|
target_url: string;
|
|
865
|
-
session_length?: number;
|
|
875
|
+
session_length?: number | null;
|
|
866
876
|
force_logout_login?: boolean;
|
|
867
877
|
}
|
|
878
|
+
export interface IEmbedSecret {
|
|
879
|
+
algorithm?: string | null;
|
|
880
|
+
created_at?: string | null;
|
|
881
|
+
enabled?: boolean;
|
|
882
|
+
id?: number;
|
|
883
|
+
secret?: string | null;
|
|
884
|
+
user_id?: number | null;
|
|
885
|
+
}
|
|
868
886
|
export interface IEmbedSsoParams {
|
|
869
887
|
target_url: string;
|
|
870
|
-
session_length?: number;
|
|
888
|
+
session_length?: number | null;
|
|
871
889
|
force_logout_login?: boolean;
|
|
872
|
-
external_user_id?: string;
|
|
873
|
-
first_name?: string;
|
|
874
|
-
last_name?: string;
|
|
875
|
-
user_timezone?: string;
|
|
876
|
-
permissions?: string[];
|
|
877
|
-
models?: string[];
|
|
878
|
-
group_ids?: number[];
|
|
879
|
-
external_group_id?: string;
|
|
880
|
-
user_attributes?: IDictionary<any
|
|
881
|
-
secret_id?: number;
|
|
890
|
+
external_user_id?: string | null;
|
|
891
|
+
first_name?: string | null;
|
|
892
|
+
last_name?: string | null;
|
|
893
|
+
user_timezone?: string | null;
|
|
894
|
+
permissions?: string[] | null;
|
|
895
|
+
models?: string[] | null;
|
|
896
|
+
group_ids?: number[] | null;
|
|
897
|
+
external_group_id?: string | null;
|
|
898
|
+
user_attributes?: IDictionary<any> | null;
|
|
899
|
+
secret_id?: number | null;
|
|
882
900
|
}
|
|
883
901
|
export interface IEmbedUrlResponse {
|
|
884
902
|
url?: string;
|
|
885
903
|
}
|
|
886
904
|
export interface IError {
|
|
887
|
-
message: string;
|
|
888
|
-
documentation_url: string;
|
|
905
|
+
message: string | null;
|
|
906
|
+
documentation_url: string | null;
|
|
889
907
|
}
|
|
890
908
|
export interface IExternalOauthApplication {
|
|
891
909
|
can?: IDictionary<boolean>;
|
|
@@ -893,7 +911,7 @@ export interface IExternalOauthApplication {
|
|
|
893
911
|
name?: string;
|
|
894
912
|
client_id?: string;
|
|
895
913
|
client_secret?: string;
|
|
896
|
-
dialect_name?: string;
|
|
914
|
+
dialect_name?: string | null;
|
|
897
915
|
created_at?: Date;
|
|
898
916
|
}
|
|
899
917
|
export declare enum FillStyle {
|
|
@@ -902,13 +920,13 @@ export declare enum FillStyle {
|
|
|
902
920
|
}
|
|
903
921
|
export interface IFolder {
|
|
904
922
|
name: string;
|
|
905
|
-
parent_id?: string;
|
|
923
|
+
parent_id?: string | null;
|
|
906
924
|
id?: string;
|
|
907
|
-
content_metadata_id?: number;
|
|
908
|
-
created_at?: Date;
|
|
909
|
-
creator_id?: number;
|
|
910
|
-
child_count?: number;
|
|
911
|
-
external_id?: string;
|
|
925
|
+
content_metadata_id?: number | null;
|
|
926
|
+
created_at?: Date | null;
|
|
927
|
+
creator_id?: number | null;
|
|
928
|
+
child_count?: number | null;
|
|
929
|
+
external_id?: string | null;
|
|
912
930
|
is_embed?: boolean;
|
|
913
931
|
is_embed_shared_root?: boolean;
|
|
914
932
|
is_embed_users_root?: boolean;
|
|
@@ -917,18 +935,18 @@ export interface IFolder {
|
|
|
917
935
|
is_shared_root?: boolean;
|
|
918
936
|
is_users_root?: boolean;
|
|
919
937
|
can?: IDictionary<boolean>;
|
|
920
|
-
dashboards?: IDashboardBase[];
|
|
921
|
-
looks?: ILookWithDashboards[];
|
|
938
|
+
dashboards?: IDashboardBase[] | null;
|
|
939
|
+
looks?: ILookWithDashboards[] | null;
|
|
922
940
|
}
|
|
923
941
|
export interface IFolderBase {
|
|
924
942
|
name: string;
|
|
925
|
-
parent_id?: string;
|
|
943
|
+
parent_id?: string | null;
|
|
926
944
|
id?: string;
|
|
927
|
-
content_metadata_id?: number;
|
|
928
|
-
created_at?: Date;
|
|
929
|
-
creator_id?: number;
|
|
930
|
-
child_count?: number;
|
|
931
|
-
external_id?: string;
|
|
945
|
+
content_metadata_id?: number | null;
|
|
946
|
+
created_at?: Date | null;
|
|
947
|
+
creator_id?: number | null;
|
|
948
|
+
child_count?: number | null;
|
|
949
|
+
external_id?: string | null;
|
|
932
950
|
is_embed?: boolean;
|
|
933
951
|
is_embed_shared_root?: boolean;
|
|
934
952
|
is_embed_users_root?: boolean;
|
|
@@ -944,131 +962,131 @@ export declare enum Format {
|
|
|
944
962
|
}
|
|
945
963
|
export interface IGitBranch {
|
|
946
964
|
can?: IDictionary<boolean>;
|
|
947
|
-
name?: string;
|
|
948
|
-
remote?: string;
|
|
949
|
-
remote_name?: string;
|
|
950
|
-
error?: string;
|
|
951
|
-
message?: string;
|
|
952
|
-
owner_name?: string;
|
|
965
|
+
name?: string | null;
|
|
966
|
+
remote?: string | null;
|
|
967
|
+
remote_name?: string | null;
|
|
968
|
+
error?: string | null;
|
|
969
|
+
message?: string | null;
|
|
970
|
+
owner_name?: string | null;
|
|
953
971
|
readonly?: boolean;
|
|
954
972
|
personal?: boolean;
|
|
955
973
|
is_local?: boolean;
|
|
956
974
|
is_remote?: boolean;
|
|
957
975
|
is_production?: boolean;
|
|
958
|
-
ahead_count?: number;
|
|
959
|
-
behind_count?: number;
|
|
960
|
-
commit_at?: number;
|
|
961
|
-
ref?: string;
|
|
962
|
-
remote_ref?: string;
|
|
976
|
+
ahead_count?: number | null;
|
|
977
|
+
behind_count?: number | null;
|
|
978
|
+
commit_at?: number | null;
|
|
979
|
+
ref?: string | null;
|
|
980
|
+
remote_ref?: string | null;
|
|
963
981
|
}
|
|
964
982
|
export interface IGitConnectionTest {
|
|
965
983
|
can?: IDictionary<boolean>;
|
|
966
|
-
description?: string;
|
|
984
|
+
description?: string | null;
|
|
967
985
|
id?: string;
|
|
968
986
|
}
|
|
969
987
|
export interface IGitConnectionTestResult {
|
|
970
988
|
can?: IDictionary<boolean>;
|
|
971
989
|
id?: string;
|
|
972
|
-
message?: string;
|
|
973
|
-
status?: string;
|
|
990
|
+
message?: string | null;
|
|
991
|
+
status?: string | null;
|
|
974
992
|
}
|
|
975
993
|
export interface IGitStatus {
|
|
976
|
-
action?: string;
|
|
994
|
+
action?: string | null;
|
|
977
995
|
conflict?: boolean;
|
|
978
996
|
revertable?: boolean;
|
|
979
|
-
text?: string;
|
|
997
|
+
text?: string | null;
|
|
980
998
|
}
|
|
981
999
|
export interface IGroup {
|
|
982
1000
|
can?: IDictionary<boolean>;
|
|
983
1001
|
can_add_to_content_metadata?: boolean;
|
|
984
1002
|
contains_current_user?: boolean;
|
|
985
|
-
external_group_id?: string;
|
|
1003
|
+
external_group_id?: string | null;
|
|
986
1004
|
externally_managed?: boolean;
|
|
987
1005
|
id?: number;
|
|
988
1006
|
include_by_default?: boolean;
|
|
989
|
-
name?: string;
|
|
990
|
-
user_count?: number;
|
|
1007
|
+
name?: string | null;
|
|
1008
|
+
user_count?: number | null;
|
|
991
1009
|
}
|
|
992
1010
|
export interface IGroupHierarchy {
|
|
993
1011
|
can?: IDictionary<boolean>;
|
|
994
1012
|
can_add_to_content_metadata?: boolean;
|
|
995
1013
|
contains_current_user?: boolean;
|
|
996
|
-
external_group_id?: string;
|
|
1014
|
+
external_group_id?: string | null;
|
|
997
1015
|
externally_managed?: boolean;
|
|
998
1016
|
id?: number;
|
|
999
1017
|
include_by_default?: boolean;
|
|
1000
|
-
name?: string;
|
|
1001
|
-
user_count?: number;
|
|
1002
|
-
parent_group_ids?: number[];
|
|
1003
|
-
role_ids?: number[];
|
|
1018
|
+
name?: string | null;
|
|
1019
|
+
user_count?: number | null;
|
|
1020
|
+
parent_group_ids?: number[] | null;
|
|
1021
|
+
role_ids?: number[] | null;
|
|
1004
1022
|
}
|
|
1005
1023
|
export interface IGroupIdForGroupInclusion {
|
|
1006
|
-
group_id?: number;
|
|
1024
|
+
group_id?: number | null;
|
|
1007
1025
|
}
|
|
1008
1026
|
export interface IGroupIdForGroupUserInclusion {
|
|
1009
|
-
user_id?: number;
|
|
1027
|
+
user_id?: number | null;
|
|
1010
1028
|
}
|
|
1011
1029
|
export interface IGroupSearch {
|
|
1012
1030
|
can?: IDictionary<boolean>;
|
|
1013
1031
|
can_add_to_content_metadata?: boolean;
|
|
1014
1032
|
contains_current_user?: boolean;
|
|
1015
|
-
external_group_id?: string;
|
|
1033
|
+
external_group_id?: string | null;
|
|
1016
1034
|
externally_managed?: boolean;
|
|
1017
1035
|
id?: number;
|
|
1018
1036
|
include_by_default?: boolean;
|
|
1019
|
-
name?: string;
|
|
1020
|
-
user_count?: number;
|
|
1021
|
-
roles?: IRole[];
|
|
1037
|
+
name?: string | null;
|
|
1038
|
+
user_count?: number | null;
|
|
1039
|
+
roles?: IRole[] | null;
|
|
1022
1040
|
}
|
|
1023
1041
|
export interface IHomepageItem {
|
|
1024
1042
|
can?: IDictionary<boolean>;
|
|
1025
|
-
content_created_by?: string;
|
|
1026
|
-
content_favorite_id?: number;
|
|
1027
|
-
content_metadata_id?: number;
|
|
1028
|
-
content_updated_at?: string;
|
|
1029
|
-
custom_description?: string;
|
|
1030
|
-
custom_image_data_base64?: string;
|
|
1031
|
-
custom_image_url?: string;
|
|
1032
|
-
custom_title?: string;
|
|
1033
|
-
custom_url?: string;
|
|
1034
|
-
dashboard_id?: number;
|
|
1035
|
-
description?: string;
|
|
1036
|
-
favorite_count?: number;
|
|
1037
|
-
homepage_section_id?: number;
|
|
1043
|
+
content_created_by?: string | null;
|
|
1044
|
+
content_favorite_id?: number | null;
|
|
1045
|
+
content_metadata_id?: number | null;
|
|
1046
|
+
content_updated_at?: string | null;
|
|
1047
|
+
custom_description?: string | null;
|
|
1048
|
+
custom_image_data_base64?: string | null;
|
|
1049
|
+
custom_image_url?: string | null;
|
|
1050
|
+
custom_title?: string | null;
|
|
1051
|
+
custom_url?: string | null;
|
|
1052
|
+
dashboard_id?: number | null;
|
|
1053
|
+
description?: string | null;
|
|
1054
|
+
favorite_count?: number | null;
|
|
1055
|
+
homepage_section_id?: number | null;
|
|
1038
1056
|
id?: number;
|
|
1039
|
-
image_url?: string;
|
|
1040
|
-
location?: string;
|
|
1041
|
-
look_id?:
|
|
1042
|
-
lookml_dashboard_id?: string;
|
|
1043
|
-
order?: number;
|
|
1044
|
-
section_fetch_time?: number;
|
|
1045
|
-
title?: string;
|
|
1046
|
-
url?: string;
|
|
1057
|
+
image_url?: string | null;
|
|
1058
|
+
location?: string | null;
|
|
1059
|
+
look_id?: string | null;
|
|
1060
|
+
lookml_dashboard_id?: string | null;
|
|
1061
|
+
order?: number | null;
|
|
1062
|
+
section_fetch_time?: number | null;
|
|
1063
|
+
title?: string | null;
|
|
1064
|
+
url?: string | null;
|
|
1047
1065
|
use_custom_description?: boolean;
|
|
1048
1066
|
use_custom_image?: boolean;
|
|
1049
1067
|
use_custom_title?: boolean;
|
|
1050
1068
|
use_custom_url?: boolean;
|
|
1051
|
-
view_count?: number;
|
|
1069
|
+
view_count?: number | null;
|
|
1052
1070
|
}
|
|
1053
1071
|
export interface IHomepageSection {
|
|
1054
1072
|
can?: IDictionary<boolean>;
|
|
1055
|
-
created_at?: Date;
|
|
1056
|
-
deleted_at?: Date;
|
|
1057
|
-
detail_url?: string;
|
|
1058
|
-
homepage_id?: number;
|
|
1059
|
-
homepage_items?: IHomepageItem[];
|
|
1073
|
+
created_at?: Date | null;
|
|
1074
|
+
deleted_at?: Date | null;
|
|
1075
|
+
detail_url?: string | null;
|
|
1076
|
+
homepage_id?: number | null;
|
|
1077
|
+
homepage_items?: IHomepageItem[] | null;
|
|
1060
1078
|
id?: number;
|
|
1061
1079
|
is_header?: boolean;
|
|
1062
|
-
item_order?: number[];
|
|
1063
|
-
title?: string;
|
|
1064
|
-
updated_at?: Date;
|
|
1065
|
-
description?: string;
|
|
1066
|
-
visible_item_order?: number[];
|
|
1080
|
+
item_order?: number[] | null;
|
|
1081
|
+
title?: string | null;
|
|
1082
|
+
updated_at?: Date | null;
|
|
1083
|
+
description?: string | null;
|
|
1084
|
+
visible_item_order?: number[] | null;
|
|
1067
1085
|
}
|
|
1068
1086
|
export interface IImportedProject {
|
|
1069
|
-
name?: string;
|
|
1070
|
-
url?: string;
|
|
1071
|
-
ref?: string;
|
|
1087
|
+
name?: string | null;
|
|
1088
|
+
url?: string | null;
|
|
1089
|
+
ref?: string | null;
|
|
1072
1090
|
is_remote?: boolean;
|
|
1073
1091
|
}
|
|
1074
1092
|
export interface IIntegration {
|
|
@@ -1076,7 +1094,7 @@ export interface IIntegration {
|
|
|
1076
1094
|
id?: string;
|
|
1077
1095
|
integration_hub_id?: number;
|
|
1078
1096
|
label?: string;
|
|
1079
|
-
description?: string;
|
|
1097
|
+
description?: string | null;
|
|
1080
1098
|
enabled?: boolean;
|
|
1081
1099
|
params?: IIntegrationParam[];
|
|
1082
1100
|
supported_formats?: SupportedFormats[];
|
|
@@ -1084,10 +1102,10 @@ export interface IIntegration {
|
|
|
1084
1102
|
supported_formattings?: SupportedFormattings[];
|
|
1085
1103
|
supported_visualization_formattings?: SupportedVisualizationFormattings[];
|
|
1086
1104
|
supported_download_settings?: SupportedDownloadSettings[];
|
|
1087
|
-
icon_url?: string;
|
|
1088
|
-
uses_oauth?: boolean;
|
|
1105
|
+
icon_url?: string | null;
|
|
1106
|
+
uses_oauth?: boolean | null;
|
|
1089
1107
|
required_fields?: IIntegrationRequiredField[];
|
|
1090
|
-
delegate_oauth?: boolean;
|
|
1108
|
+
delegate_oauth?: boolean | null;
|
|
1091
1109
|
installed_delegate_oauth_targets?: number[];
|
|
1092
1110
|
}
|
|
1093
1111
|
export interface IIntegrationHub {
|
|
@@ -1096,34 +1114,34 @@ export interface IIntegrationHub {
|
|
|
1096
1114
|
url?: string;
|
|
1097
1115
|
label?: string;
|
|
1098
1116
|
official?: boolean;
|
|
1099
|
-
fetch_error_message?: string;
|
|
1100
|
-
authorization_token?: string;
|
|
1117
|
+
fetch_error_message?: string | null;
|
|
1118
|
+
authorization_token?: string | null;
|
|
1101
1119
|
has_authorization_token?: boolean;
|
|
1102
1120
|
legal_agreement_signed?: boolean;
|
|
1103
1121
|
legal_agreement_required?: boolean;
|
|
1104
|
-
legal_agreement_text?: string;
|
|
1122
|
+
legal_agreement_text?: string | null;
|
|
1105
1123
|
}
|
|
1106
1124
|
export interface IIntegrationParam {
|
|
1107
|
-
name?: string;
|
|
1108
|
-
label?: string;
|
|
1109
|
-
description?: string;
|
|
1125
|
+
name?: string | null;
|
|
1126
|
+
label?: string | null;
|
|
1127
|
+
description?: string | null;
|
|
1110
1128
|
required?: boolean;
|
|
1111
1129
|
has_value?: boolean;
|
|
1112
|
-
value?: string;
|
|
1113
|
-
user_attribute_name?: string;
|
|
1114
|
-
sensitive?: boolean;
|
|
1130
|
+
value?: string | null;
|
|
1131
|
+
user_attribute_name?: string | null;
|
|
1132
|
+
sensitive?: boolean | null;
|
|
1115
1133
|
per_user?: boolean;
|
|
1116
|
-
delegate_oauth_url?: string;
|
|
1134
|
+
delegate_oauth_url?: string | null;
|
|
1117
1135
|
}
|
|
1118
1136
|
export interface IIntegrationRequiredField {
|
|
1119
|
-
tag?: string;
|
|
1120
|
-
any_tag?: string[];
|
|
1121
|
-
all_tags?: string[];
|
|
1137
|
+
tag?: string | null;
|
|
1138
|
+
any_tag?: string[] | null;
|
|
1139
|
+
all_tags?: string[] | null;
|
|
1122
1140
|
}
|
|
1123
1141
|
export interface IIntegrationTestResult {
|
|
1124
1142
|
success?: boolean;
|
|
1125
|
-
message?: string;
|
|
1126
|
-
delegate_oauth_result?: IDelegateOauthTest[];
|
|
1143
|
+
message?: string | null;
|
|
1144
|
+
delegate_oauth_result?: IDelegateOauthTest[] | null;
|
|
1127
1145
|
}
|
|
1128
1146
|
export interface IInternalHelpResources {
|
|
1129
1147
|
can?: IDictionary<boolean>;
|
|
@@ -1131,8 +1149,8 @@ export interface IInternalHelpResources {
|
|
|
1131
1149
|
}
|
|
1132
1150
|
export interface IInternalHelpResourcesContent {
|
|
1133
1151
|
can?: IDictionary<boolean>;
|
|
1134
|
-
organization_name?: string;
|
|
1135
|
-
markdown_content?: string;
|
|
1152
|
+
organization_name?: string | null;
|
|
1153
|
+
markdown_content?: string | null;
|
|
1136
1154
|
}
|
|
1137
1155
|
export declare enum InvestigativeContentType {
|
|
1138
1156
|
dashboard = "dashboard"
|
|
@@ -1140,114 +1158,114 @@ export declare enum InvestigativeContentType {
|
|
|
1140
1158
|
export interface ILDAPConfig {
|
|
1141
1159
|
can?: IDictionary<boolean>;
|
|
1142
1160
|
alternate_email_login_allowed?: boolean;
|
|
1143
|
-
auth_password?: string;
|
|
1161
|
+
auth_password?: string | null;
|
|
1144
1162
|
auth_requires_role?: boolean;
|
|
1145
|
-
auth_username?: string;
|
|
1146
|
-
connection_host?: string;
|
|
1147
|
-
connection_port?: string;
|
|
1163
|
+
auth_username?: string | null;
|
|
1164
|
+
connection_host?: string | null;
|
|
1165
|
+
connection_port?: string | null;
|
|
1148
1166
|
connection_tls?: boolean;
|
|
1149
1167
|
connection_tls_no_verify?: boolean;
|
|
1150
|
-
default_new_user_group_ids?: number[];
|
|
1151
|
-
default_new_user_groups?: IGroup[];
|
|
1152
|
-
default_new_user_role_ids?: number[];
|
|
1153
|
-
default_new_user_roles?: IRole[];
|
|
1168
|
+
default_new_user_group_ids?: number[] | null;
|
|
1169
|
+
default_new_user_groups?: IGroup[] | null;
|
|
1170
|
+
default_new_user_role_ids?: number[] | null;
|
|
1171
|
+
default_new_user_roles?: IRole[] | null;
|
|
1154
1172
|
enabled?: boolean;
|
|
1155
1173
|
force_no_page?: boolean;
|
|
1156
|
-
groups?: ILDAPGroupRead[];
|
|
1157
|
-
groups_base_dn?: string;
|
|
1158
|
-
groups_finder_type?: string;
|
|
1159
|
-
groups_member_attribute?: string;
|
|
1160
|
-
groups_objectclasses?: string;
|
|
1161
|
-
groups_user_attribute?: string;
|
|
1162
|
-
groups_with_role_ids?: ILDAPGroupWrite[];
|
|
1174
|
+
groups?: ILDAPGroupRead[] | null;
|
|
1175
|
+
groups_base_dn?: string | null;
|
|
1176
|
+
groups_finder_type?: string | null;
|
|
1177
|
+
groups_member_attribute?: string | null;
|
|
1178
|
+
groups_objectclasses?: string | null;
|
|
1179
|
+
groups_user_attribute?: string | null;
|
|
1180
|
+
groups_with_role_ids?: ILDAPGroupWrite[] | null;
|
|
1163
1181
|
has_auth_password?: boolean;
|
|
1164
1182
|
merge_new_users_by_email?: boolean;
|
|
1165
|
-
modified_at?: string;
|
|
1166
|
-
modified_by?: string;
|
|
1183
|
+
modified_at?: string | null;
|
|
1184
|
+
modified_by?: string | null;
|
|
1167
1185
|
set_roles_from_groups?: boolean;
|
|
1168
|
-
test_ldap_password?: string;
|
|
1169
|
-
test_ldap_user?: string;
|
|
1170
|
-
user_attribute_map_email?: string;
|
|
1171
|
-
user_attribute_map_first_name?: string;
|
|
1172
|
-
user_attribute_map_last_name?: string;
|
|
1173
|
-
user_attribute_map_ldap_id?: string;
|
|
1174
|
-
user_attributes?: ILDAPUserAttributeRead[];
|
|
1175
|
-
user_attributes_with_ids?: ILDAPUserAttributeWrite[];
|
|
1176
|
-
user_bind_base_dn?: string;
|
|
1177
|
-
user_custom_filter?: string;
|
|
1178
|
-
user_id_attribute_names?: string;
|
|
1179
|
-
user_objectclass?: string;
|
|
1186
|
+
test_ldap_password?: string | null;
|
|
1187
|
+
test_ldap_user?: string | null;
|
|
1188
|
+
user_attribute_map_email?: string | null;
|
|
1189
|
+
user_attribute_map_first_name?: string | null;
|
|
1190
|
+
user_attribute_map_last_name?: string | null;
|
|
1191
|
+
user_attribute_map_ldap_id?: string | null;
|
|
1192
|
+
user_attributes?: ILDAPUserAttributeRead[] | null;
|
|
1193
|
+
user_attributes_with_ids?: ILDAPUserAttributeWrite[] | null;
|
|
1194
|
+
user_bind_base_dn?: string | null;
|
|
1195
|
+
user_custom_filter?: string | null;
|
|
1196
|
+
user_id_attribute_names?: string | null;
|
|
1197
|
+
user_objectclass?: string | null;
|
|
1180
1198
|
allow_normal_group_membership?: boolean;
|
|
1181
1199
|
allow_roles_from_normal_groups?: boolean;
|
|
1182
1200
|
allow_direct_roles?: boolean;
|
|
1183
|
-
url?: string;
|
|
1201
|
+
url?: string | null;
|
|
1184
1202
|
}
|
|
1185
1203
|
export interface ILDAPConfigTestIssue {
|
|
1186
|
-
severity?: string;
|
|
1187
|
-
message?: string;
|
|
1204
|
+
severity?: string | null;
|
|
1205
|
+
message?: string | null;
|
|
1188
1206
|
}
|
|
1189
1207
|
export interface ILDAPConfigTestResult {
|
|
1190
|
-
details?: string;
|
|
1191
|
-
issues?: ILDAPConfigTestIssue[];
|
|
1192
|
-
message?: string;
|
|
1193
|
-
status?: string;
|
|
1194
|
-
trace?: string;
|
|
1208
|
+
details?: string | null;
|
|
1209
|
+
issues?: ILDAPConfigTestIssue[] | null;
|
|
1210
|
+
message?: string | null;
|
|
1211
|
+
status?: string | null;
|
|
1212
|
+
trace?: string | null;
|
|
1195
1213
|
user?: ILDAPUser;
|
|
1196
|
-
url?: string;
|
|
1214
|
+
url?: string | null;
|
|
1197
1215
|
}
|
|
1198
1216
|
export interface ILDAPGroupRead {
|
|
1199
1217
|
id?: number;
|
|
1200
|
-
looker_group_id?: number;
|
|
1201
|
-
looker_group_name?: string;
|
|
1202
|
-
name?: string;
|
|
1203
|
-
roles?: IRole[];
|
|
1204
|
-
url?: string;
|
|
1218
|
+
looker_group_id?: number | null;
|
|
1219
|
+
looker_group_name?: string | null;
|
|
1220
|
+
name?: string | null;
|
|
1221
|
+
roles?: IRole[] | null;
|
|
1222
|
+
url?: string | null;
|
|
1205
1223
|
}
|
|
1206
1224
|
export interface ILDAPGroupWrite {
|
|
1207
|
-
id?: number;
|
|
1208
|
-
looker_group_id?: number;
|
|
1209
|
-
looker_group_name?: string;
|
|
1210
|
-
name?: string;
|
|
1211
|
-
role_ids?: number[];
|
|
1212
|
-
url?: string;
|
|
1225
|
+
id?: number | null;
|
|
1226
|
+
looker_group_id?: number | null;
|
|
1227
|
+
looker_group_name?: string | null;
|
|
1228
|
+
name?: string | null;
|
|
1229
|
+
role_ids?: number[] | null;
|
|
1230
|
+
url?: string | null;
|
|
1213
1231
|
}
|
|
1214
1232
|
export interface ILDAPUser {
|
|
1215
|
-
all_emails?: string[];
|
|
1216
|
-
attributes?: IDictionary<string
|
|
1217
|
-
email?: string;
|
|
1218
|
-
first_name?: string;
|
|
1219
|
-
groups?: string[];
|
|
1220
|
-
last_name?: string;
|
|
1221
|
-
ldap_dn?: string;
|
|
1222
|
-
ldap_id?: string;
|
|
1223
|
-
roles?: string[];
|
|
1224
|
-
url?: string;
|
|
1233
|
+
all_emails?: string[] | null;
|
|
1234
|
+
attributes?: IDictionary<string> | null;
|
|
1235
|
+
email?: string | null;
|
|
1236
|
+
first_name?: string | null;
|
|
1237
|
+
groups?: string[] | null;
|
|
1238
|
+
last_name?: string | null;
|
|
1239
|
+
ldap_dn?: string | null;
|
|
1240
|
+
ldap_id?: string | null;
|
|
1241
|
+
roles?: string[] | null;
|
|
1242
|
+
url?: string | null;
|
|
1225
1243
|
}
|
|
1226
1244
|
export interface ILDAPUserAttributeRead {
|
|
1227
|
-
name?: string;
|
|
1245
|
+
name?: string | null;
|
|
1228
1246
|
required?: boolean;
|
|
1229
|
-
user_attributes?: IUserAttribute[];
|
|
1230
|
-
url?: string;
|
|
1247
|
+
user_attributes?: IUserAttribute[] | null;
|
|
1248
|
+
url?: string | null;
|
|
1231
1249
|
}
|
|
1232
1250
|
export interface ILDAPUserAttributeWrite {
|
|
1233
|
-
name?: string;
|
|
1251
|
+
name?: string | null;
|
|
1234
1252
|
required?: boolean;
|
|
1235
|
-
user_attribute_ids?: number[];
|
|
1236
|
-
url?: string;
|
|
1253
|
+
user_attribute_ids?: number[] | null;
|
|
1254
|
+
url?: string | null;
|
|
1237
1255
|
}
|
|
1238
1256
|
export interface ILegacyFeature {
|
|
1239
1257
|
can?: IDictionary<boolean>;
|
|
1240
1258
|
id?: string;
|
|
1241
|
-
name?: string;
|
|
1242
|
-
description?: string;
|
|
1259
|
+
name?: string | null;
|
|
1260
|
+
description?: string | null;
|
|
1243
1261
|
enabled_locally?: boolean;
|
|
1244
1262
|
enabled?: boolean;
|
|
1245
|
-
disallowed_as_of_version?: string;
|
|
1246
|
-
disable_on_upgrade_to_version?: string;
|
|
1247
|
-
end_of_life_version?: string;
|
|
1248
|
-
documentation_url?: string;
|
|
1249
|
-
approximate_disable_date?: Date;
|
|
1250
|
-
approximate_end_of_life_date?: Date;
|
|
1263
|
+
disallowed_as_of_version?: string | null;
|
|
1264
|
+
disable_on_upgrade_to_version?: string | null;
|
|
1265
|
+
end_of_life_version?: string | null;
|
|
1266
|
+
documentation_url?: string | null;
|
|
1267
|
+
approximate_disable_date?: Date | null;
|
|
1268
|
+
approximate_end_of_life_date?: Date | null;
|
|
1251
1269
|
has_disabled_on_upgrade?: boolean;
|
|
1252
1270
|
}
|
|
1253
1271
|
export declare enum LinkedContentType {
|
|
@@ -1255,137 +1273,138 @@ export declare enum LinkedContentType {
|
|
|
1255
1273
|
lookml_dashboard = "lookml_dashboard"
|
|
1256
1274
|
}
|
|
1257
1275
|
export interface ILocale {
|
|
1258
|
-
code?: string;
|
|
1259
|
-
native_name?: string;
|
|
1260
|
-
english_name?: string;
|
|
1276
|
+
code?: string | null;
|
|
1277
|
+
native_name?: string | null;
|
|
1278
|
+
english_name?: string | null;
|
|
1261
1279
|
}
|
|
1262
1280
|
export interface ILocalizationSettings {
|
|
1263
|
-
default_locale?: string;
|
|
1264
|
-
localization_level?: string;
|
|
1281
|
+
default_locale?: string | null;
|
|
1282
|
+
localization_level?: string | null;
|
|
1265
1283
|
}
|
|
1266
1284
|
export interface ILook {
|
|
1267
1285
|
can?: IDictionary<boolean>;
|
|
1268
|
-
content_metadata_id?: number;
|
|
1269
|
-
id?:
|
|
1270
|
-
title?: string;
|
|
1271
|
-
user_id?: number;
|
|
1272
|
-
content_favorite_id?: number;
|
|
1273
|
-
created_at?: Date;
|
|
1286
|
+
content_metadata_id?: number | null;
|
|
1287
|
+
id?: string;
|
|
1288
|
+
title?: string | null;
|
|
1289
|
+
user_id?: number | null;
|
|
1290
|
+
content_favorite_id?: number | null;
|
|
1291
|
+
created_at?: Date | null;
|
|
1274
1292
|
deleted?: boolean;
|
|
1275
|
-
deleted_at?: Date;
|
|
1276
|
-
deleter_id?: number;
|
|
1277
|
-
description?: string;
|
|
1278
|
-
embed_url?: string;
|
|
1279
|
-
excel_file_url?: string;
|
|
1280
|
-
favorite_count?: number;
|
|
1281
|
-
google_spreadsheet_formula?: string;
|
|
1282
|
-
image_embed_url?: string;
|
|
1293
|
+
deleted_at?: Date | null;
|
|
1294
|
+
deleter_id?: number | null;
|
|
1295
|
+
description?: string | null;
|
|
1296
|
+
embed_url?: string | null;
|
|
1297
|
+
excel_file_url?: string | null;
|
|
1298
|
+
favorite_count?: number | null;
|
|
1299
|
+
google_spreadsheet_formula?: string | null;
|
|
1300
|
+
image_embed_url?: string | null;
|
|
1283
1301
|
is_run_on_load?: boolean;
|
|
1284
|
-
last_accessed_at?: Date;
|
|
1285
|
-
last_updater_id?: number;
|
|
1286
|
-
last_viewed_at?: Date;
|
|
1302
|
+
last_accessed_at?: Date | null;
|
|
1303
|
+
last_updater_id?: number | null;
|
|
1304
|
+
last_viewed_at?: Date | null;
|
|
1287
1305
|
model?: ILookModel;
|
|
1288
1306
|
public?: boolean;
|
|
1289
|
-
public_slug?: string;
|
|
1290
|
-
public_url?: string;
|
|
1291
|
-
query_id?: number;
|
|
1292
|
-
short_url?: string;
|
|
1307
|
+
public_slug?: string | null;
|
|
1308
|
+
public_url?: string | null;
|
|
1309
|
+
query_id?: number | null;
|
|
1310
|
+
short_url?: string | null;
|
|
1293
1311
|
folder?: IFolderBase;
|
|
1294
|
-
folder_id?: string;
|
|
1295
|
-
updated_at?: Date;
|
|
1296
|
-
view_count?: number;
|
|
1312
|
+
folder_id?: string | null;
|
|
1313
|
+
updated_at?: Date | null;
|
|
1314
|
+
view_count?: number | null;
|
|
1297
1315
|
}
|
|
1298
1316
|
export interface ILookBasic {
|
|
1299
1317
|
can?: IDictionary<boolean>;
|
|
1300
|
-
content_metadata_id?: number;
|
|
1318
|
+
content_metadata_id?: number | null;
|
|
1301
1319
|
id?: number;
|
|
1302
|
-
title?: string;
|
|
1303
|
-
user_id?: number;
|
|
1320
|
+
title?: string | null;
|
|
1321
|
+
user_id?: number | null;
|
|
1304
1322
|
}
|
|
1305
1323
|
export interface ILookmlModel {
|
|
1306
1324
|
can?: IDictionary<boolean>;
|
|
1307
|
-
allowed_db_connection_names?: string[];
|
|
1308
|
-
explores?: ILookmlModelNavExplore[];
|
|
1325
|
+
allowed_db_connection_names?: string[] | null;
|
|
1326
|
+
explores?: ILookmlModelNavExplore[] | null;
|
|
1309
1327
|
has_content?: boolean;
|
|
1310
|
-
label?: string;
|
|
1311
|
-
name?: string;
|
|
1312
|
-
project_name?: string;
|
|
1328
|
+
label?: string | null;
|
|
1329
|
+
name?: string | null;
|
|
1330
|
+
project_name?: string | null;
|
|
1313
1331
|
unlimited_db_connections?: boolean;
|
|
1314
1332
|
}
|
|
1315
1333
|
export interface ILookmlModelExplore {
|
|
1316
1334
|
id?: string;
|
|
1317
|
-
name?: string;
|
|
1318
|
-
description?: string;
|
|
1319
|
-
label?: string;
|
|
1320
|
-
title?: string;
|
|
1321
|
-
scopes?: string[];
|
|
1335
|
+
name?: string | null;
|
|
1336
|
+
description?: string | null;
|
|
1337
|
+
label?: string | null;
|
|
1338
|
+
title?: string | null;
|
|
1339
|
+
scopes?: string[] | null;
|
|
1322
1340
|
can_total?: boolean;
|
|
1323
1341
|
can_develop?: boolean;
|
|
1324
1342
|
can_see_lookml?: boolean;
|
|
1325
|
-
lookml_link?: string;
|
|
1343
|
+
lookml_link?: string | null;
|
|
1326
1344
|
can_save?: boolean;
|
|
1327
1345
|
can_explain?: boolean;
|
|
1328
1346
|
can_pivot_in_db?: boolean;
|
|
1329
1347
|
can_subtotal?: boolean;
|
|
1330
1348
|
has_timezone_support?: boolean;
|
|
1331
1349
|
supports_cost_estimate?: boolean;
|
|
1332
|
-
connection_name?: string;
|
|
1333
|
-
null_sort_treatment?: string;
|
|
1334
|
-
files?: string[];
|
|
1335
|
-
source_file?: string;
|
|
1336
|
-
project_name?: string;
|
|
1337
|
-
model_name?: string;
|
|
1338
|
-
view_name?: string;
|
|
1350
|
+
connection_name?: string | null;
|
|
1351
|
+
null_sort_treatment?: string | null;
|
|
1352
|
+
files?: string[] | null;
|
|
1353
|
+
source_file?: string | null;
|
|
1354
|
+
project_name?: string | null;
|
|
1355
|
+
model_name?: string | null;
|
|
1356
|
+
view_name?: string | null;
|
|
1339
1357
|
hidden?: boolean;
|
|
1340
|
-
sql_table_name?: string;
|
|
1341
|
-
access_filter_fields?: string[];
|
|
1342
|
-
access_filters?: ILookmlModelExploreAccessFilter[];
|
|
1343
|
-
aliases?: ILookmlModelExploreAlias[];
|
|
1344
|
-
always_filter?: ILookmlModelExploreAlwaysFilter[];
|
|
1345
|
-
conditionally_filter?: ILookmlModelExploreConditionallyFilter[];
|
|
1346
|
-
index_fields?: string[];
|
|
1347
|
-
sets?: ILookmlModelExploreSet[];
|
|
1348
|
-
tags?: string[];
|
|
1349
|
-
errors?: ILookmlModelExploreError[];
|
|
1358
|
+
sql_table_name?: string | null;
|
|
1359
|
+
access_filter_fields?: string[] | null;
|
|
1360
|
+
access_filters?: ILookmlModelExploreAccessFilter[] | null;
|
|
1361
|
+
aliases?: ILookmlModelExploreAlias[] | null;
|
|
1362
|
+
always_filter?: ILookmlModelExploreAlwaysFilter[] | null;
|
|
1363
|
+
conditionally_filter?: ILookmlModelExploreConditionallyFilter[] | null;
|
|
1364
|
+
index_fields?: string[] | null;
|
|
1365
|
+
sets?: ILookmlModelExploreSet[] | null;
|
|
1366
|
+
tags?: string[] | null;
|
|
1367
|
+
errors?: ILookmlModelExploreError[] | null;
|
|
1350
1368
|
fields?: ILookmlModelExploreFieldset;
|
|
1351
|
-
joins?: ILookmlModelExploreJoins[];
|
|
1352
|
-
group_label?: string;
|
|
1369
|
+
joins?: ILookmlModelExploreJoins[] | null;
|
|
1370
|
+
group_label?: string | null;
|
|
1353
1371
|
supported_measure_types?: ILookmlModelExploreSupportedMeasureType[];
|
|
1372
|
+
always_join?: string[] | null;
|
|
1354
1373
|
}
|
|
1355
1374
|
export interface ILookmlModelExploreAccessFilter {
|
|
1356
|
-
field?: string;
|
|
1357
|
-
user_attribute?: string;
|
|
1375
|
+
field?: string | null;
|
|
1376
|
+
user_attribute?: string | null;
|
|
1358
1377
|
}
|
|
1359
1378
|
export interface ILookmlModelExploreAlias {
|
|
1360
|
-
name?: string;
|
|
1361
|
-
value?: string;
|
|
1379
|
+
name?: string | null;
|
|
1380
|
+
value?: string | null;
|
|
1362
1381
|
}
|
|
1363
1382
|
export interface ILookmlModelExploreAlwaysFilter {
|
|
1364
|
-
name?: string;
|
|
1365
|
-
value?: string;
|
|
1383
|
+
name?: string | null;
|
|
1384
|
+
value?: string | null;
|
|
1366
1385
|
}
|
|
1367
1386
|
export interface ILookmlModelExploreConditionallyFilter {
|
|
1368
|
-
name?: string;
|
|
1369
|
-
value?: string;
|
|
1387
|
+
name?: string | null;
|
|
1388
|
+
value?: string | null;
|
|
1370
1389
|
}
|
|
1371
1390
|
export interface ILookmlModelExploreError {
|
|
1372
|
-
message?: string;
|
|
1373
|
-
details?: any;
|
|
1374
|
-
error_pos?: string;
|
|
1391
|
+
message?: string | null;
|
|
1392
|
+
details?: any | null;
|
|
1393
|
+
error_pos?: string | null;
|
|
1375
1394
|
field_error?: boolean;
|
|
1376
1395
|
}
|
|
1377
1396
|
export interface ILookmlModelExploreField {
|
|
1378
1397
|
align?: Align;
|
|
1379
1398
|
can_filter?: boolean;
|
|
1380
|
-
category?: Category;
|
|
1381
|
-
default_filter_value?: string;
|
|
1382
|
-
description?: string;
|
|
1383
|
-
dimension_group?: string;
|
|
1384
|
-
enumerations?: ILookmlModelExploreFieldEnumeration[];
|
|
1385
|
-
error?: string;
|
|
1386
|
-
field_group_label?: string;
|
|
1387
|
-
field_group_variant?: string;
|
|
1388
|
-
fill_style?: FillStyle;
|
|
1399
|
+
category?: Category | null;
|
|
1400
|
+
default_filter_value?: string | null;
|
|
1401
|
+
description?: string | null;
|
|
1402
|
+
dimension_group?: string | null;
|
|
1403
|
+
enumerations?: ILookmlModelExploreFieldEnumeration[] | null;
|
|
1404
|
+
error?: string | null;
|
|
1405
|
+
field_group_label?: string | null;
|
|
1406
|
+
field_group_variant?: string | null;
|
|
1407
|
+
fill_style?: FillStyle | null;
|
|
1389
1408
|
fiscal_month_offset?: number;
|
|
1390
1409
|
has_allowed_values?: boolean;
|
|
1391
1410
|
hidden?: boolean;
|
|
@@ -1396,33 +1415,33 @@ export interface ILookmlModelExploreField {
|
|
|
1396
1415
|
can_time_filter?: boolean;
|
|
1397
1416
|
time_interval?: ILookmlModelExploreFieldTimeInterval;
|
|
1398
1417
|
label?: string;
|
|
1399
|
-
label_from_parameter?: string;
|
|
1418
|
+
label_from_parameter?: string | null;
|
|
1400
1419
|
label_short?: string;
|
|
1401
|
-
lookml_link?: string;
|
|
1420
|
+
lookml_link?: string | null;
|
|
1402
1421
|
map_layer?: ILookmlModelExploreFieldMapLayer;
|
|
1403
1422
|
measure?: boolean;
|
|
1404
1423
|
name?: string;
|
|
1405
1424
|
strict_value_format?: boolean;
|
|
1406
1425
|
parameter?: boolean;
|
|
1407
|
-
permanent?: boolean;
|
|
1426
|
+
permanent?: boolean | null;
|
|
1408
1427
|
primary_key?: boolean;
|
|
1409
|
-
project_name?: string;
|
|
1428
|
+
project_name?: string | null;
|
|
1410
1429
|
requires_refresh_on_sort?: boolean;
|
|
1411
1430
|
scope?: string;
|
|
1412
1431
|
sortable?: boolean;
|
|
1413
1432
|
source_file?: string;
|
|
1414
1433
|
source_file_path?: string;
|
|
1415
|
-
sql?: string;
|
|
1416
|
-
sql_case?: ILookmlModelExploreFieldSqlCase[];
|
|
1417
|
-
filters?: ILookmlModelExploreFieldMeasureFilters[];
|
|
1434
|
+
sql?: string | null;
|
|
1435
|
+
sql_case?: ILookmlModelExploreFieldSqlCase[] | null;
|
|
1436
|
+
filters?: ILookmlModelExploreFieldMeasureFilters[] | null;
|
|
1418
1437
|
suggest_dimension?: string;
|
|
1419
1438
|
suggest_explore?: string;
|
|
1420
1439
|
suggestable?: boolean;
|
|
1421
|
-
suggestions?: string[];
|
|
1440
|
+
suggestions?: string[] | null;
|
|
1422
1441
|
tags?: string[];
|
|
1423
1442
|
type?: string;
|
|
1424
1443
|
user_attribute_filter_types?: UserAttributeFilterTypes[];
|
|
1425
|
-
value_format?: string;
|
|
1444
|
+
value_format?: string | null;
|
|
1426
1445
|
view?: string;
|
|
1427
1446
|
view_label?: string;
|
|
1428
1447
|
dynamic?: boolean;
|
|
@@ -1431,68 +1450,68 @@ export interface ILookmlModelExploreField {
|
|
|
1431
1450
|
original_view?: string;
|
|
1432
1451
|
}
|
|
1433
1452
|
export interface ILookmlModelExploreFieldEnumeration {
|
|
1434
|
-
label?: string;
|
|
1435
|
-
value?: any;
|
|
1453
|
+
label?: string | null;
|
|
1454
|
+
value?: any | null;
|
|
1436
1455
|
}
|
|
1437
1456
|
export interface ILookmlModelExploreFieldMapLayer {
|
|
1438
1457
|
url?: string;
|
|
1439
1458
|
name?: string;
|
|
1440
|
-
feature_key?: string;
|
|
1441
|
-
property_key?: string;
|
|
1442
|
-
property_label_key?: string;
|
|
1443
|
-
projection?: string;
|
|
1459
|
+
feature_key?: string | null;
|
|
1460
|
+
property_key?: string | null;
|
|
1461
|
+
property_label_key?: string | null;
|
|
1462
|
+
projection?: string | null;
|
|
1444
1463
|
format?: Format;
|
|
1445
|
-
extents_json_url?: string;
|
|
1446
|
-
max_zoom_level?: number;
|
|
1447
|
-
min_zoom_level?: number;
|
|
1464
|
+
extents_json_url?: string | null;
|
|
1465
|
+
max_zoom_level?: number | null;
|
|
1466
|
+
min_zoom_level?: number | null;
|
|
1448
1467
|
}
|
|
1449
1468
|
export interface ILookmlModelExploreFieldMeasureFilters {
|
|
1450
|
-
field?: string;
|
|
1451
|
-
condition?: string;
|
|
1469
|
+
field?: string | null;
|
|
1470
|
+
condition?: string | null;
|
|
1452
1471
|
}
|
|
1453
1472
|
export interface ILookmlModelExploreFieldset {
|
|
1454
|
-
dimensions?: ILookmlModelExploreField[];
|
|
1455
|
-
measures?: ILookmlModelExploreField[];
|
|
1456
|
-
filters?: ILookmlModelExploreField[];
|
|
1457
|
-
parameters?: ILookmlModelExploreField[];
|
|
1473
|
+
dimensions?: ILookmlModelExploreField[] | null;
|
|
1474
|
+
measures?: ILookmlModelExploreField[] | null;
|
|
1475
|
+
filters?: ILookmlModelExploreField[] | null;
|
|
1476
|
+
parameters?: ILookmlModelExploreField[] | null;
|
|
1458
1477
|
}
|
|
1459
1478
|
export interface ILookmlModelExploreFieldSqlCase {
|
|
1460
|
-
value?: string;
|
|
1461
|
-
condition?: string;
|
|
1479
|
+
value?: string | null;
|
|
1480
|
+
condition?: string | null;
|
|
1462
1481
|
}
|
|
1463
1482
|
export interface ILookmlModelExploreFieldTimeInterval {
|
|
1464
1483
|
name?: Name;
|
|
1465
1484
|
count?: number;
|
|
1466
1485
|
}
|
|
1467
1486
|
export interface ILookmlModelExploreJoins {
|
|
1468
|
-
name?: string;
|
|
1469
|
-
dependent_fields?: string[];
|
|
1470
|
-
fields?: string[];
|
|
1471
|
-
foreign_key?: string;
|
|
1472
|
-
from?: string;
|
|
1473
|
-
outer_only?: boolean;
|
|
1474
|
-
relationship?: string;
|
|
1475
|
-
required_joins?: string[];
|
|
1476
|
-
sql_foreign_key?: string;
|
|
1477
|
-
sql_on?: string;
|
|
1478
|
-
sql_table_name?: string;
|
|
1479
|
-
type?: string;
|
|
1480
|
-
view_label?: string;
|
|
1487
|
+
name?: string | null;
|
|
1488
|
+
dependent_fields?: string[] | null;
|
|
1489
|
+
fields?: string[] | null;
|
|
1490
|
+
foreign_key?: string | null;
|
|
1491
|
+
from?: string | null;
|
|
1492
|
+
outer_only?: boolean | null;
|
|
1493
|
+
relationship?: string | null;
|
|
1494
|
+
required_joins?: string[] | null;
|
|
1495
|
+
sql_foreign_key?: string | null;
|
|
1496
|
+
sql_on?: string | null;
|
|
1497
|
+
sql_table_name?: string | null;
|
|
1498
|
+
type?: string | null;
|
|
1499
|
+
view_label?: string | null;
|
|
1481
1500
|
}
|
|
1482
1501
|
export interface ILookmlModelExploreSet {
|
|
1483
|
-
name?: string;
|
|
1484
|
-
value?: string[];
|
|
1502
|
+
name?: string | null;
|
|
1503
|
+
value?: string[] | null;
|
|
1485
1504
|
}
|
|
1486
1505
|
export interface ILookmlModelExploreSupportedMeasureType {
|
|
1487
|
-
dimension_type?: string;
|
|
1488
|
-
measure_types?: string[];
|
|
1506
|
+
dimension_type?: string | null;
|
|
1507
|
+
measure_types?: string[] | null;
|
|
1489
1508
|
}
|
|
1490
1509
|
export interface ILookmlModelNavExplore {
|
|
1491
|
-
name?: string;
|
|
1492
|
-
description?: string;
|
|
1493
|
-
label?: string;
|
|
1510
|
+
name?: string | null;
|
|
1511
|
+
description?: string | null;
|
|
1512
|
+
label?: string | null;
|
|
1494
1513
|
hidden?: boolean;
|
|
1495
|
-
group_label?: string;
|
|
1514
|
+
group_label?: string | null;
|
|
1496
1515
|
}
|
|
1497
1516
|
export interface ILookmlTest {
|
|
1498
1517
|
can?: IDictionary<boolean>;
|
|
@@ -1501,7 +1520,7 @@ export interface ILookmlTest {
|
|
|
1501
1520
|
explore_name?: string;
|
|
1502
1521
|
query_url_params?: string;
|
|
1503
1522
|
file?: string;
|
|
1504
|
-
line?: number;
|
|
1523
|
+
line?: number | null;
|
|
1505
1524
|
}
|
|
1506
1525
|
export interface ILookmlTestResult {
|
|
1507
1526
|
can?: IDictionary<boolean>;
|
|
@@ -1509,120 +1528,120 @@ export interface ILookmlTestResult {
|
|
|
1509
1528
|
test_name?: string;
|
|
1510
1529
|
assertions_count?: number;
|
|
1511
1530
|
assertions_failed?: number;
|
|
1512
|
-
errors?: IProjectError[];
|
|
1513
|
-
warnings?: IProjectError[];
|
|
1531
|
+
errors?: IProjectError[] | null;
|
|
1532
|
+
warnings?: IProjectError[] | null;
|
|
1514
1533
|
success?: boolean;
|
|
1515
1534
|
}
|
|
1516
1535
|
export interface ILookModel {
|
|
1517
1536
|
id?: string;
|
|
1518
|
-
label?: string;
|
|
1537
|
+
label?: string | null;
|
|
1519
1538
|
}
|
|
1520
1539
|
export interface ILookWithDashboards {
|
|
1521
1540
|
can?: IDictionary<boolean>;
|
|
1522
|
-
content_metadata_id?: number;
|
|
1523
|
-
id?:
|
|
1524
|
-
title?: string;
|
|
1525
|
-
user_id?: number;
|
|
1526
|
-
content_favorite_id?: number;
|
|
1527
|
-
created_at?: Date;
|
|
1541
|
+
content_metadata_id?: number | null;
|
|
1542
|
+
id?: string;
|
|
1543
|
+
title?: string | null;
|
|
1544
|
+
user_id?: number | null;
|
|
1545
|
+
content_favorite_id?: number | null;
|
|
1546
|
+
created_at?: Date | null;
|
|
1528
1547
|
deleted?: boolean;
|
|
1529
|
-
deleted_at?: Date;
|
|
1530
|
-
deleter_id?: number;
|
|
1531
|
-
description?: string;
|
|
1532
|
-
embed_url?: string;
|
|
1533
|
-
excel_file_url?: string;
|
|
1534
|
-
favorite_count?: number;
|
|
1535
|
-
google_spreadsheet_formula?: string;
|
|
1536
|
-
image_embed_url?: string;
|
|
1548
|
+
deleted_at?: Date | null;
|
|
1549
|
+
deleter_id?: number | null;
|
|
1550
|
+
description?: string | null;
|
|
1551
|
+
embed_url?: string | null;
|
|
1552
|
+
excel_file_url?: string | null;
|
|
1553
|
+
favorite_count?: number | null;
|
|
1554
|
+
google_spreadsheet_formula?: string | null;
|
|
1555
|
+
image_embed_url?: string | null;
|
|
1537
1556
|
is_run_on_load?: boolean;
|
|
1538
|
-
last_accessed_at?: Date;
|
|
1539
|
-
last_updater_id?: number;
|
|
1540
|
-
last_viewed_at?: Date;
|
|
1557
|
+
last_accessed_at?: Date | null;
|
|
1558
|
+
last_updater_id?: number | null;
|
|
1559
|
+
last_viewed_at?: Date | null;
|
|
1541
1560
|
model?: ILookModel;
|
|
1542
1561
|
public?: boolean;
|
|
1543
|
-
public_slug?: string;
|
|
1544
|
-
public_url?: string;
|
|
1545
|
-
query_id?: number;
|
|
1546
|
-
short_url?: string;
|
|
1562
|
+
public_slug?: string | null;
|
|
1563
|
+
public_url?: string | null;
|
|
1564
|
+
query_id?: number | null;
|
|
1565
|
+
short_url?: string | null;
|
|
1547
1566
|
folder?: IFolderBase;
|
|
1548
|
-
folder_id?: string;
|
|
1549
|
-
updated_at?: Date;
|
|
1550
|
-
view_count?: number;
|
|
1551
|
-
dashboards?: IDashboardBase[];
|
|
1567
|
+
folder_id?: string | null;
|
|
1568
|
+
updated_at?: Date | null;
|
|
1569
|
+
view_count?: number | null;
|
|
1570
|
+
dashboards?: IDashboardBase[] | null;
|
|
1552
1571
|
}
|
|
1553
1572
|
export interface ILookWithQuery {
|
|
1554
1573
|
can?: IDictionary<boolean>;
|
|
1555
|
-
content_metadata_id?: number;
|
|
1556
|
-
id?:
|
|
1557
|
-
title?: string;
|
|
1558
|
-
user_id?: number;
|
|
1559
|
-
content_favorite_id?: number;
|
|
1560
|
-
created_at?: Date;
|
|
1574
|
+
content_metadata_id?: number | null;
|
|
1575
|
+
id?: string;
|
|
1576
|
+
title?: string | null;
|
|
1577
|
+
user_id?: number | null;
|
|
1578
|
+
content_favorite_id?: number | null;
|
|
1579
|
+
created_at?: Date | null;
|
|
1561
1580
|
deleted?: boolean;
|
|
1562
|
-
deleted_at?: Date;
|
|
1563
|
-
deleter_id?: number;
|
|
1564
|
-
description?: string;
|
|
1565
|
-
embed_url?: string;
|
|
1566
|
-
excel_file_url?: string;
|
|
1567
|
-
favorite_count?: number;
|
|
1568
|
-
google_spreadsheet_formula?: string;
|
|
1569
|
-
image_embed_url?: string;
|
|
1581
|
+
deleted_at?: Date | null;
|
|
1582
|
+
deleter_id?: number | null;
|
|
1583
|
+
description?: string | null;
|
|
1584
|
+
embed_url?: string | null;
|
|
1585
|
+
excel_file_url?: string | null;
|
|
1586
|
+
favorite_count?: number | null;
|
|
1587
|
+
google_spreadsheet_formula?: string | null;
|
|
1588
|
+
image_embed_url?: string | null;
|
|
1570
1589
|
is_run_on_load?: boolean;
|
|
1571
|
-
last_accessed_at?: Date;
|
|
1572
|
-
last_updater_id?: number;
|
|
1573
|
-
last_viewed_at?: Date;
|
|
1590
|
+
last_accessed_at?: Date | null;
|
|
1591
|
+
last_updater_id?: number | null;
|
|
1592
|
+
last_viewed_at?: Date | null;
|
|
1574
1593
|
model?: ILookModel;
|
|
1575
1594
|
public?: boolean;
|
|
1576
|
-
public_slug?: string;
|
|
1577
|
-
public_url?: string;
|
|
1578
|
-
query_id?: number;
|
|
1579
|
-
short_url?: string;
|
|
1595
|
+
public_slug?: string | null;
|
|
1596
|
+
public_url?: string | null;
|
|
1597
|
+
query_id?: number | null;
|
|
1598
|
+
short_url?: string | null;
|
|
1580
1599
|
folder?: IFolderBase;
|
|
1581
|
-
folder_id?: string;
|
|
1582
|
-
updated_at?: Date;
|
|
1583
|
-
view_count?: number;
|
|
1600
|
+
folder_id?: string | null;
|
|
1601
|
+
updated_at?: Date | null;
|
|
1602
|
+
view_count?: number | null;
|
|
1584
1603
|
query?: IQuery;
|
|
1585
|
-
url?: string;
|
|
1604
|
+
url?: string | null;
|
|
1586
1605
|
}
|
|
1587
1606
|
export interface IManifest {
|
|
1588
1607
|
can?: IDictionary<boolean>;
|
|
1589
|
-
name?: string;
|
|
1590
|
-
imports?: IImportedProject[];
|
|
1608
|
+
name?: string | null;
|
|
1609
|
+
imports?: IImportedProject[] | null;
|
|
1591
1610
|
localization_settings?: ILocalizationSettings;
|
|
1592
1611
|
}
|
|
1593
1612
|
export interface IMergeFields {
|
|
1594
|
-
field_name?: string;
|
|
1595
|
-
source_field_name?: string;
|
|
1613
|
+
field_name?: string | null;
|
|
1614
|
+
source_field_name?: string | null;
|
|
1596
1615
|
}
|
|
1597
1616
|
export interface IMergeQuery {
|
|
1598
1617
|
can?: IDictionary<boolean>;
|
|
1599
|
-
column_limit?: string;
|
|
1600
|
-
dynamic_fields?: string;
|
|
1618
|
+
column_limit?: string | null;
|
|
1619
|
+
dynamic_fields?: string | null;
|
|
1601
1620
|
id?: string;
|
|
1602
|
-
pivots?: string[];
|
|
1603
|
-
result_maker_id?: number;
|
|
1604
|
-
sorts?: string[];
|
|
1605
|
-
source_queries?: IMergeQuerySourceQuery[];
|
|
1621
|
+
pivots?: string[] | null;
|
|
1622
|
+
result_maker_id?: number | null;
|
|
1623
|
+
sorts?: string[] | null;
|
|
1624
|
+
source_queries?: IMergeQuerySourceQuery[] | null;
|
|
1606
1625
|
total?: boolean;
|
|
1607
|
-
vis_config?: IDictionary<string
|
|
1626
|
+
vis_config?: IDictionary<string> | null;
|
|
1608
1627
|
}
|
|
1609
1628
|
export interface IMergeQuerySourceQuery {
|
|
1610
|
-
merge_fields?: IMergeFields[];
|
|
1611
|
-
name?: string;
|
|
1612
|
-
query_id?: number;
|
|
1629
|
+
merge_fields?: IMergeFields[] | null;
|
|
1630
|
+
name?: string | null;
|
|
1631
|
+
query_id?: number | null;
|
|
1613
1632
|
}
|
|
1614
1633
|
export interface IMobileSettings {
|
|
1615
1634
|
mobile_force_authentication?: boolean;
|
|
1616
1635
|
mobile_app_integration?: boolean;
|
|
1617
1636
|
}
|
|
1618
1637
|
export interface IModel {
|
|
1619
|
-
connection?: string;
|
|
1638
|
+
connection?: string | null;
|
|
1620
1639
|
name?: string;
|
|
1621
|
-
value_formats?: IModelNamedValueFormats[];
|
|
1640
|
+
value_formats?: IModelNamedValueFormats[] | null;
|
|
1622
1641
|
}
|
|
1623
1642
|
export interface IModelFieldSuggestions {
|
|
1624
1643
|
suggestions?: string[];
|
|
1625
|
-
error?: string;
|
|
1644
|
+
error?: string | null;
|
|
1626
1645
|
from_cache?: boolean;
|
|
1627
1646
|
hit_limit?: boolean;
|
|
1628
1647
|
used_calcite_materialization?: boolean;
|
|
@@ -1638,13 +1657,13 @@ export interface IModelSet {
|
|
|
1638
1657
|
all_access?: boolean;
|
|
1639
1658
|
built_in?: boolean;
|
|
1640
1659
|
id?: number;
|
|
1641
|
-
models?: string[];
|
|
1642
|
-
name?: string;
|
|
1643
|
-
url?: string;
|
|
1660
|
+
models?: string[] | null;
|
|
1661
|
+
name?: string | null;
|
|
1662
|
+
url?: string | null;
|
|
1644
1663
|
}
|
|
1645
1664
|
export interface IModelsNotValidated {
|
|
1646
|
-
name?: string;
|
|
1647
|
-
project_file_id?: string;
|
|
1665
|
+
name?: string | null;
|
|
1666
|
+
project_file_id?: string | null;
|
|
1648
1667
|
}
|
|
1649
1668
|
export declare enum Name {
|
|
1650
1669
|
day = "day",
|
|
@@ -1665,90 +1684,90 @@ export interface IOauthClientApp {
|
|
|
1665
1684
|
display_name?: string;
|
|
1666
1685
|
description?: string;
|
|
1667
1686
|
enabled?: boolean;
|
|
1668
|
-
group_id?: number;
|
|
1687
|
+
group_id?: number | null;
|
|
1669
1688
|
tokens_invalid_before?: Date;
|
|
1670
1689
|
activated_users?: IUserPublic[];
|
|
1671
1690
|
}
|
|
1672
1691
|
export interface IOIDCConfig {
|
|
1673
1692
|
can?: IDictionary<boolean>;
|
|
1674
1693
|
alternate_email_login_allowed?: boolean;
|
|
1675
|
-
audience?: string;
|
|
1694
|
+
audience?: string | null;
|
|
1676
1695
|
auth_requires_role?: boolean;
|
|
1677
|
-
authorization_endpoint?: string;
|
|
1678
|
-
default_new_user_group_ids?: number[];
|
|
1679
|
-
default_new_user_groups?: IGroup[];
|
|
1680
|
-
default_new_user_role_ids?: number[];
|
|
1681
|
-
default_new_user_roles?: IRole[];
|
|
1696
|
+
authorization_endpoint?: string | null;
|
|
1697
|
+
default_new_user_group_ids?: number[] | null;
|
|
1698
|
+
default_new_user_groups?: IGroup[] | null;
|
|
1699
|
+
default_new_user_role_ids?: number[] | null;
|
|
1700
|
+
default_new_user_roles?: IRole[] | null;
|
|
1682
1701
|
enabled?: boolean;
|
|
1683
|
-
groups?: IOIDCGroupRead[];
|
|
1684
|
-
groups_attribute?: string;
|
|
1685
|
-
groups_with_role_ids?: IOIDCGroupWrite[];
|
|
1686
|
-
identifier?: string;
|
|
1687
|
-
issuer?: string;
|
|
1688
|
-
modified_at?: Date;
|
|
1689
|
-
modified_by?: number;
|
|
1690
|
-
new_user_migration_types?: string;
|
|
1691
|
-
scopes?: string[];
|
|
1692
|
-
secret?: string;
|
|
1702
|
+
groups?: IOIDCGroupRead[] | null;
|
|
1703
|
+
groups_attribute?: string | null;
|
|
1704
|
+
groups_with_role_ids?: IOIDCGroupWrite[] | null;
|
|
1705
|
+
identifier?: string | null;
|
|
1706
|
+
issuer?: string | null;
|
|
1707
|
+
modified_at?: Date | null;
|
|
1708
|
+
modified_by?: number | null;
|
|
1709
|
+
new_user_migration_types?: string | null;
|
|
1710
|
+
scopes?: string[] | null;
|
|
1711
|
+
secret?: string | null;
|
|
1693
1712
|
set_roles_from_groups?: boolean;
|
|
1694
|
-
test_slug?: string;
|
|
1695
|
-
token_endpoint?: string;
|
|
1696
|
-
user_attribute_map_email?: string;
|
|
1697
|
-
user_attribute_map_first_name?: string;
|
|
1698
|
-
user_attribute_map_last_name?: string;
|
|
1699
|
-
user_attributes?: IOIDCUserAttributeRead[];
|
|
1700
|
-
user_attributes_with_ids?: IOIDCUserAttributeWrite[];
|
|
1701
|
-
userinfo_endpoint?: string;
|
|
1713
|
+
test_slug?: string | null;
|
|
1714
|
+
token_endpoint?: string | null;
|
|
1715
|
+
user_attribute_map_email?: string | null;
|
|
1716
|
+
user_attribute_map_first_name?: string | null;
|
|
1717
|
+
user_attribute_map_last_name?: string | null;
|
|
1718
|
+
user_attributes?: IOIDCUserAttributeRead[] | null;
|
|
1719
|
+
user_attributes_with_ids?: IOIDCUserAttributeWrite[] | null;
|
|
1720
|
+
userinfo_endpoint?: string | null;
|
|
1702
1721
|
allow_normal_group_membership?: boolean;
|
|
1703
1722
|
allow_roles_from_normal_groups?: boolean;
|
|
1704
1723
|
allow_direct_roles?: boolean;
|
|
1705
|
-
url?: string;
|
|
1724
|
+
url?: string | null;
|
|
1706
1725
|
}
|
|
1707
1726
|
export interface IOIDCGroupRead {
|
|
1708
1727
|
id?: number;
|
|
1709
|
-
looker_group_id?: number;
|
|
1710
|
-
looker_group_name?: string;
|
|
1711
|
-
name?: string;
|
|
1712
|
-
roles?: IRole[];
|
|
1728
|
+
looker_group_id?: number | null;
|
|
1729
|
+
looker_group_name?: string | null;
|
|
1730
|
+
name?: string | null;
|
|
1731
|
+
roles?: IRole[] | null;
|
|
1713
1732
|
}
|
|
1714
1733
|
export interface IOIDCGroupWrite {
|
|
1715
|
-
id?: number;
|
|
1716
|
-
looker_group_id?: number;
|
|
1717
|
-
looker_group_name?: string;
|
|
1718
|
-
name?: string;
|
|
1719
|
-
role_ids?: number[];
|
|
1734
|
+
id?: number | null;
|
|
1735
|
+
looker_group_id?: number | null;
|
|
1736
|
+
looker_group_name?: string | null;
|
|
1737
|
+
name?: string | null;
|
|
1738
|
+
role_ids?: number[] | null;
|
|
1720
1739
|
}
|
|
1721
1740
|
export interface IOIDCUserAttributeRead {
|
|
1722
|
-
name?: string;
|
|
1741
|
+
name?: string | null;
|
|
1723
1742
|
required?: boolean;
|
|
1724
|
-
user_attributes?: IUserAttribute[];
|
|
1743
|
+
user_attributes?: IUserAttribute[] | null;
|
|
1725
1744
|
}
|
|
1726
1745
|
export interface IOIDCUserAttributeWrite {
|
|
1727
|
-
name?: string;
|
|
1746
|
+
name?: string | null;
|
|
1728
1747
|
required?: boolean;
|
|
1729
|
-
user_attribute_ids?: number[];
|
|
1748
|
+
user_attribute_ids?: number[] | null;
|
|
1730
1749
|
}
|
|
1731
1750
|
export interface IPasswordConfig {
|
|
1732
1751
|
can?: IDictionary<boolean>;
|
|
1733
|
-
min_length?: number;
|
|
1752
|
+
min_length?: number | null;
|
|
1734
1753
|
require_numeric?: boolean;
|
|
1735
1754
|
require_upperlower?: boolean;
|
|
1736
1755
|
require_special?: boolean;
|
|
1737
1756
|
}
|
|
1738
1757
|
export interface IPermission {
|
|
1739
1758
|
can?: IDictionary<boolean>;
|
|
1740
|
-
permission?: string;
|
|
1741
|
-
parent?: string;
|
|
1742
|
-
description?: string;
|
|
1759
|
+
permission?: string | null;
|
|
1760
|
+
parent?: string | null;
|
|
1761
|
+
description?: string | null;
|
|
1743
1762
|
}
|
|
1744
1763
|
export interface IPermissionSet {
|
|
1745
1764
|
can?: IDictionary<boolean>;
|
|
1746
1765
|
all_access?: boolean;
|
|
1747
1766
|
built_in?: boolean;
|
|
1748
1767
|
id?: number;
|
|
1749
|
-
name?: string;
|
|
1750
|
-
permissions?: string[];
|
|
1751
|
-
url?: string;
|
|
1768
|
+
name?: string | null;
|
|
1769
|
+
permissions?: string[] | null;
|
|
1770
|
+
url?: string | null;
|
|
1752
1771
|
}
|
|
1753
1772
|
export declare enum PermissionType {
|
|
1754
1773
|
view = "view",
|
|
@@ -1759,72 +1778,72 @@ export interface IProject {
|
|
|
1759
1778
|
id?: string;
|
|
1760
1779
|
name?: string;
|
|
1761
1780
|
uses_git?: boolean;
|
|
1762
|
-
git_remote_url?: string;
|
|
1763
|
-
git_username?: string;
|
|
1764
|
-
git_password?: string;
|
|
1781
|
+
git_remote_url?: string | null;
|
|
1782
|
+
git_username?: string | null;
|
|
1783
|
+
git_password?: string | null;
|
|
1765
1784
|
git_production_branch_name?: string;
|
|
1766
1785
|
use_git_cookie_auth?: boolean;
|
|
1767
|
-
git_username_user_attribute?: string;
|
|
1768
|
-
git_password_user_attribute?: string;
|
|
1769
|
-
git_service_name?: string;
|
|
1770
|
-
git_application_server_http_port?: number;
|
|
1771
|
-
git_application_server_http_scheme?: string;
|
|
1772
|
-
deploy_secret?: string;
|
|
1786
|
+
git_username_user_attribute?: string | null;
|
|
1787
|
+
git_password_user_attribute?: string | null;
|
|
1788
|
+
git_service_name?: string | null;
|
|
1789
|
+
git_application_server_http_port?: number | null;
|
|
1790
|
+
git_application_server_http_scheme?: string | null;
|
|
1791
|
+
deploy_secret?: string | null;
|
|
1773
1792
|
unset_deploy_secret?: boolean;
|
|
1774
1793
|
pull_request_mode?: PullRequestMode;
|
|
1775
1794
|
validation_required?: boolean;
|
|
1776
1795
|
git_release_mgmt_enabled?: boolean;
|
|
1777
1796
|
allow_warnings?: boolean;
|
|
1778
1797
|
is_example?: boolean;
|
|
1779
|
-
dependency_status?: string;
|
|
1798
|
+
dependency_status?: string | null;
|
|
1780
1799
|
}
|
|
1781
1800
|
export interface IProjectError {
|
|
1782
|
-
code?: string;
|
|
1783
|
-
severity?: string;
|
|
1784
|
-
kind?: string;
|
|
1785
|
-
message?: string;
|
|
1786
|
-
field_name?: string;
|
|
1787
|
-
file_path?: string;
|
|
1788
|
-
line_number?: number;
|
|
1789
|
-
model_id?: string;
|
|
1790
|
-
explore?: string;
|
|
1791
|
-
help_url?: string;
|
|
1792
|
-
params?: IDictionary<any
|
|
1793
|
-
sanitized_message?: string;
|
|
1801
|
+
code?: string | null;
|
|
1802
|
+
severity?: string | null;
|
|
1803
|
+
kind?: string | null;
|
|
1804
|
+
message?: string | null;
|
|
1805
|
+
field_name?: string | null;
|
|
1806
|
+
file_path?: string | null;
|
|
1807
|
+
line_number?: number | null;
|
|
1808
|
+
model_id?: string | null;
|
|
1809
|
+
explore?: string | null;
|
|
1810
|
+
help_url?: string | null;
|
|
1811
|
+
params?: IDictionary<any> | null;
|
|
1812
|
+
sanitized_message?: string | null;
|
|
1794
1813
|
}
|
|
1795
1814
|
export interface IProjectFile {
|
|
1796
1815
|
can?: IDictionary<boolean>;
|
|
1797
1816
|
id?: string;
|
|
1798
|
-
path?: string;
|
|
1799
|
-
title?: string;
|
|
1800
|
-
type?: string;
|
|
1801
|
-
extension?: string;
|
|
1802
|
-
mime_type?: string;
|
|
1817
|
+
path?: string | null;
|
|
1818
|
+
title?: string | null;
|
|
1819
|
+
type?: string | null;
|
|
1820
|
+
extension?: string | null;
|
|
1821
|
+
mime_type?: string | null;
|
|
1803
1822
|
editable?: boolean;
|
|
1804
1823
|
git_status?: IGitStatus;
|
|
1805
1824
|
}
|
|
1806
1825
|
export interface IProjectValidation {
|
|
1807
|
-
errors?: IProjectError[];
|
|
1808
|
-
project_digest?: string;
|
|
1809
|
-
models_not_validated?: IModelsNotValidated[];
|
|
1810
|
-
computation_time?: number;
|
|
1826
|
+
errors?: IProjectError[] | null;
|
|
1827
|
+
project_digest?: string | null;
|
|
1828
|
+
models_not_validated?: IModelsNotValidated[] | null;
|
|
1829
|
+
computation_time?: number | null;
|
|
1811
1830
|
}
|
|
1812
1831
|
export interface IProjectValidationCache {
|
|
1813
|
-
errors?: IProjectError[];
|
|
1814
|
-
project_digest?: string;
|
|
1815
|
-
models_not_validated?: IModelsNotValidated[];
|
|
1816
|
-
computation_time?: number;
|
|
1832
|
+
errors?: IProjectError[] | null;
|
|
1833
|
+
project_digest?: string | null;
|
|
1834
|
+
models_not_validated?: IModelsNotValidated[] | null;
|
|
1835
|
+
computation_time?: number | null;
|
|
1817
1836
|
stale?: boolean;
|
|
1818
1837
|
}
|
|
1819
1838
|
export interface IProjectWorkspace {
|
|
1820
1839
|
can?: IDictionary<boolean>;
|
|
1821
|
-
project_id?: string;
|
|
1822
|
-
workspace_id?: string;
|
|
1823
|
-
git_status?: string;
|
|
1824
|
-
git_head?: string;
|
|
1825
|
-
dependency_status?: DependencyStatus;
|
|
1840
|
+
project_id?: string | null;
|
|
1841
|
+
workspace_id?: string | null;
|
|
1842
|
+
git_status?: string | null;
|
|
1843
|
+
git_head?: string | null;
|
|
1844
|
+
dependency_status?: DependencyStatus | null;
|
|
1826
1845
|
git_branch?: IGitBranch;
|
|
1827
|
-
lookml_type?: string;
|
|
1846
|
+
lookml_type?: string | null;
|
|
1828
1847
|
}
|
|
1829
1848
|
export declare enum PullRequestMode {
|
|
1830
1849
|
off = "off",
|
|
@@ -1837,177 +1856,179 @@ export interface IQuery {
|
|
|
1837
1856
|
id?: number;
|
|
1838
1857
|
model: string;
|
|
1839
1858
|
view: string;
|
|
1840
|
-
fields?: string[];
|
|
1841
|
-
pivots?: string[];
|
|
1842
|
-
fill_fields?: string[];
|
|
1843
|
-
filters?: IDictionary<string
|
|
1844
|
-
filter_expression?: string;
|
|
1845
|
-
sorts?: string[];
|
|
1846
|
-
limit?: string;
|
|
1847
|
-
column_limit?: string;
|
|
1848
|
-
total?: boolean;
|
|
1849
|
-
row_total?: string;
|
|
1850
|
-
subtotals?: string[];
|
|
1851
|
-
vis_config?: IDictionary<any
|
|
1852
|
-
filter_config?: IDictionary<any
|
|
1853
|
-
visible_ui_sections?: string;
|
|
1854
|
-
slug?: string;
|
|
1855
|
-
dynamic_fields?: string;
|
|
1856
|
-
client_id?: string;
|
|
1857
|
-
share_url?: string;
|
|
1858
|
-
expanded_share_url?: string;
|
|
1859
|
-
url?: string;
|
|
1860
|
-
query_timezone?: string;
|
|
1859
|
+
fields?: string[] | null;
|
|
1860
|
+
pivots?: string[] | null;
|
|
1861
|
+
fill_fields?: string[] | null;
|
|
1862
|
+
filters?: IDictionary<string> | null;
|
|
1863
|
+
filter_expression?: string | null;
|
|
1864
|
+
sorts?: string[] | null;
|
|
1865
|
+
limit?: string | null;
|
|
1866
|
+
column_limit?: string | null;
|
|
1867
|
+
total?: boolean | null;
|
|
1868
|
+
row_total?: string | null;
|
|
1869
|
+
subtotals?: string[] | null;
|
|
1870
|
+
vis_config?: IDictionary<any> | null;
|
|
1871
|
+
filter_config?: IDictionary<any> | null;
|
|
1872
|
+
visible_ui_sections?: string | null;
|
|
1873
|
+
slug?: string | null;
|
|
1874
|
+
dynamic_fields?: string | null;
|
|
1875
|
+
client_id?: string | null;
|
|
1876
|
+
share_url?: string | null;
|
|
1877
|
+
expanded_share_url?: string | null;
|
|
1878
|
+
url?: string | null;
|
|
1879
|
+
query_timezone?: string | null;
|
|
1861
1880
|
has_table_calculations?: boolean;
|
|
1862
1881
|
}
|
|
1863
1882
|
export interface IQueryTask {
|
|
1864
1883
|
can?: IDictionary<boolean>;
|
|
1865
1884
|
id?: string;
|
|
1866
|
-
query_id?: number;
|
|
1885
|
+
query_id?: number | null;
|
|
1867
1886
|
query?: IQuery;
|
|
1868
1887
|
generate_links?: boolean;
|
|
1869
1888
|
force_production?: boolean;
|
|
1870
|
-
path_prefix?: string;
|
|
1889
|
+
path_prefix?: string | null;
|
|
1871
1890
|
cache?: boolean;
|
|
1872
1891
|
server_table_calcs?: boolean;
|
|
1873
1892
|
cache_only?: boolean;
|
|
1874
|
-
cache_key?: string;
|
|
1875
|
-
status?: string;
|
|
1876
|
-
source?: string;
|
|
1877
|
-
runtime?: number;
|
|
1893
|
+
cache_key?: string | null;
|
|
1894
|
+
status?: string | null;
|
|
1895
|
+
source?: string | null;
|
|
1896
|
+
runtime?: number | null;
|
|
1878
1897
|
rebuild_pdts?: boolean;
|
|
1879
|
-
result_source?: string;
|
|
1880
|
-
look_id?:
|
|
1881
|
-
dashboard_id?: string;
|
|
1882
|
-
result_format?: string;
|
|
1898
|
+
result_source?: string | null;
|
|
1899
|
+
look_id?: string | null;
|
|
1900
|
+
dashboard_id?: string | null;
|
|
1901
|
+
result_format?: string | null;
|
|
1883
1902
|
}
|
|
1884
1903
|
export interface IRenderTask {
|
|
1885
1904
|
can?: IDictionary<boolean>;
|
|
1886
|
-
created_at?: string;
|
|
1887
|
-
dashboard_filters?: string;
|
|
1888
|
-
dashboard_id?: number;
|
|
1889
|
-
dashboard_style?: string;
|
|
1890
|
-
finalized_at?: string;
|
|
1891
|
-
height?: number;
|
|
1905
|
+
created_at?: string | null;
|
|
1906
|
+
dashboard_filters?: string | null;
|
|
1907
|
+
dashboard_id?: number | null;
|
|
1908
|
+
dashboard_style?: string | null;
|
|
1909
|
+
finalized_at?: string | null;
|
|
1910
|
+
height?: number | null;
|
|
1892
1911
|
id?: string;
|
|
1893
|
-
look_id?:
|
|
1894
|
-
lookml_dashboard_id?: string;
|
|
1895
|
-
query_id?: number;
|
|
1896
|
-
dashboard_element_id?: string;
|
|
1897
|
-
query_runtime?: number;
|
|
1898
|
-
render_runtime?: number;
|
|
1899
|
-
result_format?: string;
|
|
1900
|
-
runtime?: number;
|
|
1901
|
-
status?: string;
|
|
1902
|
-
status_detail?: string;
|
|
1903
|
-
user_id?: number;
|
|
1904
|
-
width?: number;
|
|
1912
|
+
look_id?: string | null;
|
|
1913
|
+
lookml_dashboard_id?: string | null;
|
|
1914
|
+
query_id?: number | null;
|
|
1915
|
+
dashboard_element_id?: string | null;
|
|
1916
|
+
query_runtime?: number | null;
|
|
1917
|
+
render_runtime?: number | null;
|
|
1918
|
+
result_format?: string | null;
|
|
1919
|
+
runtime?: number | null;
|
|
1920
|
+
status?: string | null;
|
|
1921
|
+
status_detail?: string | null;
|
|
1922
|
+
user_id?: number | null;
|
|
1923
|
+
width?: number | null;
|
|
1905
1924
|
}
|
|
1906
1925
|
export interface IRepositoryCredential {
|
|
1907
1926
|
can?: IDictionary<boolean>;
|
|
1908
1927
|
id?: string;
|
|
1909
1928
|
root_project_id?: string;
|
|
1910
1929
|
remote_url?: string;
|
|
1911
|
-
git_username?: string;
|
|
1912
|
-
git_password?: string;
|
|
1913
|
-
ssh_public_key?: string;
|
|
1930
|
+
git_username?: string | null;
|
|
1931
|
+
git_password?: string | null;
|
|
1932
|
+
ssh_public_key?: string | null;
|
|
1914
1933
|
is_configured?: boolean;
|
|
1915
1934
|
}
|
|
1916
1935
|
export interface IRequestActiveThemes {
|
|
1917
|
-
name?: string;
|
|
1918
|
-
ts?: Date;
|
|
1919
|
-
fields?: string;
|
|
1936
|
+
name?: string | null;
|
|
1937
|
+
ts?: Date | null;
|
|
1938
|
+
fields?: string | null;
|
|
1920
1939
|
}
|
|
1921
1940
|
export interface IRequestAllBoardItems {
|
|
1922
|
-
fields?: string;
|
|
1923
|
-
sorts?: string;
|
|
1924
|
-
board_section_id?: string;
|
|
1941
|
+
fields?: string | null;
|
|
1942
|
+
sorts?: string | null;
|
|
1943
|
+
board_section_id?: string | null;
|
|
1925
1944
|
}
|
|
1926
1945
|
export interface IRequestAllBoardSections {
|
|
1927
|
-
fields?: string;
|
|
1928
|
-
sorts?: string;
|
|
1946
|
+
fields?: string | null;
|
|
1947
|
+
sorts?: string | null;
|
|
1929
1948
|
}
|
|
1930
1949
|
export interface IRequestAllExternalOauthApplications {
|
|
1931
|
-
name?: string;
|
|
1932
|
-
client_id?: string;
|
|
1950
|
+
name?: string | null;
|
|
1951
|
+
client_id?: string | null;
|
|
1933
1952
|
}
|
|
1934
1953
|
export interface IRequestAllGroups {
|
|
1935
|
-
fields?: string;
|
|
1936
|
-
page?: number;
|
|
1937
|
-
per_page?: number;
|
|
1938
|
-
sorts?: string;
|
|
1939
|
-
ids?: DelimArray<number
|
|
1940
|
-
content_metadata_id?: number;
|
|
1941
|
-
can_add_to_content_metadata?: boolean;
|
|
1954
|
+
fields?: string | null;
|
|
1955
|
+
page?: number | null;
|
|
1956
|
+
per_page?: number | null;
|
|
1957
|
+
sorts?: string | null;
|
|
1958
|
+
ids?: DelimArray<number> | null;
|
|
1959
|
+
content_metadata_id?: number | null;
|
|
1960
|
+
can_add_to_content_metadata?: boolean | null;
|
|
1942
1961
|
}
|
|
1943
1962
|
export interface IRequestAllGroupUsers {
|
|
1944
1963
|
group_id: number;
|
|
1945
|
-
fields?: string;
|
|
1946
|
-
page?: number;
|
|
1947
|
-
per_page?: number;
|
|
1948
|
-
sorts?: string;
|
|
1964
|
+
fields?: string | null;
|
|
1965
|
+
page?: number | null;
|
|
1966
|
+
per_page?: number | null;
|
|
1967
|
+
sorts?: string | null;
|
|
1949
1968
|
}
|
|
1950
1969
|
export interface IRequestAllIntegrations {
|
|
1951
|
-
fields?: string;
|
|
1952
|
-
integration_hub_id?: string;
|
|
1970
|
+
fields?: string | null;
|
|
1971
|
+
integration_hub_id?: string | null;
|
|
1953
1972
|
}
|
|
1954
1973
|
export interface IRequestAllLookmlModels {
|
|
1955
|
-
fields?: string;
|
|
1956
|
-
limit?: number;
|
|
1957
|
-
offset?: number;
|
|
1974
|
+
fields?: string | null;
|
|
1975
|
+
limit?: number | null;
|
|
1976
|
+
offset?: number | null;
|
|
1958
1977
|
}
|
|
1959
1978
|
export interface IRequestAllRoles {
|
|
1960
|
-
fields?: string;
|
|
1961
|
-
ids?: DelimArray<number
|
|
1979
|
+
fields?: string | null;
|
|
1980
|
+
ids?: DelimArray<number> | null;
|
|
1962
1981
|
}
|
|
1963
1982
|
export interface IRequestAllScheduledPlans {
|
|
1964
|
-
user_id?: number;
|
|
1965
|
-
fields?: string;
|
|
1966
|
-
all_users?: boolean;
|
|
1983
|
+
user_id?: number | null;
|
|
1984
|
+
fields?: string | null;
|
|
1985
|
+
all_users?: boolean | null;
|
|
1967
1986
|
}
|
|
1968
1987
|
export interface IRequestAllUsers {
|
|
1969
|
-
fields?: string;
|
|
1970
|
-
page?: number;
|
|
1971
|
-
per_page?: number;
|
|
1972
|
-
limit?: number;
|
|
1973
|
-
offset?: number;
|
|
1974
|
-
sorts?: string;
|
|
1975
|
-
ids?: DelimArray<number
|
|
1988
|
+
fields?: string | null;
|
|
1989
|
+
page?: number | null;
|
|
1990
|
+
per_page?: number | null;
|
|
1991
|
+
limit?: number | null;
|
|
1992
|
+
offset?: number | null;
|
|
1993
|
+
sorts?: string | null;
|
|
1994
|
+
ids?: DelimArray<number> | null;
|
|
1976
1995
|
}
|
|
1977
1996
|
export interface IRequestConnectionColumns {
|
|
1978
1997
|
connection_name: string;
|
|
1979
|
-
database?: string;
|
|
1980
|
-
schema_name?: string;
|
|
1981
|
-
cache?: boolean;
|
|
1982
|
-
table_limit?: number;
|
|
1983
|
-
table_names?: string;
|
|
1984
|
-
fields?: string;
|
|
1998
|
+
database?: string | null;
|
|
1999
|
+
schema_name?: string | null;
|
|
2000
|
+
cache?: boolean | null;
|
|
2001
|
+
table_limit?: number | null;
|
|
2002
|
+
table_names?: string | null;
|
|
2003
|
+
fields?: string | null;
|
|
1985
2004
|
}
|
|
1986
2005
|
export interface IRequestConnectionSchemas {
|
|
1987
2006
|
connection_name: string;
|
|
1988
|
-
database?: string;
|
|
1989
|
-
cache?: boolean;
|
|
1990
|
-
fields?: string;
|
|
2007
|
+
database?: string | null;
|
|
2008
|
+
cache?: boolean | null;
|
|
2009
|
+
fields?: string | null;
|
|
1991
2010
|
}
|
|
1992
2011
|
export interface IRequestConnectionSearchColumns {
|
|
1993
2012
|
connection_name: string;
|
|
1994
|
-
column_name?: string;
|
|
1995
|
-
fields?: string;
|
|
2013
|
+
column_name?: string | null;
|
|
2014
|
+
fields?: string | null;
|
|
1996
2015
|
}
|
|
1997
2016
|
export interface IRequestConnectionTables {
|
|
1998
2017
|
connection_name: string;
|
|
1999
|
-
database?: string;
|
|
2000
|
-
schema_name?: string;
|
|
2001
|
-
cache?: boolean;
|
|
2002
|
-
fields?: string;
|
|
2018
|
+
database?: string | null;
|
|
2019
|
+
schema_name?: string | null;
|
|
2020
|
+
cache?: boolean | null;
|
|
2021
|
+
fields?: string | null;
|
|
2022
|
+
table_filter?: string | null;
|
|
2023
|
+
table_limit?: number | null;
|
|
2003
2024
|
}
|
|
2004
2025
|
export interface IRequestContentThumbnail {
|
|
2005
2026
|
type: string;
|
|
2006
2027
|
resource_id: string;
|
|
2007
|
-
reload?: string;
|
|
2008
|
-
format?: string;
|
|
2009
|
-
width?: number;
|
|
2010
|
-
height?: number;
|
|
2028
|
+
reload?: string | null;
|
|
2029
|
+
format?: string | null;
|
|
2030
|
+
width?: number | null;
|
|
2031
|
+
height?: number | null;
|
|
2011
2032
|
}
|
|
2012
2033
|
export interface IRequestCreateDashboardRenderTask {
|
|
2013
2034
|
dashboard_id: string;
|
|
@@ -2015,389 +2036,395 @@ export interface IRequestCreateDashboardRenderTask {
|
|
|
2015
2036
|
body: ICreateDashboardRenderTask;
|
|
2016
2037
|
width: number;
|
|
2017
2038
|
height: number;
|
|
2018
|
-
fields?: string;
|
|
2019
|
-
pdf_paper_size?: string;
|
|
2020
|
-
pdf_landscape?: boolean;
|
|
2021
|
-
long_tables?: boolean;
|
|
2039
|
+
fields?: string | null;
|
|
2040
|
+
pdf_paper_size?: string | null;
|
|
2041
|
+
pdf_landscape?: boolean | null;
|
|
2042
|
+
long_tables?: boolean | null;
|
|
2022
2043
|
}
|
|
2023
2044
|
export interface IRequestCreateQueryTask {
|
|
2024
2045
|
body: IWriteCreateQueryTask;
|
|
2025
|
-
limit?: number;
|
|
2026
|
-
apply_formatting?: boolean;
|
|
2027
|
-
apply_vis?: boolean;
|
|
2028
|
-
cache?: boolean;
|
|
2029
|
-
image_width?: number;
|
|
2030
|
-
image_height?: number;
|
|
2031
|
-
generate_drill_links?: boolean;
|
|
2032
|
-
force_production?: boolean;
|
|
2033
|
-
cache_only?: boolean;
|
|
2034
|
-
path_prefix?: string;
|
|
2035
|
-
rebuild_pdts?: boolean;
|
|
2036
|
-
server_table_calcs?: boolean;
|
|
2037
|
-
fields?: string;
|
|
2046
|
+
limit?: number | null;
|
|
2047
|
+
apply_formatting?: boolean | null;
|
|
2048
|
+
apply_vis?: boolean | null;
|
|
2049
|
+
cache?: boolean | null;
|
|
2050
|
+
image_width?: number | null;
|
|
2051
|
+
image_height?: number | null;
|
|
2052
|
+
generate_drill_links?: boolean | null;
|
|
2053
|
+
force_production?: boolean | null;
|
|
2054
|
+
cache_only?: boolean | null;
|
|
2055
|
+
path_prefix?: string | null;
|
|
2056
|
+
rebuild_pdts?: boolean | null;
|
|
2057
|
+
server_table_calcs?: boolean | null;
|
|
2058
|
+
fields?: string | null;
|
|
2038
2059
|
}
|
|
2039
2060
|
export interface IRequestCreateUserCredentialsEmailPasswordReset {
|
|
2040
2061
|
user_id: number;
|
|
2041
|
-
expires?: boolean;
|
|
2042
|
-
fields?: string;
|
|
2062
|
+
expires?: boolean | null;
|
|
2063
|
+
fields?: string | null;
|
|
2043
2064
|
}
|
|
2044
2065
|
export interface IRequestDeployRefToProduction {
|
|
2045
2066
|
project_id: string;
|
|
2046
|
-
branch?: string;
|
|
2047
|
-
ref?: string;
|
|
2067
|
+
branch?: string | null;
|
|
2068
|
+
ref?: string | null;
|
|
2048
2069
|
}
|
|
2049
2070
|
export interface IRequestFolderChildren {
|
|
2050
2071
|
folder_id: string;
|
|
2051
|
-
fields?: string;
|
|
2052
|
-
page?: number;
|
|
2053
|
-
per_page?: number;
|
|
2054
|
-
sorts?: string;
|
|
2072
|
+
fields?: string | null;
|
|
2073
|
+
page?: number | null;
|
|
2074
|
+
per_page?: number | null;
|
|
2075
|
+
sorts?: string | null;
|
|
2055
2076
|
}
|
|
2056
2077
|
export interface IRequestFolderChildrenSearch {
|
|
2057
2078
|
folder_id: string;
|
|
2058
|
-
fields?: string;
|
|
2059
|
-
sorts?: string;
|
|
2060
|
-
name?: string;
|
|
2079
|
+
fields?: string | null;
|
|
2080
|
+
sorts?: string | null;
|
|
2081
|
+
name?: string | null;
|
|
2061
2082
|
}
|
|
2062
2083
|
export interface IRequestGetAllCommands {
|
|
2063
|
-
content_id?: string;
|
|
2064
|
-
content_type?: string;
|
|
2065
|
-
limit?: number;
|
|
2084
|
+
content_id?: string | null;
|
|
2085
|
+
content_type?: string | null;
|
|
2086
|
+
limit?: number | null;
|
|
2066
2087
|
}
|
|
2067
2088
|
export interface IRequestGraphDerivedTablesForModel {
|
|
2068
2089
|
model: string;
|
|
2069
|
-
format?: string;
|
|
2070
|
-
color?: string;
|
|
2090
|
+
format?: string | null;
|
|
2091
|
+
color?: string | null;
|
|
2092
|
+
}
|
|
2093
|
+
export interface IRequestGraphDerivedTablesForView {
|
|
2094
|
+
view: string;
|
|
2095
|
+
models?: string | null;
|
|
2096
|
+
workspace?: string | null;
|
|
2071
2097
|
}
|
|
2072
2098
|
export interface IRequestLogin {
|
|
2073
|
-
client_id?: string;
|
|
2074
|
-
client_secret?: string;
|
|
2099
|
+
client_id?: string | null;
|
|
2100
|
+
client_secret?: string | null;
|
|
2075
2101
|
}
|
|
2076
2102
|
export interface IRequestModelFieldnameSuggestions {
|
|
2077
2103
|
model_name: string;
|
|
2078
2104
|
view_name: string;
|
|
2079
2105
|
field_name: string;
|
|
2080
|
-
term?: string;
|
|
2081
|
-
filters?:
|
|
2106
|
+
term?: string | null;
|
|
2107
|
+
filters?: any | null;
|
|
2082
2108
|
}
|
|
2083
2109
|
export interface IRequestRoleUsers {
|
|
2084
2110
|
role_id: number;
|
|
2085
|
-
fields?: string;
|
|
2086
|
-
direct_association_only?: boolean;
|
|
2111
|
+
fields?: string | null;
|
|
2112
|
+
direct_association_only?: boolean | null;
|
|
2087
2113
|
}
|
|
2088
2114
|
export interface IRequestRunGitConnectionTest {
|
|
2089
2115
|
project_id: string;
|
|
2090
2116
|
test_id: string;
|
|
2091
|
-
remote_url?: string;
|
|
2092
|
-
use_production?: string;
|
|
2117
|
+
remote_url?: string | null;
|
|
2118
|
+
use_production?: string | null;
|
|
2093
2119
|
}
|
|
2094
2120
|
export interface IRequestRunInlineQuery {
|
|
2095
2121
|
result_format: string;
|
|
2096
2122
|
body: IWriteQuery;
|
|
2097
|
-
limit?: number;
|
|
2098
|
-
apply_formatting?: boolean;
|
|
2099
|
-
apply_vis?: boolean;
|
|
2100
|
-
cache?: boolean;
|
|
2101
|
-
image_width?: number;
|
|
2102
|
-
image_height?: number;
|
|
2103
|
-
generate_drill_links?: boolean;
|
|
2104
|
-
force_production?: boolean;
|
|
2105
|
-
cache_only?: boolean;
|
|
2106
|
-
path_prefix?: string;
|
|
2107
|
-
rebuild_pdts?: boolean;
|
|
2108
|
-
server_table_calcs?: boolean;
|
|
2123
|
+
limit?: number | null;
|
|
2124
|
+
apply_formatting?: boolean | null;
|
|
2125
|
+
apply_vis?: boolean | null;
|
|
2126
|
+
cache?: boolean | null;
|
|
2127
|
+
image_width?: number | null;
|
|
2128
|
+
image_height?: number | null;
|
|
2129
|
+
generate_drill_links?: boolean | null;
|
|
2130
|
+
force_production?: boolean | null;
|
|
2131
|
+
cache_only?: boolean | null;
|
|
2132
|
+
path_prefix?: string | null;
|
|
2133
|
+
rebuild_pdts?: boolean | null;
|
|
2134
|
+
server_table_calcs?: boolean | null;
|
|
2109
2135
|
}
|
|
2110
2136
|
export interface IRequestRunLook {
|
|
2111
|
-
look_id:
|
|
2137
|
+
look_id: string;
|
|
2112
2138
|
result_format: string;
|
|
2113
|
-
limit?: number;
|
|
2114
|
-
apply_formatting?: boolean;
|
|
2115
|
-
apply_vis?: boolean;
|
|
2116
|
-
cache?: boolean;
|
|
2117
|
-
image_width?: number;
|
|
2118
|
-
image_height?: number;
|
|
2119
|
-
generate_drill_links?: boolean;
|
|
2120
|
-
force_production?: boolean;
|
|
2121
|
-
cache_only?: boolean;
|
|
2122
|
-
path_prefix?: string;
|
|
2123
|
-
rebuild_pdts?: boolean;
|
|
2124
|
-
server_table_calcs?: boolean;
|
|
2139
|
+
limit?: number | null;
|
|
2140
|
+
apply_formatting?: boolean | null;
|
|
2141
|
+
apply_vis?: boolean | null;
|
|
2142
|
+
cache?: boolean | null;
|
|
2143
|
+
image_width?: number | null;
|
|
2144
|
+
image_height?: number | null;
|
|
2145
|
+
generate_drill_links?: boolean | null;
|
|
2146
|
+
force_production?: boolean | null;
|
|
2147
|
+
cache_only?: boolean | null;
|
|
2148
|
+
path_prefix?: string | null;
|
|
2149
|
+
rebuild_pdts?: boolean | null;
|
|
2150
|
+
server_table_calcs?: boolean | null;
|
|
2125
2151
|
}
|
|
2126
2152
|
export interface IRequestRunLookmlTest {
|
|
2127
2153
|
project_id: string;
|
|
2128
|
-
file_id?: string;
|
|
2129
|
-
test?: string;
|
|
2130
|
-
model?: string;
|
|
2154
|
+
file_id?: string | null;
|
|
2155
|
+
test?: string | null;
|
|
2156
|
+
model?: string | null;
|
|
2131
2157
|
}
|
|
2132
2158
|
export interface IRequestRunQuery {
|
|
2133
2159
|
query_id: number;
|
|
2134
2160
|
result_format: string;
|
|
2135
|
-
limit?: number;
|
|
2136
|
-
apply_formatting?: boolean;
|
|
2137
|
-
apply_vis?: boolean;
|
|
2138
|
-
cache?: boolean;
|
|
2139
|
-
image_width?: number;
|
|
2140
|
-
image_height?: number;
|
|
2141
|
-
generate_drill_links?: boolean;
|
|
2142
|
-
force_production?: boolean;
|
|
2143
|
-
cache_only?: boolean;
|
|
2144
|
-
path_prefix?: string;
|
|
2145
|
-
rebuild_pdts?: boolean;
|
|
2146
|
-
server_table_calcs?: boolean;
|
|
2161
|
+
limit?: number | null;
|
|
2162
|
+
apply_formatting?: boolean | null;
|
|
2163
|
+
apply_vis?: boolean | null;
|
|
2164
|
+
cache?: boolean | null;
|
|
2165
|
+
image_width?: number | null;
|
|
2166
|
+
image_height?: number | null;
|
|
2167
|
+
generate_drill_links?: boolean | null;
|
|
2168
|
+
force_production?: boolean | null;
|
|
2169
|
+
cache_only?: boolean | null;
|
|
2170
|
+
path_prefix?: string | null;
|
|
2171
|
+
rebuild_pdts?: boolean | null;
|
|
2172
|
+
server_table_calcs?: boolean | null;
|
|
2173
|
+
source?: string | null;
|
|
2147
2174
|
}
|
|
2148
2175
|
export interface IRequestScheduledPlansForDashboard {
|
|
2149
2176
|
dashboard_id: number;
|
|
2150
|
-
user_id?: number;
|
|
2151
|
-
all_users?: boolean;
|
|
2152
|
-
fields?: string;
|
|
2177
|
+
user_id?: number | null;
|
|
2178
|
+
all_users?: boolean | null;
|
|
2179
|
+
fields?: string | null;
|
|
2153
2180
|
}
|
|
2154
2181
|
export interface IRequestScheduledPlansForLook {
|
|
2155
2182
|
look_id: number;
|
|
2156
|
-
user_id?: number;
|
|
2157
|
-
fields?: string;
|
|
2158
|
-
all_users?: boolean;
|
|
2183
|
+
user_id?: number | null;
|
|
2184
|
+
fields?: string | null;
|
|
2185
|
+
all_users?: boolean | null;
|
|
2159
2186
|
}
|
|
2160
2187
|
export interface IRequestScheduledPlansForLookmlDashboard {
|
|
2161
2188
|
lookml_dashboard_id: string;
|
|
2162
|
-
user_id?: number;
|
|
2163
|
-
fields?: string;
|
|
2164
|
-
all_users?: boolean;
|
|
2189
|
+
user_id?: number | null;
|
|
2190
|
+
fields?: string | null;
|
|
2191
|
+
all_users?: boolean | null;
|
|
2165
2192
|
}
|
|
2166
2193
|
export interface IRequestSearchAlerts {
|
|
2167
|
-
limit?: number;
|
|
2168
|
-
offset?: number;
|
|
2169
|
-
group_by?: string;
|
|
2170
|
-
fields?: string;
|
|
2171
|
-
disabled?: boolean;
|
|
2172
|
-
frequency?: string;
|
|
2173
|
-
condition_met?: boolean;
|
|
2174
|
-
last_run_start?: string;
|
|
2175
|
-
last_run_end?: string;
|
|
2176
|
-
all_owners?: boolean;
|
|
2194
|
+
limit?: number | null;
|
|
2195
|
+
offset?: number | null;
|
|
2196
|
+
group_by?: string | null;
|
|
2197
|
+
fields?: string | null;
|
|
2198
|
+
disabled?: boolean | null;
|
|
2199
|
+
frequency?: string | null;
|
|
2200
|
+
condition_met?: boolean | null;
|
|
2201
|
+
last_run_start?: string | null;
|
|
2202
|
+
last_run_end?: string | null;
|
|
2203
|
+
all_owners?: boolean | null;
|
|
2177
2204
|
}
|
|
2178
2205
|
export interface IRequestSearchBoards {
|
|
2179
|
-
title?: string;
|
|
2180
|
-
created_at?: string;
|
|
2181
|
-
first_name?: string;
|
|
2182
|
-
last_name?: string;
|
|
2183
|
-
fields?: string;
|
|
2184
|
-
favorited?: boolean;
|
|
2185
|
-
creator_id?: string;
|
|
2186
|
-
sorts?: string;
|
|
2187
|
-
page?: number;
|
|
2188
|
-
per_page?: number;
|
|
2189
|
-
offset?: number;
|
|
2190
|
-
limit?: number;
|
|
2191
|
-
filter_or?: boolean;
|
|
2206
|
+
title?: string | null;
|
|
2207
|
+
created_at?: string | null;
|
|
2208
|
+
first_name?: string | null;
|
|
2209
|
+
last_name?: string | null;
|
|
2210
|
+
fields?: string | null;
|
|
2211
|
+
favorited?: boolean | null;
|
|
2212
|
+
creator_id?: string | null;
|
|
2213
|
+
sorts?: string | null;
|
|
2214
|
+
page?: number | null;
|
|
2215
|
+
per_page?: number | null;
|
|
2216
|
+
offset?: number | null;
|
|
2217
|
+
limit?: number | null;
|
|
2218
|
+
filter_or?: boolean | null;
|
|
2192
2219
|
}
|
|
2193
2220
|
export interface IRequestSearchContentFavorites {
|
|
2194
|
-
id?: number;
|
|
2195
|
-
user_id?: string;
|
|
2196
|
-
content_metadata_id?: string;
|
|
2197
|
-
dashboard_id?: string;
|
|
2198
|
-
look_id?: string;
|
|
2199
|
-
board_id?: string;
|
|
2200
|
-
limit?: number;
|
|
2201
|
-
offset?: number;
|
|
2202
|
-
sorts?: string;
|
|
2203
|
-
fields?: string;
|
|
2204
|
-
filter_or?: boolean;
|
|
2221
|
+
id?: number | null;
|
|
2222
|
+
user_id?: string | null;
|
|
2223
|
+
content_metadata_id?: string | null;
|
|
2224
|
+
dashboard_id?: string | null;
|
|
2225
|
+
look_id?: string | null;
|
|
2226
|
+
board_id?: string | null;
|
|
2227
|
+
limit?: number | null;
|
|
2228
|
+
offset?: number | null;
|
|
2229
|
+
sorts?: string | null;
|
|
2230
|
+
fields?: string | null;
|
|
2231
|
+
filter_or?: boolean | null;
|
|
2205
2232
|
}
|
|
2206
2233
|
export interface IRequestSearchContentViews {
|
|
2207
|
-
view_count?: string;
|
|
2208
|
-
group_id?: string;
|
|
2209
|
-
look_id?: string;
|
|
2210
|
-
dashboard_id?: string;
|
|
2211
|
-
content_metadata_id?: string;
|
|
2212
|
-
start_of_week_date?: string;
|
|
2213
|
-
all_time?: boolean;
|
|
2214
|
-
user_id?: string;
|
|
2215
|
-
fields?: string;
|
|
2216
|
-
limit?: number;
|
|
2217
|
-
offset?: number;
|
|
2218
|
-
sorts?: string;
|
|
2219
|
-
filter_or?: boolean;
|
|
2234
|
+
view_count?: string | null;
|
|
2235
|
+
group_id?: string | null;
|
|
2236
|
+
look_id?: string | null;
|
|
2237
|
+
dashboard_id?: string | null;
|
|
2238
|
+
content_metadata_id?: string | null;
|
|
2239
|
+
start_of_week_date?: string | null;
|
|
2240
|
+
all_time?: boolean | null;
|
|
2241
|
+
user_id?: string | null;
|
|
2242
|
+
fields?: string | null;
|
|
2243
|
+
limit?: number | null;
|
|
2244
|
+
offset?: number | null;
|
|
2245
|
+
sorts?: string | null;
|
|
2246
|
+
filter_or?: boolean | null;
|
|
2220
2247
|
}
|
|
2221
2248
|
export interface IRequestSearchCredentialsEmail {
|
|
2222
|
-
fields?: string;
|
|
2223
|
-
limit?: number;
|
|
2224
|
-
offset?: number;
|
|
2225
|
-
sorts?: string;
|
|
2226
|
-
id?: number;
|
|
2227
|
-
email?: string;
|
|
2228
|
-
emails?: string;
|
|
2229
|
-
filter_or?: boolean;
|
|
2249
|
+
fields?: string | null;
|
|
2250
|
+
limit?: number | null;
|
|
2251
|
+
offset?: number | null;
|
|
2252
|
+
sorts?: string | null;
|
|
2253
|
+
id?: number | null;
|
|
2254
|
+
email?: string | null;
|
|
2255
|
+
emails?: string | null;
|
|
2256
|
+
filter_or?: boolean | null;
|
|
2230
2257
|
}
|
|
2231
2258
|
export interface IRequestSearchDashboardElements {
|
|
2232
|
-
dashboard_id?: number;
|
|
2233
|
-
look_id?: number;
|
|
2234
|
-
title?: string;
|
|
2235
|
-
deleted?: boolean;
|
|
2236
|
-
fields?: string;
|
|
2237
|
-
filter_or?: boolean;
|
|
2238
|
-
sorts?: string;
|
|
2259
|
+
dashboard_id?: number | null;
|
|
2260
|
+
look_id?: number | null;
|
|
2261
|
+
title?: string | null;
|
|
2262
|
+
deleted?: boolean | null;
|
|
2263
|
+
fields?: string | null;
|
|
2264
|
+
filter_or?: boolean | null;
|
|
2265
|
+
sorts?: string | null;
|
|
2239
2266
|
}
|
|
2240
2267
|
export interface IRequestSearchDashboards {
|
|
2241
|
-
id?: string;
|
|
2242
|
-
slug?: string;
|
|
2243
|
-
title?: string;
|
|
2244
|
-
description?: string;
|
|
2245
|
-
content_favorite_id?: string;
|
|
2246
|
-
folder_id?: string;
|
|
2247
|
-
deleted?: string;
|
|
2248
|
-
user_id?: string;
|
|
2249
|
-
view_count?: string;
|
|
2250
|
-
content_metadata_id?: string;
|
|
2251
|
-
curate?: boolean;
|
|
2252
|
-
last_viewed_at?: string;
|
|
2253
|
-
fields?: string;
|
|
2254
|
-
page?: number;
|
|
2255
|
-
per_page?: number;
|
|
2256
|
-
limit?: number;
|
|
2257
|
-
offset?: number;
|
|
2258
|
-
sorts?: string;
|
|
2259
|
-
filter_or?: boolean;
|
|
2268
|
+
id?: string | null;
|
|
2269
|
+
slug?: string | null;
|
|
2270
|
+
title?: string | null;
|
|
2271
|
+
description?: string | null;
|
|
2272
|
+
content_favorite_id?: string | null;
|
|
2273
|
+
folder_id?: string | null;
|
|
2274
|
+
deleted?: string | null;
|
|
2275
|
+
user_id?: string | null;
|
|
2276
|
+
view_count?: string | null;
|
|
2277
|
+
content_metadata_id?: string | null;
|
|
2278
|
+
curate?: boolean | null;
|
|
2279
|
+
last_viewed_at?: string | null;
|
|
2280
|
+
fields?: string | null;
|
|
2281
|
+
page?: number | null;
|
|
2282
|
+
per_page?: number | null;
|
|
2283
|
+
limit?: number | null;
|
|
2284
|
+
offset?: number | null;
|
|
2285
|
+
sorts?: string | null;
|
|
2286
|
+
filter_or?: boolean | null;
|
|
2260
2287
|
}
|
|
2261
2288
|
export interface IRequestSearchFolders {
|
|
2262
|
-
fields?: string;
|
|
2263
|
-
page?: number;
|
|
2264
|
-
per_page?: number;
|
|
2265
|
-
limit?: number;
|
|
2266
|
-
offset?: number;
|
|
2267
|
-
sorts?: string;
|
|
2268
|
-
name?: string;
|
|
2269
|
-
id?: number;
|
|
2270
|
-
parent_id?: string;
|
|
2271
|
-
creator_id?: string;
|
|
2272
|
-
filter_or?: boolean;
|
|
2273
|
-
is_shared_root?: boolean;
|
|
2289
|
+
fields?: string | null;
|
|
2290
|
+
page?: number | null;
|
|
2291
|
+
per_page?: number | null;
|
|
2292
|
+
limit?: number | null;
|
|
2293
|
+
offset?: number | null;
|
|
2294
|
+
sorts?: string | null;
|
|
2295
|
+
name?: string | null;
|
|
2296
|
+
id?: number | null;
|
|
2297
|
+
parent_id?: string | null;
|
|
2298
|
+
creator_id?: string | null;
|
|
2299
|
+
filter_or?: boolean | null;
|
|
2300
|
+
is_shared_root?: boolean | null;
|
|
2274
2301
|
}
|
|
2275
2302
|
export interface IRequestSearchGroups {
|
|
2276
|
-
fields?: string;
|
|
2277
|
-
limit?: number;
|
|
2278
|
-
offset?: number;
|
|
2279
|
-
sorts?: string;
|
|
2280
|
-
filter_or?: boolean;
|
|
2281
|
-
id?: number;
|
|
2282
|
-
name?: string;
|
|
2283
|
-
external_group_id?: string;
|
|
2284
|
-
externally_managed?: boolean;
|
|
2285
|
-
externally_orphaned?: boolean;
|
|
2303
|
+
fields?: string | null;
|
|
2304
|
+
limit?: number | null;
|
|
2305
|
+
offset?: number | null;
|
|
2306
|
+
sorts?: string | null;
|
|
2307
|
+
filter_or?: boolean | null;
|
|
2308
|
+
id?: number | null;
|
|
2309
|
+
name?: string | null;
|
|
2310
|
+
external_group_id?: string | null;
|
|
2311
|
+
externally_managed?: boolean | null;
|
|
2312
|
+
externally_orphaned?: boolean | null;
|
|
2286
2313
|
}
|
|
2287
2314
|
export interface IRequestSearchLooks {
|
|
2288
|
-
id?: string;
|
|
2289
|
-
title?: string;
|
|
2290
|
-
description?: string;
|
|
2291
|
-
content_favorite_id?: string;
|
|
2292
|
-
folder_id?: string;
|
|
2293
|
-
user_id?: string;
|
|
2294
|
-
view_count?: string;
|
|
2295
|
-
deleted?: boolean;
|
|
2296
|
-
query_id?: number;
|
|
2297
|
-
curate?: boolean;
|
|
2298
|
-
last_viewed_at?: string;
|
|
2299
|
-
fields?: string;
|
|
2300
|
-
page?: number;
|
|
2301
|
-
per_page?: number;
|
|
2302
|
-
limit?: number;
|
|
2303
|
-
offset?: number;
|
|
2304
|
-
sorts?: string;
|
|
2305
|
-
filter_or?: boolean;
|
|
2315
|
+
id?: string | null;
|
|
2316
|
+
title?: string | null;
|
|
2317
|
+
description?: string | null;
|
|
2318
|
+
content_favorite_id?: string | null;
|
|
2319
|
+
folder_id?: string | null;
|
|
2320
|
+
user_id?: string | null;
|
|
2321
|
+
view_count?: string | null;
|
|
2322
|
+
deleted?: boolean | null;
|
|
2323
|
+
query_id?: number | null;
|
|
2324
|
+
curate?: boolean | null;
|
|
2325
|
+
last_viewed_at?: string | null;
|
|
2326
|
+
fields?: string | null;
|
|
2327
|
+
page?: number | null;
|
|
2328
|
+
per_page?: number | null;
|
|
2329
|
+
limit?: number | null;
|
|
2330
|
+
offset?: number | null;
|
|
2331
|
+
sorts?: string | null;
|
|
2332
|
+
filter_or?: boolean | null;
|
|
2306
2333
|
}
|
|
2307
2334
|
export interface IRequestSearchModelSets {
|
|
2308
|
-
fields?: string;
|
|
2309
|
-
limit?: number;
|
|
2310
|
-
offset?: number;
|
|
2311
|
-
sorts?: string;
|
|
2312
|
-
id?: number;
|
|
2313
|
-
name?: string;
|
|
2314
|
-
all_access?: boolean;
|
|
2315
|
-
built_in?: boolean;
|
|
2316
|
-
filter_or?: boolean;
|
|
2335
|
+
fields?: string | null;
|
|
2336
|
+
limit?: number | null;
|
|
2337
|
+
offset?: number | null;
|
|
2338
|
+
sorts?: string | null;
|
|
2339
|
+
id?: number | null;
|
|
2340
|
+
name?: string | null;
|
|
2341
|
+
all_access?: boolean | null;
|
|
2342
|
+
built_in?: boolean | null;
|
|
2343
|
+
filter_or?: boolean | null;
|
|
2317
2344
|
}
|
|
2318
2345
|
export interface IRequestSearchRoles {
|
|
2319
|
-
fields?: string;
|
|
2320
|
-
limit?: number;
|
|
2321
|
-
offset?: number;
|
|
2322
|
-
sorts?: string;
|
|
2323
|
-
id?: number;
|
|
2324
|
-
name?: string;
|
|
2325
|
-
built_in?: boolean;
|
|
2326
|
-
filter_or?: boolean;
|
|
2346
|
+
fields?: string | null;
|
|
2347
|
+
limit?: number | null;
|
|
2348
|
+
offset?: number | null;
|
|
2349
|
+
sorts?: string | null;
|
|
2350
|
+
id?: number | null;
|
|
2351
|
+
name?: string | null;
|
|
2352
|
+
built_in?: boolean | null;
|
|
2353
|
+
filter_or?: boolean | null;
|
|
2327
2354
|
}
|
|
2328
2355
|
export interface IRequestSearchThemes {
|
|
2329
|
-
id?: number;
|
|
2330
|
-
name?: string;
|
|
2331
|
-
begin_at?: Date;
|
|
2332
|
-
end_at?: Date;
|
|
2333
|
-
limit?: number;
|
|
2334
|
-
offset?: number;
|
|
2335
|
-
sorts?: string;
|
|
2336
|
-
fields?: string;
|
|
2337
|
-
filter_or?: boolean;
|
|
2356
|
+
id?: number | null;
|
|
2357
|
+
name?: string | null;
|
|
2358
|
+
begin_at?: Date | null;
|
|
2359
|
+
end_at?: Date | null;
|
|
2360
|
+
limit?: number | null;
|
|
2361
|
+
offset?: number | null;
|
|
2362
|
+
sorts?: string | null;
|
|
2363
|
+
fields?: string | null;
|
|
2364
|
+
filter_or?: boolean | null;
|
|
2338
2365
|
}
|
|
2339
2366
|
export interface IRequestSearchUserLoginLockouts {
|
|
2340
|
-
fields?: string;
|
|
2341
|
-
page?: number;
|
|
2342
|
-
per_page?: number;
|
|
2343
|
-
sorts?: string;
|
|
2344
|
-
auth_type?: string;
|
|
2345
|
-
full_name?: string;
|
|
2346
|
-
email?: string;
|
|
2347
|
-
remote_id?: string;
|
|
2348
|
-
filter_or?: boolean;
|
|
2367
|
+
fields?: string | null;
|
|
2368
|
+
page?: number | null;
|
|
2369
|
+
per_page?: number | null;
|
|
2370
|
+
sorts?: string | null;
|
|
2371
|
+
auth_type?: string | null;
|
|
2372
|
+
full_name?: string | null;
|
|
2373
|
+
email?: string | null;
|
|
2374
|
+
remote_id?: string | null;
|
|
2375
|
+
filter_or?: boolean | null;
|
|
2349
2376
|
}
|
|
2350
2377
|
export interface IRequestSearchUsers {
|
|
2351
|
-
fields?: string;
|
|
2352
|
-
page?: number;
|
|
2353
|
-
per_page?: number;
|
|
2354
|
-
limit?: number;
|
|
2355
|
-
offset?: number;
|
|
2356
|
-
sorts?: string;
|
|
2357
|
-
id?: string;
|
|
2358
|
-
first_name?: string;
|
|
2359
|
-
last_name?: string;
|
|
2360
|
-
verified_looker_employee?: boolean;
|
|
2361
|
-
embed_user?: boolean;
|
|
2362
|
-
email?: string;
|
|
2363
|
-
is_disabled?: boolean;
|
|
2364
|
-
filter_or?: boolean;
|
|
2365
|
-
content_metadata_id?: string;
|
|
2366
|
-
group_id?: string;
|
|
2378
|
+
fields?: string | null;
|
|
2379
|
+
page?: number | null;
|
|
2380
|
+
per_page?: number | null;
|
|
2381
|
+
limit?: number | null;
|
|
2382
|
+
offset?: number | null;
|
|
2383
|
+
sorts?: string | null;
|
|
2384
|
+
id?: string | null;
|
|
2385
|
+
first_name?: string | null;
|
|
2386
|
+
last_name?: string | null;
|
|
2387
|
+
verified_looker_employee?: boolean | null;
|
|
2388
|
+
embed_user?: boolean | null;
|
|
2389
|
+
email?: string | null;
|
|
2390
|
+
is_disabled?: boolean | null;
|
|
2391
|
+
filter_or?: boolean | null;
|
|
2392
|
+
content_metadata_id?: string | null;
|
|
2393
|
+
group_id?: string | null;
|
|
2367
2394
|
}
|
|
2368
2395
|
export interface IRequestSearchUsersNames {
|
|
2369
2396
|
pattern: string;
|
|
2370
|
-
fields?: string;
|
|
2371
|
-
page?: number;
|
|
2372
|
-
per_page?: number;
|
|
2373
|
-
limit?: number;
|
|
2374
|
-
offset?: number;
|
|
2375
|
-
sorts?: string;
|
|
2376
|
-
id?: number;
|
|
2377
|
-
first_name?: string;
|
|
2378
|
-
last_name?: string;
|
|
2379
|
-
verified_looker_employee?: boolean;
|
|
2380
|
-
email?: string;
|
|
2381
|
-
is_disabled?: boolean;
|
|
2397
|
+
fields?: string | null;
|
|
2398
|
+
page?: number | null;
|
|
2399
|
+
per_page?: number | null;
|
|
2400
|
+
limit?: number | null;
|
|
2401
|
+
offset?: number | null;
|
|
2402
|
+
sorts?: string | null;
|
|
2403
|
+
id?: number | null;
|
|
2404
|
+
first_name?: string | null;
|
|
2405
|
+
last_name?: string | null;
|
|
2406
|
+
verified_looker_employee?: boolean | null;
|
|
2407
|
+
email?: string | null;
|
|
2408
|
+
is_disabled?: boolean | null;
|
|
2382
2409
|
}
|
|
2383
2410
|
export interface IRequestTagRef {
|
|
2384
2411
|
project_id: string;
|
|
2385
2412
|
body: IWriteProject;
|
|
2386
|
-
commit_sha?: string;
|
|
2387
|
-
tag_name?: string;
|
|
2388
|
-
tag_message?: string;
|
|
2413
|
+
commit_sha?: string | null;
|
|
2414
|
+
tag_name?: string | null;
|
|
2415
|
+
tag_message?: string | null;
|
|
2389
2416
|
}
|
|
2390
2417
|
export interface IRequestUserAttributeUserValues {
|
|
2391
2418
|
user_id: number;
|
|
2392
|
-
fields?: string;
|
|
2393
|
-
user_attribute_ids?: DelimArray<number
|
|
2394
|
-
all_values?: boolean;
|
|
2395
|
-
include_unset?: boolean;
|
|
2419
|
+
fields?: string | null;
|
|
2420
|
+
user_attribute_ids?: DelimArray<number> | null;
|
|
2421
|
+
all_values?: boolean | null;
|
|
2422
|
+
include_unset?: boolean | null;
|
|
2396
2423
|
}
|
|
2397
2424
|
export interface IRequestUserRoles {
|
|
2398
2425
|
user_id: number;
|
|
2399
|
-
fields?: string;
|
|
2400
|
-
direct_association_only?: boolean;
|
|
2426
|
+
fields?: string | null;
|
|
2427
|
+
direct_association_only?: boolean | null;
|
|
2401
2428
|
}
|
|
2402
2429
|
export declare enum ResultFormat {
|
|
2403
2430
|
inline_json = "inline_json",
|
|
@@ -2412,49 +2439,49 @@ export declare enum ResultFormat {
|
|
|
2412
2439
|
gsxml = "gsxml"
|
|
2413
2440
|
}
|
|
2414
2441
|
export interface IResultMakerFilterables {
|
|
2415
|
-
model?: string;
|
|
2416
|
-
view?: string;
|
|
2417
|
-
name?: string;
|
|
2418
|
-
listen?: IResultMakerFilterablesListen[];
|
|
2442
|
+
model?: string | null;
|
|
2443
|
+
view?: string | null;
|
|
2444
|
+
name?: string | null;
|
|
2445
|
+
listen?: IResultMakerFilterablesListen[] | null;
|
|
2419
2446
|
}
|
|
2420
2447
|
export interface IResultMakerFilterablesListen {
|
|
2421
|
-
dashboard_filter_name?: string;
|
|
2422
|
-
field?: string;
|
|
2448
|
+
dashboard_filter_name?: string | null;
|
|
2449
|
+
field?: string | null;
|
|
2423
2450
|
}
|
|
2424
2451
|
export interface IResultMakerWithIdVisConfigAndDynamicFields {
|
|
2425
2452
|
id?: number;
|
|
2426
|
-
dynamic_fields?: string;
|
|
2427
|
-
filterables?: IResultMakerFilterables[];
|
|
2428
|
-
sorts?: string[];
|
|
2429
|
-
merge_result_id?: string;
|
|
2453
|
+
dynamic_fields?: string | null;
|
|
2454
|
+
filterables?: IResultMakerFilterables[] | null;
|
|
2455
|
+
sorts?: string[] | null;
|
|
2456
|
+
merge_result_id?: string | null;
|
|
2430
2457
|
total?: boolean;
|
|
2431
|
-
query_id?: number;
|
|
2432
|
-
sql_query_id?: string;
|
|
2458
|
+
query_id?: number | null;
|
|
2459
|
+
sql_query_id?: string | null;
|
|
2433
2460
|
query?: IQuery;
|
|
2434
|
-
vis_config?: IDictionary<any
|
|
2461
|
+
vis_config?: IDictionary<any> | null;
|
|
2435
2462
|
}
|
|
2436
2463
|
export interface IRole {
|
|
2437
2464
|
can?: IDictionary<boolean>;
|
|
2438
2465
|
id?: number;
|
|
2439
|
-
name?: string;
|
|
2466
|
+
name?: string | null;
|
|
2440
2467
|
permission_set?: IPermissionSet;
|
|
2441
|
-
permission_set_id?: number;
|
|
2468
|
+
permission_set_id?: number | null;
|
|
2442
2469
|
model_set?: IModelSet;
|
|
2443
|
-
model_set_id?: number;
|
|
2444
|
-
url?: string;
|
|
2445
|
-
users_url?: string;
|
|
2470
|
+
model_set_id?: number | null;
|
|
2471
|
+
url?: string | null;
|
|
2472
|
+
users_url?: string | null;
|
|
2446
2473
|
}
|
|
2447
2474
|
export interface IRoleSearch {
|
|
2448
2475
|
can?: IDictionary<boolean>;
|
|
2449
2476
|
id?: number;
|
|
2450
|
-
name?: string;
|
|
2477
|
+
name?: string | null;
|
|
2451
2478
|
permission_set?: IPermissionSet;
|
|
2452
|
-
permission_set_id?: number;
|
|
2479
|
+
permission_set_id?: number | null;
|
|
2453
2480
|
model_set?: IModelSet;
|
|
2454
|
-
model_set_id?: number;
|
|
2455
|
-
user_count?: number;
|
|
2456
|
-
url?: string;
|
|
2457
|
-
users_url?: string;
|
|
2481
|
+
model_set_id?: number | null;
|
|
2482
|
+
user_count?: number | null;
|
|
2483
|
+
url?: string | null;
|
|
2484
|
+
users_url?: string | null;
|
|
2458
2485
|
}
|
|
2459
2486
|
export interface IRunningQueries {
|
|
2460
2487
|
can?: IDictionary<boolean>;
|
|
@@ -2463,195 +2490,196 @@ export interface IRunningQueries {
|
|
|
2463
2490
|
query?: IQuery;
|
|
2464
2491
|
sql_query?: ISqlQuery;
|
|
2465
2492
|
look?: ILookBasic;
|
|
2466
|
-
created_at?: string;
|
|
2467
|
-
completed_at?: string;
|
|
2468
|
-
query_id?: string;
|
|
2469
|
-
source?: string;
|
|
2470
|
-
node_id?: string;
|
|
2471
|
-
slug?: string;
|
|
2472
|
-
query_task_id?: string;
|
|
2473
|
-
cache_key?: string;
|
|
2474
|
-
connection_name?: string;
|
|
2475
|
-
dialect?: string;
|
|
2476
|
-
connection_id?: string;
|
|
2477
|
-
message?: string;
|
|
2478
|
-
status?: string;
|
|
2479
|
-
runtime?: number;
|
|
2480
|
-
sql?: string;
|
|
2493
|
+
created_at?: string | null;
|
|
2494
|
+
completed_at?: string | null;
|
|
2495
|
+
query_id?: string | null;
|
|
2496
|
+
source?: string | null;
|
|
2497
|
+
node_id?: string | null;
|
|
2498
|
+
slug?: string | null;
|
|
2499
|
+
query_task_id?: string | null;
|
|
2500
|
+
cache_key?: string | null;
|
|
2501
|
+
connection_name?: string | null;
|
|
2502
|
+
dialect?: string | null;
|
|
2503
|
+
connection_id?: string | null;
|
|
2504
|
+
message?: string | null;
|
|
2505
|
+
status?: string | null;
|
|
2506
|
+
runtime?: number | null;
|
|
2507
|
+
sql?: string | null;
|
|
2481
2508
|
}
|
|
2482
2509
|
export interface ISamlConfig {
|
|
2483
2510
|
can?: IDictionary<boolean>;
|
|
2484
2511
|
enabled?: boolean;
|
|
2485
|
-
idp_cert?: string;
|
|
2486
|
-
idp_url?: string;
|
|
2487
|
-
idp_issuer?: string;
|
|
2488
|
-
idp_audience?: string;
|
|
2489
|
-
allowed_clock_drift?: number;
|
|
2490
|
-
user_attribute_map_email?: string;
|
|
2491
|
-
user_attribute_map_first_name?: string;
|
|
2492
|
-
user_attribute_map_last_name?: string;
|
|
2493
|
-
new_user_migration_types?: string;
|
|
2512
|
+
idp_cert?: string | null;
|
|
2513
|
+
idp_url?: string | null;
|
|
2514
|
+
idp_issuer?: string | null;
|
|
2515
|
+
idp_audience?: string | null;
|
|
2516
|
+
allowed_clock_drift?: number | null;
|
|
2517
|
+
user_attribute_map_email?: string | null;
|
|
2518
|
+
user_attribute_map_first_name?: string | null;
|
|
2519
|
+
user_attribute_map_last_name?: string | null;
|
|
2520
|
+
new_user_migration_types?: string | null;
|
|
2494
2521
|
alternate_email_login_allowed?: boolean;
|
|
2495
|
-
test_slug?: string;
|
|
2496
|
-
modified_at?: string;
|
|
2497
|
-
modified_by?: string;
|
|
2498
|
-
default_new_user_roles?: IRole[];
|
|
2499
|
-
default_new_user_groups?: IGroup[];
|
|
2500
|
-
default_new_user_role_ids?: number[];
|
|
2501
|
-
default_new_user_group_ids?: number[];
|
|
2522
|
+
test_slug?: string | null;
|
|
2523
|
+
modified_at?: string | null;
|
|
2524
|
+
modified_by?: string | null;
|
|
2525
|
+
default_new_user_roles?: IRole[] | null;
|
|
2526
|
+
default_new_user_groups?: IGroup[] | null;
|
|
2527
|
+
default_new_user_role_ids?: number[] | null;
|
|
2528
|
+
default_new_user_group_ids?: number[] | null;
|
|
2502
2529
|
set_roles_from_groups?: boolean;
|
|
2503
|
-
groups_attribute?: string;
|
|
2504
|
-
groups?: ISamlGroupRead[];
|
|
2505
|
-
groups_with_role_ids?: ISamlGroupWrite[];
|
|
2530
|
+
groups_attribute?: string | null;
|
|
2531
|
+
groups?: ISamlGroupRead[] | null;
|
|
2532
|
+
groups_with_role_ids?: ISamlGroupWrite[] | null;
|
|
2506
2533
|
auth_requires_role?: boolean;
|
|
2507
|
-
user_attributes?: ISamlUserAttributeRead[];
|
|
2508
|
-
user_attributes_with_ids?: ISamlUserAttributeWrite[];
|
|
2509
|
-
groups_finder_type?: string;
|
|
2510
|
-
groups_member_value?: string;
|
|
2534
|
+
user_attributes?: ISamlUserAttributeRead[] | null;
|
|
2535
|
+
user_attributes_with_ids?: ISamlUserAttributeWrite[] | null;
|
|
2536
|
+
groups_finder_type?: string | null;
|
|
2537
|
+
groups_member_value?: string | null;
|
|
2511
2538
|
bypass_login_page?: boolean;
|
|
2512
2539
|
allow_normal_group_membership?: boolean;
|
|
2513
2540
|
allow_roles_from_normal_groups?: boolean;
|
|
2514
2541
|
allow_direct_roles?: boolean;
|
|
2515
|
-
url?: string;
|
|
2542
|
+
url?: string | null;
|
|
2516
2543
|
}
|
|
2517
2544
|
export interface ISamlGroupRead {
|
|
2518
2545
|
id?: number;
|
|
2519
|
-
looker_group_id?: number;
|
|
2520
|
-
looker_group_name?: string;
|
|
2521
|
-
name?: string;
|
|
2522
|
-
roles?: IRole[];
|
|
2523
|
-
url?: string;
|
|
2546
|
+
looker_group_id?: number | null;
|
|
2547
|
+
looker_group_name?: string | null;
|
|
2548
|
+
name?: string | null;
|
|
2549
|
+
roles?: IRole[] | null;
|
|
2550
|
+
url?: string | null;
|
|
2524
2551
|
}
|
|
2525
2552
|
export interface ISamlGroupWrite {
|
|
2526
|
-
id?: number;
|
|
2527
|
-
looker_group_id?: number;
|
|
2528
|
-
looker_group_name?: string;
|
|
2529
|
-
name?: string;
|
|
2530
|
-
role_ids?: number[];
|
|
2531
|
-
url?: string;
|
|
2553
|
+
id?: number | null;
|
|
2554
|
+
looker_group_id?: number | null;
|
|
2555
|
+
looker_group_name?: string | null;
|
|
2556
|
+
name?: string | null;
|
|
2557
|
+
role_ids?: number[] | null;
|
|
2558
|
+
url?: string | null;
|
|
2532
2559
|
}
|
|
2533
2560
|
export interface ISamlMetadataParseResult {
|
|
2534
2561
|
can?: IDictionary<boolean>;
|
|
2535
|
-
idp_issuer?: string;
|
|
2536
|
-
idp_url?: string;
|
|
2537
|
-
idp_cert?: string;
|
|
2562
|
+
idp_issuer?: string | null;
|
|
2563
|
+
idp_url?: string | null;
|
|
2564
|
+
idp_cert?: string | null;
|
|
2538
2565
|
}
|
|
2539
2566
|
export interface ISamlUserAttributeRead {
|
|
2540
|
-
name?: string;
|
|
2567
|
+
name?: string | null;
|
|
2541
2568
|
required?: boolean;
|
|
2542
|
-
user_attributes?: IUserAttribute[];
|
|
2543
|
-
url?: string;
|
|
2569
|
+
user_attributes?: IUserAttribute[] | null;
|
|
2570
|
+
url?: string | null;
|
|
2544
2571
|
}
|
|
2545
2572
|
export interface ISamlUserAttributeWrite {
|
|
2546
|
-
name?: string;
|
|
2573
|
+
name?: string | null;
|
|
2547
2574
|
required?: boolean;
|
|
2548
|
-
user_attribute_ids?: number[];
|
|
2549
|
-
url?: string;
|
|
2575
|
+
user_attribute_ids?: number[] | null;
|
|
2576
|
+
url?: string | null;
|
|
2550
2577
|
}
|
|
2551
2578
|
export interface IScheduledPlan {
|
|
2552
|
-
name?: string;
|
|
2553
|
-
user_id?: number;
|
|
2579
|
+
name?: string | null;
|
|
2580
|
+
user_id?: number | null;
|
|
2554
2581
|
run_as_recipient?: boolean;
|
|
2555
2582
|
enabled?: boolean;
|
|
2556
|
-
look_id?:
|
|
2557
|
-
dashboard_id?: number;
|
|
2558
|
-
lookml_dashboard_id?: string;
|
|
2559
|
-
filters_string?: string;
|
|
2560
|
-
dashboard_filters?: string;
|
|
2583
|
+
look_id?: string | null;
|
|
2584
|
+
dashboard_id?: number | null;
|
|
2585
|
+
lookml_dashboard_id?: string | null;
|
|
2586
|
+
filters_string?: string | null;
|
|
2587
|
+
dashboard_filters?: string | null;
|
|
2561
2588
|
require_results?: boolean;
|
|
2562
2589
|
require_no_results?: boolean;
|
|
2563
2590
|
require_change?: boolean;
|
|
2564
2591
|
send_all_results?: boolean;
|
|
2565
|
-
crontab?: string;
|
|
2566
|
-
datagroup?: string;
|
|
2567
|
-
timezone?: string;
|
|
2568
|
-
query_id?: string;
|
|
2569
|
-
scheduled_plan_destination?: IScheduledPlanDestination[];
|
|
2592
|
+
crontab?: string | null;
|
|
2593
|
+
datagroup?: string | null;
|
|
2594
|
+
timezone?: string | null;
|
|
2595
|
+
query_id?: string | null;
|
|
2596
|
+
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
2570
2597
|
run_once?: boolean;
|
|
2571
2598
|
include_links?: boolean;
|
|
2572
|
-
pdf_paper_size?: string;
|
|
2599
|
+
pdf_paper_size?: string | null;
|
|
2573
2600
|
pdf_landscape?: boolean;
|
|
2574
2601
|
embed?: boolean;
|
|
2575
|
-
color_theme?: string;
|
|
2602
|
+
color_theme?: string | null;
|
|
2576
2603
|
long_tables?: boolean;
|
|
2577
|
-
inline_table_width?: number;
|
|
2604
|
+
inline_table_width?: number | null;
|
|
2578
2605
|
id?: number;
|
|
2579
|
-
created_at?: Date;
|
|
2580
|
-
updated_at?: Date;
|
|
2581
|
-
title?: string;
|
|
2606
|
+
created_at?: Date | null;
|
|
2607
|
+
updated_at?: Date | null;
|
|
2608
|
+
title?: string | null;
|
|
2582
2609
|
user?: IUserPublic;
|
|
2583
|
-
next_run_at?: Date;
|
|
2584
|
-
last_run_at?: Date;
|
|
2610
|
+
next_run_at?: Date | null;
|
|
2611
|
+
last_run_at?: Date | null;
|
|
2585
2612
|
can?: IDictionary<boolean>;
|
|
2586
2613
|
}
|
|
2587
2614
|
export interface IScheduledPlanDestination {
|
|
2588
2615
|
id?: number;
|
|
2589
|
-
scheduled_plan_id?: number;
|
|
2590
|
-
format?: string;
|
|
2616
|
+
scheduled_plan_id?: number | null;
|
|
2617
|
+
format?: string | null;
|
|
2591
2618
|
apply_formatting?: boolean;
|
|
2592
2619
|
apply_vis?: boolean;
|
|
2593
|
-
address?: string;
|
|
2620
|
+
address?: string | null;
|
|
2594
2621
|
looker_recipient?: boolean;
|
|
2595
|
-
type?: string;
|
|
2596
|
-
parameters?: string;
|
|
2597
|
-
secret_parameters?: string;
|
|
2598
|
-
message?: string;
|
|
2622
|
+
type?: string | null;
|
|
2623
|
+
parameters?: string | null;
|
|
2624
|
+
secret_parameters?: string | null;
|
|
2625
|
+
message?: string | null;
|
|
2599
2626
|
}
|
|
2600
2627
|
export interface ISchema {
|
|
2601
2628
|
name?: string;
|
|
2602
2629
|
is_default?: boolean;
|
|
2603
2630
|
}
|
|
2604
2631
|
export interface ISchemaColumn {
|
|
2605
|
-
name?: string;
|
|
2606
|
-
sql_escaped_name?: string;
|
|
2607
|
-
schema_name?: string;
|
|
2632
|
+
name?: string | null;
|
|
2633
|
+
sql_escaped_name?: string | null;
|
|
2634
|
+
schema_name?: string | null;
|
|
2608
2635
|
data_type_database?: string;
|
|
2609
2636
|
data_type?: string;
|
|
2610
2637
|
data_type_looker?: string;
|
|
2611
|
-
description?: string;
|
|
2612
|
-
column_size?: number;
|
|
2638
|
+
description?: string | null;
|
|
2639
|
+
column_size?: number | null;
|
|
2613
2640
|
snippets?: ISnippet[];
|
|
2614
2641
|
}
|
|
2615
2642
|
export interface ISchemaColumns {
|
|
2616
|
-
name?: string;
|
|
2617
|
-
sql_escaped_name?: string;
|
|
2618
|
-
schema_name?: string;
|
|
2643
|
+
name?: string | null;
|
|
2644
|
+
sql_escaped_name?: string | null;
|
|
2645
|
+
schema_name?: string | null;
|
|
2619
2646
|
columns?: ISchemaColumn[];
|
|
2620
2647
|
}
|
|
2621
2648
|
export interface ISchemaTable {
|
|
2622
|
-
name?: string;
|
|
2623
|
-
sql_escaped_name?: string;
|
|
2624
|
-
schema_name?: string;
|
|
2625
|
-
rows?: number;
|
|
2626
|
-
external?: string;
|
|
2649
|
+
name?: string | null;
|
|
2650
|
+
sql_escaped_name?: string | null;
|
|
2651
|
+
schema_name?: string | null;
|
|
2652
|
+
rows?: number | null;
|
|
2653
|
+
external?: string | null;
|
|
2627
2654
|
snippets?: ISnippet[];
|
|
2628
2655
|
}
|
|
2629
2656
|
export interface ISchemaTables {
|
|
2630
2657
|
name?: string;
|
|
2631
2658
|
is_default?: boolean;
|
|
2632
2659
|
tables?: ISchemaTable[];
|
|
2660
|
+
table_limit_hit?: boolean;
|
|
2633
2661
|
}
|
|
2634
2662
|
export interface ISession {
|
|
2635
2663
|
can?: IDictionary<boolean>;
|
|
2636
2664
|
id?: number;
|
|
2637
|
-
ip_address?: string;
|
|
2638
|
-
browser?: string;
|
|
2639
|
-
operating_system?: string;
|
|
2640
|
-
city?: string;
|
|
2641
|
-
state?: string;
|
|
2642
|
-
country?: string;
|
|
2643
|
-
credentials_type?: string;
|
|
2644
|
-
extended_at?: string;
|
|
2645
|
-
extended_count?: number;
|
|
2646
|
-
sudo_user_id?: number;
|
|
2647
|
-
created_at?: string;
|
|
2648
|
-
expires_at?: string;
|
|
2649
|
-
url?: string;
|
|
2665
|
+
ip_address?: string | null;
|
|
2666
|
+
browser?: string | null;
|
|
2667
|
+
operating_system?: string | null;
|
|
2668
|
+
city?: string | null;
|
|
2669
|
+
state?: string | null;
|
|
2670
|
+
country?: string | null;
|
|
2671
|
+
credentials_type?: string | null;
|
|
2672
|
+
extended_at?: string | null;
|
|
2673
|
+
extended_count?: number | null;
|
|
2674
|
+
sudo_user_id?: number | null;
|
|
2675
|
+
created_at?: string | null;
|
|
2676
|
+
expires_at?: string | null;
|
|
2677
|
+
url?: string | null;
|
|
2650
2678
|
}
|
|
2651
2679
|
export interface ISessionConfig {
|
|
2652
2680
|
can?: IDictionary<boolean>;
|
|
2653
2681
|
allow_persistent_sessions?: boolean;
|
|
2654
|
-
session_minutes?: number;
|
|
2682
|
+
session_minutes?: number | null;
|
|
2655
2683
|
unlimited_sessions_per_user?: boolean;
|
|
2656
2684
|
use_inactivity_based_logout?: boolean;
|
|
2657
2685
|
track_session_location?: boolean;
|
|
@@ -2662,6 +2690,17 @@ export interface ISetting {
|
|
|
2662
2690
|
marketplace_enabled?: boolean;
|
|
2663
2691
|
whitelabel_configuration?: IWhitelabelConfiguration;
|
|
2664
2692
|
custom_welcome_email?: ICustomWelcomeEmail;
|
|
2693
|
+
onboarding_enabled?: boolean;
|
|
2694
|
+
}
|
|
2695
|
+
export interface ISmtpNodeStatus {
|
|
2696
|
+
is_valid?: boolean;
|
|
2697
|
+
message?: string | null;
|
|
2698
|
+
hostname?: string | null;
|
|
2699
|
+
}
|
|
2700
|
+
export interface ISmtpStatus {
|
|
2701
|
+
is_valid?: boolean;
|
|
2702
|
+
node_count?: number | null;
|
|
2703
|
+
node_status?: ISmtpNodeStatus[] | null;
|
|
2665
2704
|
}
|
|
2666
2705
|
export interface ISnippet {
|
|
2667
2706
|
name?: string;
|
|
@@ -2671,25 +2710,25 @@ export interface ISnippet {
|
|
|
2671
2710
|
export interface ISqlQuery {
|
|
2672
2711
|
can?: IDictionary<boolean>;
|
|
2673
2712
|
slug?: string;
|
|
2674
|
-
last_runtime?: number;
|
|
2713
|
+
last_runtime?: number | null;
|
|
2675
2714
|
run_count?: number;
|
|
2676
2715
|
browser_limit?: number;
|
|
2677
2716
|
sql?: string;
|
|
2678
|
-
last_run_at?: string;
|
|
2717
|
+
last_run_at?: string | null;
|
|
2679
2718
|
connection?: IDBConnectionBase;
|
|
2680
|
-
model_name?: string;
|
|
2719
|
+
model_name?: string | null;
|
|
2681
2720
|
creator?: IUserPublic;
|
|
2682
|
-
explore_url?: string;
|
|
2721
|
+
explore_url?: string | null;
|
|
2683
2722
|
plaintext?: boolean;
|
|
2684
|
-
vis_config?: IDictionary<any
|
|
2685
|
-
result_maker_id?: number;
|
|
2723
|
+
vis_config?: IDictionary<any> | null;
|
|
2724
|
+
result_maker_id?: number | null;
|
|
2686
2725
|
}
|
|
2687
2726
|
export interface ISqlQueryCreate {
|
|
2688
|
-
connection_name?: string;
|
|
2689
|
-
connection_id?: string;
|
|
2690
|
-
model_name?: string;
|
|
2691
|
-
sql?: string;
|
|
2692
|
-
vis_config?: IDictionary<any
|
|
2727
|
+
connection_name?: string | null;
|
|
2728
|
+
connection_id?: string | null;
|
|
2729
|
+
model_name?: string | null;
|
|
2730
|
+
sql?: string | null;
|
|
2731
|
+
vis_config?: IDictionary<any> | null;
|
|
2693
2732
|
}
|
|
2694
2733
|
export interface ISshPublicKey {
|
|
2695
2734
|
public_key?: string;
|
|
@@ -2718,6 +2757,24 @@ export interface ISshTunnel {
|
|
|
2718
2757
|
database_port?: number;
|
|
2719
2758
|
status?: string;
|
|
2720
2759
|
}
|
|
2760
|
+
export interface ISupportAccessAddEntries {
|
|
2761
|
+
emails?: string[] | null;
|
|
2762
|
+
reason?: string | null;
|
|
2763
|
+
}
|
|
2764
|
+
export interface ISupportAccessAllowlistEntry {
|
|
2765
|
+
id?: string;
|
|
2766
|
+
email?: string | null;
|
|
2767
|
+
full_name?: string | null;
|
|
2768
|
+
reason?: string | null;
|
|
2769
|
+
created_date?: Date | null;
|
|
2770
|
+
}
|
|
2771
|
+
export interface ISupportAccessEnable {
|
|
2772
|
+
duration_in_seconds: number | null;
|
|
2773
|
+
}
|
|
2774
|
+
export interface ISupportAccessStatus {
|
|
2775
|
+
open?: boolean;
|
|
2776
|
+
open_until?: Date | null;
|
|
2777
|
+
}
|
|
2721
2778
|
export declare enum SupportedActionTypes {
|
|
2722
2779
|
cell = "cell",
|
|
2723
2780
|
query = "query",
|
|
@@ -2752,19 +2809,19 @@ export declare enum SupportedVisualizationFormattings {
|
|
|
2752
2809
|
}
|
|
2753
2810
|
export interface ITheme {
|
|
2754
2811
|
can?: IDictionary<boolean>;
|
|
2755
|
-
begin_at?: Date;
|
|
2756
|
-
end_at?: Date;
|
|
2812
|
+
begin_at?: Date | null;
|
|
2813
|
+
end_at?: Date | null;
|
|
2757
2814
|
id?: number;
|
|
2758
2815
|
name?: string;
|
|
2759
2816
|
settings?: IThemeSettings;
|
|
2760
2817
|
}
|
|
2761
2818
|
export interface IThemeSettings {
|
|
2762
2819
|
background_color?: string;
|
|
2763
|
-
base_font_size?: string;
|
|
2820
|
+
base_font_size?: string | null;
|
|
2764
2821
|
color_collection_id?: string;
|
|
2765
|
-
font_color?: string;
|
|
2822
|
+
font_color?: string | null;
|
|
2766
2823
|
font_family?: string;
|
|
2767
|
-
font_source?: string;
|
|
2824
|
+
font_source?: string | null;
|
|
2768
2825
|
info_button_color?: string;
|
|
2769
2826
|
primary_button_color?: string;
|
|
2770
2827
|
show_filters_bar?: boolean;
|
|
@@ -2778,13 +2835,13 @@ export interface IThemeSettings {
|
|
|
2778
2835
|
tile_shadow?: boolean;
|
|
2779
2836
|
}
|
|
2780
2837
|
export interface ITimezone {
|
|
2781
|
-
value?: string;
|
|
2782
|
-
label?: string;
|
|
2783
|
-
group?: string;
|
|
2838
|
+
value?: string | null;
|
|
2839
|
+
label?: string | null;
|
|
2840
|
+
group?: string | null;
|
|
2784
2841
|
}
|
|
2785
2842
|
export interface IUpdateCommand {
|
|
2786
|
-
name?: string;
|
|
2787
|
-
description?: string;
|
|
2843
|
+
name?: string | null;
|
|
2844
|
+
description?: string | null;
|
|
2788
2845
|
}
|
|
2789
2846
|
export interface IUpdateFolder {
|
|
2790
2847
|
name?: string;
|
|
@@ -2792,54 +2849,54 @@ export interface IUpdateFolder {
|
|
|
2792
2849
|
}
|
|
2793
2850
|
export interface IUser {
|
|
2794
2851
|
can?: IDictionary<boolean>;
|
|
2795
|
-
avatar_url?: string;
|
|
2796
|
-
avatar_url_without_sizing?: string;
|
|
2797
|
-
credentials_api3?: ICredentialsApi3[];
|
|
2852
|
+
avatar_url?: string | null;
|
|
2853
|
+
avatar_url_without_sizing?: string | null;
|
|
2854
|
+
credentials_api3?: ICredentialsApi3[] | null;
|
|
2798
2855
|
credentials_email?: ICredentialsEmail;
|
|
2799
|
-
credentials_embed?: ICredentialsEmbed[];
|
|
2856
|
+
credentials_embed?: ICredentialsEmbed[] | null;
|
|
2800
2857
|
credentials_google?: ICredentialsGoogle;
|
|
2801
2858
|
credentials_ldap?: ICredentialsLDAP;
|
|
2802
2859
|
credentials_looker_openid?: ICredentialsLookerOpenid;
|
|
2803
2860
|
credentials_oidc?: ICredentialsOIDC;
|
|
2804
2861
|
credentials_saml?: ICredentialsSaml;
|
|
2805
2862
|
credentials_totp?: ICredentialsTotp;
|
|
2806
|
-
display_name?: string;
|
|
2807
|
-
email?: string;
|
|
2808
|
-
embed_group_space_id?: number;
|
|
2809
|
-
first_name?: string;
|
|
2810
|
-
group_ids?: number[];
|
|
2811
|
-
home_folder_id?: string;
|
|
2863
|
+
display_name?: string | null;
|
|
2864
|
+
email?: string | null;
|
|
2865
|
+
embed_group_space_id?: number | null;
|
|
2866
|
+
first_name?: string | null;
|
|
2867
|
+
group_ids?: number[] | null;
|
|
2868
|
+
home_folder_id?: string | null;
|
|
2812
2869
|
id?: number;
|
|
2813
2870
|
is_disabled?: boolean;
|
|
2814
|
-
last_name?: string;
|
|
2815
|
-
locale?: string;
|
|
2816
|
-
looker_versions?: string[];
|
|
2817
|
-
models_dir_validated?: boolean;
|
|
2818
|
-
personal_folder_id?: number;
|
|
2871
|
+
last_name?: string | null;
|
|
2872
|
+
locale?: string | null;
|
|
2873
|
+
looker_versions?: string[] | null;
|
|
2874
|
+
models_dir_validated?: boolean | null;
|
|
2875
|
+
personal_folder_id?: number | null;
|
|
2819
2876
|
presumed_looker_employee?: boolean;
|
|
2820
|
-
role_ids?: number[];
|
|
2821
|
-
sessions?: ISession[];
|
|
2822
|
-
ui_state?: IDictionary<string
|
|
2877
|
+
role_ids?: number[] | null;
|
|
2878
|
+
sessions?: ISession[] | null;
|
|
2879
|
+
ui_state?: IDictionary<string> | null;
|
|
2823
2880
|
verified_looker_employee?: boolean;
|
|
2824
2881
|
roles_externally_managed?: boolean;
|
|
2825
2882
|
allow_direct_roles?: boolean;
|
|
2826
2883
|
allow_normal_group_membership?: boolean;
|
|
2827
2884
|
allow_roles_from_normal_groups?: boolean;
|
|
2828
|
-
url?: string;
|
|
2885
|
+
url?: string | null;
|
|
2829
2886
|
}
|
|
2830
2887
|
export interface IUserAttribute {
|
|
2831
2888
|
can?: IDictionary<boolean>;
|
|
2832
2889
|
id?: number;
|
|
2833
|
-
name: string;
|
|
2834
|
-
label: string;
|
|
2835
|
-
type: string;
|
|
2836
|
-
default_value?: string;
|
|
2890
|
+
name: string | null;
|
|
2891
|
+
label: string | null;
|
|
2892
|
+
type: string | null;
|
|
2893
|
+
default_value?: string | null;
|
|
2837
2894
|
is_system?: boolean;
|
|
2838
2895
|
is_permanent?: boolean;
|
|
2839
2896
|
value_is_hidden?: boolean;
|
|
2840
2897
|
user_can_view?: boolean;
|
|
2841
2898
|
user_can_edit?: boolean;
|
|
2842
|
-
hidden_value_domain_whitelist?: string;
|
|
2899
|
+
hidden_value_domain_whitelist?: string | null;
|
|
2843
2900
|
}
|
|
2844
2901
|
export declare enum UserAttributeFilterTypes {
|
|
2845
2902
|
advanced_filter_string = "advanced_filter_string",
|
|
@@ -2855,59 +2912,59 @@ export declare enum UserAttributeFilterTypes {
|
|
|
2855
2912
|
export interface IUserAttributeGroupValue {
|
|
2856
2913
|
can?: IDictionary<boolean>;
|
|
2857
2914
|
id?: number;
|
|
2858
|
-
group_id?: number;
|
|
2859
|
-
user_attribute_id?: number;
|
|
2915
|
+
group_id?: number | null;
|
|
2916
|
+
user_attribute_id?: number | null;
|
|
2860
2917
|
value_is_hidden?: boolean;
|
|
2861
|
-
rank?: number;
|
|
2862
|
-
value?: string;
|
|
2918
|
+
rank?: number | null;
|
|
2919
|
+
value?: string | null;
|
|
2863
2920
|
}
|
|
2864
2921
|
export interface IUserAttributeWithValue {
|
|
2865
2922
|
can?: IDictionary<boolean>;
|
|
2866
|
-
name?: string;
|
|
2867
|
-
label?: string;
|
|
2868
|
-
rank?: number;
|
|
2869
|
-
value?: string;
|
|
2870
|
-
user_id?: number;
|
|
2923
|
+
name?: string | null;
|
|
2924
|
+
label?: string | null;
|
|
2925
|
+
rank?: number | null;
|
|
2926
|
+
value?: string | null;
|
|
2927
|
+
user_id?: number | null;
|
|
2871
2928
|
user_can_edit?: boolean;
|
|
2872
2929
|
value_is_hidden?: boolean;
|
|
2873
|
-
user_attribute_id?: number;
|
|
2874
|
-
source?: string;
|
|
2875
|
-
hidden_value_domain_whitelist?: string;
|
|
2930
|
+
user_attribute_id?: number | null;
|
|
2931
|
+
source?: string | null;
|
|
2932
|
+
hidden_value_domain_whitelist?: string | null;
|
|
2876
2933
|
}
|
|
2877
2934
|
export interface IUserEmailOnly {
|
|
2878
2935
|
email: string;
|
|
2879
2936
|
}
|
|
2880
2937
|
export interface IUserLoginLockout {
|
|
2881
2938
|
can?: IDictionary<boolean>;
|
|
2882
|
-
key?: string;
|
|
2883
|
-
auth_type?: string;
|
|
2884
|
-
ip?: string;
|
|
2885
|
-
user_id?: number;
|
|
2886
|
-
remote_id?: string;
|
|
2887
|
-
full_name?: string;
|
|
2888
|
-
email?: string;
|
|
2889
|
-
fail_count?: number;
|
|
2890
|
-
lockout_at?: Date;
|
|
2939
|
+
key?: string | null;
|
|
2940
|
+
auth_type?: string | null;
|
|
2941
|
+
ip?: string | null;
|
|
2942
|
+
user_id?: number | null;
|
|
2943
|
+
remote_id?: string | null;
|
|
2944
|
+
full_name?: string | null;
|
|
2945
|
+
email?: string | null;
|
|
2946
|
+
fail_count?: number | null;
|
|
2947
|
+
lockout_at?: Date | null;
|
|
2891
2948
|
}
|
|
2892
2949
|
export interface IUserPublic {
|
|
2893
2950
|
can?: IDictionary<boolean>;
|
|
2894
2951
|
id?: number;
|
|
2895
2952
|
first_name?: string;
|
|
2896
2953
|
last_name?: string;
|
|
2897
|
-
display_name?: string;
|
|
2954
|
+
display_name?: string | null;
|
|
2898
2955
|
avatar_url?: string;
|
|
2899
|
-
url?: string;
|
|
2956
|
+
url?: string | null;
|
|
2900
2957
|
}
|
|
2901
2958
|
export interface IValidationError {
|
|
2902
|
-
message: string;
|
|
2903
|
-
errors?: IValidationErrorDetail[];
|
|
2904
|
-
documentation_url: string;
|
|
2959
|
+
message: string | null;
|
|
2960
|
+
errors?: IValidationErrorDetail[] | null;
|
|
2961
|
+
documentation_url: string | null;
|
|
2905
2962
|
}
|
|
2906
2963
|
export interface IValidationErrorDetail {
|
|
2907
|
-
field?: string;
|
|
2908
|
-
code?: string;
|
|
2909
|
-
message?: string;
|
|
2910
|
-
documentation_url: string;
|
|
2964
|
+
field?: string | null;
|
|
2965
|
+
code?: string | null;
|
|
2966
|
+
message?: string | null;
|
|
2967
|
+
documentation_url: string | null;
|
|
2911
2968
|
}
|
|
2912
2969
|
export declare enum WeekStartDay {
|
|
2913
2970
|
monday = "monday",
|
|
@@ -2919,17 +2976,17 @@ export declare enum WeekStartDay {
|
|
|
2919
2976
|
sunday = "sunday"
|
|
2920
2977
|
}
|
|
2921
2978
|
export interface IWelcomeEmailTest {
|
|
2922
|
-
content?: string;
|
|
2923
|
-
subject?: string;
|
|
2924
|
-
header?: string;
|
|
2979
|
+
content?: string | null;
|
|
2980
|
+
subject?: string | null;
|
|
2981
|
+
header?: string | null;
|
|
2925
2982
|
}
|
|
2926
2983
|
export interface IWhitelabelConfiguration {
|
|
2927
2984
|
id?: number;
|
|
2928
|
-
logo_file?: string;
|
|
2929
|
-
logo_url?: string;
|
|
2930
|
-
favicon_file?: string;
|
|
2931
|
-
favicon_url?: string;
|
|
2932
|
-
default_title?: string;
|
|
2985
|
+
logo_file?: string | null;
|
|
2986
|
+
logo_url?: string | null;
|
|
2987
|
+
favicon_file?: string | null;
|
|
2988
|
+
favicon_url?: string | null;
|
|
2989
|
+
default_title?: string | null;
|
|
2933
2990
|
show_help_menu?: boolean;
|
|
2934
2991
|
show_docs?: boolean;
|
|
2935
2992
|
show_email_sub_options?: boolean;
|
|
@@ -2944,302 +3001,306 @@ export interface IWhitelabelConfiguration {
|
|
|
2944
3001
|
export interface IWorkspace {
|
|
2945
3002
|
can?: IDictionary<boolean>;
|
|
2946
3003
|
id?: string;
|
|
2947
|
-
projects?: IProject[];
|
|
3004
|
+
projects?: IProject[] | null;
|
|
2948
3005
|
}
|
|
2949
3006
|
export interface IWriteAlert {
|
|
2950
|
-
applied_dashboard_filters?: IAlertAppliedDashboardFilter[];
|
|
2951
|
-
comparison_type: ComparisonType;
|
|
3007
|
+
applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
|
|
3008
|
+
comparison_type: ComparisonType | null;
|
|
2952
3009
|
cron: string;
|
|
2953
|
-
custom_title?: string;
|
|
2954
|
-
dashboard_element_id?: number;
|
|
2955
|
-
description?: string;
|
|
2956
|
-
destinations: IAlertDestination[];
|
|
2957
|
-
field: IAlertField;
|
|
3010
|
+
custom_title?: string | null;
|
|
3011
|
+
dashboard_element_id?: number | null;
|
|
3012
|
+
description?: string | null;
|
|
3013
|
+
destinations: IAlertDestination[] | null;
|
|
3014
|
+
field: IAlertField | null;
|
|
2958
3015
|
is_disabled?: boolean;
|
|
2959
|
-
disabled_reason?: string;
|
|
3016
|
+
disabled_reason?: string | null;
|
|
2960
3017
|
is_public?: boolean;
|
|
2961
|
-
investigative_content_type?: InvestigativeContentType;
|
|
2962
|
-
investigative_content_id?: string;
|
|
2963
|
-
lookml_dashboard_id?: string;
|
|
2964
|
-
lookml_link_id?: string;
|
|
3018
|
+
investigative_content_type?: InvestigativeContentType | null;
|
|
3019
|
+
investigative_content_id?: string | null;
|
|
3020
|
+
lookml_dashboard_id?: string | null;
|
|
3021
|
+
lookml_link_id?: string | null;
|
|
2965
3022
|
owner_id: number;
|
|
2966
3023
|
threshold: number;
|
|
2967
|
-
time_series_condition_state?: IAlertConditionState;
|
|
3024
|
+
time_series_condition_state?: IAlertConditionState | null;
|
|
2968
3025
|
}
|
|
2969
3026
|
export interface IWriteApiSession {
|
|
2970
|
-
workspace_id?: string;
|
|
3027
|
+
workspace_id?: string | null;
|
|
2971
3028
|
}
|
|
2972
3029
|
export interface IWriteBackupConfiguration {
|
|
2973
|
-
type?: string;
|
|
2974
|
-
custom_s3_bucket?: string;
|
|
2975
|
-
custom_s3_bucket_region?: string;
|
|
2976
|
-
custom_s3_key?: string;
|
|
2977
|
-
custom_s3_secret?: string;
|
|
3030
|
+
type?: string | null;
|
|
3031
|
+
custom_s3_bucket?: string | null;
|
|
3032
|
+
custom_s3_bucket_region?: string | null;
|
|
3033
|
+
custom_s3_key?: string | null;
|
|
3034
|
+
custom_s3_secret?: string | null;
|
|
2978
3035
|
}
|
|
2979
3036
|
export interface IWriteBoard {
|
|
2980
|
-
deleted_at?: Date;
|
|
2981
|
-
description?: string;
|
|
2982
|
-
section_order?: number[];
|
|
2983
|
-
title?: string;
|
|
3037
|
+
deleted_at?: Date | null;
|
|
3038
|
+
description?: string | null;
|
|
3039
|
+
section_order?: number[] | null;
|
|
3040
|
+
title?: string | null;
|
|
2984
3041
|
}
|
|
2985
3042
|
export interface IWriteBoardItem {
|
|
2986
|
-
custom_description?: string;
|
|
2987
|
-
custom_title?: string;
|
|
2988
|
-
custom_url?: string;
|
|
2989
|
-
dashboard_id?: number;
|
|
2990
|
-
board_section_id?: number;
|
|
2991
|
-
look_id?:
|
|
2992
|
-
lookml_dashboard_id?: string;
|
|
2993
|
-
order?: number;
|
|
3043
|
+
custom_description?: string | null;
|
|
3044
|
+
custom_title?: string | null;
|
|
3045
|
+
custom_url?: string | null;
|
|
3046
|
+
dashboard_id?: number | null;
|
|
3047
|
+
board_section_id?: number | null;
|
|
3048
|
+
look_id?: string | null;
|
|
3049
|
+
lookml_dashboard_id?: string | null;
|
|
3050
|
+
order?: number | null;
|
|
2994
3051
|
}
|
|
2995
3052
|
export interface IWriteBoardSection {
|
|
2996
|
-
deleted_at?: Date;
|
|
2997
|
-
description?: string;
|
|
2998
|
-
board_id?: number;
|
|
2999
|
-
item_order?: number[];
|
|
3000
|
-
title?: string;
|
|
3053
|
+
deleted_at?: Date | null;
|
|
3054
|
+
description?: string | null;
|
|
3055
|
+
board_id?: number | null;
|
|
3056
|
+
item_order?: number[] | null;
|
|
3057
|
+
title?: string | null;
|
|
3001
3058
|
}
|
|
3002
3059
|
export interface IWriteColorCollection {
|
|
3003
3060
|
label?: string;
|
|
3004
|
-
categoricalPalettes?: IDiscretePalette[];
|
|
3005
|
-
sequentialPalettes?: IContinuousPalette[];
|
|
3006
|
-
divergingPalettes?: IContinuousPalette[];
|
|
3061
|
+
categoricalPalettes?: IDiscretePalette[] | null;
|
|
3062
|
+
sequentialPalettes?: IContinuousPalette[] | null;
|
|
3063
|
+
divergingPalettes?: IContinuousPalette[] | null;
|
|
3007
3064
|
}
|
|
3008
3065
|
export interface IWriteCommand {
|
|
3009
3066
|
name?: string;
|
|
3010
|
-
description?: string;
|
|
3067
|
+
description?: string | null;
|
|
3011
3068
|
linked_content_id?: string;
|
|
3012
|
-
linked_content_type?: LinkedContentType;
|
|
3069
|
+
linked_content_type?: LinkedContentType | null;
|
|
3013
3070
|
}
|
|
3014
3071
|
export interface IWriteContentFavorite {
|
|
3015
3072
|
user_id?: number;
|
|
3016
3073
|
content_metadata_id?: number;
|
|
3017
|
-
look?: IWriteLookBasic;
|
|
3018
|
-
dashboard?: IWriteDashboardBase;
|
|
3074
|
+
look?: IWriteLookBasic | null;
|
|
3075
|
+
dashboard?: IWriteDashboardBase | null;
|
|
3019
3076
|
}
|
|
3020
3077
|
export interface IWriteContentMeta {
|
|
3021
3078
|
inherits?: boolean;
|
|
3022
3079
|
}
|
|
3023
3080
|
export interface IWriteCreateDashboardFilter {
|
|
3024
|
-
dashboard_id: string;
|
|
3025
|
-
name: string;
|
|
3026
|
-
title: string;
|
|
3027
|
-
type: string;
|
|
3028
|
-
default_value?: string;
|
|
3029
|
-
model?: string;
|
|
3030
|
-
explore?: string;
|
|
3031
|
-
dimension?: string;
|
|
3032
|
-
row?: number;
|
|
3033
|
-
listens_to_filters?: string[];
|
|
3081
|
+
dashboard_id: string | null;
|
|
3082
|
+
name: string | null;
|
|
3083
|
+
title: string | null;
|
|
3084
|
+
type: string | null;
|
|
3085
|
+
default_value?: string | null;
|
|
3086
|
+
model?: string | null;
|
|
3087
|
+
explore?: string | null;
|
|
3088
|
+
dimension?: string | null;
|
|
3089
|
+
row?: number | null;
|
|
3090
|
+
listens_to_filters?: string[] | null;
|
|
3034
3091
|
allow_multiple_values?: boolean;
|
|
3035
3092
|
required?: boolean;
|
|
3036
|
-
ui_config?: IDictionary<any
|
|
3093
|
+
ui_config?: IDictionary<any> | null;
|
|
3037
3094
|
}
|
|
3038
3095
|
export interface IWriteCreateQueryTask {
|
|
3039
|
-
query_id: number;
|
|
3040
|
-
result_format: ResultFormat;
|
|
3041
|
-
source?: string;
|
|
3096
|
+
query_id: number | null;
|
|
3097
|
+
result_format: ResultFormat | null;
|
|
3098
|
+
source?: string | null;
|
|
3042
3099
|
deferred?: boolean;
|
|
3043
|
-
look_id?:
|
|
3044
|
-
dashboard_id?: string;
|
|
3100
|
+
look_id?: string | null;
|
|
3101
|
+
dashboard_id?: string | null;
|
|
3045
3102
|
}
|
|
3046
3103
|
export interface IWriteCredentialsEmail {
|
|
3047
|
-
email?: string;
|
|
3104
|
+
email?: string | null;
|
|
3048
3105
|
forced_password_reset_at_next_login?: boolean;
|
|
3049
3106
|
}
|
|
3050
3107
|
export interface IWriteDashboard {
|
|
3051
|
-
description?: string;
|
|
3108
|
+
description?: string | null;
|
|
3052
3109
|
hidden?: boolean;
|
|
3053
|
-
query_timezone?: string;
|
|
3054
|
-
refresh_interval?: string;
|
|
3055
|
-
folder?: IWriteFolderBase;
|
|
3056
|
-
title?: string;
|
|
3057
|
-
slug?: string;
|
|
3058
|
-
preferred_viewer?: string;
|
|
3110
|
+
query_timezone?: string | null;
|
|
3111
|
+
refresh_interval?: string | null;
|
|
3112
|
+
folder?: IWriteFolderBase | null;
|
|
3113
|
+
title?: string | null;
|
|
3114
|
+
slug?: string | null;
|
|
3115
|
+
preferred_viewer?: string | null;
|
|
3059
3116
|
alert_sync_with_dashboard_filter_enabled?: boolean;
|
|
3060
|
-
background_color?: string;
|
|
3117
|
+
background_color?: string | null;
|
|
3061
3118
|
crossfilter_enabled?: boolean;
|
|
3062
3119
|
deleted?: boolean;
|
|
3063
3120
|
filters_bar_collapsed?: boolean;
|
|
3064
|
-
load_configuration?: string;
|
|
3065
|
-
lookml_link_id?: string;
|
|
3121
|
+
load_configuration?: string | null;
|
|
3122
|
+
lookml_link_id?: string | null;
|
|
3066
3123
|
show_filters_bar?: boolean;
|
|
3067
3124
|
show_title?: boolean;
|
|
3068
|
-
folder_id?: string;
|
|
3069
|
-
text_tile_text_color?: string;
|
|
3070
|
-
tile_background_color?: string;
|
|
3071
|
-
tile_text_color?: string;
|
|
3072
|
-
title_color?: string;
|
|
3073
|
-
appearance?: IDashboardAppearance;
|
|
3125
|
+
folder_id?: string | null;
|
|
3126
|
+
text_tile_text_color?: string | null;
|
|
3127
|
+
tile_background_color?: string | null;
|
|
3128
|
+
tile_text_color?: string | null;
|
|
3129
|
+
title_color?: string | null;
|
|
3130
|
+
appearance?: IDashboardAppearance | null;
|
|
3074
3131
|
}
|
|
3075
3132
|
export interface IWriteDashboardBase {
|
|
3076
|
-
folder?: IWriteFolderBase;
|
|
3133
|
+
folder?: IWriteFolderBase | null;
|
|
3077
3134
|
}
|
|
3078
3135
|
export interface IWriteDashboardElement {
|
|
3079
|
-
body_text?: string;
|
|
3080
|
-
dashboard_id?: string;
|
|
3081
|
-
look?: IWriteLookWithQuery;
|
|
3082
|
-
look_id?: string;
|
|
3083
|
-
merge_result_id?: string;
|
|
3084
|
-
note_display?: string;
|
|
3085
|
-
note_state?: string;
|
|
3086
|
-
note_text?: string;
|
|
3087
|
-
query?: IWriteQuery;
|
|
3088
|
-
query_id?: number;
|
|
3089
|
-
refresh_interval?: string;
|
|
3090
|
-
result_maker?: IWriteResultMakerWithIdVisConfigAndDynamicFields;
|
|
3091
|
-
result_maker_id?: number;
|
|
3092
|
-
subtitle_text?: string;
|
|
3093
|
-
title?: string;
|
|
3136
|
+
body_text?: string | null;
|
|
3137
|
+
dashboard_id?: string | null;
|
|
3138
|
+
look?: IWriteLookWithQuery | null;
|
|
3139
|
+
look_id?: string | null;
|
|
3140
|
+
merge_result_id?: string | null;
|
|
3141
|
+
note_display?: string | null;
|
|
3142
|
+
note_state?: string | null;
|
|
3143
|
+
note_text?: string | null;
|
|
3144
|
+
query?: IWriteQuery | null;
|
|
3145
|
+
query_id?: number | null;
|
|
3146
|
+
refresh_interval?: string | null;
|
|
3147
|
+
result_maker?: IWriteResultMakerWithIdVisConfigAndDynamicFields | null;
|
|
3148
|
+
result_maker_id?: number | null;
|
|
3149
|
+
subtitle_text?: string | null;
|
|
3150
|
+
title?: string | null;
|
|
3094
3151
|
title_hidden?: boolean;
|
|
3095
|
-
title_text?: string;
|
|
3096
|
-
type?: string;
|
|
3152
|
+
title_text?: string | null;
|
|
3153
|
+
type?: string | null;
|
|
3097
3154
|
}
|
|
3098
3155
|
export interface IWriteDashboardFilter {
|
|
3099
|
-
name?: string;
|
|
3100
|
-
title?: string;
|
|
3101
|
-
type?: string;
|
|
3102
|
-
default_value?: string;
|
|
3103
|
-
model?: string;
|
|
3104
|
-
explore?: string;
|
|
3105
|
-
dimension?: string;
|
|
3106
|
-
row?: number;
|
|
3107
|
-
listens_to_filters?: string[];
|
|
3156
|
+
name?: string | null;
|
|
3157
|
+
title?: string | null;
|
|
3158
|
+
type?: string | null;
|
|
3159
|
+
default_value?: string | null;
|
|
3160
|
+
model?: string | null;
|
|
3161
|
+
explore?: string | null;
|
|
3162
|
+
dimension?: string | null;
|
|
3163
|
+
row?: number | null;
|
|
3164
|
+
listens_to_filters?: string[] | null;
|
|
3108
3165
|
allow_multiple_values?: boolean;
|
|
3109
3166
|
required?: boolean;
|
|
3110
|
-
ui_config?: IDictionary<any
|
|
3167
|
+
ui_config?: IDictionary<any> | null;
|
|
3111
3168
|
}
|
|
3112
3169
|
export interface IWriteDashboardLayout {
|
|
3113
|
-
dashboard_id?: string;
|
|
3114
|
-
type?: string;
|
|
3170
|
+
dashboard_id?: string | null;
|
|
3171
|
+
type?: string | null;
|
|
3115
3172
|
active?: boolean;
|
|
3116
|
-
column_width?: number;
|
|
3117
|
-
width?: number;
|
|
3173
|
+
column_width?: number | null;
|
|
3174
|
+
width?: number | null;
|
|
3118
3175
|
}
|
|
3119
3176
|
export interface IWriteDashboardLayoutComponent {
|
|
3120
|
-
dashboard_layout_id?: string;
|
|
3121
|
-
dashboard_element_id?: string;
|
|
3122
|
-
row?: number;
|
|
3123
|
-
column?: number;
|
|
3124
|
-
width?: number;
|
|
3125
|
-
height?: number;
|
|
3177
|
+
dashboard_layout_id?: string | null;
|
|
3178
|
+
dashboard_element_id?: string | null;
|
|
3179
|
+
row?: number | null;
|
|
3180
|
+
column?: number | null;
|
|
3181
|
+
width?: number | null;
|
|
3182
|
+
height?: number | null;
|
|
3126
3183
|
}
|
|
3127
3184
|
export interface IWriteDatagroup {
|
|
3128
|
-
stale_before?: number;
|
|
3129
|
-
triggered_at?: number;
|
|
3185
|
+
stale_before?: number | null;
|
|
3186
|
+
triggered_at?: number | null;
|
|
3130
3187
|
}
|
|
3131
3188
|
export interface IWriteDBConnection {
|
|
3132
3189
|
name?: string;
|
|
3133
|
-
host?: string;
|
|
3134
|
-
port?: string;
|
|
3135
|
-
username?: string;
|
|
3136
|
-
password?: string;
|
|
3137
|
-
certificate?: string;
|
|
3138
|
-
file_type?: string;
|
|
3139
|
-
database?: string;
|
|
3140
|
-
db_timezone?: string;
|
|
3141
|
-
query_timezone?: string;
|
|
3142
|
-
schema?: string;
|
|
3143
|
-
max_connections?: number;
|
|
3144
|
-
max_billing_gigabytes?: string;
|
|
3190
|
+
host?: string | null;
|
|
3191
|
+
port?: string | null;
|
|
3192
|
+
username?: string | null;
|
|
3193
|
+
password?: string | null;
|
|
3194
|
+
certificate?: string | null;
|
|
3195
|
+
file_type?: string | null;
|
|
3196
|
+
database?: string | null;
|
|
3197
|
+
db_timezone?: string | null;
|
|
3198
|
+
query_timezone?: string | null;
|
|
3199
|
+
schema?: string | null;
|
|
3200
|
+
max_connections?: number | null;
|
|
3201
|
+
max_billing_gigabytes?: string | null;
|
|
3145
3202
|
ssl?: boolean;
|
|
3146
3203
|
verify_ssl?: boolean;
|
|
3147
|
-
tmp_db_name?: string;
|
|
3148
|
-
jdbc_additional_params?: string;
|
|
3149
|
-
pool_timeout?: number;
|
|
3150
|
-
dialect_name?: string;
|
|
3151
|
-
user_db_credentials?: boolean;
|
|
3152
|
-
user_attribute_fields?: string[];
|
|
3153
|
-
maintenance_cron?: string;
|
|
3204
|
+
tmp_db_name?: string | null;
|
|
3205
|
+
jdbc_additional_params?: string | null;
|
|
3206
|
+
pool_timeout?: number | null;
|
|
3207
|
+
dialect_name?: string | null;
|
|
3208
|
+
user_db_credentials?: boolean | null;
|
|
3209
|
+
user_attribute_fields?: string[] | null;
|
|
3210
|
+
maintenance_cron?: string | null;
|
|
3154
3211
|
sql_runner_precache_tables?: boolean;
|
|
3155
3212
|
sql_writing_with_info_schema?: boolean;
|
|
3156
|
-
after_connect_statements?: string;
|
|
3157
|
-
pdt_context_override?: IWriteDBConnectionOverride;
|
|
3158
|
-
tunnel_id?: string;
|
|
3159
|
-
pdt_concurrency?: number;
|
|
3160
|
-
disable_context_comment?: boolean;
|
|
3161
|
-
oauth_application_id?: number;
|
|
3162
|
-
always_retry_failed_builds?: boolean;
|
|
3213
|
+
after_connect_statements?: string | null;
|
|
3214
|
+
pdt_context_override?: IWriteDBConnectionOverride | null;
|
|
3215
|
+
tunnel_id?: string | null;
|
|
3216
|
+
pdt_concurrency?: number | null;
|
|
3217
|
+
disable_context_comment?: boolean | null;
|
|
3218
|
+
oauth_application_id?: number | null;
|
|
3219
|
+
always_retry_failed_builds?: boolean | null;
|
|
3163
3220
|
}
|
|
3164
3221
|
export interface IWriteDBConnectionOverride {
|
|
3165
3222
|
context?: string;
|
|
3166
|
-
host?: string;
|
|
3167
|
-
port?: string;
|
|
3168
|
-
username?: string;
|
|
3169
|
-
password?: string;
|
|
3170
|
-
certificate?: string;
|
|
3171
|
-
file_type?: string;
|
|
3172
|
-
database?: string;
|
|
3173
|
-
schema?: string;
|
|
3174
|
-
jdbc_additional_params?: string;
|
|
3175
|
-
after_connect_statements?: string;
|
|
3223
|
+
host?: string | null;
|
|
3224
|
+
port?: string | null;
|
|
3225
|
+
username?: string | null;
|
|
3226
|
+
password?: string | null;
|
|
3227
|
+
certificate?: string | null;
|
|
3228
|
+
file_type?: string | null;
|
|
3229
|
+
database?: string | null;
|
|
3230
|
+
schema?: string | null;
|
|
3231
|
+
jdbc_additional_params?: string | null;
|
|
3232
|
+
after_connect_statements?: string | null;
|
|
3233
|
+
}
|
|
3234
|
+
export interface IWriteEmbedSecret {
|
|
3235
|
+
algorithm?: string | null;
|
|
3236
|
+
enabled?: boolean;
|
|
3176
3237
|
}
|
|
3177
3238
|
export interface IWriteExternalOauthApplication {
|
|
3178
3239
|
name?: string;
|
|
3179
3240
|
client_id?: string;
|
|
3180
3241
|
client_secret?: string;
|
|
3181
|
-
dialect_name?: string;
|
|
3242
|
+
dialect_name?: string | null;
|
|
3182
3243
|
}
|
|
3183
3244
|
export interface IWriteFolderBase {
|
|
3184
3245
|
name: string;
|
|
3185
|
-
parent_id?: string;
|
|
3246
|
+
parent_id?: string | null;
|
|
3186
3247
|
}
|
|
3187
3248
|
export interface IWriteGitBranch {
|
|
3188
|
-
name?: string;
|
|
3189
|
-
ref?: string;
|
|
3249
|
+
name?: string | null;
|
|
3250
|
+
ref?: string | null;
|
|
3190
3251
|
}
|
|
3191
3252
|
export interface IWriteGroup {
|
|
3192
3253
|
can_add_to_content_metadata?: boolean;
|
|
3193
|
-
name?: string;
|
|
3254
|
+
name?: string | null;
|
|
3194
3255
|
}
|
|
3195
3256
|
export interface IWriteIntegration {
|
|
3196
3257
|
enabled?: boolean;
|
|
3197
|
-
params?: IIntegrationParam[];
|
|
3198
|
-
installed_delegate_oauth_targets?: number[];
|
|
3258
|
+
params?: IIntegrationParam[] | null;
|
|
3259
|
+
installed_delegate_oauth_targets?: number[] | null;
|
|
3199
3260
|
}
|
|
3200
3261
|
export interface IWriteIntegrationHub {
|
|
3201
3262
|
url?: string;
|
|
3202
|
-
authorization_token?: string;
|
|
3263
|
+
authorization_token?: string | null;
|
|
3203
3264
|
}
|
|
3204
3265
|
export interface IWriteInternalHelpResources {
|
|
3205
3266
|
enabled?: boolean;
|
|
3206
3267
|
}
|
|
3207
3268
|
export interface IWriteInternalHelpResourcesContent {
|
|
3208
|
-
organization_name?: string;
|
|
3209
|
-
markdown_content?: string;
|
|
3269
|
+
organization_name?: string | null;
|
|
3270
|
+
markdown_content?: string | null;
|
|
3210
3271
|
}
|
|
3211
3272
|
export interface IWriteLDAPConfig {
|
|
3212
3273
|
alternate_email_login_allowed?: boolean;
|
|
3213
|
-
auth_password?: string;
|
|
3274
|
+
auth_password?: string | null;
|
|
3214
3275
|
auth_requires_role?: boolean;
|
|
3215
|
-
auth_username?: string;
|
|
3216
|
-
connection_host?: string;
|
|
3217
|
-
connection_port?: string;
|
|
3276
|
+
auth_username?: string | null;
|
|
3277
|
+
connection_host?: string | null;
|
|
3278
|
+
connection_port?: string | null;
|
|
3218
3279
|
connection_tls?: boolean;
|
|
3219
3280
|
connection_tls_no_verify?: boolean;
|
|
3220
|
-
default_new_user_group_ids?: number[];
|
|
3221
|
-
default_new_user_role_ids?: number[];
|
|
3281
|
+
default_new_user_group_ids?: number[] | null;
|
|
3282
|
+
default_new_user_role_ids?: number[] | null;
|
|
3222
3283
|
enabled?: boolean;
|
|
3223
3284
|
force_no_page?: boolean;
|
|
3224
|
-
groups_base_dn?: string;
|
|
3225
|
-
groups_finder_type?: string;
|
|
3226
|
-
groups_member_attribute?: string;
|
|
3227
|
-
groups_objectclasses?: string;
|
|
3228
|
-
groups_user_attribute?: string;
|
|
3229
|
-
groups_with_role_ids?: ILDAPGroupWrite[];
|
|
3285
|
+
groups_base_dn?: string | null;
|
|
3286
|
+
groups_finder_type?: string | null;
|
|
3287
|
+
groups_member_attribute?: string | null;
|
|
3288
|
+
groups_objectclasses?: string | null;
|
|
3289
|
+
groups_user_attribute?: string | null;
|
|
3290
|
+
groups_with_role_ids?: ILDAPGroupWrite[] | null;
|
|
3230
3291
|
merge_new_users_by_email?: boolean;
|
|
3231
3292
|
set_roles_from_groups?: boolean;
|
|
3232
|
-
test_ldap_password?: string;
|
|
3233
|
-
test_ldap_user?: string;
|
|
3234
|
-
user_attribute_map_email?: string;
|
|
3235
|
-
user_attribute_map_first_name?: string;
|
|
3236
|
-
user_attribute_map_last_name?: string;
|
|
3237
|
-
user_attribute_map_ldap_id?: string;
|
|
3238
|
-
user_attributes_with_ids?: ILDAPUserAttributeWrite[];
|
|
3239
|
-
user_bind_base_dn?: string;
|
|
3240
|
-
user_custom_filter?: string;
|
|
3241
|
-
user_id_attribute_names?: string;
|
|
3242
|
-
user_objectclass?: string;
|
|
3293
|
+
test_ldap_password?: string | null;
|
|
3294
|
+
test_ldap_user?: string | null;
|
|
3295
|
+
user_attribute_map_email?: string | null;
|
|
3296
|
+
user_attribute_map_first_name?: string | null;
|
|
3297
|
+
user_attribute_map_last_name?: string | null;
|
|
3298
|
+
user_attribute_map_ldap_id?: string | null;
|
|
3299
|
+
user_attributes_with_ids?: ILDAPUserAttributeWrite[] | null;
|
|
3300
|
+
user_bind_base_dn?: string | null;
|
|
3301
|
+
user_custom_filter?: string | null;
|
|
3302
|
+
user_id_attribute_names?: string | null;
|
|
3303
|
+
user_objectclass?: string | null;
|
|
3243
3304
|
allow_normal_group_membership?: boolean;
|
|
3244
3305
|
allow_roles_from_normal_groups?: boolean;
|
|
3245
3306
|
allow_direct_roles?: boolean;
|
|
@@ -3248,195 +3309,195 @@ export interface IWriteLegacyFeature {
|
|
|
3248
3309
|
enabled_locally?: boolean;
|
|
3249
3310
|
}
|
|
3250
3311
|
export interface IWriteLookBasic {
|
|
3251
|
-
user_id?: number;
|
|
3312
|
+
user_id?: number | null;
|
|
3252
3313
|
}
|
|
3253
3314
|
export interface IWriteLookmlModel {
|
|
3254
|
-
allowed_db_connection_names?: string[];
|
|
3255
|
-
name?: string;
|
|
3256
|
-
project_name?: string;
|
|
3315
|
+
allowed_db_connection_names?: string[] | null;
|
|
3316
|
+
name?: string | null;
|
|
3317
|
+
project_name?: string | null;
|
|
3257
3318
|
unlimited_db_connections?: boolean;
|
|
3258
3319
|
}
|
|
3259
3320
|
export interface IWriteLookWithQuery {
|
|
3260
|
-
title?: string;
|
|
3261
|
-
user_id?: number;
|
|
3321
|
+
title?: string | null;
|
|
3322
|
+
user_id?: number | null;
|
|
3262
3323
|
deleted?: boolean;
|
|
3263
|
-
description?: string;
|
|
3324
|
+
description?: string | null;
|
|
3264
3325
|
is_run_on_load?: boolean;
|
|
3265
3326
|
public?: boolean;
|
|
3266
|
-
query_id?: number;
|
|
3267
|
-
folder?: IWriteFolderBase;
|
|
3268
|
-
folder_id?: string;
|
|
3269
|
-
query?: IWriteQuery;
|
|
3327
|
+
query_id?: number | null;
|
|
3328
|
+
folder?: IWriteFolderBase | null;
|
|
3329
|
+
folder_id?: string | null;
|
|
3330
|
+
query?: IWriteQuery | null;
|
|
3270
3331
|
}
|
|
3271
3332
|
export interface IWriteMergeQuery {
|
|
3272
|
-
column_limit?: string;
|
|
3273
|
-
dynamic_fields?: string;
|
|
3274
|
-
pivots?: string[];
|
|
3275
|
-
sorts?: string[];
|
|
3276
|
-
source_queries?: IMergeQuerySourceQuery[];
|
|
3333
|
+
column_limit?: string | null;
|
|
3334
|
+
dynamic_fields?: string | null;
|
|
3335
|
+
pivots?: string[] | null;
|
|
3336
|
+
sorts?: string[] | null;
|
|
3337
|
+
source_queries?: IMergeQuerySourceQuery[] | null;
|
|
3277
3338
|
total?: boolean;
|
|
3278
|
-
vis_config?: IDictionary<string
|
|
3339
|
+
vis_config?: IDictionary<string> | null;
|
|
3279
3340
|
}
|
|
3280
3341
|
export interface IWriteModelSet {
|
|
3281
|
-
models?: string[];
|
|
3282
|
-
name?: string;
|
|
3342
|
+
models?: string[] | null;
|
|
3343
|
+
name?: string | null;
|
|
3283
3344
|
}
|
|
3284
3345
|
export interface IWriteOauthClientApp {
|
|
3285
3346
|
redirect_uri?: string;
|
|
3286
3347
|
display_name?: string;
|
|
3287
3348
|
description?: string;
|
|
3288
3349
|
enabled?: boolean;
|
|
3289
|
-
group_id?: number;
|
|
3350
|
+
group_id?: number | null;
|
|
3290
3351
|
}
|
|
3291
3352
|
export interface IWriteOIDCConfig {
|
|
3292
3353
|
alternate_email_login_allowed?: boolean;
|
|
3293
|
-
audience?: string;
|
|
3354
|
+
audience?: string | null;
|
|
3294
3355
|
auth_requires_role?: boolean;
|
|
3295
|
-
authorization_endpoint?: string;
|
|
3296
|
-
default_new_user_group_ids?: number[];
|
|
3297
|
-
default_new_user_role_ids?: number[];
|
|
3356
|
+
authorization_endpoint?: string | null;
|
|
3357
|
+
default_new_user_group_ids?: number[] | null;
|
|
3358
|
+
default_new_user_role_ids?: number[] | null;
|
|
3298
3359
|
enabled?: boolean;
|
|
3299
|
-
groups_attribute?: string;
|
|
3300
|
-
groups_with_role_ids?: IOIDCGroupWrite[];
|
|
3301
|
-
identifier?: string;
|
|
3302
|
-
issuer?: string;
|
|
3303
|
-
new_user_migration_types?: string;
|
|
3304
|
-
scopes?: string[];
|
|
3305
|
-
secret?: string;
|
|
3360
|
+
groups_attribute?: string | null;
|
|
3361
|
+
groups_with_role_ids?: IOIDCGroupWrite[] | null;
|
|
3362
|
+
identifier?: string | null;
|
|
3363
|
+
issuer?: string | null;
|
|
3364
|
+
new_user_migration_types?: string | null;
|
|
3365
|
+
scopes?: string[] | null;
|
|
3366
|
+
secret?: string | null;
|
|
3306
3367
|
set_roles_from_groups?: boolean;
|
|
3307
|
-
token_endpoint?: string;
|
|
3308
|
-
user_attribute_map_email?: string;
|
|
3309
|
-
user_attribute_map_first_name?: string;
|
|
3310
|
-
user_attribute_map_last_name?: string;
|
|
3311
|
-
user_attributes_with_ids?: IOIDCUserAttributeWrite[];
|
|
3312
|
-
userinfo_endpoint?: string;
|
|
3368
|
+
token_endpoint?: string | null;
|
|
3369
|
+
user_attribute_map_email?: string | null;
|
|
3370
|
+
user_attribute_map_first_name?: string | null;
|
|
3371
|
+
user_attribute_map_last_name?: string | null;
|
|
3372
|
+
user_attributes_with_ids?: IOIDCUserAttributeWrite[] | null;
|
|
3373
|
+
userinfo_endpoint?: string | null;
|
|
3313
3374
|
allow_normal_group_membership?: boolean;
|
|
3314
3375
|
allow_roles_from_normal_groups?: boolean;
|
|
3315
3376
|
allow_direct_roles?: boolean;
|
|
3316
3377
|
}
|
|
3317
3378
|
export interface IWritePasswordConfig {
|
|
3318
|
-
min_length?: number;
|
|
3379
|
+
min_length?: number | null;
|
|
3319
3380
|
require_numeric?: boolean;
|
|
3320
3381
|
require_upperlower?: boolean;
|
|
3321
3382
|
require_special?: boolean;
|
|
3322
3383
|
}
|
|
3323
3384
|
export interface IWritePermissionSet {
|
|
3324
|
-
name?: string;
|
|
3325
|
-
permissions?: string[];
|
|
3385
|
+
name?: string | null;
|
|
3386
|
+
permissions?: string[] | null;
|
|
3326
3387
|
}
|
|
3327
3388
|
export interface IWriteProject {
|
|
3328
3389
|
name?: string;
|
|
3329
|
-
git_remote_url?: string;
|
|
3330
|
-
git_username?: string;
|
|
3331
|
-
git_password?: string;
|
|
3390
|
+
git_remote_url?: string | null;
|
|
3391
|
+
git_username?: string | null;
|
|
3392
|
+
git_password?: string | null;
|
|
3332
3393
|
git_production_branch_name?: string;
|
|
3333
3394
|
use_git_cookie_auth?: boolean;
|
|
3334
|
-
git_username_user_attribute?: string;
|
|
3335
|
-
git_password_user_attribute?: string;
|
|
3336
|
-
git_service_name?: string;
|
|
3337
|
-
git_application_server_http_port?: number;
|
|
3338
|
-
git_application_server_http_scheme?: string;
|
|
3339
|
-
deploy_secret?: string;
|
|
3395
|
+
git_username_user_attribute?: string | null;
|
|
3396
|
+
git_password_user_attribute?: string | null;
|
|
3397
|
+
git_service_name?: string | null;
|
|
3398
|
+
git_application_server_http_port?: number | null;
|
|
3399
|
+
git_application_server_http_scheme?: string | null;
|
|
3400
|
+
deploy_secret?: string | null;
|
|
3340
3401
|
unset_deploy_secret?: boolean;
|
|
3341
|
-
pull_request_mode?: PullRequestMode;
|
|
3402
|
+
pull_request_mode?: PullRequestMode | null;
|
|
3342
3403
|
validation_required?: boolean;
|
|
3343
3404
|
git_release_mgmt_enabled?: boolean;
|
|
3344
3405
|
allow_warnings?: boolean;
|
|
3345
|
-
dependency_status?: string;
|
|
3406
|
+
dependency_status?: string | null;
|
|
3346
3407
|
}
|
|
3347
3408
|
export interface IWriteQuery {
|
|
3348
3409
|
model: string;
|
|
3349
3410
|
view: string;
|
|
3350
|
-
fields?: string[];
|
|
3351
|
-
pivots?: string[];
|
|
3352
|
-
fill_fields?: string[];
|
|
3353
|
-
filters?: IDictionary<string
|
|
3354
|
-
filter_expression?: string;
|
|
3355
|
-
sorts?: string[];
|
|
3356
|
-
limit?: string;
|
|
3357
|
-
column_limit?: string;
|
|
3358
|
-
total?: boolean;
|
|
3359
|
-
row_total?: string;
|
|
3360
|
-
subtotals?: string[];
|
|
3361
|
-
vis_config?: IDictionary<any
|
|
3362
|
-
filter_config?: IDictionary<any
|
|
3363
|
-
visible_ui_sections?: string;
|
|
3364
|
-
dynamic_fields?: string;
|
|
3365
|
-
client_id?: string;
|
|
3366
|
-
query_timezone?: string;
|
|
3411
|
+
fields?: string[] | null;
|
|
3412
|
+
pivots?: string[] | null;
|
|
3413
|
+
fill_fields?: string[] | null;
|
|
3414
|
+
filters?: IDictionary<string> | null;
|
|
3415
|
+
filter_expression?: string | null;
|
|
3416
|
+
sorts?: string[] | null;
|
|
3417
|
+
limit?: string | null;
|
|
3418
|
+
column_limit?: string | null;
|
|
3419
|
+
total?: boolean | null;
|
|
3420
|
+
row_total?: string | null;
|
|
3421
|
+
subtotals?: string[] | null;
|
|
3422
|
+
vis_config?: IDictionary<any> | null;
|
|
3423
|
+
filter_config?: IDictionary<any> | null;
|
|
3424
|
+
visible_ui_sections?: string | null;
|
|
3425
|
+
dynamic_fields?: string | null;
|
|
3426
|
+
client_id?: string | null;
|
|
3427
|
+
query_timezone?: string | null;
|
|
3367
3428
|
}
|
|
3368
3429
|
export interface IWriteRepositoryCredential {
|
|
3369
|
-
git_username?: string;
|
|
3370
|
-
git_password?: string;
|
|
3371
|
-
ssh_public_key?: string;
|
|
3430
|
+
git_username?: string | null;
|
|
3431
|
+
git_password?: string | null;
|
|
3432
|
+
ssh_public_key?: string | null;
|
|
3372
3433
|
}
|
|
3373
3434
|
export interface IWriteResultMakerWithIdVisConfigAndDynamicFields {
|
|
3374
|
-
query?: IWriteQuery;
|
|
3435
|
+
query?: IWriteQuery | null;
|
|
3375
3436
|
}
|
|
3376
3437
|
export interface IWriteRole {
|
|
3377
|
-
name?: string;
|
|
3378
|
-
permission_set?: IWritePermissionSet;
|
|
3379
|
-
permission_set_id?: number;
|
|
3380
|
-
model_set?: IWriteModelSet;
|
|
3381
|
-
model_set_id?: number;
|
|
3438
|
+
name?: string | null;
|
|
3439
|
+
permission_set?: IWritePermissionSet | null;
|
|
3440
|
+
permission_set_id?: number | null;
|
|
3441
|
+
model_set?: IWriteModelSet | null;
|
|
3442
|
+
model_set_id?: number | null;
|
|
3382
3443
|
}
|
|
3383
3444
|
export interface IWriteSamlConfig {
|
|
3384
3445
|
enabled?: boolean;
|
|
3385
|
-
idp_cert?: string;
|
|
3386
|
-
idp_url?: string;
|
|
3387
|
-
idp_issuer?: string;
|
|
3388
|
-
idp_audience?: string;
|
|
3389
|
-
allowed_clock_drift?: number;
|
|
3390
|
-
user_attribute_map_email?: string;
|
|
3391
|
-
user_attribute_map_first_name?: string;
|
|
3392
|
-
user_attribute_map_last_name?: string;
|
|
3393
|
-
new_user_migration_types?: string;
|
|
3446
|
+
idp_cert?: string | null;
|
|
3447
|
+
idp_url?: string | null;
|
|
3448
|
+
idp_issuer?: string | null;
|
|
3449
|
+
idp_audience?: string | null;
|
|
3450
|
+
allowed_clock_drift?: number | null;
|
|
3451
|
+
user_attribute_map_email?: string | null;
|
|
3452
|
+
user_attribute_map_first_name?: string | null;
|
|
3453
|
+
user_attribute_map_last_name?: string | null;
|
|
3454
|
+
new_user_migration_types?: string | null;
|
|
3394
3455
|
alternate_email_login_allowed?: boolean;
|
|
3395
|
-
default_new_user_role_ids?: number[];
|
|
3396
|
-
default_new_user_group_ids?: number[];
|
|
3456
|
+
default_new_user_role_ids?: number[] | null;
|
|
3457
|
+
default_new_user_group_ids?: number[] | null;
|
|
3397
3458
|
set_roles_from_groups?: boolean;
|
|
3398
|
-
groups_attribute?: string;
|
|
3399
|
-
groups_with_role_ids?: ISamlGroupWrite[];
|
|
3459
|
+
groups_attribute?: string | null;
|
|
3460
|
+
groups_with_role_ids?: ISamlGroupWrite[] | null;
|
|
3400
3461
|
auth_requires_role?: boolean;
|
|
3401
|
-
user_attributes_with_ids?: ISamlUserAttributeWrite[];
|
|
3402
|
-
groups_finder_type?: string;
|
|
3403
|
-
groups_member_value?: string;
|
|
3462
|
+
user_attributes_with_ids?: ISamlUserAttributeWrite[] | null;
|
|
3463
|
+
groups_finder_type?: string | null;
|
|
3464
|
+
groups_member_value?: string | null;
|
|
3404
3465
|
bypass_login_page?: boolean;
|
|
3405
3466
|
allow_normal_group_membership?: boolean;
|
|
3406
3467
|
allow_roles_from_normal_groups?: boolean;
|
|
3407
3468
|
allow_direct_roles?: boolean;
|
|
3408
3469
|
}
|
|
3409
3470
|
export interface IWriteScheduledPlan {
|
|
3410
|
-
name?: string;
|
|
3411
|
-
user_id?: number;
|
|
3471
|
+
name?: string | null;
|
|
3472
|
+
user_id?: number | null;
|
|
3412
3473
|
run_as_recipient?: boolean;
|
|
3413
3474
|
enabled?: boolean;
|
|
3414
|
-
look_id?:
|
|
3415
|
-
dashboard_id?: number;
|
|
3416
|
-
lookml_dashboard_id?: string;
|
|
3417
|
-
filters_string?: string;
|
|
3418
|
-
dashboard_filters?: string;
|
|
3475
|
+
look_id?: string | null;
|
|
3476
|
+
dashboard_id?: number | null;
|
|
3477
|
+
lookml_dashboard_id?: string | null;
|
|
3478
|
+
filters_string?: string | null;
|
|
3479
|
+
dashboard_filters?: string | null;
|
|
3419
3480
|
require_results?: boolean;
|
|
3420
3481
|
require_no_results?: boolean;
|
|
3421
3482
|
require_change?: boolean;
|
|
3422
3483
|
send_all_results?: boolean;
|
|
3423
|
-
crontab?: string;
|
|
3424
|
-
datagroup?: string;
|
|
3425
|
-
timezone?: string;
|
|
3426
|
-
query_id?: string;
|
|
3427
|
-
scheduled_plan_destination?: IScheduledPlanDestination[];
|
|
3484
|
+
crontab?: string | null;
|
|
3485
|
+
datagroup?: string | null;
|
|
3486
|
+
timezone?: string | null;
|
|
3487
|
+
query_id?: string | null;
|
|
3488
|
+
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
3428
3489
|
run_once?: boolean;
|
|
3429
3490
|
include_links?: boolean;
|
|
3430
|
-
pdf_paper_size?: string;
|
|
3491
|
+
pdf_paper_size?: string | null;
|
|
3431
3492
|
pdf_landscape?: boolean;
|
|
3432
3493
|
embed?: boolean;
|
|
3433
|
-
color_theme?: string;
|
|
3494
|
+
color_theme?: string | null;
|
|
3434
3495
|
long_tables?: boolean;
|
|
3435
|
-
inline_table_width?: number;
|
|
3496
|
+
inline_table_width?: number | null;
|
|
3436
3497
|
}
|
|
3437
3498
|
export interface IWriteSessionConfig {
|
|
3438
3499
|
allow_persistent_sessions?: boolean;
|
|
3439
|
-
session_minutes?: number;
|
|
3500
|
+
session_minutes?: number | null;
|
|
3440
3501
|
unlimited_sessions_per_user?: boolean;
|
|
3441
3502
|
use_inactivity_based_logout?: boolean;
|
|
3442
3503
|
track_session_location?: boolean;
|
|
@@ -3445,8 +3506,9 @@ export interface IWriteSetting {
|
|
|
3445
3506
|
extension_framework_enabled?: boolean;
|
|
3446
3507
|
marketplace_auto_install_enabled?: boolean;
|
|
3447
3508
|
marketplace_enabled?: boolean;
|
|
3448
|
-
whitelabel_configuration?: IWriteWhitelabelConfiguration;
|
|
3449
|
-
custom_welcome_email?: ICustomWelcomeEmail;
|
|
3509
|
+
whitelabel_configuration?: IWriteWhitelabelConfiguration | null;
|
|
3510
|
+
custom_welcome_email?: ICustomWelcomeEmail | null;
|
|
3511
|
+
onboarding_enabled?: boolean;
|
|
3450
3512
|
}
|
|
3451
3513
|
export interface IWriteSshServer {
|
|
3452
3514
|
ssh_server_name?: string;
|
|
@@ -3460,38 +3522,38 @@ export interface IWriteSshTunnel {
|
|
|
3460
3522
|
database_port?: number;
|
|
3461
3523
|
}
|
|
3462
3524
|
export interface IWriteTheme {
|
|
3463
|
-
begin_at?: Date;
|
|
3464
|
-
end_at?: Date;
|
|
3525
|
+
begin_at?: Date | null;
|
|
3526
|
+
end_at?: Date | null;
|
|
3465
3527
|
name?: string;
|
|
3466
|
-
settings?: IThemeSettings;
|
|
3528
|
+
settings?: IThemeSettings | null;
|
|
3467
3529
|
}
|
|
3468
3530
|
export interface IWriteUser {
|
|
3469
|
-
credentials_email?: IWriteCredentialsEmail;
|
|
3470
|
-
first_name?: string;
|
|
3471
|
-
home_folder_id?: string;
|
|
3531
|
+
credentials_email?: IWriteCredentialsEmail | null;
|
|
3532
|
+
first_name?: string | null;
|
|
3533
|
+
home_folder_id?: string | null;
|
|
3472
3534
|
is_disabled?: boolean;
|
|
3473
|
-
last_name?: string;
|
|
3474
|
-
locale?: string;
|
|
3475
|
-
models_dir_validated?: boolean;
|
|
3476
|
-
ui_state?: IDictionary<string
|
|
3535
|
+
last_name?: string | null;
|
|
3536
|
+
locale?: string | null;
|
|
3537
|
+
models_dir_validated?: boolean | null;
|
|
3538
|
+
ui_state?: IDictionary<string> | null;
|
|
3477
3539
|
}
|
|
3478
3540
|
export interface IWriteUserAttribute {
|
|
3479
|
-
name: string;
|
|
3480
|
-
label: string;
|
|
3481
|
-
type: string;
|
|
3482
|
-
default_value?: string;
|
|
3541
|
+
name: string | null;
|
|
3542
|
+
label: string | null;
|
|
3543
|
+
type: string | null;
|
|
3544
|
+
default_value?: string | null;
|
|
3483
3545
|
value_is_hidden?: boolean;
|
|
3484
3546
|
user_can_view?: boolean;
|
|
3485
3547
|
user_can_edit?: boolean;
|
|
3486
|
-
hidden_value_domain_whitelist?: string;
|
|
3548
|
+
hidden_value_domain_whitelist?: string | null;
|
|
3487
3549
|
}
|
|
3488
3550
|
export interface IWriteUserAttributeWithValue {
|
|
3489
|
-
value?: string;
|
|
3551
|
+
value?: string | null;
|
|
3490
3552
|
}
|
|
3491
3553
|
export interface IWriteWhitelabelConfiguration {
|
|
3492
|
-
logo_file?: string;
|
|
3493
|
-
favicon_file?: string;
|
|
3494
|
-
default_title?: string;
|
|
3554
|
+
logo_file?: string | null;
|
|
3555
|
+
favicon_file?: string | null;
|
|
3556
|
+
default_title?: string | null;
|
|
3495
3557
|
show_help_menu?: boolean;
|
|
3496
3558
|
show_docs?: boolean;
|
|
3497
3559
|
show_email_sub_options?: boolean;
|