@looker/sdk 24.2.0 → 24.8.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 +21 -0
- package/lib/4.0/funcs.d.ts +7 -7
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +7 -7
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +7 -7
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +80 -10
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +7 -7
- 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.map +1 -1
- 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.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
|
@@ -836,6 +836,7 @@ export interface IDBConnection {
|
|
|
836
836
|
always_retry_failed_builds?: boolean | null;
|
|
837
837
|
cost_estimate_enabled?: boolean | null;
|
|
838
838
|
pdt_api_control_enabled?: boolean | null;
|
|
839
|
+
connection_pooling?: boolean;
|
|
839
840
|
}
|
|
840
841
|
export interface IDBConnectionBase {
|
|
841
842
|
can?: IDictionary<boolean>;
|
|
@@ -936,6 +937,7 @@ export interface IDialectInfoOptions {
|
|
|
936
937
|
tns?: boolean;
|
|
937
938
|
username?: boolean;
|
|
938
939
|
username_required?: boolean;
|
|
940
|
+
supports_connection_pooling?: boolean;
|
|
939
941
|
}
|
|
940
942
|
export interface IDigestEmails {
|
|
941
943
|
is_enabled?: boolean;
|
|
@@ -1292,16 +1294,8 @@ export declare enum InvestigativeContentType {
|
|
|
1292
1294
|
dashboard = "dashboard"
|
|
1293
1295
|
}
|
|
1294
1296
|
export interface IJsonBi {
|
|
1295
|
-
|
|
1296
|
-
|
|
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
|
-
sql: string | null;
|
|
1304
|
-
data: string[];
|
|
1297
|
+
metadata: IJsonBiMetadata;
|
|
1298
|
+
rows: string[];
|
|
1305
1299
|
}
|
|
1306
1300
|
export interface IJsonBiBigQueryMetadata {
|
|
1307
1301
|
total_bytes_processed: number;
|
|
@@ -1325,6 +1319,18 @@ export interface IJsonBiFields {
|
|
|
1325
1319
|
dimensions: IJsonBiField[];
|
|
1326
1320
|
measures: IJsonBiField[];
|
|
1327
1321
|
pivots: IJsonBiField[];
|
|
1322
|
+
table_calculations?: IJsonBiTableCalc[];
|
|
1323
|
+
}
|
|
1324
|
+
export interface IJsonBiMetadata {
|
|
1325
|
+
big_query_metadata: IJsonBiBigQueryMetadata;
|
|
1326
|
+
fields: IJsonBiFields;
|
|
1327
|
+
pivots: IJsonBiPivots[];
|
|
1328
|
+
has_subtotals: boolean;
|
|
1329
|
+
has_totals: boolean;
|
|
1330
|
+
columns_truncated: string;
|
|
1331
|
+
filter_expression: string | null;
|
|
1332
|
+
filters: IDictionary<string>;
|
|
1333
|
+
sql: string | null;
|
|
1328
1334
|
}
|
|
1329
1335
|
export interface IJsonBiPivots {
|
|
1330
1336
|
key: string;
|
|
@@ -1332,6 +1338,14 @@ export interface IJsonBiPivots {
|
|
|
1332
1338
|
sort_values: IDictionary<string>;
|
|
1333
1339
|
is_total: boolean;
|
|
1334
1340
|
}
|
|
1341
|
+
export interface IJsonBiTableCalc {
|
|
1342
|
+
name: string | null;
|
|
1343
|
+
label: string | null;
|
|
1344
|
+
align: string | null;
|
|
1345
|
+
expression: string | null;
|
|
1346
|
+
value_format: string | null;
|
|
1347
|
+
measure: boolean | null;
|
|
1348
|
+
}
|
|
1335
1349
|
export interface ILDAPConfig {
|
|
1336
1350
|
can?: IDictionary<boolean>;
|
|
1337
1351
|
alternate_email_login_allowed?: boolean;
|
|
@@ -1819,6 +1833,7 @@ export interface IMergeQuerySourceQuery {
|
|
|
1819
1833
|
merge_fields?: IMergeFields[] | null;
|
|
1820
1834
|
name?: string | null;
|
|
1821
1835
|
query_id?: string | null;
|
|
1836
|
+
query_slug?: string | null;
|
|
1822
1837
|
}
|
|
1823
1838
|
export interface IMobileFeatureFlags {
|
|
1824
1839
|
feature_flag_name?: string | null;
|
|
@@ -2214,6 +2229,11 @@ export interface IRequestAllIntegrations {
|
|
|
2214
2229
|
fields?: string | null;
|
|
2215
2230
|
integration_hub_id?: string | null;
|
|
2216
2231
|
}
|
|
2232
|
+
export interface IRequestAllLookmlModels {
|
|
2233
|
+
fields?: string | null;
|
|
2234
|
+
limit?: number | null;
|
|
2235
|
+
offset?: number | null;
|
|
2236
|
+
}
|
|
2217
2237
|
export interface IRequestAllRoles {
|
|
2218
2238
|
fields?: string | null;
|
|
2219
2239
|
ids?: DelimArray<string> | null;
|
|
@@ -2223,6 +2243,10 @@ export interface IRequestAllScheduledPlans {
|
|
|
2223
2243
|
fields?: string | null;
|
|
2224
2244
|
all_users?: boolean | null;
|
|
2225
2245
|
}
|
|
2246
|
+
export interface IRequestAllUserAttributes {
|
|
2247
|
+
fields?: string | null;
|
|
2248
|
+
sorts?: string | null;
|
|
2249
|
+
}
|
|
2226
2250
|
export interface IRequestAllUsers {
|
|
2227
2251
|
fields?: string | null;
|
|
2228
2252
|
page?: number | null;
|
|
@@ -2592,6 +2616,30 @@ export interface IRequestSearchGroups {
|
|
|
2592
2616
|
externally_managed?: boolean | null;
|
|
2593
2617
|
externally_orphaned?: boolean | null;
|
|
2594
2618
|
}
|
|
2619
|
+
export interface IRequestSearchGroupsWithHierarchy {
|
|
2620
|
+
fields?: string | null;
|
|
2621
|
+
limit?: number | null;
|
|
2622
|
+
offset?: number | null;
|
|
2623
|
+
sorts?: string | null;
|
|
2624
|
+
filter_or?: boolean | null;
|
|
2625
|
+
id?: string | null;
|
|
2626
|
+
name?: string | null;
|
|
2627
|
+
external_group_id?: string | null;
|
|
2628
|
+
externally_managed?: boolean | null;
|
|
2629
|
+
externally_orphaned?: boolean | null;
|
|
2630
|
+
}
|
|
2631
|
+
export interface IRequestSearchGroupsWithRoles {
|
|
2632
|
+
fields?: string | null;
|
|
2633
|
+
limit?: number | null;
|
|
2634
|
+
offset?: number | null;
|
|
2635
|
+
sorts?: string | null;
|
|
2636
|
+
filter_or?: boolean | null;
|
|
2637
|
+
id?: string | null;
|
|
2638
|
+
name?: string | null;
|
|
2639
|
+
external_group_id?: string | null;
|
|
2640
|
+
externally_managed?: boolean | null;
|
|
2641
|
+
externally_orphaned?: boolean | null;
|
|
2642
|
+
}
|
|
2595
2643
|
export interface IRequestSearchLooks {
|
|
2596
2644
|
id?: string | null;
|
|
2597
2645
|
title?: string | null;
|
|
@@ -2623,6 +2671,17 @@ export interface IRequestSearchModelSets {
|
|
|
2623
2671
|
built_in?: boolean | null;
|
|
2624
2672
|
filter_or?: boolean | null;
|
|
2625
2673
|
}
|
|
2674
|
+
export interface IRequestSearchPermissionSets {
|
|
2675
|
+
fields?: string | null;
|
|
2676
|
+
limit?: number | null;
|
|
2677
|
+
offset?: number | null;
|
|
2678
|
+
sorts?: string | null;
|
|
2679
|
+
id?: string | null;
|
|
2680
|
+
name?: string | null;
|
|
2681
|
+
all_access?: boolean | null;
|
|
2682
|
+
built_in?: boolean | null;
|
|
2683
|
+
filter_or?: boolean | null;
|
|
2684
|
+
}
|
|
2626
2685
|
export interface IRequestSearchRoles {
|
|
2627
2686
|
fields?: string | null;
|
|
2628
2687
|
limit?: number | null;
|
|
@@ -2633,6 +2692,16 @@ export interface IRequestSearchRoles {
|
|
|
2633
2692
|
built_in?: boolean | null;
|
|
2634
2693
|
filter_or?: boolean | null;
|
|
2635
2694
|
}
|
|
2695
|
+
export interface IRequestSearchRolesWithUserCount {
|
|
2696
|
+
fields?: string | null;
|
|
2697
|
+
limit?: number | null;
|
|
2698
|
+
offset?: number | null;
|
|
2699
|
+
sorts?: string | null;
|
|
2700
|
+
id?: string | null;
|
|
2701
|
+
name?: string | null;
|
|
2702
|
+
built_in?: boolean | null;
|
|
2703
|
+
filter_or?: boolean | null;
|
|
2704
|
+
}
|
|
2636
2705
|
export interface IRequestSearchThemes {
|
|
2637
2706
|
id?: string | null;
|
|
2638
2707
|
name?: string | null;
|
|
@@ -3610,6 +3679,7 @@ export interface IWriteDBConnection {
|
|
|
3610
3679
|
always_retry_failed_builds?: boolean | null;
|
|
3611
3680
|
cost_estimate_enabled?: boolean | null;
|
|
3612
3681
|
pdt_api_control_enabled?: boolean | null;
|
|
3682
|
+
connection_pooling?: boolean;
|
|
3613
3683
|
}
|
|
3614
3684
|
export interface IWriteDBConnectionOverride {
|
|
3615
3685
|
context?: string;
|