@looker/sdk 24.2.0 → 24.4.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 +14 -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 +68 -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
|
@@ -1292,16 +1292,8 @@ export declare enum InvestigativeContentType {
|
|
|
1292
1292
|
dashboard = "dashboard"
|
|
1293
1293
|
}
|
|
1294
1294
|
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[];
|
|
1295
|
+
metadata: IJsonBiMetadata;
|
|
1296
|
+
rows: string[];
|
|
1305
1297
|
}
|
|
1306
1298
|
export interface IJsonBiBigQueryMetadata {
|
|
1307
1299
|
total_bytes_processed: number;
|
|
@@ -1326,6 +1318,17 @@ export interface IJsonBiFields {
|
|
|
1326
1318
|
measures: IJsonBiField[];
|
|
1327
1319
|
pivots: IJsonBiField[];
|
|
1328
1320
|
}
|
|
1321
|
+
export interface IJsonBiMetadata {
|
|
1322
|
+
big_query_metadata: IJsonBiBigQueryMetadata;
|
|
1323
|
+
fields: IJsonBiFields;
|
|
1324
|
+
pivots: IJsonBiPivots[];
|
|
1325
|
+
has_subtotals: boolean;
|
|
1326
|
+
has_totals: boolean;
|
|
1327
|
+
columns_truncated: string;
|
|
1328
|
+
filter_expression: string | null;
|
|
1329
|
+
filters: IDictionary<string>;
|
|
1330
|
+
sql: string | null;
|
|
1331
|
+
}
|
|
1329
1332
|
export interface IJsonBiPivots {
|
|
1330
1333
|
key: string;
|
|
1331
1334
|
data: IDictionary<string>;
|
|
@@ -1819,6 +1822,7 @@ export interface IMergeQuerySourceQuery {
|
|
|
1819
1822
|
merge_fields?: IMergeFields[] | null;
|
|
1820
1823
|
name?: string | null;
|
|
1821
1824
|
query_id?: string | null;
|
|
1825
|
+
query_slug?: string | null;
|
|
1822
1826
|
}
|
|
1823
1827
|
export interface IMobileFeatureFlags {
|
|
1824
1828
|
feature_flag_name?: string | null;
|
|
@@ -2214,6 +2218,11 @@ export interface IRequestAllIntegrations {
|
|
|
2214
2218
|
fields?: string | null;
|
|
2215
2219
|
integration_hub_id?: string | null;
|
|
2216
2220
|
}
|
|
2221
|
+
export interface IRequestAllLookmlModels {
|
|
2222
|
+
fields?: string | null;
|
|
2223
|
+
limit?: number | null;
|
|
2224
|
+
offset?: number | null;
|
|
2225
|
+
}
|
|
2217
2226
|
export interface IRequestAllRoles {
|
|
2218
2227
|
fields?: string | null;
|
|
2219
2228
|
ids?: DelimArray<string> | null;
|
|
@@ -2223,6 +2232,10 @@ export interface IRequestAllScheduledPlans {
|
|
|
2223
2232
|
fields?: string | null;
|
|
2224
2233
|
all_users?: boolean | null;
|
|
2225
2234
|
}
|
|
2235
|
+
export interface IRequestAllUserAttributes {
|
|
2236
|
+
fields?: string | null;
|
|
2237
|
+
sorts?: string | null;
|
|
2238
|
+
}
|
|
2226
2239
|
export interface IRequestAllUsers {
|
|
2227
2240
|
fields?: string | null;
|
|
2228
2241
|
page?: number | null;
|
|
@@ -2592,6 +2605,30 @@ export interface IRequestSearchGroups {
|
|
|
2592
2605
|
externally_managed?: boolean | null;
|
|
2593
2606
|
externally_orphaned?: boolean | null;
|
|
2594
2607
|
}
|
|
2608
|
+
export interface IRequestSearchGroupsWithHierarchy {
|
|
2609
|
+
fields?: string | null;
|
|
2610
|
+
limit?: number | null;
|
|
2611
|
+
offset?: number | null;
|
|
2612
|
+
sorts?: string | null;
|
|
2613
|
+
filter_or?: boolean | null;
|
|
2614
|
+
id?: string | null;
|
|
2615
|
+
name?: string | null;
|
|
2616
|
+
external_group_id?: string | null;
|
|
2617
|
+
externally_managed?: boolean | null;
|
|
2618
|
+
externally_orphaned?: boolean | null;
|
|
2619
|
+
}
|
|
2620
|
+
export interface IRequestSearchGroupsWithRoles {
|
|
2621
|
+
fields?: string | null;
|
|
2622
|
+
limit?: number | null;
|
|
2623
|
+
offset?: number | null;
|
|
2624
|
+
sorts?: string | null;
|
|
2625
|
+
filter_or?: boolean | null;
|
|
2626
|
+
id?: string | null;
|
|
2627
|
+
name?: string | null;
|
|
2628
|
+
external_group_id?: string | null;
|
|
2629
|
+
externally_managed?: boolean | null;
|
|
2630
|
+
externally_orphaned?: boolean | null;
|
|
2631
|
+
}
|
|
2595
2632
|
export interface IRequestSearchLooks {
|
|
2596
2633
|
id?: string | null;
|
|
2597
2634
|
title?: string | null;
|
|
@@ -2623,6 +2660,17 @@ export interface IRequestSearchModelSets {
|
|
|
2623
2660
|
built_in?: boolean | null;
|
|
2624
2661
|
filter_or?: boolean | null;
|
|
2625
2662
|
}
|
|
2663
|
+
export interface IRequestSearchPermissionSets {
|
|
2664
|
+
fields?: string | null;
|
|
2665
|
+
limit?: number | null;
|
|
2666
|
+
offset?: number | null;
|
|
2667
|
+
sorts?: string | null;
|
|
2668
|
+
id?: string | null;
|
|
2669
|
+
name?: string | null;
|
|
2670
|
+
all_access?: boolean | null;
|
|
2671
|
+
built_in?: boolean | null;
|
|
2672
|
+
filter_or?: boolean | null;
|
|
2673
|
+
}
|
|
2626
2674
|
export interface IRequestSearchRoles {
|
|
2627
2675
|
fields?: string | null;
|
|
2628
2676
|
limit?: number | null;
|
|
@@ -2633,6 +2681,16 @@ export interface IRequestSearchRoles {
|
|
|
2633
2681
|
built_in?: boolean | null;
|
|
2634
2682
|
filter_or?: boolean | null;
|
|
2635
2683
|
}
|
|
2684
|
+
export interface IRequestSearchRolesWithUserCount {
|
|
2685
|
+
fields?: string | null;
|
|
2686
|
+
limit?: number | null;
|
|
2687
|
+
offset?: number | null;
|
|
2688
|
+
sorts?: string | null;
|
|
2689
|
+
id?: string | null;
|
|
2690
|
+
name?: string | null;
|
|
2691
|
+
built_in?: boolean | null;
|
|
2692
|
+
filter_or?: boolean | null;
|
|
2693
|
+
}
|
|
2636
2694
|
export interface IRequestSearchThemes {
|
|
2637
2695
|
id?: string | null;
|
|
2638
2696
|
name?: string | null;
|