@looker/sdk 23.8.1 → 23.14.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 +33 -0
- package/README.md +2 -2
- package/lib/3.1/funcs.d.ts +4 -4
- package/lib/3.1/funcs.js +4 -2
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +4 -4
- package/lib/3.1/methods.js +4 -2
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +4 -4
- package/lib/3.1/methodsInterface.js.map +1 -1
- package/lib/3.1/models.d.ts +54 -1
- package/lib/3.1/models.js +2 -0
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +4 -4
- package/lib/3.1/streams.js +4 -2
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +8 -7
- package/lib/4.0/funcs.js +561 -548
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +8 -7
- package/lib/4.0/methods.js +374 -364
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +8 -7
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +109 -2
- package/lib/4.0/models.js +2 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +8 -7
- package/lib/4.0/streams.js +374 -364
- 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/3.1/funcs.js +4 -2
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +4 -2
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/methodsInterface.js.map +1 -1
- package/lib/esm/3.1/models.js +2 -0
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +4 -2
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +561 -548
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +374 -364
- 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 +2 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +374 -364
- 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/3.1/models.d.ts
CHANGED
|
@@ -717,6 +717,7 @@ export interface IEmbedSsoParams {
|
|
|
717
717
|
external_group_id?: string | null;
|
|
718
718
|
user_attributes?: IDictionary<any> | null;
|
|
719
719
|
secret_id?: number | null;
|
|
720
|
+
embed_domain?: string | null;
|
|
720
721
|
}
|
|
721
722
|
export interface IEmbedUrlResponse {
|
|
722
723
|
url?: string;
|
|
@@ -1749,6 +1750,10 @@ export interface IRequestAllScheduledPlans {
|
|
|
1749
1750
|
fields?: string | null;
|
|
1750
1751
|
all_users?: boolean | null;
|
|
1751
1752
|
}
|
|
1753
|
+
export interface IRequestAllUserAttributes {
|
|
1754
|
+
fields?: string | null;
|
|
1755
|
+
sorts?: string | null;
|
|
1756
|
+
}
|
|
1752
1757
|
export interface IRequestAllUsers {
|
|
1753
1758
|
fields?: string | null;
|
|
1754
1759
|
page?: number | null;
|
|
@@ -1981,6 +1986,21 @@ export interface IRequestSearchDashboards {
|
|
|
1981
1986
|
sorts?: string | null;
|
|
1982
1987
|
filter_or?: boolean | null;
|
|
1983
1988
|
}
|
|
1989
|
+
export interface IRequestSearchFolders {
|
|
1990
|
+
fields?: string | null;
|
|
1991
|
+
page?: number | null;
|
|
1992
|
+
per_page?: number | null;
|
|
1993
|
+
limit?: number | null;
|
|
1994
|
+
offset?: number | null;
|
|
1995
|
+
sorts?: string | null;
|
|
1996
|
+
name?: string | null;
|
|
1997
|
+
id?: number | null;
|
|
1998
|
+
parent_id?: string | null;
|
|
1999
|
+
creator_id?: string | null;
|
|
2000
|
+
filter_or?: boolean | null;
|
|
2001
|
+
is_shared_root?: boolean | null;
|
|
2002
|
+
is_users_root?: boolean | null;
|
|
2003
|
+
}
|
|
1984
2004
|
export interface IRequestSearchGroups {
|
|
1985
2005
|
fields?: string | null;
|
|
1986
2006
|
limit?: number | null;
|
|
@@ -2036,6 +2056,17 @@ export interface IRequestSearchModelSets {
|
|
|
2036
2056
|
built_in?: boolean | null;
|
|
2037
2057
|
filter_or?: boolean | null;
|
|
2038
2058
|
}
|
|
2059
|
+
export interface IRequestSearchPermissionSets {
|
|
2060
|
+
fields?: string | null;
|
|
2061
|
+
limit?: number | null;
|
|
2062
|
+
offset?: number | null;
|
|
2063
|
+
sorts?: string | null;
|
|
2064
|
+
id?: number | null;
|
|
2065
|
+
name?: string | null;
|
|
2066
|
+
all_access?: boolean | null;
|
|
2067
|
+
built_in?: boolean | null;
|
|
2068
|
+
filter_or?: boolean | null;
|
|
2069
|
+
}
|
|
2039
2070
|
export interface IRequestSearchRoles {
|
|
2040
2071
|
fields?: string | null;
|
|
2041
2072
|
limit?: number | null;
|
|
@@ -2059,6 +2090,7 @@ export interface IRequestSearchSpaces {
|
|
|
2059
2090
|
creator_id?: string | null;
|
|
2060
2091
|
filter_or?: boolean | null;
|
|
2061
2092
|
is_shared_root?: boolean | null;
|
|
2093
|
+
is_users_root?: boolean | null;
|
|
2062
2094
|
}
|
|
2063
2095
|
export interface IRequestSearchThemes {
|
|
2064
2096
|
id?: number | null;
|
|
@@ -2156,12 +2188,14 @@ export declare enum ResultFormat {
|
|
|
2156
2188
|
json = "json",
|
|
2157
2189
|
json_detail = "json_detail",
|
|
2158
2190
|
json_fe = "json_fe",
|
|
2191
|
+
json_bi = "json_bi",
|
|
2159
2192
|
csv = "csv",
|
|
2160
2193
|
html = "html",
|
|
2161
2194
|
md = "md",
|
|
2162
2195
|
txt = "txt",
|
|
2163
2196
|
xlsx = "xlsx",
|
|
2164
|
-
gsxml = "gsxml"
|
|
2197
|
+
gsxml = "gsxml",
|
|
2198
|
+
sql = "sql"
|
|
2165
2199
|
}
|
|
2166
2200
|
export interface IResultMakerFilterables {
|
|
2167
2201
|
model?: string | null;
|
|
@@ -2516,6 +2550,25 @@ export interface IThemeSettings {
|
|
|
2516
2550
|
center_dashboard_title?: boolean;
|
|
2517
2551
|
dashboard_title_font_size?: string;
|
|
2518
2552
|
box_shadow?: string;
|
|
2553
|
+
page_margin_top?: string;
|
|
2554
|
+
page_margin_bottom?: string;
|
|
2555
|
+
page_margin_sides?: string;
|
|
2556
|
+
show_explore_header?: boolean;
|
|
2557
|
+
show_explore_title?: boolean;
|
|
2558
|
+
show_explore_last_run?: boolean;
|
|
2559
|
+
show_explore_timezone?: boolean;
|
|
2560
|
+
show_explore_run_stop_button?: boolean;
|
|
2561
|
+
show_explore_actions_button?: boolean;
|
|
2562
|
+
show_look_header?: boolean;
|
|
2563
|
+
show_look_title?: boolean;
|
|
2564
|
+
show_look_last_run?: boolean;
|
|
2565
|
+
show_look_timezone?: boolean;
|
|
2566
|
+
show_look_run_stop_button?: boolean;
|
|
2567
|
+
show_look_actions_button?: boolean;
|
|
2568
|
+
tile_title_font_size?: string;
|
|
2569
|
+
column_gap_size?: string;
|
|
2570
|
+
row_gap_size?: string;
|
|
2571
|
+
border_radius?: string;
|
|
2519
2572
|
}
|
|
2520
2573
|
export interface ITimezone {
|
|
2521
2574
|
value?: string | null;
|
package/lib/3.1/models.js
CHANGED
|
@@ -71,12 +71,14 @@ var ResultFormat = function (ResultFormat) {
|
|
|
71
71
|
ResultFormat["json"] = "json";
|
|
72
72
|
ResultFormat["json_detail"] = "json_detail";
|
|
73
73
|
ResultFormat["json_fe"] = "json_fe";
|
|
74
|
+
ResultFormat["json_bi"] = "json_bi";
|
|
74
75
|
ResultFormat["csv"] = "csv";
|
|
75
76
|
ResultFormat["html"] = "html";
|
|
76
77
|
ResultFormat["md"] = "md";
|
|
77
78
|
ResultFormat["txt"] = "txt";
|
|
78
79
|
ResultFormat["xlsx"] = "xlsx";
|
|
79
80
|
ResultFormat["gsxml"] = "gsxml";
|
|
81
|
+
ResultFormat["sql"] = "sql";
|
|
80
82
|
return ResultFormat;
|
|
81
83
|
}({});
|
|
82
84
|
exports.ResultFormat = ResultFormat;
|