@looker/sdk 23.0.0 → 23.2.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.
Files changed (39) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/lib/3.1/funcs.js.map +1 -1
  3. package/lib/3.1/methods.js.map +1 -1
  4. package/lib/3.1/methodsInterface.js.map +1 -1
  5. package/lib/3.1/models.d.ts +3 -0
  6. package/lib/3.1/models.js.map +1 -1
  7. package/lib/3.1/streams.js.map +1 -1
  8. package/lib/4.0/funcs.d.ts +2 -1
  9. package/lib/4.0/funcs.js +823 -806
  10. package/lib/4.0/funcs.js.map +1 -1
  11. package/lib/4.0/methods.d.ts +2 -1
  12. package/lib/4.0/methods.js +550 -536
  13. package/lib/4.0/methods.js.map +1 -1
  14. package/lib/4.0/methodsInterface.d.ts +2 -1
  15. package/lib/4.0/methodsInterface.js.map +1 -1
  16. package/lib/4.0/models.d.ts +46 -0
  17. package/lib/4.0/models.js.map +1 -1
  18. package/lib/4.0/streams.d.ts +2 -1
  19. package/lib/4.0/streams.js +550 -536
  20. package/lib/4.0/streams.js.map +1 -1
  21. package/lib/constants.d.ts +1 -1
  22. package/lib/constants.js +1 -1
  23. package/lib/constants.js.map +1 -1
  24. package/lib/esm/3.1/funcs.js.map +1 -1
  25. package/lib/esm/3.1/methods.js.map +1 -1
  26. package/lib/esm/3.1/methodsInterface.js.map +1 -1
  27. package/lib/esm/3.1/models.js.map +1 -1
  28. package/lib/esm/3.1/streams.js.map +1 -1
  29. package/lib/esm/4.0/funcs.js +823 -806
  30. package/lib/esm/4.0/funcs.js.map +1 -1
  31. package/lib/esm/4.0/methods.js +550 -536
  32. package/lib/esm/4.0/methods.js.map +1 -1
  33. package/lib/esm/4.0/methodsInterface.js.map +1 -1
  34. package/lib/esm/4.0/models.js.map +1 -1
  35. package/lib/esm/4.0/streams.js +550 -536
  36. package/lib/esm/4.0/streams.js.map +1 -1
  37. package/lib/esm/constants.js +1 -1
  38. package/lib/esm/constants.js.map +1 -1
  39. package/package.json +2 -2
@@ -266,6 +266,17 @@ export interface IContentMetaGroupUser {
266
266
  group_id?: string | null;
267
267
  user_id?: string | null;
268
268
  }
269
+ export interface IContentSearch {
270
+ can?: IDictionary<boolean>;
271
+ content_id?: string | null;
272
+ type?: string | null;
273
+ title?: string | null;
274
+ description?: string | null;
275
+ folder_id?: string | null;
276
+ folder_name?: string | null;
277
+ view_count?: number | null;
278
+ preferred_viewer?: string | null;
279
+ }
269
280
  export interface IContentValidation {
270
281
  content_with_errors?: IContentValidatorError[] | null;
271
282
  computation_time?: number | null;
@@ -816,7 +827,9 @@ export interface IDBConnection {
816
827
  after_connect_statements?: string | null;
817
828
  pdt_context_override?: IDBConnectionOverride;
818
829
  managed?: boolean;
830
+ custom_local_port?: number | null;
819
831
  tunnel_id?: string | null;
832
+ uses_tns?: boolean | null;
820
833
  pdt_concurrency?: number | null;
821
834
  disable_context_comment?: boolean | null;
822
835
  oauth_application_id?: string | null;
@@ -2397,6 +2410,15 @@ export interface IRequestSearchBoards {
2397
2410
  filter_or?: boolean | null;
2398
2411
  permission?: string | null;
2399
2412
  }
2413
+ export interface IRequestSearchContent {
2414
+ terms: string;
2415
+ fields?: string | null;
2416
+ types?: string | null;
2417
+ limit?: number | null;
2418
+ offset?: number | null;
2419
+ page?: number | null;
2420
+ per_page?: number | null;
2421
+ }
2400
2422
  export interface IRequestSearchContentFavorites {
2401
2423
  id?: string | null;
2402
2424
  user_id?: string | null;
@@ -2941,6 +2963,17 @@ export interface ISetting {
2941
2963
  host_url?: string;
2942
2964
  override_warnings?: boolean;
2943
2965
  email_domain_allowlist?: string[];
2966
+ sisu?: ISisuSetting;
2967
+ }
2968
+ export interface ISisuSetting {
2969
+ can?: IDictionary<boolean>;
2970
+ enabled?: boolean;
2971
+ extension_id?: string | null;
2972
+ configured?: boolean;
2973
+ api_key_id?: string | null;
2974
+ api_user_id?: string | null;
2975
+ installation_id?: string | null;
2976
+ listing_id_override?: string | null;
2944
2977
  }
2945
2978
  export interface ISmtpNodeStatus {
2946
2979
  is_valid?: boolean;
@@ -3105,6 +3138,7 @@ export interface IThemeSettings {
3105
3138
  show_dashboard_menu?: boolean;
3106
3139
  show_filters_toggle?: boolean;
3107
3140
  show_dashboard_header?: boolean;
3141
+ center_dashboard_title?: boolean;
3108
3142
  }
3109
3143
  export interface ITimezone {
3110
3144
  value?: string | null;
@@ -3498,7 +3532,9 @@ export interface IWriteDBConnection {
3498
3532
  sql_writing_with_info_schema?: boolean;
3499
3533
  after_connect_statements?: string | null;
3500
3534
  pdt_context_override?: IWriteDBConnectionOverride | null;
3535
+ custom_local_port?: number | null;
3501
3536
  tunnel_id?: string | null;
3537
+ uses_tns?: boolean | null;
3502
3538
  pdt_concurrency?: number | null;
3503
3539
  disable_context_comment?: boolean | null;
3504
3540
  oauth_application_id?: string | null;
@@ -3828,6 +3864,16 @@ export interface IWriteSetting {
3828
3864
  host_url?: string;
3829
3865
  override_warnings?: boolean;
3830
3866
  email_domain_allowlist?: string[] | null;
3867
+ sisu?: IWriteSisuSetting | null;
3868
+ }
3869
+ export interface IWriteSisuSetting {
3870
+ enabled?: boolean;
3871
+ extension_id?: string | null;
3872
+ configured?: boolean;
3873
+ api_key_id?: string | null;
3874
+ api_user_id?: string | null;
3875
+ installation_id?: string | null;
3876
+ listing_id_override?: string | null;
3831
3877
  }
3832
3878
  export interface IWriteSshServer {
3833
3879
  ssh_server_name?: string;