@looker/sdk 23.18.0 → 23.20.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 +4 -4
- package/lib/4.0/funcs.js +0 -2
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +4 -4
- package/lib/4.0/methods.js +0 -2
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +4 -4
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +53 -2
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +3 -3
- package/lib/4.0/streams.js +0 -2
- 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 +0 -2
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +0 -2
- 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 +0 -2
- 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
|
@@ -1291,6 +1291,46 @@ export interface IInternalHelpResourcesContent {
|
|
|
1291
1291
|
export declare enum InvestigativeContentType {
|
|
1292
1292
|
dashboard = "dashboard"
|
|
1293
1293
|
}
|
|
1294
|
+
export interface IJsonBi {
|
|
1295
|
+
big_query_metadata: IJsonBiBigQueryMetadata;
|
|
1296
|
+
fields: IJsonBiFields;
|
|
1297
|
+
pivots: IJsonBiPivots[];
|
|
1298
|
+
has_subtotals: boolean;
|
|
1299
|
+
has_totals: boolean;
|
|
1300
|
+
columns_truncated: string;
|
|
1301
|
+
filter_expression: string | null;
|
|
1302
|
+
filters: IDictionary<string>;
|
|
1303
|
+
data: string[];
|
|
1304
|
+
}
|
|
1305
|
+
export interface IJsonBiBigQueryMetadata {
|
|
1306
|
+
total_bytes_processed: number;
|
|
1307
|
+
backend_cache_hit: boolean;
|
|
1308
|
+
}
|
|
1309
|
+
export interface IJsonBiField {
|
|
1310
|
+
sql: string | null;
|
|
1311
|
+
view: string;
|
|
1312
|
+
dimension_group: string | null;
|
|
1313
|
+
category: string;
|
|
1314
|
+
field_group_label: string | null;
|
|
1315
|
+
name: string;
|
|
1316
|
+
type: string;
|
|
1317
|
+
view_label: string | null;
|
|
1318
|
+
label: string;
|
|
1319
|
+
field_group_variant: string;
|
|
1320
|
+
hidden: boolean;
|
|
1321
|
+
description: string | null;
|
|
1322
|
+
}
|
|
1323
|
+
export interface IJsonBiFields {
|
|
1324
|
+
dimensions: IJsonBiField[];
|
|
1325
|
+
measures: IJsonBiField[];
|
|
1326
|
+
pivots: IJsonBiField[];
|
|
1327
|
+
}
|
|
1328
|
+
export interface IJsonBiPivots {
|
|
1329
|
+
key: string;
|
|
1330
|
+
data: IDictionary<string>;
|
|
1331
|
+
sort_values: IDictionary<string>;
|
|
1332
|
+
is_total: boolean;
|
|
1333
|
+
}
|
|
1294
1334
|
export interface ILDAPConfig {
|
|
1295
1335
|
can?: IDictionary<boolean>;
|
|
1296
1336
|
alternate_email_login_allowed?: boolean;
|
|
@@ -2055,6 +2095,17 @@ export interface IQuery {
|
|
|
2055
2095
|
query_timezone?: string | null;
|
|
2056
2096
|
has_table_calculations?: boolean;
|
|
2057
2097
|
}
|
|
2098
|
+
export interface IQueryFormats {
|
|
2099
|
+
json_bi?: IJsonBi;
|
|
2100
|
+
json?: string | null;
|
|
2101
|
+
json_detail?: string | null;
|
|
2102
|
+
csv?: string | null;
|
|
2103
|
+
txt?: string | null;
|
|
2104
|
+
html?: string | null;
|
|
2105
|
+
md?: string | null;
|
|
2106
|
+
xlsx?: string | null;
|
|
2107
|
+
sql?: string | null;
|
|
2108
|
+
}
|
|
2058
2109
|
export interface IQueryTask {
|
|
2059
2110
|
can?: IDictionary<boolean>;
|
|
2060
2111
|
id?: string;
|
|
@@ -2260,8 +2311,6 @@ export interface IRequestCreateQueryTask {
|
|
|
2260
2311
|
path_prefix?: string | null;
|
|
2261
2312
|
rebuild_pdts?: boolean | null;
|
|
2262
2313
|
server_table_calcs?: boolean | null;
|
|
2263
|
-
image_width?: number | null;
|
|
2264
|
-
image_height?: number | null;
|
|
2265
2314
|
fields?: string | null;
|
|
2266
2315
|
}
|
|
2267
2316
|
export interface IRequestCreateUserCredentialsEmailPasswordReset {
|
|
@@ -2995,6 +3044,8 @@ export interface ISetting {
|
|
|
2995
3044
|
embed_cookieless_v2?: boolean;
|
|
2996
3045
|
embed_enabled?: boolean;
|
|
2997
3046
|
embed_config?: IEmbedConfig;
|
|
3047
|
+
login_notification_enabled?: boolean;
|
|
3048
|
+
login_notification_text?: string | null;
|
|
2998
3049
|
}
|
|
2999
3050
|
export interface ISmtpNodeStatus {
|
|
3000
3051
|
is_valid?: boolean;
|