@looker/sdk 23.10.0 → 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 +19 -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 +34 -0
- package/lib/3.1/models.js +1 -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 +559 -547
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +8 -7
- package/lib/4.0/methods.js +372 -363
- 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 +87 -1
- package/lib/4.0/models.js +1 -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 +372 -363
- 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 +1 -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 +559 -547
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +372 -363
- 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 +1 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +372 -363
- 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/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,6 +2188,7 @@ 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",
|
|
@@ -2535,6 +2568,7 @@ export interface IThemeSettings {
|
|
|
2535
2568
|
tile_title_font_size?: string;
|
|
2536
2569
|
column_gap_size?: string;
|
|
2537
2570
|
row_gap_size?: string;
|
|
2571
|
+
border_radius?: string;
|
|
2538
2572
|
}
|
|
2539
2573
|
export interface ITimezone {
|
|
2540
2574
|
value?: string | null;
|
package/lib/3.1/models.js
CHANGED
|
@@ -71,6 +71,7 @@ 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";
|