@looker/sdk 26.8.0 → 26.12.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.
@@ -18,6 +18,8 @@ export interface IAgent {
18
18
  category?: string | null;
19
19
  sources?: ISource[];
20
20
  has_inaccessible_source?: boolean;
21
+ golden_queries?: IGoldenQuery[] | null;
22
+ golden_query_ids?: number[] | null;
21
23
  context?: IContext;
22
24
  deleted?: boolean;
23
25
  created_at?: Date;
@@ -25,6 +27,7 @@ export interface IAgent {
25
27
  content_metadata_id?: string;
26
28
  code_interpreter?: boolean;
27
29
  studio_agent_id?: string | null;
30
+ workflow_params?: IWorkflowParams;
28
31
  }
29
32
  export interface IAlert {
30
33
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
@@ -195,6 +198,9 @@ export interface IAssertValidatorTestSuccess {
195
198
  explore_url?: string;
196
199
  lookml_url?: string;
197
200
  }
201
+ export interface IAsyncDeployResponse {
202
+ status?: string;
203
+ }
198
204
  export interface IBackupConfiguration {
199
205
  can?: IDictionary<boolean>;
200
206
  type?: string | null;
@@ -1008,6 +1014,16 @@ export interface ICredentialsTotp {
1008
1014
  verified?: boolean;
1009
1015
  url?: string | null;
1010
1016
  }
1017
+ export interface ICredentialsWorkforce {
1018
+ can?: IDictionary<boolean>;
1019
+ created_at?: string | null;
1020
+ email?: string | null;
1021
+ is_disabled?: boolean;
1022
+ logged_in_at?: string | null;
1023
+ workforce_user_id?: string | null;
1024
+ type?: string | null;
1025
+ url?: string | null;
1026
+ }
1011
1027
  export interface ICustomWelcomeEmail {
1012
1028
  enabled?: boolean;
1013
1029
  content?: string | null;
@@ -1033,6 +1049,7 @@ export interface IDashboard {
1033
1049
  preferred_viewer?: string | null;
1034
1050
  certification_metadata?: ICertification;
1035
1051
  alert_sync_with_dashboard_filter_enabled?: boolean;
1052
+ chat_enabled?: boolean;
1036
1053
  background_color?: string | null;
1037
1054
  created_at?: Date | null;
1038
1055
  crossfilter_enabled?: boolean;
@@ -1067,6 +1084,7 @@ export interface IDashboard {
1067
1084
  usage_count?: number | null;
1068
1085
  is_owner_disabled?: boolean;
1069
1086
  url?: string | null;
1087
+ preserve_desktop_layout?: boolean;
1070
1088
  download_settings?: IDashboardDownloadSettings;
1071
1089
  }
1072
1090
  export interface IDashboardAggregateTableLookml {
@@ -1406,6 +1424,11 @@ export declare enum DependencyStatus {
1406
1424
  lock_error = "lock_error",
1407
1425
  install_none = "install_none"
1408
1426
  }
1427
+ export interface IDeployStatusResponse {
1428
+ status?: string;
1429
+ error?: string | null;
1430
+ commit_sha?: string | null;
1431
+ }
1409
1432
  export declare enum DestinationType {
1410
1433
  EMAIL = "EMAIL",
1411
1434
  ACTION_HUB = "ACTION_HUB"
@@ -1502,6 +1525,7 @@ export interface IEmbedConfig {
1502
1525
  strict_sameorigin_for_login?: boolean;
1503
1526
  look_filters?: boolean;
1504
1527
  hide_look_navigation?: boolean;
1528
+ permissions?: IDictionary<any> | null;
1505
1529
  embed_enabled?: boolean;
1506
1530
  }
1507
1531
  export interface IEmbedCookielessSessionAcquire {
@@ -1699,12 +1723,55 @@ export interface IGitConnectionTestResult {
1699
1723
  message?: string | null;
1700
1724
  status?: string | null;
1701
1725
  }
1726
+ export interface IGitDiagnosticIssue {
1727
+ can?: IDictionary<boolean>;
1728
+ id?: string;
1729
+ report_id?: string | null;
1730
+ project_id?: string | null;
1731
+ project_type?: string | null;
1732
+ issue_type?: string | null;
1733
+ issue_version?: string | null;
1734
+ state?: string | null;
1735
+ created_at?: Date | null;
1736
+ updated_at?: Date | null;
1737
+ }
1738
+ export interface IGitDiagnosticReport {
1739
+ can?: IDictionary<boolean>;
1740
+ id?: string;
1741
+ project_id?: string | null;
1742
+ user_id?: string | null;
1743
+ state?: string | null;
1744
+ status?: string | null;
1745
+ created_at?: Date | null;
1746
+ updated_at?: Date | null;
1747
+ project_type?: string | null;
1748
+ issues?: IGitDiagnosticIssue[] | null;
1749
+ }
1702
1750
  export interface IGitStatus {
1703
1751
  action?: string | null;
1704
1752
  conflict?: boolean;
1705
1753
  revertable?: boolean;
1706
1754
  text?: string | null;
1707
1755
  }
1756
+ export interface IGoldenQuery {
1757
+ can?: IDictionary<boolean>;
1758
+ id?: number;
1759
+ query_id?: number | null;
1760
+ questions?: string[];
1761
+ answer?: string;
1762
+ is_active?: boolean;
1763
+ created_by_user_id?: number | null;
1764
+ last_updated_by_user_id?: number | null;
1765
+ created_at?: Date;
1766
+ last_updated_at?: Date | null;
1767
+ explore?: string | null;
1768
+ model?: string | null;
1769
+ fields?: string[] | null;
1770
+ filters?: IDictionary<string> | null;
1771
+ sorts?: string[] | null;
1772
+ limit?: string | null;
1773
+ client_id?: string | null;
1774
+ }
1708
1775
  export interface IGroup {
1709
1776
  can?: IDictionary<boolean>;
1710
1777
  can_add_to_content_metadata?: boolean;
@@ -2156,6 +2223,7 @@ export interface ILookmlModelExplore {
2156
2223
  self_service_explore_data?: ISelfServiceModelUploadData;
2157
2224
  supports_cost_estimate?: boolean;
2158
2225
  connection_name?: string | null;
2226
+ dialect_name?: string | null;
2159
2227
  null_sort_treatment?: string | null;
2160
2228
  files?: string[] | null;
2161
2229
  source_file?: string | null;
@@ -2204,6 +2272,7 @@ export interface ILookmlModelExploreError {
2204
2272
  export interface ILookmlModelExploreField {
2205
2273
  align?: Align;
2206
2274
  available_custom_timeframes?: string[] | null;
2275
+ timeframe_labels?: IDictionary<string> | null;
2207
2276
  can_filter?: boolean;
2208
2277
  category?: Category | null;
2209
2278
  default_filter_value?: string | null;
@@ -2517,7 +2586,6 @@ export interface IMcpTools {
2517
2586
  get_lookml_tests?: IMcpToolSetting;
2518
2587
  run_lookml_tests?: IMcpToolSetting;
2519
2588
  create_view_from_table?: IMcpToolSetting;
2520
- project_git_branch?: IMcpToolSetting;
2521
2589
  }
2522
2590
  export interface IMcpToolSetting {
2523
2591
  enabled?: boolean;
@@ -2931,6 +2999,7 @@ export interface IRepositoryCredential {
2931
2999
  export interface IRequestActiveThemes {
2932
3000
  name?: string | null;
2933
3001
  ts?: Date | null;
3002
+ theme_type?: string | null;
2934
3003
  fields?: string | null;
2935
3004
  }
2936
3005
  export interface IRequestAlertNotifications {
@@ -3019,6 +3088,11 @@ export interface IRequestArtifactNamespaces {
3019
3088
  limit?: number | null;
3020
3089
  offset?: number | null;
3021
3090
  }
3091
+ export interface IRequestAsyncDeployRefToProduction {
3092
+ project_id: string;
3093
+ branch?: string | null;
3094
+ ref?: string | null;
3095
+ }
3022
3096
  export interface IRequestConnectionColumns {
3023
3097
  connection_name: string;
3024
3098
  database?: string | null;
@@ -3250,6 +3324,7 @@ export interface IRequestSearchAgents {
3250
3324
  filter_or?: boolean | null;
3251
3325
  not_owned_by?: boolean | null;
3252
3326
  deleted?: boolean | null;
3327
+ primary_agent_id?: string | null;
3253
3328
  }
3254
3329
  export interface IRequestSearchAlerts {
3255
3330
  limit?: number | null;
@@ -3547,6 +3622,7 @@ export interface IRequestSearchThemes {
3547
3622
  sorts?: string | null;
3548
3623
  fields?: string | null;
3549
3624
  filter_or?: boolean | null;
3625
+ theme_type?: string | null;
3550
3626
  }
3551
3627
  export interface IRequestSearchUserLoginLockouts {
3552
3628
  fields?: string | null;
@@ -3839,6 +3915,7 @@ export interface IScheduledPlan {
3839
3915
  scheduled_plan_destination?: IScheduledPlanDestination[] | null;
3840
3916
  run_once?: boolean;
3841
3917
  include_links?: boolean;
3918
+ include_dashboard_summary?: boolean;
3842
3919
  custom_url_base?: string | null;
3843
3920
  custom_url_params?: string | null;
3844
3921
  custom_url_label?: string | null;
@@ -3927,6 +4004,7 @@ export interface ISelfServiceModelUploadData {
3927
4004
  upload_type?: string | null;
3928
4005
  drive_url?: string | null;
3929
4006
  owner_id?: string | null;
4007
+ canvas_guid?: string | null;
3930
4008
  }
3931
4009
  export interface IServiceAccount {
3932
4010
  can?: IDictionary<boolean>;
@@ -3993,6 +4071,7 @@ export interface ISetting {
3993
4071
  managed_certificate_uri?: string[] | null;
3994
4072
  content_certification_documentation_link?: string | null;
3995
4073
  revoke_certification_on_edits?: boolean;
4074
+ automated_mfa_enabled?: boolean;
3996
4075
  is_content_certification_enabled?: boolean;
3997
4076
  auto_certify_lookml_content?: boolean;
3998
4077
  ca_agent_observability?: boolean;
@@ -4281,6 +4360,7 @@ export interface IUser {
4281
4360
  credentials_oidc?: ICredentialsOIDC;
4282
4361
  credentials_saml?: ICredentialsSaml;
4283
4362
  credentials_totp?: ICredentialsTotp;
4363
+ credentials_workforce?: ICredentialsWorkforce;
4284
4364
  display_name?: string | null;
4285
4365
  email?: string | null;
4286
4366
  embed_group_space_id?: string | null;
@@ -4433,19 +4513,31 @@ export interface IWhitelabelConfiguration {
4433
4513
  alerts_links?: boolean;
4434
4514
  folders_mentions?: boolean;
4435
4515
  }
4516
+ export interface IWorkflowDestination {
4517
+ type?: string;
4518
+ parameters?: string;
4519
+ }
4520
+ export interface IWorkflowParams {
4521
+ primary_agent?: string | null;
4522
+ polling_frequency_cron?: string;
4523
+ destination?: IWorkflowDestination;
4524
+ }
4436
4525
  export interface IWorkspace {
4437
4526
  can?: IDictionary<boolean>;
4438
4527
  id?: string;
4439
4528
  projects?: IProject[] | null;
4440
4529
  }
4441
4530
  export interface IWriteAgent {
4531
+ created_by_user_id?: string;
4442
4532
  name?: string;
4443
4533
  description?: string;
4444
4534
  category?: string | null;
4445
4535
  sources?: ISource[] | null;
4536
+ golden_query_ids?: number[] | null;
4446
4537
  context?: IContext | null;
4447
4538
  deleted?: boolean;
4448
4539
  code_interpreter?: boolean;
4540
+ workflow_params?: IWorkflowParams | null;
4449
4541
  }
4450
4542
  export interface IWriteAlert {
4451
4543
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
@@ -4488,6 +4580,7 @@ export interface IWriteBoard {
4488
4580
  description?: string | null;
4489
4581
  section_order?: string[] | null;
4490
4582
  title?: string | null;
4583
+ user_id?: string | null;
4491
4584
  }
4492
4585
  export interface IWriteBoardItem {
4493
4586
  custom_description?: string | null;
@@ -4588,6 +4681,7 @@ export interface IWriteDashboard {
4588
4681
  preferred_viewer?: string | null;
4589
4682
  certification_metadata?: IWriteCertification | null;
4590
4683
  alert_sync_with_dashboard_filter_enabled?: boolean;
4684
+ chat_enabled?: boolean;
4591
4685
  background_color?: string | null;
4592
4686
  crossfilter_enabled?: boolean;
4593
4687
  deleted?: boolean;
@@ -4604,6 +4698,7 @@ export interface IWriteDashboard {
4604
4698
  tile_text_color?: string | null;
4605
4699
  title_color?: string | null;
4606
4700
  appearance?: IDashboardAppearance | null;
4701
+ preserve_desktop_layout?: boolean;
4607
4702
  download_settings?: IDashboardDownloadSettings | null;
4608
4703
  }
4609
4704
  export interface IWriteDashboardBase {
@@ -4789,6 +4884,14 @@ export interface IWriteGitBranch {
4789
4884
  name?: string | null;
4790
4885
  ref?: string | null;
4791
4886
  }
4887
+ export interface IWriteGitDiagnosticReport {
4888
+ project_type?: string | null;
4889
+ }
4890
+ export interface IWriteGoldenQuery {
4891
+ questions?: string[] | null;
4892
+ answer?: string;
4893
+ is_active?: boolean;
4894
+ }
4792
4895
  export interface IWriteGroup {
4793
4896
  can_add_to_content_metadata?: boolean;
4794
4897
  name?: string | null;
@@ -4913,7 +5016,6 @@ export interface IWriteMcpTools {
4913
5016
  get_lookml_tests?: IWriteMcpToolSetting | null;
4914
5017
  run_lookml_tests?: IWriteMcpToolSetting | null;
4915
5018
  create_view_from_table?: IWriteMcpToolSetting | null;
4916
- project_git_branch?: IWriteMcpToolSetting | null;
4917
5019
  }
4918
5020
  export interface IWriteMcpToolSetting {
4919
5021
  enabled?: boolean;
@@ -5107,6 +5209,7 @@ export interface IWriteScheduledPlan {
5107
5209
  scheduled_plan_destination?: IScheduledPlanDestination[] | null;
5108
5210
  run_once?: boolean;
5109
5211
  include_links?: boolean;
5212
+ include_dashboard_summary?: boolean;
5110
5213
  custom_url_base?: string | null;
5111
5214
  custom_url_params?: string | null;
5112
5215
  custom_url_label?: string | null;
@@ -5155,6 +5258,7 @@ export interface IWriteSetting {
5155
5258
  managed_certificate_uri?: string[] | null;
5156
5259
  content_certification_documentation_link?: string | null;
5157
5260
  revoke_certification_on_edits?: boolean;
5261
+ automated_mfa_enabled?: boolean;
5158
5262
  is_content_certification_enabled?: boolean;
5159
5263
  auto_certify_lookml_content?: boolean;
5160
5264
  ca_agent_observability?: boolean;