@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.
@@ -1,4 +1,4 @@
1
- import type { DelimArray, IDictionary } from '@looker/sdk-rtl';
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;