@looker/sdk 21.16.0 → 21.20.1

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