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