@looker/sdk 26.4.0 → 26.6.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.
- package/CHANGELOG.md +21 -0
- package/lib/4.0/funcs.d.ts +2 -1
- package/lib/4.0/funcs.js +600 -592
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -1
- package/lib/4.0/methods.js +400 -394
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +42 -0
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -1
- package/lib/4.0/streams.js +400 -394
- 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 +598 -590
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +400 -394
- 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 +400 -394
- 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 +3 -3
package/lib/4.0/models.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export interface IAlert {
|
|
|
37
37
|
custom_title?: string | null;
|
|
38
38
|
dashboard_element_id?: string | null;
|
|
39
39
|
description?: string | null;
|
|
40
|
+
enhancements?: Enhancements | null;
|
|
40
41
|
destinations: IAlertDestination[] | null;
|
|
41
42
|
field: IAlertField;
|
|
42
43
|
followed?: boolean;
|
|
@@ -99,6 +100,7 @@ export interface IAlertPatch {
|
|
|
99
100
|
disabled_reason?: string | null;
|
|
100
101
|
is_public?: boolean | null;
|
|
101
102
|
threshold?: number | null;
|
|
103
|
+
enhancements?: Enhancements | null;
|
|
102
104
|
}
|
|
103
105
|
export declare enum Align {
|
|
104
106
|
left = "left",
|
|
@@ -1551,6 +1553,10 @@ export interface IEmbedSsoParams {
|
|
|
1551
1553
|
export interface IEmbedUrlResponse {
|
|
1552
1554
|
url?: string;
|
|
1553
1555
|
}
|
|
1556
|
+
export declare enum Enhancements {
|
|
1557
|
+
NONE = "NONE",
|
|
1558
|
+
STRATEGIC_NARRATIVE = "STRATEGIC_NARRATIVE"
|
|
1559
|
+
}
|
|
1554
1560
|
export interface IError {
|
|
1555
1561
|
message: string | null;
|
|
1556
1562
|
documentation_url: string | null;
|
|
@@ -1898,6 +1904,24 @@ export interface IJsonBiTableCalc {
|
|
|
1898
1904
|
value_format: string | null;
|
|
1899
1905
|
measure: boolean | null;
|
|
1900
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
|
+
}
|
|
1901
1925
|
export declare enum Kind {
|
|
1902
1926
|
previous = "previous",
|
|
1903
1927
|
difference = "difference",
|
|
@@ -2463,6 +2487,13 @@ export interface IMcpTools {
|
|
|
2463
2487
|
run_dashboard?: IMcpToolSetting;
|
|
2464
2488
|
run_look?: IMcpToolSetting;
|
|
2465
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;
|
|
2466
2497
|
}
|
|
2467
2498
|
export interface IMcpToolSetting {
|
|
2468
2499
|
enabled?: boolean;
|
|
@@ -3871,6 +3902,7 @@ export declare enum SecretType {
|
|
|
3871
3902
|
export interface ISelfServiceModelUploadData {
|
|
3872
3903
|
upload_type?: string | null;
|
|
3873
3904
|
drive_url?: string | null;
|
|
3905
|
+
owner_id?: string | null;
|
|
3874
3906
|
}
|
|
3875
3907
|
export interface IServiceAccount {
|
|
3876
3908
|
can?: IDictionary<boolean>;
|
|
@@ -3938,6 +3970,7 @@ export interface ISetting {
|
|
|
3938
3970
|
content_certification_documentation_link?: string | null;
|
|
3939
3971
|
revoke_certification_on_edits?: boolean;
|
|
3940
3972
|
is_content_certification_enabled?: boolean;
|
|
3973
|
+
auto_certify_lookml_content?: boolean;
|
|
3941
3974
|
mcp_tools?: IMcpTools;
|
|
3942
3975
|
}
|
|
3943
3976
|
export interface ISmtpNodeStatus {
|
|
@@ -4394,6 +4427,7 @@ export interface IWriteAlert {
|
|
|
4394
4427
|
custom_title?: string | null;
|
|
4395
4428
|
dashboard_element_id?: string | null;
|
|
4396
4429
|
description?: string | null;
|
|
4430
|
+
enhancements?: Enhancements | null;
|
|
4397
4431
|
destinations: IAlertDestination[] | null;
|
|
4398
4432
|
field: IAlertField | null;
|
|
4399
4433
|
is_disabled?: boolean;
|
|
@@ -4835,6 +4869,13 @@ export interface IWriteMcpTools {
|
|
|
4835
4869
|
run_dashboard?: IWriteMcpToolSetting | null;
|
|
4836
4870
|
run_look?: IWriteMcpToolSetting | null;
|
|
4837
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;
|
|
4838
4879
|
}
|
|
4839
4880
|
export interface IWriteMcpToolSetting {
|
|
4840
4881
|
enabled?: boolean;
|
|
@@ -5075,6 +5116,7 @@ export interface IWriteSetting {
|
|
|
5075
5116
|
content_certification_documentation_link?: string | null;
|
|
5076
5117
|
revoke_certification_on_edits?: boolean;
|
|
5077
5118
|
is_content_certification_enabled?: boolean;
|
|
5119
|
+
auto_certify_lookml_content?: boolean;
|
|
5078
5120
|
mcp_tools?: IWriteMcpTools | null;
|
|
5079
5121
|
}
|
|
5080
5122
|
export interface IWriteSqlInterfaceQueryCreate {
|
package/lib/4.0/models.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.WeekStartDay = exports.UserAttributeFilterTypes = exports.SupportedVisualizationFormattings = exports.SupportedFormattings = exports.SupportedFormats = exports.SupportedDownloadSettings = exports.SupportedActionTypes = exports.SslVersion = exports.SecretType = exports.ResultFormat = exports.PullRequestMode = exports.PermissionType = exports.Period = exports.Name = exports.Kind = exports.InvestigativeContentType = exports.Format = exports.FillStyle = exports.DeviceType = exports.DestinationType = exports.DependencyStatus = exports.ComparisonType = exports.CertificationStatus = exports.Category = exports.Align = void 0;
|
|
6
|
+
exports.WeekStartDay = exports.UserAttributeFilterTypes = exports.SupportedVisualizationFormattings = exports.SupportedFormattings = exports.SupportedFormats = exports.SupportedDownloadSettings = exports.SupportedActionTypes = exports.SslVersion = exports.SecretType = exports.ResultFormat = exports.PullRequestMode = exports.PermissionType = exports.Period = exports.Name = exports.Kind = exports.InvestigativeContentType = exports.Format = exports.FillStyle = exports.Enhancements = exports.DeviceType = exports.DestinationType = exports.DependencyStatus = exports.ComparisonType = exports.CertificationStatus = exports.Category = exports.Align = void 0;
|
|
7
7
|
var Align = exports.Align = function (Align) {
|
|
8
8
|
Align["left"] = "left";
|
|
9
9
|
Align["right"] = "right";
|
|
@@ -49,6 +49,11 @@ var DeviceType = exports.DeviceType = function (DeviceType) {
|
|
|
49
49
|
DeviceType["ios"] = "ios";
|
|
50
50
|
return DeviceType;
|
|
51
51
|
}({});
|
|
52
|
+
var Enhancements = exports.Enhancements = function (Enhancements) {
|
|
53
|
+
Enhancements["NONE"] = "NONE";
|
|
54
|
+
Enhancements["STRATEGIC_NARRATIVE"] = "STRATEGIC_NARRATIVE";
|
|
55
|
+
return Enhancements;
|
|
56
|
+
}({});
|
|
52
57
|
var FillStyle = exports.FillStyle = function (FillStyle) {
|
|
53
58
|
FillStyle["enumeration"] = "enumeration";
|
|
54
59
|
FillStyle["range"] = "range";
|