@looker/sdk 22.18.0 → 22.20.1
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 +16 -0
- package/lib/3.1/models.d.ts +4 -0
- package/lib/3.1/models.js.map +1 -1
- package/lib/4.0/funcs.d.ts +10 -1
- package/lib/4.0/funcs.js +1362 -1223
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +10 -1
- package/lib/4.0/methods.js +915 -812
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +10 -1
- package/lib/4.0/models.d.ts +60 -0
- package/lib/4.0/models.js +9 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +10 -1
- package/lib/4.0/streams.js +915 -812
- 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/3.1/models.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1330 -1218
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +915 -812
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js +7 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +915 -812
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
### [22.20.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v22.20.0...sdk-v22.20.1) (2022-12-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @looker/sdk-rtl bumped from ^21.4.0 to ^21.5.0
|
|
16
|
+
|
|
17
|
+
## [22.20.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v22.18.0...sdk-v22.20.0) (2022-11-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* generate SDKs for Looker 22.20 ([#1203](https://www.github.com/looker-open-source/sdk-codegen/issues/1203)) ([ba4595e](https://www.github.com/looker-open-source/sdk-codegen/commit/ba4595ee47895ec11ed1e1a74d87748285210d64))
|
|
23
|
+
|
|
8
24
|
## [22.18.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v22.16.0...sdk-v22.18.0) (2022-10-17)
|
|
9
25
|
|
|
10
26
|
|
package/lib/3.1/models.d.ts
CHANGED
|
@@ -370,6 +370,7 @@ export interface IDashboard {
|
|
|
370
370
|
deleted_at?: Date | null;
|
|
371
371
|
deleter_id?: number | null;
|
|
372
372
|
edit_uri?: Url | null;
|
|
373
|
+
enable_viz_full_screen?: boolean;
|
|
373
374
|
favorite_count?: number | null;
|
|
374
375
|
filters_bar_collapsed?: boolean;
|
|
375
376
|
filters_location_top?: boolean;
|
|
@@ -2511,6 +2512,8 @@ export interface IThemeSettings {
|
|
|
2511
2512
|
warn_button_color?: string;
|
|
2512
2513
|
tile_title_alignment?: string;
|
|
2513
2514
|
tile_shadow?: boolean;
|
|
2515
|
+
show_last_updated_indicator?: boolean;
|
|
2516
|
+
show_reload_data_icon?: boolean;
|
|
2514
2517
|
}
|
|
2515
2518
|
export interface ITimezone {
|
|
2516
2519
|
value?: string | null;
|
|
@@ -2754,6 +2757,7 @@ export interface IWriteDashboard {
|
|
|
2754
2757
|
background_color?: string;
|
|
2755
2758
|
crossfilter_enabled?: boolean;
|
|
2756
2759
|
deleted?: boolean;
|
|
2760
|
+
enable_viz_full_screen?: boolean;
|
|
2757
2761
|
filters_bar_collapsed?: boolean;
|
|
2758
2762
|
filters_location_top?: boolean;
|
|
2759
2763
|
load_configuration?: string | null;
|