@looker/sdk 24.14.0 → 24.16.2
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 +40 -0
- package/README.md +66 -17
- package/lib/4.0/funcs.d.ts +4 -3
- package/lib/4.0/funcs.js +834 -818
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +4 -3
- package/lib/4.0/methods.js +556 -542
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +4 -3
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +32 -3
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +437 -437
- package/lib/4.0/streams.js +557 -542
- 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 +829 -813
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +556 -542
- 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 +558 -543
- 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/lib/esm/extensionSdk.js +4 -3
- package/lib/esm/extensionSdk.js.map +1 -1
- package/lib/extensionSdk.d.ts +3 -2
- package/lib/extensionSdk.js +4 -3
- package/lib/extensionSdk.js.map +1 -1
- package/package.json +3 -11
package/lib/4.0/models.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { IDictionary, DelimArray } from '@looker/sdk-rtl';
|
|
2
2
|
export interface IAccessToken {
|
|
3
3
|
access_token?: string;
|
|
4
4
|
token_type?: string;
|
|
@@ -277,6 +277,26 @@ export interface IContentSearch {
|
|
|
277
277
|
view_count?: number | null;
|
|
278
278
|
preferred_viewer?: string | null;
|
|
279
279
|
}
|
|
280
|
+
export interface IContentSummary {
|
|
281
|
+
can?: IDictionary<boolean>;
|
|
282
|
+
id?: string;
|
|
283
|
+
content_type?: string | null;
|
|
284
|
+
content_id?: string | null;
|
|
285
|
+
content_slug?: string | null;
|
|
286
|
+
title?: string | null;
|
|
287
|
+
description?: string | null;
|
|
288
|
+
last_viewed_at?: Date | null;
|
|
289
|
+
user_id?: string | null;
|
|
290
|
+
user_full_name?: string | null;
|
|
291
|
+
is_scheduled?: boolean;
|
|
292
|
+
favorite_count?: number | null;
|
|
293
|
+
view_count?: number | null;
|
|
294
|
+
favorite_id?: string | null;
|
|
295
|
+
weighted_score?: number | null;
|
|
296
|
+
group_weighted_score?: number | null;
|
|
297
|
+
suggestion_score?: number | null;
|
|
298
|
+
preferred_viewer?: string | null;
|
|
299
|
+
}
|
|
280
300
|
export interface IContentValidation {
|
|
281
301
|
content_with_errors?: IContentValidatorError[] | null;
|
|
282
302
|
computation_time?: number | null;
|
|
@@ -2315,6 +2335,15 @@ export interface IRequestConnectionTables {
|
|
|
2315
2335
|
table_filter?: string | null;
|
|
2316
2336
|
table_limit?: number | null;
|
|
2317
2337
|
}
|
|
2338
|
+
export interface IRequestContentSummary {
|
|
2339
|
+
fields?: string | null;
|
|
2340
|
+
limit?: number | null;
|
|
2341
|
+
offset?: number | null;
|
|
2342
|
+
target_group_id?: string | null;
|
|
2343
|
+
target_user_id?: string | null;
|
|
2344
|
+
target_content_type?: string | null;
|
|
2345
|
+
sorts?: string | null;
|
|
2346
|
+
}
|
|
2318
2347
|
export interface IRequestContentThumbnail {
|
|
2319
2348
|
type: string;
|
|
2320
2349
|
resource_id: string;
|
|
@@ -2973,7 +3002,6 @@ export interface IScheduledPlan {
|
|
|
2973
3002
|
crontab?: string | null;
|
|
2974
3003
|
datagroup?: string | null;
|
|
2975
3004
|
timezone?: string | null;
|
|
2976
|
-
query_id?: string | null;
|
|
2977
3005
|
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
2978
3006
|
run_once?: boolean;
|
|
2979
3007
|
include_links?: boolean;
|
|
@@ -2987,6 +3015,7 @@ export interface IScheduledPlan {
|
|
|
2987
3015
|
color_theme?: string | null;
|
|
2988
3016
|
long_tables?: boolean;
|
|
2989
3017
|
inline_table_width?: number | null;
|
|
3018
|
+
query_id?: string | null;
|
|
2990
3019
|
id?: string;
|
|
2991
3020
|
created_at?: Date | null;
|
|
2992
3021
|
updated_at?: Date | null;
|
|
@@ -3995,7 +4024,6 @@ export interface IWriteScheduledPlan {
|
|
|
3995
4024
|
crontab?: string | null;
|
|
3996
4025
|
datagroup?: string | null;
|
|
3997
4026
|
timezone?: string | null;
|
|
3998
|
-
query_id?: string | null;
|
|
3999
4027
|
scheduled_plan_destination?: IScheduledPlanDestination[] | null;
|
|
4000
4028
|
run_once?: boolean;
|
|
4001
4029
|
include_links?: boolean;
|
|
@@ -4009,6 +4037,7 @@ export interface IWriteScheduledPlan {
|
|
|
4009
4037
|
color_theme?: string | null;
|
|
4010
4038
|
long_tables?: boolean;
|
|
4011
4039
|
inline_table_width?: number | null;
|
|
4040
|
+
query_id?: string | null;
|
|
4012
4041
|
}
|
|
4013
4042
|
export interface IWriteSessionConfig {
|
|
4014
4043
|
allow_persistent_sessions?: boolean;
|