@looker/sdk 24.12.0 → 24.14.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 +1 -0
- package/lib/4.0/funcs.js +902 -893
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +1 -0
- package/lib/4.0/methods.js +601 -594
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +1 -0
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +22 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +1 -0
- package/lib/4.0/streams.js +601 -594
- 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 +900 -891
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +601 -594
- 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.map +1 -1
- package/lib/esm/4.0/streams.js +601 -594
- 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
|
@@ -483,6 +483,8 @@ export interface ICredentialsEmail {
|
|
|
483
483
|
logged_in_at?: string | null;
|
|
484
484
|
password_reset_url?: string | null;
|
|
485
485
|
account_setup_url?: string | null;
|
|
486
|
+
password_reset_url_expired?: boolean;
|
|
487
|
+
account_setup_url_expired?: boolean;
|
|
486
488
|
type?: string | null;
|
|
487
489
|
url?: string | null;
|
|
488
490
|
user_url?: string | null;
|
|
@@ -497,6 +499,8 @@ export interface ICredentialsEmailSearch {
|
|
|
497
499
|
logged_in_at?: string | null;
|
|
498
500
|
password_reset_url?: string | null;
|
|
499
501
|
account_setup_url?: string | null;
|
|
502
|
+
password_reset_url_expired?: boolean;
|
|
503
|
+
account_setup_url_expired?: boolean;
|
|
500
504
|
type?: string | null;
|
|
501
505
|
url?: string | null;
|
|
502
506
|
user_url?: string | null;
|
|
@@ -799,6 +803,7 @@ export interface IDBConnection {
|
|
|
799
803
|
username?: string | null;
|
|
800
804
|
password?: string | null;
|
|
801
805
|
uses_oauth?: boolean;
|
|
806
|
+
uses_instance_oauth?: boolean;
|
|
802
807
|
certificate?: string | null;
|
|
803
808
|
file_type?: string | null;
|
|
804
809
|
database?: string | null;
|
|
@@ -806,6 +811,8 @@ export interface IDBConnection {
|
|
|
806
811
|
query_timezone?: string | null;
|
|
807
812
|
schema?: string | null;
|
|
808
813
|
max_connections?: number | null;
|
|
814
|
+
max_queries?: number | null;
|
|
815
|
+
max_queries_per_user?: number | null;
|
|
809
816
|
max_billing_gigabytes?: string | null;
|
|
810
817
|
ssl?: boolean;
|
|
811
818
|
verify_ssl?: boolean;
|
|
@@ -834,9 +841,14 @@ export interface IDBConnection {
|
|
|
834
841
|
disable_context_comment?: boolean | null;
|
|
835
842
|
oauth_application_id?: string | null;
|
|
836
843
|
always_retry_failed_builds?: boolean | null;
|
|
844
|
+
uses_application_default_credentials?: boolean | null;
|
|
845
|
+
impersonated_service_account?: string | null;
|
|
837
846
|
cost_estimate_enabled?: boolean | null;
|
|
838
847
|
pdt_api_control_enabled?: boolean | null;
|
|
839
848
|
connection_pooling?: boolean;
|
|
849
|
+
default_bq_connection?: boolean;
|
|
850
|
+
bq_storage_project_id?: string | null;
|
|
851
|
+
bq_roles_verified?: boolean | null;
|
|
840
852
|
}
|
|
841
853
|
export interface IDBConnectionBase {
|
|
842
854
|
can?: IDictionary<boolean>;
|
|
@@ -2873,6 +2885,7 @@ export interface IRunningQueries {
|
|
|
2873
2885
|
status?: string | null;
|
|
2874
2886
|
runtime?: number | null;
|
|
2875
2887
|
sql?: string | null;
|
|
2888
|
+
sql_interface_sql?: string | null;
|
|
2876
2889
|
}
|
|
2877
2890
|
export interface ISamlConfig {
|
|
2878
2891
|
can?: IDictionary<boolean>;
|
|
@@ -3083,6 +3096,8 @@ export interface ISetting {
|
|
|
3083
3096
|
embed_config?: IEmbedConfig;
|
|
3084
3097
|
login_notification_enabled?: boolean;
|
|
3085
3098
|
login_notification_text?: string | null;
|
|
3099
|
+
dashboard_auto_refresh_restriction?: boolean;
|
|
3100
|
+
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
3086
3101
|
}
|
|
3087
3102
|
export interface ISmtpNodeStatus {
|
|
3088
3103
|
is_valid?: boolean;
|
|
@@ -3663,6 +3678,8 @@ export interface IWriteDBConnection {
|
|
|
3663
3678
|
query_timezone?: string | null;
|
|
3664
3679
|
schema?: string | null;
|
|
3665
3680
|
max_connections?: number | null;
|
|
3681
|
+
max_queries?: number | null;
|
|
3682
|
+
max_queries_per_user?: number | null;
|
|
3666
3683
|
max_billing_gigabytes?: string | null;
|
|
3667
3684
|
ssl?: boolean;
|
|
3668
3685
|
verify_ssl?: boolean;
|
|
@@ -3684,9 +3701,12 @@ export interface IWriteDBConnection {
|
|
|
3684
3701
|
disable_context_comment?: boolean | null;
|
|
3685
3702
|
oauth_application_id?: string | null;
|
|
3686
3703
|
always_retry_failed_builds?: boolean | null;
|
|
3704
|
+
uses_application_default_credentials?: boolean | null;
|
|
3705
|
+
impersonated_service_account?: string | null;
|
|
3687
3706
|
cost_estimate_enabled?: boolean | null;
|
|
3688
3707
|
pdt_api_control_enabled?: boolean | null;
|
|
3689
3708
|
connection_pooling?: boolean;
|
|
3709
|
+
bq_storage_project_id?: string | null;
|
|
3690
3710
|
}
|
|
3691
3711
|
export interface IWriteDBConnectionOverride {
|
|
3692
3712
|
context?: string;
|
|
@@ -4015,6 +4035,8 @@ export interface IWriteSetting {
|
|
|
4015
4035
|
email_domain_allowlist?: string[] | null;
|
|
4016
4036
|
embed_cookieless_v2?: boolean;
|
|
4017
4037
|
embed_config?: IEmbedConfig | null;
|
|
4038
|
+
dashboard_auto_refresh_restriction?: boolean;
|
|
4039
|
+
dashboard_auto_refresh_minimum_interval?: string | null;
|
|
4018
4040
|
}
|
|
4019
4041
|
export interface IWriteSqlInterfaceQueryCreate {
|
|
4020
4042
|
sql: string | null;
|