@looker/sdk 26.2.0 → 26.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/lib/4.0/funcs.d.ts +20 -1
- package/lib/4.0/funcs.js +1080 -853
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +20 -1
- package/lib/4.0/methods.js +755 -566
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +20 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +579 -1
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +20 -1
- package/lib/4.0/streams.js +755 -566
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1075 -848
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +755 -566
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +5 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +755 -566
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/lib/4.0/models.d.ts
CHANGED
|
@@ -5,6 +5,27 @@ export interface IAccessToken {
|
|
|
5
5
|
expires_in?: number;
|
|
6
6
|
refresh_token?: string | null;
|
|
7
7
|
}
|
|
8
|
+
export interface IAgent {
|
|
9
|
+
can?: IDictionary<boolean>;
|
|
10
|
+
id?: string;
|
|
11
|
+
created_by_user_id?: string;
|
|
12
|
+
created_by_name?: string | null;
|
|
13
|
+
created_by_first_name?: string | null;
|
|
14
|
+
created_by_last_name?: string | null;
|
|
15
|
+
created_by_avatar_url?: string | null;
|
|
16
|
+
name?: string;
|
|
17
|
+
description?: string;
|
|
18
|
+
category?: string | null;
|
|
19
|
+
sources?: ISource[];
|
|
20
|
+
has_inaccessible_source?: boolean;
|
|
21
|
+
context?: IContext;
|
|
22
|
+
deleted?: boolean;
|
|
23
|
+
created_at?: Date;
|
|
24
|
+
updated_at?: Date;
|
|
25
|
+
content_metadata_id?: string;
|
|
26
|
+
code_interpreter?: boolean;
|
|
27
|
+
studio_agent_id?: string | null;
|
|
28
|
+
}
|
|
8
29
|
export interface IAlert {
|
|
9
30
|
applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
|
|
10
31
|
comparison_type: ComparisonType;
|
|
@@ -16,6 +37,7 @@ export interface IAlert {
|
|
|
16
37
|
custom_title?: string | null;
|
|
17
38
|
dashboard_element_id?: string | null;
|
|
18
39
|
description?: string | null;
|
|
40
|
+
enhancements?: Enhancements | null;
|
|
19
41
|
destinations: IAlertDestination[] | null;
|
|
20
42
|
field: IAlertField;
|
|
21
43
|
followed?: boolean;
|
|
@@ -70,6 +92,7 @@ export interface IAlertNotifications {
|
|
|
70
92
|
ran_at?: string;
|
|
71
93
|
alert?: IMobilePayload;
|
|
72
94
|
notification_type?: string | null;
|
|
95
|
+
triggering_field_title?: string | null;
|
|
73
96
|
}
|
|
74
97
|
export interface IAlertPatch {
|
|
75
98
|
owner_id?: string | null;
|
|
@@ -77,11 +100,32 @@ export interface IAlertPatch {
|
|
|
77
100
|
disabled_reason?: string | null;
|
|
78
101
|
is_public?: boolean | null;
|
|
79
102
|
threshold?: number | null;
|
|
103
|
+
enhancements?: Enhancements | null;
|
|
80
104
|
}
|
|
81
105
|
export declare enum Align {
|
|
82
106
|
left = "left",
|
|
83
107
|
right = "right"
|
|
84
108
|
}
|
|
109
|
+
export interface IAnalysisEvent {
|
|
110
|
+
plannerReasoning?: string | null;
|
|
111
|
+
coderInstruction?: string | null;
|
|
112
|
+
code?: string | null;
|
|
113
|
+
executionOutput?: string | null;
|
|
114
|
+
executionError?: string | null;
|
|
115
|
+
resultVegaChartJson?: string | null;
|
|
116
|
+
resultNaturalLanguage?: string | null;
|
|
117
|
+
resultCsvData?: string | null;
|
|
118
|
+
resultReferenceData?: string | null;
|
|
119
|
+
error?: string | null;
|
|
120
|
+
}
|
|
121
|
+
export interface IAnalysisMessage {
|
|
122
|
+
query?: IAnalysisQuery;
|
|
123
|
+
progressEvent?: IAnalysisEvent;
|
|
124
|
+
}
|
|
125
|
+
export interface IAnalysisQuery {
|
|
126
|
+
question?: string | null;
|
|
127
|
+
dataResultNames?: string[] | null;
|
|
128
|
+
}
|
|
85
129
|
export interface IApiSession {
|
|
86
130
|
can?: IDictionary<boolean>;
|
|
87
131
|
workspace_id?: string | null;
|
|
@@ -159,6 +203,23 @@ export interface IBackupConfiguration {
|
|
|
159
203
|
custom_s3_secret?: string | null;
|
|
160
204
|
url?: string | null;
|
|
161
205
|
}
|
|
206
|
+
export interface IBigQueryJob {
|
|
207
|
+
projectId?: string;
|
|
208
|
+
jobId?: string;
|
|
209
|
+
location?: string | null;
|
|
210
|
+
destinationTable?: IBigQueryTableReference;
|
|
211
|
+
schema?: IDataSourceSchema;
|
|
212
|
+
}
|
|
213
|
+
export interface IBigQueryTableReference {
|
|
214
|
+
projectId?: string;
|
|
215
|
+
datasetId?: string;
|
|
216
|
+
tableId?: string;
|
|
217
|
+
schema?: IDataSourceSchema;
|
|
218
|
+
}
|
|
219
|
+
export interface IBlob {
|
|
220
|
+
mimeType?: string;
|
|
221
|
+
data?: string;
|
|
222
|
+
}
|
|
162
223
|
export interface IBoard {
|
|
163
224
|
can?: IDictionary<boolean>;
|
|
164
225
|
content_metadata_id?: string | null;
|
|
@@ -232,24 +293,217 @@ export declare enum CertificationStatus {
|
|
|
232
293
|
certified = "certified",
|
|
233
294
|
revoked = "revoked"
|
|
234
295
|
}
|
|
296
|
+
export interface IChartMessage {
|
|
297
|
+
query?: IChartQuery;
|
|
298
|
+
result?: IChartResult;
|
|
299
|
+
}
|
|
300
|
+
export interface IChartQuery {
|
|
301
|
+
instructions?: string | null;
|
|
302
|
+
dataResultName?: string | null;
|
|
303
|
+
}
|
|
304
|
+
export interface IChartResult {
|
|
305
|
+
vegaConfig?: string | null;
|
|
306
|
+
image?: IBlob;
|
|
307
|
+
}
|
|
308
|
+
export interface IChatMessage {
|
|
309
|
+
timestamp?: Date | null;
|
|
310
|
+
userMessage?: IUserMessage;
|
|
311
|
+
systemMessage?: ISystemMessage;
|
|
312
|
+
messageId?: string | null;
|
|
313
|
+
}
|
|
314
|
+
export interface ICIAssertValidatorErrorItem {
|
|
315
|
+
assert_error?: ICIAssertValidatorTestError;
|
|
316
|
+
generic_error?: ICIGenericError;
|
|
317
|
+
}
|
|
318
|
+
export interface ICIAssertValidatorResult {
|
|
319
|
+
name?: string;
|
|
320
|
+
status?: string;
|
|
321
|
+
tested?: ICIAssertValidatorTestedExplore[];
|
|
322
|
+
}
|
|
323
|
+
export interface ICIAssertValidatorTestedExplore {
|
|
324
|
+
model?: string;
|
|
325
|
+
explore?: string;
|
|
326
|
+
status?: string;
|
|
327
|
+
skip_reason?: string | null;
|
|
328
|
+
error_count?: number | null;
|
|
329
|
+
errors?: ICIAssertValidatorErrorItem[];
|
|
330
|
+
success_count?: string;
|
|
331
|
+
successes?: ICIAssertValidatorTestSuccess[];
|
|
332
|
+
}
|
|
333
|
+
export interface ICIAssertValidatorTestError {
|
|
334
|
+
model?: string;
|
|
335
|
+
explore?: string;
|
|
336
|
+
test_name?: string;
|
|
337
|
+
explore_url?: string;
|
|
338
|
+
lookml_url?: string;
|
|
339
|
+
message?: string;
|
|
340
|
+
}
|
|
341
|
+
export interface ICIAssertValidatorTestSuccess {
|
|
342
|
+
model?: string;
|
|
343
|
+
explore?: string;
|
|
344
|
+
test_name?: string;
|
|
345
|
+
explore_url?: string;
|
|
346
|
+
lookml_url?: string;
|
|
347
|
+
}
|
|
235
348
|
export interface ICIChangeRequest {
|
|
236
349
|
change_request_number?: number;
|
|
237
350
|
change_request_url?: string;
|
|
238
351
|
change_request_name?: string;
|
|
239
352
|
change_request_commits_url?: string;
|
|
240
353
|
}
|
|
354
|
+
export interface ICIContentValidatorContentError {
|
|
355
|
+
type?: string;
|
|
356
|
+
title?: string;
|
|
357
|
+
detail?: string;
|
|
358
|
+
status?: string | null;
|
|
359
|
+
instance?: string | null;
|
|
360
|
+
model?: string | null;
|
|
361
|
+
explore?: string | null;
|
|
362
|
+
field_name?: string;
|
|
363
|
+
content_type?: string;
|
|
364
|
+
folder?: string | null;
|
|
365
|
+
url?: string;
|
|
366
|
+
tile_type?: string | null;
|
|
367
|
+
tile_title?: string | null;
|
|
368
|
+
message?: string;
|
|
369
|
+
}
|
|
370
|
+
export interface ICIContentValidatorErrorItem {
|
|
371
|
+
content_error?: ICIContentValidatorContentError;
|
|
372
|
+
generic_error?: ICIGenericError;
|
|
373
|
+
}
|
|
374
|
+
export interface ICIContentValidatorResult {
|
|
375
|
+
name?: string;
|
|
376
|
+
incremental?: boolean;
|
|
377
|
+
status?: string;
|
|
378
|
+
tested?: ICIContentValidatorTestedExplore[];
|
|
379
|
+
}
|
|
380
|
+
export interface ICIContentValidatorTestedExplore {
|
|
381
|
+
model?: string;
|
|
382
|
+
explore?: string;
|
|
383
|
+
status?: string;
|
|
384
|
+
skip_reason?: string | null;
|
|
385
|
+
error_count?: number | null;
|
|
386
|
+
errors?: ICIContentValidatorErrorItem[];
|
|
387
|
+
}
|
|
388
|
+
export interface ICIGenericError {
|
|
389
|
+
type?: string;
|
|
390
|
+
title?: string;
|
|
391
|
+
detail?: string;
|
|
392
|
+
status?: string | null;
|
|
393
|
+
instance?: string | null;
|
|
394
|
+
}
|
|
241
395
|
export interface ICIGitState {
|
|
242
396
|
branch?: string | null;
|
|
243
397
|
repository?: string | null;
|
|
244
398
|
commit_ref?: string | null;
|
|
245
399
|
target?: string | null;
|
|
246
400
|
}
|
|
401
|
+
export interface ICILookMLValidatorError {
|
|
402
|
+
type?: string;
|
|
403
|
+
title?: string;
|
|
404
|
+
detail?: string;
|
|
405
|
+
status?: string | null;
|
|
406
|
+
instance?: string | null;
|
|
407
|
+
model?: string | null;
|
|
408
|
+
explore?: string | null;
|
|
409
|
+
field_name?: string | null;
|
|
410
|
+
message?: string | null;
|
|
411
|
+
severity?: string | null;
|
|
412
|
+
line_number?: string | null;
|
|
413
|
+
lookml_url?: string | null;
|
|
414
|
+
file_path?: string | null;
|
|
415
|
+
}
|
|
416
|
+
export interface ICILookMLValidatorErrorItem {
|
|
417
|
+
lookml_error?: ICILookMLValidatorError;
|
|
418
|
+
generic_error?: ICIGenericError;
|
|
419
|
+
}
|
|
420
|
+
export interface ICILookMLValidatorResult {
|
|
421
|
+
name?: string;
|
|
422
|
+
status?: string;
|
|
423
|
+
error_count?: number | null;
|
|
424
|
+
errors?: ICILookMLValidatorErrorItem[];
|
|
425
|
+
}
|
|
426
|
+
export interface ICIRun {
|
|
427
|
+
can?: IDictionary<boolean>;
|
|
428
|
+
id?: string;
|
|
429
|
+
ci_suite_id?: string;
|
|
430
|
+
project_id?: string | null;
|
|
431
|
+
status?: string;
|
|
432
|
+
title?: string;
|
|
433
|
+
trigger_type?: string;
|
|
434
|
+
user_id?: number | null;
|
|
435
|
+
triggered_by_name?: string | null;
|
|
436
|
+
execution_id?: string | null;
|
|
437
|
+
result?: ICIRunResult;
|
|
438
|
+
change_request_number?: number | null;
|
|
439
|
+
change_request_url?: string | null;
|
|
440
|
+
change_request_name?: string | null;
|
|
441
|
+
change_request_commits_url?: string | null;
|
|
442
|
+
git_service_name?: string | null;
|
|
443
|
+
git_commit_ref?: string | null;
|
|
444
|
+
git_branch_name?: string | null;
|
|
445
|
+
git_repository_name?: string | null;
|
|
446
|
+
git_target_branch_name?: string | null;
|
|
447
|
+
git_status_url?: string | null;
|
|
448
|
+
git_target_url?: string | null;
|
|
449
|
+
created_at?: Date;
|
|
450
|
+
started_at?: Date | null;
|
|
451
|
+
finished_at?: Date | null;
|
|
452
|
+
retries?: number;
|
|
453
|
+
assigned_ci_user_id?: number | null;
|
|
454
|
+
assigned_ci_user_at?: Date | null;
|
|
455
|
+
crashed_check_count?: number;
|
|
456
|
+
run_url?: string;
|
|
457
|
+
}
|
|
458
|
+
export interface ICIRunResult {
|
|
459
|
+
sql_result?: ICISqlValidatorResult;
|
|
460
|
+
sql_error?: ICIGenericError;
|
|
461
|
+
assert_result?: ICIAssertValidatorResult;
|
|
462
|
+
assert_error?: ICIGenericError;
|
|
463
|
+
content_result?: ICIContentValidatorResult;
|
|
464
|
+
content_error?: ICIGenericError;
|
|
465
|
+
lookml_result?: ICILookMLValidatorResult;
|
|
466
|
+
lookml_error?: ICIGenericError;
|
|
467
|
+
generic_error?: ICIGenericError;
|
|
468
|
+
}
|
|
247
469
|
export interface ICIScheduleTrigger {
|
|
248
470
|
enabled?: boolean;
|
|
249
471
|
day?: string | null;
|
|
250
472
|
hour?: string | null;
|
|
251
473
|
frequency?: string;
|
|
252
474
|
}
|
|
475
|
+
export interface ICISqlValidatorError {
|
|
476
|
+
type?: string;
|
|
477
|
+
title?: string;
|
|
478
|
+
detail?: string;
|
|
479
|
+
status?: string | null;
|
|
480
|
+
instance?: string | null;
|
|
481
|
+
model?: string;
|
|
482
|
+
explore?: string;
|
|
483
|
+
message?: string;
|
|
484
|
+
explore_url?: string | null;
|
|
485
|
+
lookml_url?: string | null;
|
|
486
|
+
dimension?: string | null;
|
|
487
|
+
line_number?: string | null;
|
|
488
|
+
}
|
|
489
|
+
export interface ICISqlValidatorErrorItem {
|
|
490
|
+
sql_error?: ICISqlValidatorError;
|
|
491
|
+
generic_error?: ICIGenericError;
|
|
492
|
+
}
|
|
493
|
+
export interface ICISqlValidatorResult {
|
|
494
|
+
name?: string;
|
|
495
|
+
incremental?: boolean;
|
|
496
|
+
status?: string;
|
|
497
|
+
tested?: ICISqlValidatorTestedExplore[];
|
|
498
|
+
}
|
|
499
|
+
export interface ICISqlValidatorTestedExplore {
|
|
500
|
+
model?: string;
|
|
501
|
+
explore?: string;
|
|
502
|
+
status?: string;
|
|
503
|
+
skip_reason?: string | null;
|
|
504
|
+
error_count?: number | null;
|
|
505
|
+
errors?: ICISqlValidatorErrorItem[];
|
|
506
|
+
}
|
|
253
507
|
export interface IColorCollection {
|
|
254
508
|
id?: string;
|
|
255
509
|
label?: string;
|
|
@@ -511,12 +765,42 @@ export interface IContentView {
|
|
|
511
765
|
last_viewed_at?: string | null;
|
|
512
766
|
start_of_week_date?: string | null;
|
|
513
767
|
}
|
|
768
|
+
export interface IContext {
|
|
769
|
+
instructions?: string;
|
|
770
|
+
}
|
|
514
771
|
export interface IContinuousPalette {
|
|
515
772
|
id?: string;
|
|
516
773
|
label?: string | null;
|
|
517
774
|
type?: string;
|
|
518
775
|
stops?: IColorStop[];
|
|
519
776
|
}
|
|
777
|
+
export interface IConversation {
|
|
778
|
+
can?: IDictionary<boolean>;
|
|
779
|
+
id?: string;
|
|
780
|
+
name?: string;
|
|
781
|
+
category?: string | null;
|
|
782
|
+
sources?: ISource[];
|
|
783
|
+
user_id?: string;
|
|
784
|
+
agent_id?: string | null;
|
|
785
|
+
deleted?: boolean;
|
|
786
|
+
created_at?: Date;
|
|
787
|
+
updated_at?: Date;
|
|
788
|
+
messages?: IConversationMessage[] | null;
|
|
789
|
+
conversation_agent?: IAgent;
|
|
790
|
+
missing_agent?: boolean;
|
|
791
|
+
studio_conversation_id?: string | null;
|
|
792
|
+
}
|
|
793
|
+
export interface IConversationalAnalyticsChatRequest {
|
|
794
|
+
conversation_id: string;
|
|
795
|
+
user_message: string;
|
|
796
|
+
}
|
|
797
|
+
export interface IConversationMessage {
|
|
798
|
+
can?: IDictionary<boolean>;
|
|
799
|
+
id?: string;
|
|
800
|
+
message?: IDictionary<any>;
|
|
801
|
+
type?: string;
|
|
802
|
+
order?: number;
|
|
803
|
+
}
|
|
520
804
|
export interface ICostEstimate {
|
|
521
805
|
cost?: number;
|
|
522
806
|
cache_hit?: boolean;
|
|
@@ -532,6 +816,11 @@ export interface ICreateCIRunResponse {
|
|
|
532
816
|
run_id?: string;
|
|
533
817
|
status?: string;
|
|
534
818
|
}
|
|
819
|
+
export interface ICreateContinuousIntegrationRunRequest {
|
|
820
|
+
suite_id?: string;
|
|
821
|
+
branch?: string | null;
|
|
822
|
+
commit?: string | null;
|
|
823
|
+
}
|
|
535
824
|
export interface ICreateCostEstimate {
|
|
536
825
|
sql?: string;
|
|
537
826
|
}
|
|
@@ -926,6 +1215,11 @@ export interface IDataActionUserState {
|
|
|
926
1215
|
data?: string | null;
|
|
927
1216
|
refresh_time?: number | null;
|
|
928
1217
|
}
|
|
1218
|
+
export interface IDataFilter {
|
|
1219
|
+
field?: string | null;
|
|
1220
|
+
value?: string | null;
|
|
1221
|
+
type?: string | null;
|
|
1222
|
+
}
|
|
929
1223
|
export interface IDatagroup {
|
|
930
1224
|
can?: IDictionary<boolean>;
|
|
931
1225
|
created_at?: number | null;
|
|
@@ -938,6 +1232,37 @@ export interface IDatagroup {
|
|
|
938
1232
|
trigger_value?: string | null;
|
|
939
1233
|
triggered_at?: number | null;
|
|
940
1234
|
}
|
|
1235
|
+
export interface IDataMessage {
|
|
1236
|
+
query?: IDataQuery;
|
|
1237
|
+
generatedSql?: string | null;
|
|
1238
|
+
result?: IDataResult;
|
|
1239
|
+
generatedLookerQuery?: IQuery;
|
|
1240
|
+
bigQueryJob?: IBigQueryJob;
|
|
1241
|
+
}
|
|
1242
|
+
export interface IDataQuery {
|
|
1243
|
+
question?: string | null;
|
|
1244
|
+
name?: string | null;
|
|
1245
|
+
datasources?: IDatasource[] | null;
|
|
1246
|
+
looker?: IQuery;
|
|
1247
|
+
}
|
|
1248
|
+
export interface IDataResult {
|
|
1249
|
+
name?: string | null;
|
|
1250
|
+
schema?: IDataSourceSchema;
|
|
1251
|
+
data?: any[] | null;
|
|
1252
|
+
}
|
|
1253
|
+
export interface IDatasource {
|
|
1254
|
+
lookerExploreReference?: ILookerExploreReference;
|
|
1255
|
+
schema?: IDataSourceSchema;
|
|
1256
|
+
structSchema?: IDictionary<any> | null;
|
|
1257
|
+
}
|
|
1258
|
+
export interface IDataSourceSchema {
|
|
1259
|
+
fields?: IField[] | null;
|
|
1260
|
+
description?: string | null;
|
|
1261
|
+
synonyms?: string[] | null;
|
|
1262
|
+
tags?: string[] | null;
|
|
1263
|
+
displayName?: string | null;
|
|
1264
|
+
filters?: IDataFilter[] | null;
|
|
1265
|
+
}
|
|
941
1266
|
export interface IDBConnection {
|
|
942
1267
|
can?: IDictionary<boolean>;
|
|
943
1268
|
name?: string;
|
|
@@ -1003,6 +1328,7 @@ export interface IDBConnection {
|
|
|
1003
1328
|
bq_roles_verified?: boolean | null;
|
|
1004
1329
|
p4sa_name?: string | null;
|
|
1005
1330
|
query_holding_disabled?: boolean;
|
|
1331
|
+
service_name?: string | null;
|
|
1006
1332
|
}
|
|
1007
1333
|
export interface IDBConnectionBase {
|
|
1008
1334
|
can?: IDictionary<boolean>;
|
|
@@ -1034,6 +1360,7 @@ export interface IDBConnectionOverride {
|
|
|
1034
1360
|
pdt_jdbc_additional_params?: string | null;
|
|
1035
1361
|
after_connect_statements?: string | null;
|
|
1036
1362
|
pdt_after_connect_statements?: string | null;
|
|
1363
|
+
pdt_service_name?: string | null;
|
|
1037
1364
|
}
|
|
1038
1365
|
export interface IDBConnectionTestResult {
|
|
1039
1366
|
can?: IDictionary<boolean>;
|
|
@@ -1106,6 +1433,7 @@ export interface IDialectInfoOptions {
|
|
|
1106
1433
|
analytical_view_dataset?: boolean;
|
|
1107
1434
|
auth?: boolean;
|
|
1108
1435
|
cost_estimate?: boolean;
|
|
1436
|
+
disabled?: boolean;
|
|
1109
1437
|
disable_context_comment?: boolean;
|
|
1110
1438
|
host?: boolean;
|
|
1111
1439
|
instance_name?: boolean;
|
|
@@ -1225,10 +1553,24 @@ export interface IEmbedSsoParams {
|
|
|
1225
1553
|
export interface IEmbedUrlResponse {
|
|
1226
1554
|
url?: string;
|
|
1227
1555
|
}
|
|
1556
|
+
export declare enum Enhancements {
|
|
1557
|
+
NONE = "NONE",
|
|
1558
|
+
STRATEGIC_NARRATIVE = "STRATEGIC_NARRATIVE"
|
|
1559
|
+
}
|
|
1228
1560
|
export interface IError {
|
|
1229
1561
|
message: string | null;
|
|
1230
1562
|
documentation_url: string | null;
|
|
1231
1563
|
}
|
|
1564
|
+
export interface IErrorMessage {
|
|
1565
|
+
text?: string;
|
|
1566
|
+
}
|
|
1567
|
+
export interface IExampleQueries {
|
|
1568
|
+
exampleQueries?: IExampleQuery[] | null;
|
|
1569
|
+
}
|
|
1570
|
+
export interface IExampleQuery {
|
|
1571
|
+
naturalLanguageQuestion?: string | null;
|
|
1572
|
+
sqlQuery?: string | null;
|
|
1573
|
+
}
|
|
1232
1574
|
export interface IExternalOauthApplication {
|
|
1233
1575
|
can?: IDictionary<boolean>;
|
|
1234
1576
|
id?: string;
|
|
@@ -1240,6 +1582,18 @@ export interface IExternalOauthApplication {
|
|
|
1240
1582
|
bi_directional_data_access?: boolean | null;
|
|
1241
1583
|
created_at?: Date;
|
|
1242
1584
|
}
|
|
1585
|
+
export interface IField {
|
|
1586
|
+
name?: string | null;
|
|
1587
|
+
type?: string | null;
|
|
1588
|
+
description?: string | null;
|
|
1589
|
+
mode?: string | null;
|
|
1590
|
+
synonyms?: string[] | null;
|
|
1591
|
+
tags?: string[] | null;
|
|
1592
|
+
displayName?: string | null;
|
|
1593
|
+
subfields?: any[] | null;
|
|
1594
|
+
category?: string | null;
|
|
1595
|
+
valueFormat?: string | null;
|
|
1596
|
+
}
|
|
1243
1597
|
export declare enum FillStyle {
|
|
1244
1598
|
enumeration = "enumeration",
|
|
1245
1599
|
range = "range"
|
|
@@ -1550,6 +1904,24 @@ export interface IJsonBiTableCalc {
|
|
|
1550
1904
|
value_format: string | null;
|
|
1551
1905
|
measure: boolean | null;
|
|
1552
1906
|
}
|
|
1907
|
+
export interface IKdaDataSource {
|
|
1908
|
+
query_id?: string | null;
|
|
1909
|
+
model_name?: string | null;
|
|
1910
|
+
explore_name?: string | null;
|
|
1911
|
+
}
|
|
1912
|
+
export interface IKdaRequestPayload {
|
|
1913
|
+
data_source: IKdaDataSource;
|
|
1914
|
+
contribution_metric: string | null;
|
|
1915
|
+
dimensions: string[] | null;
|
|
1916
|
+
base_filters?: IDictionary<string> | null;
|
|
1917
|
+
baseline_filters?: IDictionary<string> | null;
|
|
1918
|
+
breach_filters?: IDictionary<string> | null;
|
|
1919
|
+
}
|
|
1920
|
+
export interface IKdaResponsePayload {
|
|
1921
|
+
status: string | null;
|
|
1922
|
+
dimensions: string[] | null;
|
|
1923
|
+
drivers: any[] | null;
|
|
1924
|
+
}
|
|
1553
1925
|
export declare enum Kind {
|
|
1554
1926
|
previous = "previous",
|
|
1555
1927
|
difference = "difference",
|
|
@@ -1721,6 +2093,13 @@ export interface ILookBasic {
|
|
|
1721
2093
|
user_id?: string | null;
|
|
1722
2094
|
certification_metadata?: ICertification;
|
|
1723
2095
|
}
|
|
2096
|
+
export interface ILookerExploreReference {
|
|
2097
|
+
lookerInstanceUri?: string | null;
|
|
2098
|
+
privateLookerInstanceInfo?: IPrivateLookerInstanceInfo;
|
|
2099
|
+
lookmlModel?: string;
|
|
2100
|
+
explore?: string;
|
|
2101
|
+
schema?: IDataSourceSchema;
|
|
2102
|
+
}
|
|
1724
2103
|
export interface ILookmlFieldLink {
|
|
1725
2104
|
label?: string;
|
|
1726
2105
|
url?: string;
|
|
@@ -1752,6 +2131,7 @@ export interface ILookmlModelExplore {
|
|
|
1752
2131
|
can_pivot_in_db?: boolean;
|
|
1753
2132
|
can_subtotal?: boolean;
|
|
1754
2133
|
has_timezone_support?: boolean;
|
|
2134
|
+
self_service_explore_data?: ISelfServiceModelUploadData;
|
|
1755
2135
|
supports_cost_estimate?: boolean;
|
|
1756
2136
|
connection_name?: string | null;
|
|
1757
2137
|
null_sort_treatment?: string | null;
|
|
@@ -2072,6 +2452,55 @@ export interface IMaterializePDT {
|
|
|
2072
2452
|
materialization_id?: string;
|
|
2073
2453
|
resp_text?: string | null;
|
|
2074
2454
|
}
|
|
2455
|
+
export interface IMcpTools {
|
|
2456
|
+
enable_all?: boolean;
|
|
2457
|
+
add_dashboard_element?: IMcpToolSetting;
|
|
2458
|
+
add_dashboard_filter?: IMcpToolSetting;
|
|
2459
|
+
create_project_file?: IMcpToolSetting;
|
|
2460
|
+
delete_project_file?: IMcpToolSetting;
|
|
2461
|
+
dev_mode?: IMcpToolSetting;
|
|
2462
|
+
generate_embed_url?: IMcpToolSetting;
|
|
2463
|
+
get_connection_databases?: IMcpToolSetting;
|
|
2464
|
+
get_connection_schemas?: IMcpToolSetting;
|
|
2465
|
+
get_connection_table_columns?: IMcpToolSetting;
|
|
2466
|
+
get_connection_tables?: IMcpToolSetting;
|
|
2467
|
+
get_connections?: IMcpToolSetting;
|
|
2468
|
+
get_dashboards?: IMcpToolSetting;
|
|
2469
|
+
get_dimensions?: IMcpToolSetting;
|
|
2470
|
+
get_explores?: IMcpToolSetting;
|
|
2471
|
+
get_filters?: IMcpToolSetting;
|
|
2472
|
+
get_looks?: IMcpToolSetting;
|
|
2473
|
+
get_measures?: IMcpToolSetting;
|
|
2474
|
+
get_models?: IMcpToolSetting;
|
|
2475
|
+
get_parameters?: IMcpToolSetting;
|
|
2476
|
+
get_project_file?: IMcpToolSetting;
|
|
2477
|
+
get_project_files?: IMcpToolSetting;
|
|
2478
|
+
get_projects?: IMcpToolSetting;
|
|
2479
|
+
health_analyze?: IMcpToolSetting;
|
|
2480
|
+
health_pulse?: IMcpToolSetting;
|
|
2481
|
+
health_vacuum?: IMcpToolSetting;
|
|
2482
|
+
make_dashboard?: IMcpToolSetting;
|
|
2483
|
+
make_look?: IMcpToolSetting;
|
|
2484
|
+
query?: IMcpToolSetting;
|
|
2485
|
+
query_sql?: IMcpToolSetting;
|
|
2486
|
+
query_url?: IMcpToolSetting;
|
|
2487
|
+
run_dashboard?: IMcpToolSetting;
|
|
2488
|
+
run_look?: IMcpToolSetting;
|
|
2489
|
+
update_project_file?: IMcpToolSetting;
|
|
2490
|
+
validate_project?: IMcpToolSetting;
|
|
2491
|
+
get_project_directories?: IMcpToolSetting;
|
|
2492
|
+
create_project_directory?: IMcpToolSetting;
|
|
2493
|
+
delete_project_directory?: IMcpToolSetting;
|
|
2494
|
+
get_lookml_tests?: IMcpToolSetting;
|
|
2495
|
+
run_lookml_tests?: IMcpToolSetting;
|
|
2496
|
+
create_view_from_table?: IMcpToolSetting;
|
|
2497
|
+
}
|
|
2498
|
+
export interface IMcpToolSetting {
|
|
2499
|
+
enabled?: boolean;
|
|
2500
|
+
description?: string | null;
|
|
2501
|
+
category?: string | null;
|
|
2502
|
+
access_level?: string | null;
|
|
2503
|
+
}
|
|
2075
2504
|
export interface IMergeFields {
|
|
2076
2505
|
field_name?: string | null;
|
|
2077
2506
|
source_field_name?: string | null;
|
|
@@ -2104,7 +2533,7 @@ export interface IMobilePayload {
|
|
|
2104
2533
|
alert_id: string;
|
|
2105
2534
|
investigative_content_id?: string | null;
|
|
2106
2535
|
dashboard_name?: string | null;
|
|
2107
|
-
dashboard_id?: string;
|
|
2536
|
+
dashboard_id?: string | null;
|
|
2108
2537
|
query_slug?: string;
|
|
2109
2538
|
}
|
|
2110
2539
|
export interface IMobileSettings {
|
|
@@ -2285,6 +2714,10 @@ export interface IPrivatelabelConfiguration {
|
|
|
2285
2714
|
alerts_links?: boolean;
|
|
2286
2715
|
folders_mentions?: boolean;
|
|
2287
2716
|
}
|
|
2717
|
+
export interface IPrivateLookerInstanceInfo {
|
|
2718
|
+
lookerInstanceId?: string | null;
|
|
2719
|
+
serviceDirectoryName?: string | null;
|
|
2720
|
+
}
|
|
2288
2721
|
export interface IProject {
|
|
2289
2722
|
can?: IDictionary<boolean>;
|
|
2290
2723
|
id?: string;
|
|
@@ -2782,6 +3215,20 @@ export interface IRequestScheduledPlansForLookmlDashboard {
|
|
|
2782
3215
|
fields?: string | null;
|
|
2783
3216
|
all_users?: boolean | null;
|
|
2784
3217
|
}
|
|
3218
|
+
export interface IRequestSearchAgents {
|
|
3219
|
+
id?: string | null;
|
|
3220
|
+
name?: string | null;
|
|
3221
|
+
description?: string | null;
|
|
3222
|
+
created_by_user_id?: string | null;
|
|
3223
|
+
fields?: string | null;
|
|
3224
|
+
limit?: number | null;
|
|
3225
|
+
category?: string | null;
|
|
3226
|
+
offset?: number | null;
|
|
3227
|
+
sorts?: string | null;
|
|
3228
|
+
filter_or?: boolean | null;
|
|
3229
|
+
not_owned_by?: boolean | null;
|
|
3230
|
+
deleted?: boolean | null;
|
|
3231
|
+
}
|
|
2785
3232
|
export interface IRequestSearchAlerts {
|
|
2786
3233
|
limit?: number | null;
|
|
2787
3234
|
offset?: number | null;
|
|
@@ -2860,6 +3307,18 @@ export interface IRequestSearchContentViews {
|
|
|
2860
3307
|
sorts?: string | null;
|
|
2861
3308
|
filter_or?: boolean | null;
|
|
2862
3309
|
}
|
|
3310
|
+
export interface IRequestSearchConversations {
|
|
3311
|
+
id?: string | null;
|
|
3312
|
+
name?: string | null;
|
|
3313
|
+
agent_id?: string | null;
|
|
3314
|
+
fields?: string | null;
|
|
3315
|
+
limit?: number | null;
|
|
3316
|
+
offset?: number | null;
|
|
3317
|
+
sorts?: string | null;
|
|
3318
|
+
filter_or?: boolean | null;
|
|
3319
|
+
category?: string | null;
|
|
3320
|
+
deleted?: boolean | null;
|
|
3321
|
+
}
|
|
2863
3322
|
export interface IRequestSearchCredentialsEmail {
|
|
2864
3323
|
fields?: string | null;
|
|
2865
3324
|
limit?: number | null;
|
|
@@ -2991,6 +3450,7 @@ export interface IRequestSearchModelSets {
|
|
|
2991
3450
|
all_access?: boolean | null;
|
|
2992
3451
|
built_in?: boolean | null;
|
|
2993
3452
|
filter_or?: boolean | null;
|
|
3453
|
+
models?: string | null;
|
|
2994
3454
|
}
|
|
2995
3455
|
export interface IRequestSearchPermissionSets {
|
|
2996
3456
|
fields?: string | null;
|
|
@@ -3002,6 +3462,7 @@ export interface IRequestSearchPermissionSets {
|
|
|
3002
3462
|
all_access?: boolean | null;
|
|
3003
3463
|
built_in?: boolean | null;
|
|
3004
3464
|
filter_or?: boolean | null;
|
|
3465
|
+
permissions?: string | null;
|
|
3005
3466
|
}
|
|
3006
3467
|
export interface IRequestSearchReports {
|
|
3007
3468
|
folder_id?: string | null;
|
|
@@ -3020,6 +3481,8 @@ export interface IRequestSearchRoles {
|
|
|
3020
3481
|
offset?: number | null;
|
|
3021
3482
|
sorts?: string | null;
|
|
3022
3483
|
id?: string | null;
|
|
3484
|
+
model_set_ids?: string | null;
|
|
3485
|
+
permission_set_ids?: string | null;
|
|
3023
3486
|
name?: string | null;
|
|
3024
3487
|
built_in?: boolean | null;
|
|
3025
3488
|
filter_or?: boolean | null;
|
|
@@ -3408,6 +3871,16 @@ export interface ISchemaColumns {
|
|
|
3408
3871
|
schema_name?: string | null;
|
|
3409
3872
|
columns?: ISchemaColumn[];
|
|
3410
3873
|
}
|
|
3874
|
+
export interface ISchemaMessage {
|
|
3875
|
+
query?: ISchemaQuery;
|
|
3876
|
+
result?: ISchemaResult;
|
|
3877
|
+
}
|
|
3878
|
+
export interface ISchemaQuery {
|
|
3879
|
+
question?: string | null;
|
|
3880
|
+
}
|
|
3881
|
+
export interface ISchemaResult {
|
|
3882
|
+
datasources?: IDatasource[] | null;
|
|
3883
|
+
}
|
|
3411
3884
|
export interface ISchemaTable {
|
|
3412
3885
|
name?: string | null;
|
|
3413
3886
|
sql_escaped_name?: string | null;
|
|
@@ -3426,6 +3899,11 @@ export declare enum SecretType {
|
|
|
3426
3899
|
SSO = "SSO",
|
|
3427
3900
|
JWT = "JWT"
|
|
3428
3901
|
}
|
|
3902
|
+
export interface ISelfServiceModelUploadData {
|
|
3903
|
+
upload_type?: string | null;
|
|
3904
|
+
drive_url?: string | null;
|
|
3905
|
+
owner_id?: string | null;
|
|
3906
|
+
}
|
|
3429
3907
|
export interface IServiceAccount {
|
|
3430
3908
|
can?: IDictionary<boolean>;
|
|
3431
3909
|
id?: string;
|
|
@@ -3491,6 +3969,9 @@ export interface ISetting {
|
|
|
3491
3969
|
managed_certificate_uri?: string[] | null;
|
|
3492
3970
|
content_certification_documentation_link?: string | null;
|
|
3493
3971
|
revoke_certification_on_edits?: boolean;
|
|
3972
|
+
is_content_certification_enabled?: boolean;
|
|
3973
|
+
auto_certify_lookml_content?: boolean;
|
|
3974
|
+
mcp_tools?: IMcpTools;
|
|
3494
3975
|
}
|
|
3495
3976
|
export interface ISmtpNodeStatus {
|
|
3496
3977
|
is_valid?: boolean;
|
|
@@ -3522,6 +4003,10 @@ export interface ISnippet {
|
|
|
3522
4003
|
label?: string;
|
|
3523
4004
|
sql?: string;
|
|
3524
4005
|
}
|
|
4006
|
+
export interface ISource {
|
|
4007
|
+
model?: string;
|
|
4008
|
+
explore?: string;
|
|
4009
|
+
}
|
|
3525
4010
|
export interface ISqlInterfaceQuery {
|
|
3526
4011
|
can?: IDictionary<boolean>;
|
|
3527
4012
|
id?: number;
|
|
@@ -3674,6 +4159,20 @@ export declare enum SupportedVisualizationFormattings {
|
|
|
3674
4159
|
apply = "apply",
|
|
3675
4160
|
noapply = "noapply"
|
|
3676
4161
|
}
|
|
4162
|
+
export interface ISystemMessage {
|
|
4163
|
+
text?: ITextMessage;
|
|
4164
|
+
schema?: ISchemaMessage;
|
|
4165
|
+
data?: IDataMessage;
|
|
4166
|
+
analysis?: IAnalysisMessage;
|
|
4167
|
+
chart?: IChartMessage;
|
|
4168
|
+
error?: IErrorMessage;
|
|
4169
|
+
exampleQueries?: IExampleQueries;
|
|
4170
|
+
groupId?: number | null;
|
|
4171
|
+
}
|
|
4172
|
+
export interface ITextMessage {
|
|
4173
|
+
parts?: string[] | null;
|
|
4174
|
+
textType?: string | null;
|
|
4175
|
+
}
|
|
3677
4176
|
export interface ITheme {
|
|
3678
4177
|
can?: IDictionary<boolean>;
|
|
3679
4178
|
begin_at?: Date | null;
|
|
@@ -3848,6 +4347,9 @@ export interface IUserLoginLockout {
|
|
|
3848
4347
|
fail_count?: number | null;
|
|
3849
4348
|
lockout_at?: Date | null;
|
|
3850
4349
|
}
|
|
4350
|
+
export interface IUserMessage {
|
|
4351
|
+
text?: string | null;
|
|
4352
|
+
}
|
|
3851
4353
|
export interface IUserPublic {
|
|
3852
4354
|
can?: IDictionary<boolean>;
|
|
3853
4355
|
id?: string;
|
|
@@ -3905,6 +4407,15 @@ export interface IWorkspace {
|
|
|
3905
4407
|
id?: string;
|
|
3906
4408
|
projects?: IProject[] | null;
|
|
3907
4409
|
}
|
|
4410
|
+
export interface IWriteAgent {
|
|
4411
|
+
name?: string;
|
|
4412
|
+
description?: string;
|
|
4413
|
+
category?: string | null;
|
|
4414
|
+
sources?: ISource[] | null;
|
|
4415
|
+
context?: IContext | null;
|
|
4416
|
+
deleted?: boolean;
|
|
4417
|
+
code_interpreter?: boolean;
|
|
4418
|
+
}
|
|
3908
4419
|
export interface IWriteAlert {
|
|
3909
4420
|
applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
|
|
3910
4421
|
comparison_type: ComparisonType | null;
|
|
@@ -3916,6 +4427,7 @@ export interface IWriteAlert {
|
|
|
3916
4427
|
custom_title?: string | null;
|
|
3917
4428
|
dashboard_element_id?: string | null;
|
|
3918
4429
|
description?: string | null;
|
|
4430
|
+
enhancements?: Enhancements | null;
|
|
3919
4431
|
destinations: IAlertDestination[] | null;
|
|
3920
4432
|
field: IAlertField | null;
|
|
3921
4433
|
is_disabled?: boolean;
|
|
@@ -3987,6 +4499,21 @@ export interface IWriteContentFavorite {
|
|
|
3987
4499
|
export interface IWriteContentMeta {
|
|
3988
4500
|
inherits?: boolean;
|
|
3989
4501
|
}
|
|
4502
|
+
export interface IWriteConversation {
|
|
4503
|
+
name?: string;
|
|
4504
|
+
category?: string | null;
|
|
4505
|
+
sources?: ISource[] | null;
|
|
4506
|
+
agent_id?: string | null;
|
|
4507
|
+
deleted?: boolean;
|
|
4508
|
+
conversation_agent?: IWriteAgent | null;
|
|
4509
|
+
}
|
|
4510
|
+
export interface IWriteConversationMessage {
|
|
4511
|
+
message?: IDictionary<any> | null;
|
|
4512
|
+
type?: string;
|
|
4513
|
+
}
|
|
4514
|
+
export interface IWriteConversationMessages {
|
|
4515
|
+
messages?: any[];
|
|
4516
|
+
}
|
|
3990
4517
|
export interface IWriteCreateDashboardFilter {
|
|
3991
4518
|
dashboard_id: string | null;
|
|
3992
4519
|
name: string | null;
|
|
@@ -4165,6 +4692,7 @@ export interface IWriteDBConnection {
|
|
|
4165
4692
|
bq_storage_project_id?: string | null;
|
|
4166
4693
|
bq_roles_verified?: boolean | null;
|
|
4167
4694
|
query_holding_disabled?: boolean;
|
|
4695
|
+
service_name?: string | null;
|
|
4168
4696
|
}
|
|
4169
4697
|
export interface IWriteDBConnectionOverride {
|
|
4170
4698
|
context?: string;
|
|
@@ -4188,6 +4716,7 @@ export interface IWriteDBConnectionOverride {
|
|
|
4188
4716
|
pdt_jdbc_additional_params?: string | null;
|
|
4189
4717
|
after_connect_statements?: string | null;
|
|
4190
4718
|
pdt_after_connect_statements?: string | null;
|
|
4719
|
+
pdt_service_name?: string | null;
|
|
4191
4720
|
}
|
|
4192
4721
|
export interface IWriteEmbedConfig {
|
|
4193
4722
|
domain_allowlist?: string[] | null;
|
|
@@ -4305,6 +4834,52 @@ export interface IWriteLookWithQuery {
|
|
|
4305
4834
|
folder_id?: string | null;
|
|
4306
4835
|
query?: IWriteQuery | null;
|
|
4307
4836
|
}
|
|
4837
|
+
export interface IWriteMcpTools {
|
|
4838
|
+
enable_all?: boolean;
|
|
4839
|
+
add_dashboard_element?: IWriteMcpToolSetting | null;
|
|
4840
|
+
add_dashboard_filter?: IWriteMcpToolSetting | null;
|
|
4841
|
+
create_project_file?: IWriteMcpToolSetting | null;
|
|
4842
|
+
delete_project_file?: IWriteMcpToolSetting | null;
|
|
4843
|
+
dev_mode?: IWriteMcpToolSetting | null;
|
|
4844
|
+
generate_embed_url?: IWriteMcpToolSetting | null;
|
|
4845
|
+
get_connection_databases?: IWriteMcpToolSetting | null;
|
|
4846
|
+
get_connection_schemas?: IWriteMcpToolSetting | null;
|
|
4847
|
+
get_connection_table_columns?: IWriteMcpToolSetting | null;
|
|
4848
|
+
get_connection_tables?: IWriteMcpToolSetting | null;
|
|
4849
|
+
get_connections?: IWriteMcpToolSetting | null;
|
|
4850
|
+
get_dashboards?: IWriteMcpToolSetting | null;
|
|
4851
|
+
get_dimensions?: IWriteMcpToolSetting | null;
|
|
4852
|
+
get_explores?: IWriteMcpToolSetting | null;
|
|
4853
|
+
get_filters?: IWriteMcpToolSetting | null;
|
|
4854
|
+
get_looks?: IWriteMcpToolSetting | null;
|
|
4855
|
+
get_measures?: IWriteMcpToolSetting | null;
|
|
4856
|
+
get_models?: IWriteMcpToolSetting | null;
|
|
4857
|
+
get_parameters?: IWriteMcpToolSetting | null;
|
|
4858
|
+
get_project_file?: IWriteMcpToolSetting | null;
|
|
4859
|
+
get_project_files?: IWriteMcpToolSetting | null;
|
|
4860
|
+
get_projects?: IWriteMcpToolSetting | null;
|
|
4861
|
+
health_analyze?: IWriteMcpToolSetting | null;
|
|
4862
|
+
health_pulse?: IWriteMcpToolSetting | null;
|
|
4863
|
+
health_vacuum?: IWriteMcpToolSetting | null;
|
|
4864
|
+
make_dashboard?: IWriteMcpToolSetting | null;
|
|
4865
|
+
make_look?: IWriteMcpToolSetting | null;
|
|
4866
|
+
query?: IWriteMcpToolSetting | null;
|
|
4867
|
+
query_sql?: IWriteMcpToolSetting | null;
|
|
4868
|
+
query_url?: IWriteMcpToolSetting | null;
|
|
4869
|
+
run_dashboard?: IWriteMcpToolSetting | null;
|
|
4870
|
+
run_look?: IWriteMcpToolSetting | null;
|
|
4871
|
+
update_project_file?: IWriteMcpToolSetting | null;
|
|
4872
|
+
validate_project?: IWriteMcpToolSetting | null;
|
|
4873
|
+
get_project_directories?: IWriteMcpToolSetting | null;
|
|
4874
|
+
create_project_directory?: IWriteMcpToolSetting | null;
|
|
4875
|
+
delete_project_directory?: IWriteMcpToolSetting | null;
|
|
4876
|
+
get_lookml_tests?: IWriteMcpToolSetting | null;
|
|
4877
|
+
run_lookml_tests?: IWriteMcpToolSetting | null;
|
|
4878
|
+
create_view_from_table?: IWriteMcpToolSetting | null;
|
|
4879
|
+
}
|
|
4880
|
+
export interface IWriteMcpToolSetting {
|
|
4881
|
+
enabled?: boolean;
|
|
4882
|
+
}
|
|
4308
4883
|
export interface IWriteMergeQuery {
|
|
4309
4884
|
column_limit?: string | null;
|
|
4310
4885
|
dynamic_fields?: string | null;
|
|
@@ -4540,6 +5115,9 @@ export interface IWriteSetting {
|
|
|
4540
5115
|
managed_certificate_uri?: string[] | null;
|
|
4541
5116
|
content_certification_documentation_link?: string | null;
|
|
4542
5117
|
revoke_certification_on_edits?: boolean;
|
|
5118
|
+
is_content_certification_enabled?: boolean;
|
|
5119
|
+
auto_certify_lookml_content?: boolean;
|
|
5120
|
+
mcp_tools?: IWriteMcpTools | null;
|
|
4543
5121
|
}
|
|
4544
5122
|
export interface IWriteSqlInterfaceQueryCreate {
|
|
4545
5123
|
sql: string | null;
|