@looker/sdk 26.10.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.
- package/CHANGELOG.md +7 -0
- package/lib/4.0/funcs.d.ts +8 -2
- package/lib/4.0/funcs.js +485 -424
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +8 -2
- package/lib/4.0/methods.js +329 -280
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +8 -2
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +41 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +7 -1
- package/lib/4.0/streams.js +329 -280
- 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 +481 -420
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +329 -280
- 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 +329 -280
- 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
|
@@ -1723,6 +1723,30 @@ export interface IGitConnectionTestResult {
|
|
|
1723
1723
|
message?: string | null;
|
|
1724
1724
|
status?: string | null;
|
|
1725
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
|
+
}
|
|
1726
1750
|
export interface IGitStatus {
|
|
1727
1751
|
action?: string | null;
|
|
1728
1752
|
conflict?: boolean;
|
|
@@ -1740,6 +1764,13 @@ export interface IGoldenQuery {
|
|
|
1740
1764
|
last_updated_by_user_id?: number | null;
|
|
1741
1765
|
created_at?: Date;
|
|
1742
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;
|
|
1743
1774
|
}
|
|
1744
1775
|
export interface IGroup {
|
|
1745
1776
|
can?: IDictionary<boolean>;
|
|
@@ -2241,6 +2272,7 @@ export interface ILookmlModelExploreError {
|
|
|
2241
2272
|
export interface ILookmlModelExploreField {
|
|
2242
2273
|
align?: Align;
|
|
2243
2274
|
available_custom_timeframes?: string[] | null;
|
|
2275
|
+
timeframe_labels?: IDictionary<string> | null;
|
|
2244
2276
|
can_filter?: boolean;
|
|
2245
2277
|
category?: Category | null;
|
|
2246
2278
|
default_filter_value?: string | null;
|
|
@@ -2967,6 +2999,7 @@ export interface IRepositoryCredential {
|
|
|
2967
2999
|
export interface IRequestActiveThemes {
|
|
2968
3000
|
name?: string | null;
|
|
2969
3001
|
ts?: Date | null;
|
|
3002
|
+
theme_type?: string | null;
|
|
2970
3003
|
fields?: string | null;
|
|
2971
3004
|
}
|
|
2972
3005
|
export interface IRequestAlertNotifications {
|
|
@@ -3882,6 +3915,7 @@ export interface IScheduledPlan {
|
|
|
3882
3915
|
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
3883
3916
|
run_once?: boolean;
|
|
3884
3917
|
include_links?: boolean;
|
|
3918
|
+
include_dashboard_summary?: boolean;
|
|
3885
3919
|
custom_url_base?: string | null;
|
|
3886
3920
|
custom_url_params?: string | null;
|
|
3887
3921
|
custom_url_label?: string | null;
|
|
@@ -3970,6 +4004,7 @@ export interface ISelfServiceModelUploadData {
|
|
|
3970
4004
|
upload_type?: string | null;
|
|
3971
4005
|
drive_url?: string | null;
|
|
3972
4006
|
owner_id?: string | null;
|
|
4007
|
+
canvas_guid?: string | null;
|
|
3973
4008
|
}
|
|
3974
4009
|
export interface IServiceAccount {
|
|
3975
4010
|
can?: IDictionary<boolean>;
|
|
@@ -4036,6 +4071,7 @@ export interface ISetting {
|
|
|
4036
4071
|
managed_certificate_uri?: string[] | null;
|
|
4037
4072
|
content_certification_documentation_link?: string | null;
|
|
4038
4073
|
revoke_certification_on_edits?: boolean;
|
|
4074
|
+
automated_mfa_enabled?: boolean;
|
|
4039
4075
|
is_content_certification_enabled?: boolean;
|
|
4040
4076
|
auto_certify_lookml_content?: boolean;
|
|
4041
4077
|
ca_agent_observability?: boolean;
|
|
@@ -4848,6 +4884,9 @@ export interface IWriteGitBranch {
|
|
|
4848
4884
|
name?: string | null;
|
|
4849
4885
|
ref?: string | null;
|
|
4850
4886
|
}
|
|
4887
|
+
export interface IWriteGitDiagnosticReport {
|
|
4888
|
+
project_type?: string | null;
|
|
4889
|
+
}
|
|
4851
4890
|
export interface IWriteGoldenQuery {
|
|
4852
4891
|
questions?: string[] | null;
|
|
4853
4892
|
answer?: string;
|
|
@@ -5170,6 +5209,7 @@ export interface IWriteScheduledPlan {
|
|
|
5170
5209
|
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
5171
5210
|
run_once?: boolean;
|
|
5172
5211
|
include_links?: boolean;
|
|
5212
|
+
include_dashboard_summary?: boolean;
|
|
5173
5213
|
custom_url_base?: string | null;
|
|
5174
5214
|
custom_url_params?: string | null;
|
|
5175
5215
|
custom_url_label?: string | null;
|
|
@@ -5218,6 +5258,7 @@ export interface IWriteSetting {
|
|
|
5218
5258
|
managed_certificate_uri?: string[] | null;
|
|
5219
5259
|
content_certification_documentation_link?: string | null;
|
|
5220
5260
|
revoke_certification_on_edits?: boolean;
|
|
5261
|
+
automated_mfa_enabled?: boolean;
|
|
5221
5262
|
is_content_certification_enabled?: boolean;
|
|
5222
5263
|
auto_certify_lookml_content?: boolean;
|
|
5223
5264
|
ca_agent_observability?: boolean;
|