@looker/sdk 21.18.0 → 22.0.0

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